@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.
- package/dist/ceramic-plugin.cjs.development.js +3 -1
- package/dist/ceramic-plugin.cjs.development.js.map +2 -2
- package/dist/ceramic-plugin.cjs.production.min.js +39 -39
- package/dist/ceramic-plugin.cjs.production.min.js.map +3 -3
- package/dist/ceramic-plugin.esm.js +3 -1
- package/dist/ceramic-plugin.esm.js.map +2 -2
- package/package.json +4 -4
|
@@ -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()
|