@nextera.one/axis-server-sdk 2.2.3 → 2.2.4
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/{index-B2G6cbRL.d.mts → index-C4ApiXHX.d.mts} +38 -25
- package/dist/{index-DbSxdR0f.d.ts → index-QGwgvVDY.d.ts} +38 -25
- package/dist/index.d.mts +9 -6
- package/dist/index.d.ts +9 -6
- package/dist/index.js +162 -96
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +158 -92
- package/dist/index.mjs.map +1 -1
- package/dist/sensors/index.d.mts +1 -1
- package/dist/sensors/index.d.ts +1 -1
- package/dist/sensors/index.js +160 -96
- package/dist/sensors/index.js.map +1 -1
- package/dist/sensors/index.mjs +156 -92
- package/dist/sensors/index.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -253,12 +253,47 @@ interface AxisRateLimitConfig {
|
|
|
253
253
|
}
|
|
254
254
|
declare function AxisRateLimit(config: AxisRateLimitConfig): MethodDecorator;
|
|
255
255
|
|
|
256
|
+
declare const OBSERVER_METADATA_KEY = "axis:observer";
|
|
257
|
+
declare const OBSERVER_BINDINGS_KEY = "axis:observer:bindings";
|
|
258
|
+
type AxisObserverRef = string | Function;
|
|
259
|
+
interface AxisObserverDefinition {
|
|
260
|
+
name?: string;
|
|
261
|
+
tags?: string[];
|
|
262
|
+
events?: AxisObserverEvent[];
|
|
263
|
+
intents?: string[];
|
|
264
|
+
handlers?: string[];
|
|
265
|
+
}
|
|
266
|
+
interface AxisObserverBinding {
|
|
267
|
+
refs: AxisObserverRef[];
|
|
268
|
+
tags?: string[];
|
|
269
|
+
events?: AxisObserverEvent[];
|
|
270
|
+
}
|
|
271
|
+
interface AxisObserverBindingOptions {
|
|
272
|
+
use: AxisObserverRef | AxisObserverRef[];
|
|
273
|
+
tags?: string[];
|
|
274
|
+
events?: AxisObserverEvent[];
|
|
275
|
+
}
|
|
276
|
+
type AxisObserverBindingInput = AxisObserverDefinition | AxisObserverBindingOptions | AxisObserverRef | AxisObserverRef[];
|
|
277
|
+
declare function toObserverBinding(input?: AxisObserverBindingInput): AxisObserverBinding | null;
|
|
278
|
+
declare function Observer(input?: AxisObserverBindingInput): ClassDecorator & MethodDecorator;
|
|
279
|
+
|
|
256
280
|
declare const INTENT_METADATA_KEY = "axis:intent";
|
|
257
281
|
declare const INTENT_ROUTES_KEY = "axis:intent_routes";
|
|
258
282
|
type IntentKind = "create" | "read" | "update" | "delete" | "action";
|
|
259
283
|
type AxisIntentSensorRef = string | Function;
|
|
284
|
+
type AxisIntentSensorWhen = 'before' | 'after' | 'both';
|
|
285
|
+
interface AxisIntentSensorBindingOptions {
|
|
286
|
+
use: AxisIntentSensorRef;
|
|
287
|
+
when?: AxisIntentSensorWhen;
|
|
288
|
+
}
|
|
289
|
+
interface AxisIntentSensorBinding {
|
|
290
|
+
ref: AxisIntentSensorRef;
|
|
291
|
+
when: AxisIntentSensorWhen;
|
|
292
|
+
}
|
|
293
|
+
type AxisIntentSensorBindingInput = AxisIntentSensorRef | AxisIntentSensorBindingOptions;
|
|
294
|
+
declare function toIntentSensorBinding(input: AxisIntentSensorBindingInput): AxisIntentSensorBinding;
|
|
260
295
|
interface AxisIntentSensorOptions {
|
|
261
|
-
is?:
|
|
296
|
+
is?: AxisIntentSensorBindingInput[];
|
|
262
297
|
}
|
|
263
298
|
interface IntentTlvField {
|
|
264
299
|
name: string;
|
|
@@ -294,28 +329,6 @@ interface IntentOptions extends AxisIntentSensorOptions {
|
|
|
294
329
|
}
|
|
295
330
|
declare function Intent(action: string, options?: IntentOptions): MethodDecorator;
|
|
296
331
|
|
|
297
|
-
declare const OBSERVER_METADATA_KEY = "axis:observer";
|
|
298
|
-
declare const OBSERVER_BINDINGS_KEY = "axis:observer:bindings";
|
|
299
|
-
type AxisObserverRef = string | Function;
|
|
300
|
-
interface AxisObserverDefinition {
|
|
301
|
-
name?: string;
|
|
302
|
-
tags?: string[];
|
|
303
|
-
events?: AxisObserverEvent[];
|
|
304
|
-
intents?: string[];
|
|
305
|
-
handlers?: string[];
|
|
306
|
-
}
|
|
307
|
-
interface AxisObserverBinding {
|
|
308
|
-
refs: AxisObserverRef[];
|
|
309
|
-
tags?: string[];
|
|
310
|
-
events?: AxisObserverEvent[];
|
|
311
|
-
}
|
|
312
|
-
interface AxisObserverBindingOptions {
|
|
313
|
-
use: AxisObserverRef | AxisObserverRef[];
|
|
314
|
-
tags?: string[];
|
|
315
|
-
events?: AxisObserverEvent[];
|
|
316
|
-
}
|
|
317
|
-
declare function Observer(input?: AxisObserverDefinition | AxisObserverBindingOptions | AxisObserverRef | AxisObserverRef[]): ClassDecorator & MethodDecorator;
|
|
318
|
-
|
|
319
332
|
declare const TLV_FIELDS_KEY = "axis:tlv:fields";
|
|
320
333
|
declare const TLV_VALIDATORS_KEY = "axis:tlv:validators";
|
|
321
334
|
type TlvFieldKind = 'utf8' | 'u64' | 'bytes' | 'bytes16' | 'bool' | 'obj' | 'arr';
|
|
@@ -441,7 +454,7 @@ declare class IntentRouter {
|
|
|
441
454
|
registerHandler(instance: any): void;
|
|
442
455
|
route(frame: AxisFrame): Promise<AxisEffect>;
|
|
443
456
|
private logIntent;
|
|
444
|
-
registerIntentMeta(intent: string, proto: object, methodName: string, handlerSensors?:
|
|
457
|
+
registerIntentMeta(intent: string, proto: object, methodName: string, handlerSensors?: AxisIntentSensorBindingInput[], handlerObservers?: AxisObserverBinding[]): void;
|
|
445
458
|
getSensitivity(intent: string): SensitivityLevel | undefined;
|
|
446
459
|
getContract(intent: string): Record<string, any> | undefined;
|
|
447
460
|
getRequiredProof(intent: string): RequiredProofKind[] | undefined;
|
|
@@ -821,4 +834,4 @@ declare class VarintHardeningSensor implements AxisSensor {
|
|
|
821
834
|
run(input: SensorInput): Promise<SensorDecision>;
|
|
822
835
|
}
|
|
823
836
|
|
|
824
|
-
export {
|
|
837
|
+
export { CapabilityEnforcementSensor as $, type AxisIntentSensorOptions as A, type AxisIntentSensorRef as B, type ChainOptions as C, type AxisIntentSensorWhen as D, type AxisKeyExchangeRef as E, type AxisLawArticleSummary as F, type AxisLawDecision as G, type AxisLawEvaluationContext as H, type IntentTlvField as I, type AxisLawEvaluationResult as J, type AxisLawEvaluator as K, type AxisObserverBinding as L, type AxisObserverBindingOptions as M, type AxisObserverContext as N, ObserverDispatcherService as O, type AxisObserverDefinition as P, type AxisObserverEvent as Q, type AxisObserverRef as R, SensorRegistry as S, type TlvValidatorFn as T, type AxisObserverRegistration as U, AxisPublic as V, AxisRateLimit as W, type AxisRateLimitConfig as X, BodyBudgetSensor as Y, CAPSULE_POLICY_METADATA_KEY as Z, CONTRACT_METADATA_KEY as _, type AxisObserverBindingInput as a, type TpsSensorOptions as a$, Capsule as a0, CapsulePolicy as a1, type CapsulePolicyOptions as a2, type CapsuleScopeMode as a3, ChunkHashSensor as a4, Contract as a5, DEFAULT_CONTRACTS as a6, EntropySensor as a7, type ExecutionContract as a8, ExecutionTimeoutSensor as a9, type RiskEvaluation as aA, RiskGateSensor as aB, type RiskGateSensorOptions as aC, type RiskSignal as aD, type RiskSignalCollector as aE, SENSITIVITY_METADATA_KEY as aF, SchemaValidationSensor as aG, Sensitivity as aH, StreamScopeSensor as aI, TLVParseSensor as aJ, TLV_FIELDS_KEY as aK, TLV_VALIDATORS_KEY as aL, type TickAuthCapsuleRef as aM, TickAuthSensor as aN, type TickAuthSensorOptions as aO, type TickAuthVerifier as aP, TlvEnum as aQ, TlvField as aR, type TlvFieldKind as aS, type TlvFieldMeta as aT, type TlvFieldOptions as aU, TlvMinLen as aV, TlvRange as aW, TlvUtf8Pattern as aX, TlvValidate as aY, type TlvValidatorMeta as aZ, TpsSensor as a_, FALLBACK_CONTRACT as aa, FrameBudgetSensor as ab, FrameHeaderSanitySensor as ac, HeaderTLVLimitSensor as ad, INTENT_METADATA_KEY as ae, INTENT_ROUTES_KEY as af, Intent as ag, IntentAllowlistSensor as ah, type IntentKind as ai, type IntentOptions as aj, IntentRegistrySensor as ak, type IntentRoute as al, LawEvaluationSensor as am, type LawEvaluationSensorOptions as an, OBSERVER_BINDINGS_KEY as ao, OBSERVER_METADATA_KEY as ap, Observer as aq, ObserverRegistry as ar, ProofPresenceSensor as as, ProtocolStrictSensor as at, REQUIRED_PROOF_METADATA_KEY as au, ReceiptPolicySensor as av, type RegisteredChainConfig as aw, RequiredProof as ax, type RequiredProofKind as ay, RiskDecision as az, type AxisIntentSensorBindingInput as b, VarintHardeningSensor as b0, Witness as b1, buildAxisLawEvaluationContext as b2, toIntentSensorBinding as b3, toObserverBinding as b4, IntentRouter as c, type AxisChainEnvelope as d, type AxisChainResult as e, type AxisCapsuleRef as f, type AxisChainStep as g, type AxisContext as h, AXIS_ANONYMOUS_KEY as i, AXIS_META_KEY as j, AXIS_PUBLIC_KEY as k, AXIS_RATE_LIMIT_KEY as l, AccessProfileResolverSensor as m, Axis as n, AxisAnonymous as o, type AxisChainEncryption as p, type AxisChainRequest as q, type AxisChainStatus as r, type AxisChainStepResult as s, type AxisChainStepStatus as t, type AxisEffect as u, type AxisExecutionMode as v, type AxisIntentEnvelope as w, type AxisIntentObserver as x, type AxisIntentSensorBinding as y, type AxisIntentSensorBindingOptions as z };
|
|
@@ -253,12 +253,47 @@ interface AxisRateLimitConfig {
|
|
|
253
253
|
}
|
|
254
254
|
declare function AxisRateLimit(config: AxisRateLimitConfig): MethodDecorator;
|
|
255
255
|
|
|
256
|
+
declare const OBSERVER_METADATA_KEY = "axis:observer";
|
|
257
|
+
declare const OBSERVER_BINDINGS_KEY = "axis:observer:bindings";
|
|
258
|
+
type AxisObserverRef = string | Function;
|
|
259
|
+
interface AxisObserverDefinition {
|
|
260
|
+
name?: string;
|
|
261
|
+
tags?: string[];
|
|
262
|
+
events?: AxisObserverEvent[];
|
|
263
|
+
intents?: string[];
|
|
264
|
+
handlers?: string[];
|
|
265
|
+
}
|
|
266
|
+
interface AxisObserverBinding {
|
|
267
|
+
refs: AxisObserverRef[];
|
|
268
|
+
tags?: string[];
|
|
269
|
+
events?: AxisObserverEvent[];
|
|
270
|
+
}
|
|
271
|
+
interface AxisObserverBindingOptions {
|
|
272
|
+
use: AxisObserverRef | AxisObserverRef[];
|
|
273
|
+
tags?: string[];
|
|
274
|
+
events?: AxisObserverEvent[];
|
|
275
|
+
}
|
|
276
|
+
type AxisObserverBindingInput = AxisObserverDefinition | AxisObserverBindingOptions | AxisObserverRef | AxisObserverRef[];
|
|
277
|
+
declare function toObserverBinding(input?: AxisObserverBindingInput): AxisObserverBinding | null;
|
|
278
|
+
declare function Observer(input?: AxisObserverBindingInput): ClassDecorator & MethodDecorator;
|
|
279
|
+
|
|
256
280
|
declare const INTENT_METADATA_KEY = "axis:intent";
|
|
257
281
|
declare const INTENT_ROUTES_KEY = "axis:intent_routes";
|
|
258
282
|
type IntentKind = "create" | "read" | "update" | "delete" | "action";
|
|
259
283
|
type AxisIntentSensorRef = string | Function;
|
|
284
|
+
type AxisIntentSensorWhen = 'before' | 'after' | 'both';
|
|
285
|
+
interface AxisIntentSensorBindingOptions {
|
|
286
|
+
use: AxisIntentSensorRef;
|
|
287
|
+
when?: AxisIntentSensorWhen;
|
|
288
|
+
}
|
|
289
|
+
interface AxisIntentSensorBinding {
|
|
290
|
+
ref: AxisIntentSensorRef;
|
|
291
|
+
when: AxisIntentSensorWhen;
|
|
292
|
+
}
|
|
293
|
+
type AxisIntentSensorBindingInput = AxisIntentSensorRef | AxisIntentSensorBindingOptions;
|
|
294
|
+
declare function toIntentSensorBinding(input: AxisIntentSensorBindingInput): AxisIntentSensorBinding;
|
|
260
295
|
interface AxisIntentSensorOptions {
|
|
261
|
-
is?:
|
|
296
|
+
is?: AxisIntentSensorBindingInput[];
|
|
262
297
|
}
|
|
263
298
|
interface IntentTlvField {
|
|
264
299
|
name: string;
|
|
@@ -294,28 +329,6 @@ interface IntentOptions extends AxisIntentSensorOptions {
|
|
|
294
329
|
}
|
|
295
330
|
declare function Intent(action: string, options?: IntentOptions): MethodDecorator;
|
|
296
331
|
|
|
297
|
-
declare const OBSERVER_METADATA_KEY = "axis:observer";
|
|
298
|
-
declare const OBSERVER_BINDINGS_KEY = "axis:observer:bindings";
|
|
299
|
-
type AxisObserverRef = string | Function;
|
|
300
|
-
interface AxisObserverDefinition {
|
|
301
|
-
name?: string;
|
|
302
|
-
tags?: string[];
|
|
303
|
-
events?: AxisObserverEvent[];
|
|
304
|
-
intents?: string[];
|
|
305
|
-
handlers?: string[];
|
|
306
|
-
}
|
|
307
|
-
interface AxisObserverBinding {
|
|
308
|
-
refs: AxisObserverRef[];
|
|
309
|
-
tags?: string[];
|
|
310
|
-
events?: AxisObserverEvent[];
|
|
311
|
-
}
|
|
312
|
-
interface AxisObserverBindingOptions {
|
|
313
|
-
use: AxisObserverRef | AxisObserverRef[];
|
|
314
|
-
tags?: string[];
|
|
315
|
-
events?: AxisObserverEvent[];
|
|
316
|
-
}
|
|
317
|
-
declare function Observer(input?: AxisObserverDefinition | AxisObserverBindingOptions | AxisObserverRef | AxisObserverRef[]): ClassDecorator & MethodDecorator;
|
|
318
|
-
|
|
319
332
|
declare const TLV_FIELDS_KEY = "axis:tlv:fields";
|
|
320
333
|
declare const TLV_VALIDATORS_KEY = "axis:tlv:validators";
|
|
321
334
|
type TlvFieldKind = 'utf8' | 'u64' | 'bytes' | 'bytes16' | 'bool' | 'obj' | 'arr';
|
|
@@ -441,7 +454,7 @@ declare class IntentRouter {
|
|
|
441
454
|
registerHandler(instance: any): void;
|
|
442
455
|
route(frame: AxisFrame): Promise<AxisEffect>;
|
|
443
456
|
private logIntent;
|
|
444
|
-
registerIntentMeta(intent: string, proto: object, methodName: string, handlerSensors?:
|
|
457
|
+
registerIntentMeta(intent: string, proto: object, methodName: string, handlerSensors?: AxisIntentSensorBindingInput[], handlerObservers?: AxisObserverBinding[]): void;
|
|
445
458
|
getSensitivity(intent: string): SensitivityLevel | undefined;
|
|
446
459
|
getContract(intent: string): Record<string, any> | undefined;
|
|
447
460
|
getRequiredProof(intent: string): RequiredProofKind[] | undefined;
|
|
@@ -821,4 +834,4 @@ declare class VarintHardeningSensor implements AxisSensor {
|
|
|
821
834
|
run(input: SensorInput): Promise<SensorDecision>;
|
|
822
835
|
}
|
|
823
836
|
|
|
824
|
-
export {
|
|
837
|
+
export { CapabilityEnforcementSensor as $, type AxisIntentSensorOptions as A, type AxisIntentSensorRef as B, type ChainOptions as C, type AxisIntentSensorWhen as D, type AxisKeyExchangeRef as E, type AxisLawArticleSummary as F, type AxisLawDecision as G, type AxisLawEvaluationContext as H, type IntentTlvField as I, type AxisLawEvaluationResult as J, type AxisLawEvaluator as K, type AxisObserverBinding as L, type AxisObserverBindingOptions as M, type AxisObserverContext as N, ObserverDispatcherService as O, type AxisObserverDefinition as P, type AxisObserverEvent as Q, type AxisObserverRef as R, SensorRegistry as S, type TlvValidatorFn as T, type AxisObserverRegistration as U, AxisPublic as V, AxisRateLimit as W, type AxisRateLimitConfig as X, BodyBudgetSensor as Y, CAPSULE_POLICY_METADATA_KEY as Z, CONTRACT_METADATA_KEY as _, type AxisObserverBindingInput as a, type TpsSensorOptions as a$, Capsule as a0, CapsulePolicy as a1, type CapsulePolicyOptions as a2, type CapsuleScopeMode as a3, ChunkHashSensor as a4, Contract as a5, DEFAULT_CONTRACTS as a6, EntropySensor as a7, type ExecutionContract as a8, ExecutionTimeoutSensor as a9, type RiskEvaluation as aA, RiskGateSensor as aB, type RiskGateSensorOptions as aC, type RiskSignal as aD, type RiskSignalCollector as aE, SENSITIVITY_METADATA_KEY as aF, SchemaValidationSensor as aG, Sensitivity as aH, StreamScopeSensor as aI, TLVParseSensor as aJ, TLV_FIELDS_KEY as aK, TLV_VALIDATORS_KEY as aL, type TickAuthCapsuleRef as aM, TickAuthSensor as aN, type TickAuthSensorOptions as aO, type TickAuthVerifier as aP, TlvEnum as aQ, TlvField as aR, type TlvFieldKind as aS, type TlvFieldMeta as aT, type TlvFieldOptions as aU, TlvMinLen as aV, TlvRange as aW, TlvUtf8Pattern as aX, TlvValidate as aY, type TlvValidatorMeta as aZ, TpsSensor as a_, FALLBACK_CONTRACT as aa, FrameBudgetSensor as ab, FrameHeaderSanitySensor as ac, HeaderTLVLimitSensor as ad, INTENT_METADATA_KEY as ae, INTENT_ROUTES_KEY as af, Intent as ag, IntentAllowlistSensor as ah, type IntentKind as ai, type IntentOptions as aj, IntentRegistrySensor as ak, type IntentRoute as al, LawEvaluationSensor as am, type LawEvaluationSensorOptions as an, OBSERVER_BINDINGS_KEY as ao, OBSERVER_METADATA_KEY as ap, Observer as aq, ObserverRegistry as ar, ProofPresenceSensor as as, ProtocolStrictSensor as at, REQUIRED_PROOF_METADATA_KEY as au, ReceiptPolicySensor as av, type RegisteredChainConfig as aw, RequiredProof as ax, type RequiredProofKind as ay, RiskDecision as az, type AxisIntentSensorBindingInput as b, VarintHardeningSensor as b0, Witness as b1, buildAxisLawEvaluationContext as b2, toIntentSensorBinding as b3, toObserverBinding as b4, IntentRouter as c, type AxisChainEnvelope as d, type AxisChainResult as e, type AxisCapsuleRef as f, type AxisChainStep as g, type AxisContext as h, AXIS_ANONYMOUS_KEY as i, AXIS_META_KEY as j, AXIS_PUBLIC_KEY as k, AXIS_RATE_LIMIT_KEY as l, AccessProfileResolverSensor as m, Axis as n, AxisAnonymous as o, type AxisChainEncryption as p, type AxisChainRequest as q, type AxisChainStatus as r, type AxisChainStepResult as s, type AxisChainStepStatus as t, type AxisEffect as u, type AxisExecutionMode as v, type AxisIntentEnvelope as w, type AxisIntentObserver as x, type AxisIntentSensorBinding as y, type AxisIntentSensorBindingOptions as z };
|
package/dist/index.d.mts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { C as ChainOptions, A as
|
|
2
|
-
export {
|
|
1
|
+
import { C as ChainOptions, A as AxisIntentSensorOptions, a as AxisObserverBindingInput, b as AxisIntentSensorBindingInput, I as IntentTlvField, T as TlvValidatorFn, c as IntentRouter, O as ObserverDispatcherService, d as AxisChainEnvelope, e as AxisChainResult, f as AxisCapsuleRef, g as AxisChainStep, h as AxisContext, S as SensorRegistry } from './index-C4ApiXHX.mjs';
|
|
2
|
+
export { i as AXIS_ANONYMOUS_KEY, j as AXIS_META_KEY, k as AXIS_PUBLIC_KEY, l as AXIS_RATE_LIMIT_KEY, m as AccessProfileResolverSensor, n as Axis, o as AxisAnonymous, p as AxisChainEncryption, q as AxisChainRequest, r as AxisChainStatus, s as AxisChainStepResult, t as AxisChainStepStatus, u as AxisEffect, v as AxisExecutionMode, w as AxisIntentEnvelope, x as AxisIntentObserver, y as AxisIntentSensorBinding, z as AxisIntentSensorBindingOptions, B as AxisIntentSensorRef, D as AxisIntentSensorWhen, E as AxisKeyExchangeRef, F as AxisLawArticleSummary, G as AxisLawDecision, H as AxisLawEvaluationContext, J as AxisLawEvaluationResult, K as AxisLawEvaluator, L as AxisObserverBinding, M as AxisObserverBindingOptions, N as AxisObserverContext, P as AxisObserverDefinition, Q as AxisObserverEvent, R as AxisObserverRef, U as AxisObserverRegistration, V as AxisPublic, W as AxisRateLimit, X as AxisRateLimitConfig, Y as BodyBudgetSensor, Z as CAPSULE_POLICY_METADATA_KEY, _ as CONTRACT_METADATA_KEY, $ as CapabilityEnforcementSensor, a0 as Capsule, a1 as CapsulePolicy, a2 as CapsulePolicyOptions, a3 as CapsuleScopeMode, a4 as ChunkHashSensor, a5 as Contract, a6 as DEFAULT_CONTRACTS, a7 as EntropySensor, a8 as ExecutionContract, a9 as ExecutionTimeoutSensor, aa as FALLBACK_CONTRACT, ab as FrameBudgetSensor, ac as FrameHeaderSanitySensor, ad as HeaderTLVLimitSensor, ae as INTENT_METADATA_KEY, af as INTENT_ROUTES_KEY, ag as Intent, ah as IntentAllowlistSensor, ai as IntentKind, aj as IntentOptions, ak as IntentRegistrySensor, al as IntentRoute, am as LawEvaluationSensor, an as LawEvaluationSensorOptions, ao as OBSERVER_BINDINGS_KEY, ap as OBSERVER_METADATA_KEY, aq as Observer, ar as ObserverRegistry, as as ProofPresenceSensor, at as ProtocolStrictSensor, au as REQUIRED_PROOF_METADATA_KEY, av as ReceiptPolicySensor, aw as RegisteredChainConfig, ax as RequiredProof, ay as RequiredProofKind, az as RiskDecision, aA as RiskEvaluation, aB as RiskGateSensor, aC as RiskGateSensorOptions, aD as RiskSignal, aE as RiskSignalCollector, aF as SENSITIVITY_METADATA_KEY, aG as SchemaValidationSensor, aH as Sensitivity, aI as StreamScopeSensor, aJ as TLVParseSensor, aK as TLV_FIELDS_KEY, aL as TLV_VALIDATORS_KEY, aM as TickAuthCapsuleRef, aN as TickAuthSensor, aO as TickAuthSensorOptions, aP as TickAuthVerifier, aQ as TlvEnum, aR as TlvField, aS as TlvFieldKind, aT as TlvFieldMeta, aU as TlvFieldOptions, aV as TlvMinLen, aW as TlvRange, aX as TlvUtf8Pattern, aY as TlvValidate, aZ as TlvValidatorMeta, a_ as TpsSensor, a$ as TpsSensorOptions, b0 as VarintHardeningSensor, b1 as Witness, b2 as buildAxisLawEvaluationContext, b3 as toIntentSensorBinding, b4 as toObserverBinding } from './index-C4ApiXHX.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
5
|
import { A as AxisObservation, L as LoomReceipt, T as ThreadState, W as WritValidationResult, G as Grant, a as GrantCapability, P as PresenceDeclaration, b as PresenceChallenge, c as Writ, R as Revocation, d as WritBody, e as WritMeta, f as PresenceReceipt, g as GrantStatus, h as PresenceStatus, i as PresenceProof, j as GrantValidationResult, k as PresenceVerifyResult } from './index-_S4fmVUJ.mjs';
|
|
@@ -22,16 +22,19 @@ declare const CHAIN_METADATA_KEY = "axis:chain";
|
|
|
22
22
|
declare function Chain(options?: ChainOptions): MethodDecorator;
|
|
23
23
|
|
|
24
24
|
declare const HANDLER_METADATA_KEY = "axis:handler";
|
|
25
|
-
|
|
25
|
+
interface HandlerOptions extends AxisIntentSensorOptions {
|
|
26
|
+
observe?: AxisObserverBindingInput[];
|
|
27
|
+
}
|
|
28
|
+
declare function Handler(intentOrOptions?: string | HandlerOptions, options?: HandlerOptions): ClassDecorator;
|
|
26
29
|
|
|
27
30
|
declare const INTENT_BODY_KEY = "axis:intent:body";
|
|
28
31
|
declare function IntentBody(decoder: (buf: Buffer) => any): MethodDecorator;
|
|
29
32
|
|
|
30
33
|
declare const INTENT_SENSORS_KEY = "axis:intent:sensors";
|
|
31
|
-
declare function IntentSensors(sensors:
|
|
34
|
+
declare function IntentSensors(sensors: AxisIntentSensorBindingInput[]): MethodDecorator;
|
|
32
35
|
|
|
33
36
|
declare const HANDLER_SENSORS_KEY = "axis:handler:sensors";
|
|
34
|
-
declare function HandlerSensors(sensors:
|
|
37
|
+
declare function HandlerSensors(sensors: AxisIntentSensorBindingInput[]): ClassDecorator;
|
|
35
38
|
|
|
36
39
|
declare const SENSOR_METADATA_KEY = "axis:sensor";
|
|
37
40
|
type SensorPhase = "PRE_DECODE" | "POST_DECODE";
|
|
@@ -780,4 +783,4 @@ declare function executeLoomPipeline(writ: Writ, publicKeyHex: string, presence:
|
|
|
780
783
|
code: string;
|
|
781
784
|
};
|
|
782
785
|
|
|
783
|
-
export { ATS1_HDR, ATS1_SCHEMA, AXIS_EXECUTION_CONTEXT_KEY, AXIS_OPCODES, AXIS_UPLOAD_FILE_STORE, AXIS_UPLOAD_RECEIPT_SIGNER, AXIS_UPLOAD_SESSION_STORE, ats1 as Ats1Codec, Axis1DecodedFrame, type AxisPacket as AxisBinaryPacket, AxisCapsuleRef, AxisChainEnvelope, AxisChainExecutor, AxisChainResult, AxisChainStep, type AxisCrudHandler, type AxisDecoded, type AxisExecutionContext, type AxisHandler, type AxisHandlerInit, AxisIdDto,
|
|
786
|
+
export { ATS1_HDR, ATS1_SCHEMA, AXIS_EXECUTION_CONTEXT_KEY, AXIS_OPCODES, AXIS_UPLOAD_FILE_STORE, AXIS_UPLOAD_RECEIPT_SIGNER, AXIS_UPLOAD_SESSION_STORE, ats1 as Ats1Codec, Axis1DecodedFrame, type AxisPacket as AxisBinaryPacket, AxisCapsuleRef, AxisChainEnvelope, AxisChainExecutor, AxisChainResult, AxisChainStep, type AxisCrudHandler, type AxisDecoded, type AxisExecutionContext, type AxisHandler, type AxisHandlerInit, AxisIdDto, AxisIntentSensorBindingInput, AxisIntentSensorOptions, AxisMediaTypes, AxisObservation, AxisObserverBindingInput, T as AxisPacketTags, AxisPartialType, AxisResponseDto, AxisSensorChainService, AxisTlvDto, BAND, BodyProfile, type BodyProfileValidation, BodyProfileValidator, CAPABILITIES, CHAIN_METADATA_KEY, type Capability, Chain, ChainOptions, type ChainResult, ContractViolationError, DEFAULT_TIMEOUT, type DeviceSEContext, DiskUploadFileStore, type DtoSchema, ExecutionMeter, type ExecutionMetrics, Grant, GrantCapability, GrantStatus, GrantValidationResult, HANDLER_METADATA_KEY, HANDLER_SENSORS_KEY, Handler, type HandlerOptions, HandlerSensors, INTENT_BODY_KEY, INTENT_REQUIREMENTS, INTENT_SENSITIVITY_MAP, INTENT_SENSORS_KEY, INTENT_TIMEOUTS, IntentBody, type IntentDefinition, IntentRouter, IntentSensitivity, IntentSensors, IntentTlvField, type LoomExecutionResult, LoomReceipt, type MTLSContext, type ObservationQueueConfig, type ObservationQueueMessage, type ObservationStreamEntry, type ObservationWitnessSummary, ObserverDispatcherService, type ObserverVerdict, PRE_DECODE_BOUNDARY, PROOF_CAPABILITIES, PresenceChallenge, PresenceDeclaration, PresenceProof, PresenceReceipt, PresenceStatus, PresenceVerifyResult, type ProofType, type ProofVerificationResult, ProofVerificationService, RESPONSE_TAG_CREATED_AT, RESPONSE_TAG_CREATED_BY, RESPONSE_TAG_ID, RESPONSE_TAG_UPDATED_AT, RESPONSE_TAG_UPDATED_BY, type ReceiptEffect, type ResponseContract, ResponseObserver, type ResponseObserverContext, Revocation, SENSOR_METADATA_KEY, Schema2002_PasskeyLoginOptionsRes, Schema2011_PasskeyLoginVerifyReq, Schema2012_PasskeyLoginVerifyRes, Schema2021_PasskeyRegisterOptionsReq, Sensor, type SensorBand, SensorDecision, SensorInput, type SensorOptions, type SensorPhase, SensorRegistry, ThreadState, TlvValidatorFn, type UnsignedObservationWitness, type UploadFileStat, type UploadFileStore, type UploadReceiptSigner, type UploadSessionRecord, type UploadSessionStatus, type UploadSessionStore, Writ, WritBody, WritMeta, WritValidationResult, b64urlDecode, b64urlDecodeString, b64urlEncode, b64urlEncodeString, buildAts1Hdr, buildDtoDecoder, buildPacket, buildQueueMessage, buildReceiptHash, buildTLVs, buildUnsignedWitness, bytes, canAccessResource, canonicalJson, canonicalJsonExcluding, canonicalizeObservation, classifyIntent, createGrant, createPresenceChallenge, createReceipt, createRevocation, createWrit, decodeQueueMessage, encVarint, encodeAxisTlvDto, encodeQueueMessage, executeLoomPipeline, extractDtoSchema, getAxisExecutionContext, getGrantStatus, getPresenceStatus, grantCoversAction, hasScope, hashObservation, isAdminOpcode, isKnownOpcode, isRevoked, isTimestampValid, mergeAxisExecutionContext, nonce16, packPasskeyLoginOptionsReq, packPasskeyLoginOptionsRes, packPasskeyLoginVerifyReq, packPasskeyLoginVerifyRes, packPasskeyRegisterOptionsReq, parseAutoClaimEntries, parseScope, parseStreamEntries, renewPresence, resolveTimeout, sensitivityName, signPresenceChallenge, stableJsonStringify, tlv, u64be, unpackPasskeyLoginOptionsReq, unpackPasskeyLoginVerifyReq, unpackPasskeyRegisterOptionsReq, updateThreadState, utf8, validateFrameShape, validateGrant, validateWrit, varintU, verifyPresenceProof, verifyReceiptChain, verifyResponse, withAxisExecutionContext };
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { C as ChainOptions, A as
|
|
2
|
-
export {
|
|
1
|
+
import { C as ChainOptions, A as AxisIntentSensorOptions, a as AxisObserverBindingInput, b as AxisIntentSensorBindingInput, I as IntentTlvField, T as TlvValidatorFn, c as IntentRouter, O as ObserverDispatcherService, d as AxisChainEnvelope, e as AxisChainResult, f as AxisCapsuleRef, g as AxisChainStep, h as AxisContext, S as SensorRegistry } from './index-QGwgvVDY.js';
|
|
2
|
+
export { i as AXIS_ANONYMOUS_KEY, j as AXIS_META_KEY, k as AXIS_PUBLIC_KEY, l as AXIS_RATE_LIMIT_KEY, m as AccessProfileResolverSensor, n as Axis, o as AxisAnonymous, p as AxisChainEncryption, q as AxisChainRequest, r as AxisChainStatus, s as AxisChainStepResult, t as AxisChainStepStatus, u as AxisEffect, v as AxisExecutionMode, w as AxisIntentEnvelope, x as AxisIntentObserver, y as AxisIntentSensorBinding, z as AxisIntentSensorBindingOptions, B as AxisIntentSensorRef, D as AxisIntentSensorWhen, E as AxisKeyExchangeRef, F as AxisLawArticleSummary, G as AxisLawDecision, H as AxisLawEvaluationContext, J as AxisLawEvaluationResult, K as AxisLawEvaluator, L as AxisObserverBinding, M as AxisObserverBindingOptions, N as AxisObserverContext, P as AxisObserverDefinition, Q as AxisObserverEvent, R as AxisObserverRef, U as AxisObserverRegistration, V as AxisPublic, W as AxisRateLimit, X as AxisRateLimitConfig, Y as BodyBudgetSensor, Z as CAPSULE_POLICY_METADATA_KEY, _ as CONTRACT_METADATA_KEY, $ as CapabilityEnforcementSensor, a0 as Capsule, a1 as CapsulePolicy, a2 as CapsulePolicyOptions, a3 as CapsuleScopeMode, a4 as ChunkHashSensor, a5 as Contract, a6 as DEFAULT_CONTRACTS, a7 as EntropySensor, a8 as ExecutionContract, a9 as ExecutionTimeoutSensor, aa as FALLBACK_CONTRACT, ab as FrameBudgetSensor, ac as FrameHeaderSanitySensor, ad as HeaderTLVLimitSensor, ae as INTENT_METADATA_KEY, af as INTENT_ROUTES_KEY, ag as Intent, ah as IntentAllowlistSensor, ai as IntentKind, aj as IntentOptions, ak as IntentRegistrySensor, al as IntentRoute, am as LawEvaluationSensor, an as LawEvaluationSensorOptions, ao as OBSERVER_BINDINGS_KEY, ap as OBSERVER_METADATA_KEY, aq as Observer, ar as ObserverRegistry, as as ProofPresenceSensor, at as ProtocolStrictSensor, au as REQUIRED_PROOF_METADATA_KEY, av as ReceiptPolicySensor, aw as RegisteredChainConfig, ax as RequiredProof, ay as RequiredProofKind, az as RiskDecision, aA as RiskEvaluation, aB as RiskGateSensor, aC as RiskGateSensorOptions, aD as RiskSignal, aE as RiskSignalCollector, aF as SENSITIVITY_METADATA_KEY, aG as SchemaValidationSensor, aH as Sensitivity, aI as StreamScopeSensor, aJ as TLVParseSensor, aK as TLV_FIELDS_KEY, aL as TLV_VALIDATORS_KEY, aM as TickAuthCapsuleRef, aN as TickAuthSensor, aO as TickAuthSensorOptions, aP as TickAuthVerifier, aQ as TlvEnum, aR as TlvField, aS as TlvFieldKind, aT as TlvFieldMeta, aU as TlvFieldOptions, aV as TlvMinLen, aW as TlvRange, aX as TlvUtf8Pattern, aY as TlvValidate, aZ as TlvValidatorMeta, a_ as TpsSensor, a$ as TpsSensorOptions, b0 as VarintHardeningSensor, b1 as Witness, b2 as buildAxisLawEvaluationContext, b3 as toIntentSensorBinding, b4 as toObserverBinding } from './index-QGwgvVDY.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
5
|
import { A as AxisObservation, L as LoomReceipt, T as ThreadState, W as WritValidationResult, G as Grant, a as GrantCapability, P as PresenceDeclaration, b as PresenceChallenge, c as Writ, R as Revocation, d as WritBody, e as WritMeta, f as PresenceReceipt, g as GrantStatus, h as PresenceStatus, i as PresenceProof, j as GrantValidationResult, k as PresenceVerifyResult } from './index-l3Hhirqb.js';
|
|
@@ -22,16 +22,19 @@ declare const CHAIN_METADATA_KEY = "axis:chain";
|
|
|
22
22
|
declare function Chain(options?: ChainOptions): MethodDecorator;
|
|
23
23
|
|
|
24
24
|
declare const HANDLER_METADATA_KEY = "axis:handler";
|
|
25
|
-
|
|
25
|
+
interface HandlerOptions extends AxisIntentSensorOptions {
|
|
26
|
+
observe?: AxisObserverBindingInput[];
|
|
27
|
+
}
|
|
28
|
+
declare function Handler(intentOrOptions?: string | HandlerOptions, options?: HandlerOptions): ClassDecorator;
|
|
26
29
|
|
|
27
30
|
declare const INTENT_BODY_KEY = "axis:intent:body";
|
|
28
31
|
declare function IntentBody(decoder: (buf: Buffer) => any): MethodDecorator;
|
|
29
32
|
|
|
30
33
|
declare const INTENT_SENSORS_KEY = "axis:intent:sensors";
|
|
31
|
-
declare function IntentSensors(sensors:
|
|
34
|
+
declare function IntentSensors(sensors: AxisIntentSensorBindingInput[]): MethodDecorator;
|
|
32
35
|
|
|
33
36
|
declare const HANDLER_SENSORS_KEY = "axis:handler:sensors";
|
|
34
|
-
declare function HandlerSensors(sensors:
|
|
37
|
+
declare function HandlerSensors(sensors: AxisIntentSensorBindingInput[]): ClassDecorator;
|
|
35
38
|
|
|
36
39
|
declare const SENSOR_METADATA_KEY = "axis:sensor";
|
|
37
40
|
type SensorPhase = "PRE_DECODE" | "POST_DECODE";
|
|
@@ -780,4 +783,4 @@ declare function executeLoomPipeline(writ: Writ, publicKeyHex: string, presence:
|
|
|
780
783
|
code: string;
|
|
781
784
|
};
|
|
782
785
|
|
|
783
|
-
export { ATS1_HDR, ATS1_SCHEMA, AXIS_EXECUTION_CONTEXT_KEY, AXIS_OPCODES, AXIS_UPLOAD_FILE_STORE, AXIS_UPLOAD_RECEIPT_SIGNER, AXIS_UPLOAD_SESSION_STORE, ats1 as Ats1Codec, Axis1DecodedFrame, type AxisPacket as AxisBinaryPacket, AxisCapsuleRef, AxisChainEnvelope, AxisChainExecutor, AxisChainResult, AxisChainStep, type AxisCrudHandler, type AxisDecoded, type AxisExecutionContext, type AxisHandler, type AxisHandlerInit, AxisIdDto,
|
|
786
|
+
export { ATS1_HDR, ATS1_SCHEMA, AXIS_EXECUTION_CONTEXT_KEY, AXIS_OPCODES, AXIS_UPLOAD_FILE_STORE, AXIS_UPLOAD_RECEIPT_SIGNER, AXIS_UPLOAD_SESSION_STORE, ats1 as Ats1Codec, Axis1DecodedFrame, type AxisPacket as AxisBinaryPacket, AxisCapsuleRef, AxisChainEnvelope, AxisChainExecutor, AxisChainResult, AxisChainStep, type AxisCrudHandler, type AxisDecoded, type AxisExecutionContext, type AxisHandler, type AxisHandlerInit, AxisIdDto, AxisIntentSensorBindingInput, AxisIntentSensorOptions, AxisMediaTypes, AxisObservation, AxisObserverBindingInput, T as AxisPacketTags, AxisPartialType, AxisResponseDto, AxisSensorChainService, AxisTlvDto, BAND, BodyProfile, type BodyProfileValidation, BodyProfileValidator, CAPABILITIES, CHAIN_METADATA_KEY, type Capability, Chain, ChainOptions, type ChainResult, ContractViolationError, DEFAULT_TIMEOUT, type DeviceSEContext, DiskUploadFileStore, type DtoSchema, ExecutionMeter, type ExecutionMetrics, Grant, GrantCapability, GrantStatus, GrantValidationResult, HANDLER_METADATA_KEY, HANDLER_SENSORS_KEY, Handler, type HandlerOptions, HandlerSensors, INTENT_BODY_KEY, INTENT_REQUIREMENTS, INTENT_SENSITIVITY_MAP, INTENT_SENSORS_KEY, INTENT_TIMEOUTS, IntentBody, type IntentDefinition, IntentRouter, IntentSensitivity, IntentSensors, IntentTlvField, type LoomExecutionResult, LoomReceipt, type MTLSContext, type ObservationQueueConfig, type ObservationQueueMessage, type ObservationStreamEntry, type ObservationWitnessSummary, ObserverDispatcherService, type ObserverVerdict, PRE_DECODE_BOUNDARY, PROOF_CAPABILITIES, PresenceChallenge, PresenceDeclaration, PresenceProof, PresenceReceipt, PresenceStatus, PresenceVerifyResult, type ProofType, type ProofVerificationResult, ProofVerificationService, RESPONSE_TAG_CREATED_AT, RESPONSE_TAG_CREATED_BY, RESPONSE_TAG_ID, RESPONSE_TAG_UPDATED_AT, RESPONSE_TAG_UPDATED_BY, type ReceiptEffect, type ResponseContract, ResponseObserver, type ResponseObserverContext, Revocation, SENSOR_METADATA_KEY, Schema2002_PasskeyLoginOptionsRes, Schema2011_PasskeyLoginVerifyReq, Schema2012_PasskeyLoginVerifyRes, Schema2021_PasskeyRegisterOptionsReq, Sensor, type SensorBand, SensorDecision, SensorInput, type SensorOptions, type SensorPhase, SensorRegistry, ThreadState, TlvValidatorFn, type UnsignedObservationWitness, type UploadFileStat, type UploadFileStore, type UploadReceiptSigner, type UploadSessionRecord, type UploadSessionStatus, type UploadSessionStore, Writ, WritBody, WritMeta, WritValidationResult, b64urlDecode, b64urlDecodeString, b64urlEncode, b64urlEncodeString, buildAts1Hdr, buildDtoDecoder, buildPacket, buildQueueMessage, buildReceiptHash, buildTLVs, buildUnsignedWitness, bytes, canAccessResource, canonicalJson, canonicalJsonExcluding, canonicalizeObservation, classifyIntent, createGrant, createPresenceChallenge, createReceipt, createRevocation, createWrit, decodeQueueMessage, encVarint, encodeAxisTlvDto, encodeQueueMessage, executeLoomPipeline, extractDtoSchema, getAxisExecutionContext, getGrantStatus, getPresenceStatus, grantCoversAction, hasScope, hashObservation, isAdminOpcode, isKnownOpcode, isRevoked, isTimestampValid, mergeAxisExecutionContext, nonce16, packPasskeyLoginOptionsReq, packPasskeyLoginOptionsRes, packPasskeyLoginVerifyReq, packPasskeyLoginVerifyRes, packPasskeyRegisterOptionsReq, parseAutoClaimEntries, parseScope, parseStreamEntries, renewPresence, resolveTimeout, sensitivityName, signPresenceChallenge, stableJsonStringify, tlv, u64be, unpackPasskeyLoginOptionsReq, unpackPasskeyLoginVerifyReq, unpackPasskeyRegisterOptionsReq, updateThreadState, utf8, validateFrameShape, validateGrant, validateWrit, varintU, verifyPresenceProof, verifyReceiptChain, verifyResponse, withAxisExecutionContext };
|