@learncard/ceramic-plugin 1.0.24 → 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(),
@@ -53718,6 +53719,7 @@ var ConsentFlowContractDetailsValidator = mod.object({
53718
53719
  image: mod.string().optional(),
53719
53720
  uri: mod.string(),
53720
53721
  needsGuardianConsent: mod.boolean().optional(),
53722
+ redirectUrl: mod.string().optional(),
53721
53723
  createdAt: mod.string(),
53722
53724
  updatedAt: mod.string(),
53723
53725
  expiresAt: mod.string().optional()