@sudoplatform/sudo-secure-communications 5.3.2 → 5.4.0

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.
@@ -24,6 +24,7 @@ __export(crypto_api_exports, {
24
24
  CrossSigningKey: () => CrossSigningKey,
25
25
  CryptoEvent: () => CryptoEvent,
26
26
  DecryptionFailureCode: () => DecryptionFailureCode,
27
+ DecryptionKeyDoesNotMatchError: () => DecryptionKeyDoesNotMatchError,
27
28
  DeviceIsolationModeKind: () => DeviceIsolationModeKind,
28
29
  DeviceVerificationStatus: () => DeviceVerificationStatus,
29
30
  EventShieldColour: () => EventShieldColour,
@@ -509,3 +510,11 @@ var EventShieldReason = /* @__PURE__ */ (function(EventShieldReason2) {
509
510
  EventShieldReason2[EventShieldReason2["MISMATCHED_SENDER"] = 8] = "MISMATCHED_SENDER";
510
511
  return EventShieldReason2;
511
512
  })({});
513
+ var _DecryptionKeyDoesNotMatchError = class _DecryptionKeyDoesNotMatchError extends Error {
514
+ constructor(message) {
515
+ super(message);
516
+ this.name = "DecryptionKeyDoesNotMatchError";
517
+ }
518
+ };
519
+ __name(_DecryptionKeyDoesNotMatchError, "DecryptionKeyDoesNotMatchError");
520
+ var DecryptionKeyDoesNotMatchError = _DecryptionKeyDoesNotMatchError;
@@ -469,11 +469,20 @@ var EventShieldReason = /* @__PURE__ */ (function(EventShieldReason2) {
469
469
  EventShieldReason2[EventShieldReason2["MISMATCHED_SENDER"] = 8] = "MISMATCHED_SENDER";
470
470
  return EventShieldReason2;
471
471
  })({});
472
+ var _DecryptionKeyDoesNotMatchError = class _DecryptionKeyDoesNotMatchError extends Error {
473
+ constructor(message) {
474
+ super(message);
475
+ this.name = "DecryptionKeyDoesNotMatchError";
476
+ }
477
+ };
478
+ __name(_DecryptionKeyDoesNotMatchError, "DecryptionKeyDoesNotMatchError");
479
+ var DecryptionKeyDoesNotMatchError = _DecryptionKeyDoesNotMatchError;
472
480
  export {
473
481
  AllDevicesIsolationMode,
474
482
  CrossSigningKey,
475
483
  CryptoEvent,
476
484
  DecryptionFailureCode,
485
+ DecryptionKeyDoesNotMatchError,
477
486
  DeviceIsolationModeKind,
478
487
  DeviceVerificationStatus,
479
488
  EventShieldColour,