@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.
@@ -3449,8 +3449,9 @@ var JWKValidator = mod.object({
3449
3449
  x: mod.string(),
3450
3450
  y: mod.string().optional(),
3451
3451
  n: mod.string().optional(),
3452
- d: mod.string()
3452
+ d: mod.string().optional()
3453
3453
  });
3454
+ var JWKWithPrivateKeyValidator = JWKValidator.omit({ d: true }).extend({ d: mod.string() });
3454
3455
  var JWERecipientHeaderValidator = mod.object({
3455
3456
  alg: mod.string(),
3456
3457
  iv: mod.string(),
@@ -3928,6 +3929,7 @@ var ConsentFlowContractDetailsValidator = mod.object({
3928
3929
  image: mod.string().optional(),
3929
3930
  uri: mod.string(),
3930
3931
  needsGuardianConsent: mod.boolean().optional(),
3932
+ redirectUrl: mod.string().optional(),
3931
3933
  createdAt: mod.string(),
3932
3934
  updatedAt: mod.string(),
3933
3935
  expiresAt: mod.string().optional()