@learncard/network-brain-client 2.3.17 → 2.3.20
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 +23 -0
- package/dist/brain-client.cjs.development.js +12 -0
- 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 +12 -0
- package/dist/brain-client.esm.js.map +2 -2
- package/package.json +4 -4
- package/tsconfig.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,28 @@
|
|
|
1
1
|
# @learncard/network-brain-client
|
|
2
2
|
|
|
3
|
+
## 2.3.20
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies []:
|
|
8
|
+
- @learncard/network-brain-service@3.5.14
|
|
9
|
+
|
|
10
|
+
## 2.3.19
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies [[`d0e2245d915c711d69e98f5a8f5c9fd7909f13ef`](https://github.com/learningeconomy/LearnCard/commit/d0e2245d915c711d69e98f5a8f5c9fd7909f13ef)]:
|
|
15
|
+
- @learncard/network-brain-service@3.5.13
|
|
16
|
+
|
|
17
|
+
## 2.3.18
|
|
18
|
+
|
|
19
|
+
### Patch Changes
|
|
20
|
+
|
|
21
|
+
- [#765](https://github.com/learningeconomy/LearnCard/pull/765) [`41a24971a8e9a916736c82e44b5b41f1da1f1a67`](https://github.com/learningeconomy/LearnCard/commit/41a24971a8e9a916736c82e44b5b41f1da1f1a67) Thanks [@TaylorBeeston](https://github.com/TaylorBeeston)! - Allow using bundler moduleResolution
|
|
22
|
+
|
|
23
|
+
- Updated dependencies [[`b27587a70d3ddfd2d2f54d2008b7fa37fc3985a4`](https://github.com/learningeconomy/LearnCard/commit/b27587a70d3ddfd2d2f54d2008b7fa37fc3985a4)]:
|
|
24
|
+
- @learncard/network-brain-service@3.5.12
|
|
25
|
+
|
|
3
26
|
## 2.3.17
|
|
4
27
|
|
|
5
28
|
### Patch Changes
|
|
@@ -100,6 +100,7 @@ var require_helpers_cjs_development = __commonJS({
|
|
|
100
100
|
BoostPermissionsValidator: () => BoostPermissionsValidator,
|
|
101
101
|
BoostQueryValidator: () => BoostQueryValidator,
|
|
102
102
|
BoostRecipientValidator: () => BoostRecipientValidator,
|
|
103
|
+
BoostRecipientWithChildrenValidator: () => BoostRecipientWithChildrenValidator,
|
|
103
104
|
BoostValidator: () => BoostValidator,
|
|
104
105
|
ClaimHookQueryValidator: () => ClaimHookQueryValidator,
|
|
105
106
|
ClaimHookTypeValidator: () => ClaimHookTypeValidator,
|
|
@@ -175,6 +176,7 @@ var require_helpers_cjs_development = __commonJS({
|
|
|
175
176
|
LCNSigningAuthorityForUserValidator: () => LCNSigningAuthorityForUserValidator,
|
|
176
177
|
LCNSigningAuthorityValidator: () => LCNSigningAuthorityValidator,
|
|
177
178
|
PaginatedBoostRecipientsValidator: () => PaginatedBoostRecipientsValidator,
|
|
179
|
+
PaginatedBoostRecipientsWithChildrenValidator: () => PaginatedBoostRecipientsWithChildrenValidator,
|
|
178
180
|
PaginatedBoostsValidator: () => PaginatedBoostsValidator,
|
|
179
181
|
PaginatedClaimHooksValidator: () => PaginatedClaimHooksValidator,
|
|
180
182
|
PaginatedConsentFlowContractsValidator: () => PaginatedConsentFlowContractsValidator,
|
|
@@ -4862,6 +4864,16 @@ var require_helpers_cjs_development = __commonJS({
|
|
|
4862
4864
|
var PaginatedBoostRecipientsValidator = PaginationResponseValidator.extend({
|
|
4863
4865
|
records: BoostRecipientValidator.array()
|
|
4864
4866
|
});
|
|
4867
|
+
var BoostRecipientWithChildrenValidator = z.object({
|
|
4868
|
+
to: LCNProfileValidator,
|
|
4869
|
+
from: z.string(),
|
|
4870
|
+
received: z.string().optional(),
|
|
4871
|
+
boostUris: z.array(z.string()),
|
|
4872
|
+
credentialUris: z.array(z.string()).optional()
|
|
4873
|
+
});
|
|
4874
|
+
var PaginatedBoostRecipientsWithChildrenValidator = PaginationResponseValidator.extend({
|
|
4875
|
+
records: BoostRecipientWithChildrenValidator.array()
|
|
4876
|
+
});
|
|
4865
4877
|
var LCNBoostClaimLinkSigningAuthorityValidator = z.object({
|
|
4866
4878
|
endpoint: z.string(),
|
|
4867
4879
|
name: z.string(),
|