@nextera.one/axis-server-sdk 2.3.17 → 2.3.18

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.
@@ -540,6 +540,21 @@ function Axis() {
540
540
  Reflect.defineMetadata(AXIS_META_KEY, { entry: true }, target);
541
541
  };
542
542
  }
543
+ function AxisStream(options = {}) {
544
+ return (target) => {
545
+ Reflect.defineMetadata(
546
+ AXIS_STREAM_META_KEY,
547
+ {
548
+ entry: true,
549
+ transport: "stream",
550
+ role: "entry",
551
+ path: options.path,
552
+ protocol: options.protocol
553
+ },
554
+ target
555
+ );
556
+ };
557
+ }
543
558
  function AxisPublic() {
544
559
  return (target, propertyKey, descriptor) => {
545
560
  if (propertyKey !== void 0) {
@@ -582,10 +597,11 @@ function AxisRateLimit(config) {
582
597
  return descriptor;
583
598
  };
584
599
  }
585
- var AXIS_META_KEY, SENSITIVITY_METADATA_KEY, CONTRACT_METADATA_KEY, REQUIRED_PROOF_METADATA_KEY, AXIS_PUBLIC_KEY, AXIS_ANONYMOUS_KEY, AXIS_AUTHORIZED_KEY, AXIS_RATE_LIMIT_KEY;
600
+ var AXIS_META_KEY, AXIS_STREAM_META_KEY, SENSITIVITY_METADATA_KEY, CONTRACT_METADATA_KEY, REQUIRED_PROOF_METADATA_KEY, AXIS_PUBLIC_KEY, AXIS_ANONYMOUS_KEY, AXIS_AUTHORIZED_KEY, AXIS_RATE_LIMIT_KEY;
586
601
  var init_intent_policy_decorator = __esm({
587
602
  "src/decorators/intent-policy.decorator.ts"() {
588
603
  AXIS_META_KEY = "axis:axis";
604
+ AXIS_STREAM_META_KEY = "axis:stream";
589
605
  SENSITIVITY_METADATA_KEY = "axis:sensitivity";
590
606
  CONTRACT_METADATA_KEY = "axis:contract";
591
607
  REQUIRED_PROOF_METADATA_KEY = "axis:required_proof";
@@ -10940,6 +10956,7 @@ __export(index_exports, {
10940
10956
  AXIS_OPCODES: () => AXIS_OPCODES,
10941
10957
  AXIS_PUBLIC_KEY: () => AXIS_PUBLIC_KEY,
10942
10958
  AXIS_RATE_LIMIT_KEY: () => AXIS_RATE_LIMIT_KEY,
10959
+ AXIS_STREAM_META_KEY: () => AXIS_STREAM_META_KEY,
10943
10960
  AXIS_UPLOAD_FILE_STORE: () => AXIS_UPLOAD_FILE_STORE,
10944
10961
  AXIS_UPLOAD_RECEIPT_SIGNER: () => AXIS_UPLOAD_RECEIPT_SIGNER,
10945
10962
  AXIS_UPLOAD_SESSION_STORE: () => AXIS_UPLOAD_SESSION_STORE,
@@ -10959,6 +10976,7 @@ __export(index_exports, {
10959
10976
  AxisRateLimit: () => AxisRateLimit,
10960
10977
  AxisResponseDto: () => import_axis_response.AxisResponseDto,
10961
10978
  AxisSensorChainService: () => AxisSensorChainService,
10979
+ AxisStream: () => AxisStream,
10962
10980
  AxisTlvDto: () => AxisTlvDto,
10963
10981
  BAND: () => BAND,
10964
10982
  BodyProfile: () => BodyProfile2,