@learncard/network-brain-client 2.2.4 → 2.2.6
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/CHANGELOG.md +14 -0
- package/dist/brain-client.cjs.development.js +4 -1
- package/dist/brain-client.cjs.development.js.map +2 -2
- package/dist/brain-client.cjs.production.min.js +1 -1
- package/dist/brain-client.cjs.production.min.js.map +3 -3
- package/dist/brain-client.esm.js +4 -1
- package/dist/brain-client.esm.js.map +2 -2
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @learncard/network-brain-client
|
|
2
2
|
|
|
3
|
+
## 2.2.6
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [[`a4eead401a62a872be046e28b0d27b2d980ced3a`](https://github.com/learningeconomy/LearnCard/commit/a4eead401a62a872be046e28b0d27b2d980ced3a)]:
|
|
8
|
+
- @learncard/network-brain-service@3.3.5
|
|
9
|
+
|
|
10
|
+
## 2.2.5
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies [[`86bdf08214003e1db051f5a0e93c3a57e282db62`](https://github.com/learningeconomy/LearnCard/commit/86bdf08214003e1db051f5a0e93c3a57e282db62)]:
|
|
15
|
+
- @learncard/network-brain-service@3.3.4
|
|
16
|
+
|
|
3
17
|
## 2.2.4
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
|
@@ -129,6 +129,7 @@ var require_helpers_cjs_development = __commonJS({
|
|
|
129
129
|
JWERecipientValidator: () => JWERecipientValidator,
|
|
130
130
|
JWEValidator: () => JWEValidator2,
|
|
131
131
|
JWKValidator: () => JWKValidator,
|
|
132
|
+
JWKWithPrivateKeyValidator: () => JWKWithPrivateKeyValidator,
|
|
132
133
|
KnownAchievementTypeValidator: () => KnownAchievementTypeValidator,
|
|
133
134
|
LCNBoostClaimLinkOptionsValidator: () => LCNBoostClaimLinkOptionsValidator,
|
|
134
135
|
LCNBoostClaimLinkSigningAuthorityValidator: () => LCNBoostClaimLinkSigningAuthorityValidator,
|
|
@@ -3654,8 +3655,9 @@ var require_helpers_cjs_development = __commonJS({
|
|
|
3654
3655
|
x: mod.string(),
|
|
3655
3656
|
y: mod.string().optional(),
|
|
3656
3657
|
n: mod.string().optional(),
|
|
3657
|
-
d: mod.string()
|
|
3658
|
+
d: mod.string().optional()
|
|
3658
3659
|
});
|
|
3660
|
+
var JWKWithPrivateKeyValidator = JWKValidator.omit({ d: true }).extend({ d: mod.string() });
|
|
3659
3661
|
var JWERecipientHeaderValidator = mod.object({
|
|
3660
3662
|
alg: mod.string(),
|
|
3661
3663
|
iv: mod.string(),
|
|
@@ -4133,6 +4135,7 @@ var require_helpers_cjs_development = __commonJS({
|
|
|
4133
4135
|
image: mod.string().optional(),
|
|
4134
4136
|
uri: mod.string(),
|
|
4135
4137
|
needsGuardianConsent: mod.boolean().optional(),
|
|
4138
|
+
redirectUrl: mod.string().optional(),
|
|
4136
4139
|
createdAt: mod.string(),
|
|
4137
4140
|
updatedAt: mod.string(),
|
|
4138
4141
|
expiresAt: mod.string().optional()
|