@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.
@@ -53235,8 +53235,9 @@ var JWKValidator = mod.object({
53235
53235
  x: mod.string(),
53236
53236
  y: mod.string().optional(),
53237
53237
  n: mod.string().optional(),
53238
- d: mod.string()
53238
+ d: mod.string().optional()
53239
53239
  });
53240
+ var JWKWithPrivateKeyValidator = JWKValidator.omit({ d: true }).extend({ d: mod.string() });
53240
53241
  var JWERecipientHeaderValidator = mod.object({
53241
53242
  alg: mod.string(),
53242
53243
  iv: mod.string(),
@@ -53714,6 +53715,7 @@ var ConsentFlowContractDetailsValidator = mod.object({
53714
53715
  image: mod.string().optional(),
53715
53716
  uri: mod.string(),
53716
53717
  needsGuardianConsent: mod.boolean().optional(),
53718
+ redirectUrl: mod.string().optional(),
53717
53719
  createdAt: mod.string(),
53718
53720
  updatedAt: mod.string(),
53719
53721
  expiresAt: mod.string().optional()