@learncard/ceramic-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.
@@ -53239,8 +53239,9 @@ var JWKValidator = mod.object({
53239
53239
  x: mod.string(),
53240
53240
  y: mod.string().optional(),
53241
53241
  n: mod.string().optional(),
53242
- d: mod.string()
53242
+ d: mod.string().optional()
53243
53243
  });
53244
+ var JWKWithPrivateKeyValidator = JWKValidator.omit({ d: true }).extend({ d: mod.string() });
53244
53245
  var JWERecipientHeaderValidator = mod.object({
53245
53246
  alg: mod.string(),
53246
53247
  iv: mod.string(),