@learncard/learn-card-plugin 1.1.26 → 1.1.28

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.
@@ -3473,8 +3473,9 @@ var JWKValidator = mod.object({
3473
3473
  x: mod.string(),
3474
3474
  y: mod.string().optional(),
3475
3475
  n: mod.string().optional(),
3476
- d: mod.string()
3476
+ d: mod.string().optional()
3477
3477
  });
3478
+ var JWKWithPrivateKeyValidator = JWKValidator.omit({ d: true }).extend({ d: mod.string() });
3478
3479
  var JWERecipientHeaderValidator = mod.object({
3479
3480
  alg: mod.string(),
3480
3481
  iv: mod.string(),
@@ -3952,6 +3953,7 @@ var ConsentFlowContractDetailsValidator = mod.object({
3952
3953
  image: mod.string().optional(),
3953
3954
  uri: mod.string(),
3954
3955
  needsGuardianConsent: mod.boolean().optional(),
3956
+ redirectUrl: mod.string().optional(),
3955
3957
  createdAt: mod.string(),
3956
3958
  updatedAt: mod.string(),
3957
3959
  expiresAt: mod.string().optional()