@learncard/didkey-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/didkey-plugin.cjs.development.js +4 -1
- package/dist/didkey-plugin.cjs.development.js.map +2 -2
- package/dist/didkey-plugin.cjs.production.min.js +1 -1
- package/dist/didkey-plugin.cjs.production.min.js.map +3 -3
- package/dist/didkey-plugin.esm.js +4 -1
- package/dist/didkey-plugin.esm.js.map +2 -2
- package/dist/types.d.ts +5 -5
- package/dist/types.d.ts.map +1 -1
- package/package.json +4 -4
|
@@ -106,6 +106,7 @@ var require_types_cjs_development = __commonJS({
|
|
|
106
106
|
JWERecipientValidator: () => JWERecipientValidator,
|
|
107
107
|
JWEValidator: () => JWEValidator2,
|
|
108
108
|
JWKValidator: () => JWKValidator,
|
|
109
|
+
JWKWithPrivateKeyValidator: () => JWKWithPrivateKeyValidator,
|
|
109
110
|
KnownAchievementTypeValidator: () => KnownAchievementTypeValidator,
|
|
110
111
|
LCNBoostClaimLinkOptionsValidator: () => LCNBoostClaimLinkOptionsValidator,
|
|
111
112
|
LCNBoostClaimLinkSigningAuthorityValidator: () => LCNBoostClaimLinkSigningAuthorityValidator,
|
|
@@ -3631,8 +3632,9 @@ var require_types_cjs_development = __commonJS({
|
|
|
3631
3632
|
x: mod.string(),
|
|
3632
3633
|
y: mod.string().optional(),
|
|
3633
3634
|
n: mod.string().optional(),
|
|
3634
|
-
d: mod.string()
|
|
3635
|
+
d: mod.string().optional()
|
|
3635
3636
|
});
|
|
3637
|
+
var JWKWithPrivateKeyValidator = JWKValidator.omit({ d: true }).extend({ d: mod.string() });
|
|
3636
3638
|
var JWERecipientHeaderValidator = mod.object({
|
|
3637
3639
|
alg: mod.string(),
|
|
3638
3640
|
iv: mod.string(),
|
|
@@ -4110,6 +4112,7 @@ var require_types_cjs_development = __commonJS({
|
|
|
4110
4112
|
image: mod.string().optional(),
|
|
4111
4113
|
uri: mod.string(),
|
|
4112
4114
|
needsGuardianConsent: mod.boolean().optional(),
|
|
4115
|
+
redirectUrl: mod.string().optional(),
|
|
4113
4116
|
createdAt: mod.string(),
|
|
4114
4117
|
updatedAt: mod.string(),
|
|
4115
4118
|
expiresAt: mod.string().optional()
|