@learncard/didkey-plugin 1.0.25 → 1.0.26

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.
@@ -130,6 +130,7 @@ var require_types_cjs_development = __commonJS({
130
130
  JWERecipientValidator: () => JWERecipientValidator,
131
131
  JWEValidator: () => JWEValidator2,
132
132
  JWKValidator: () => JWKValidator,
133
+ JWKWithPrivateKeyValidator: () => JWKWithPrivateKeyValidator,
133
134
  KnownAchievementTypeValidator: () => KnownAchievementTypeValidator,
134
135
  LCNBoostClaimLinkOptionsValidator: () => LCNBoostClaimLinkOptionsValidator,
135
136
  LCNBoostClaimLinkSigningAuthorityValidator: () => LCNBoostClaimLinkSigningAuthorityValidator,
@@ -3655,8 +3656,9 @@ var require_types_cjs_development = __commonJS({
3655
3656
  x: mod.string(),
3656
3657
  y: mod.string().optional(),
3657
3658
  n: mod.string().optional(),
3658
- d: mod.string()
3659
+ d: mod.string().optional()
3659
3660
  });
3661
+ var JWKWithPrivateKeyValidator = JWKValidator.omit({ d: true }).extend({ d: mod.string() });
3660
3662
  var JWERecipientHeaderValidator = mod.object({
3661
3663
  alg: mod.string(),
3662
3664
  iv: mod.string(),