@learncard/ceramic-plugin 1.0.25 → 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 +2 -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 +2 -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(),
|