@learncard/network-brain-client 2.3.16 → 2.3.19

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 CHANGED
@@ -1,5 +1,28 @@
1
1
  # @learncard/network-brain-client
2
2
 
3
+ ## 2.3.19
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [[`d0e2245d915c711d69e98f5a8f5c9fd7909f13ef`](https://github.com/learningeconomy/LearnCard/commit/d0e2245d915c711d69e98f5a8f5c9fd7909f13ef)]:
8
+ - @learncard/network-brain-service@3.5.13
9
+
10
+ ## 2.3.18
11
+
12
+ ### Patch Changes
13
+
14
+ - [#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
15
+
16
+ - Updated dependencies [[`b27587a70d3ddfd2d2f54d2008b7fa37fc3985a4`](https://github.com/learningeconomy/LearnCard/commit/b27587a70d3ddfd2d2f54d2008b7fa37fc3985a4)]:
17
+ - @learncard/network-brain-service@3.5.12
18
+
19
+ ## 2.3.17
20
+
21
+ ### Patch Changes
22
+
23
+ - Updated dependencies [[`4f7e691db5440ad5ffa5a200690974e500572bf0`](https://github.com/learningeconomy/LearnCard/commit/4f7e691db5440ad5ffa5a200690974e500572bf0), [`459629af8a49fc7292602352ef87e71593af526c`](https://github.com/learningeconomy/LearnCard/commit/459629af8a49fc7292602352ef87e71593af526c)]:
24
+ - @learncard/network-brain-service@3.5.11
25
+
3
26
  ## 2.3.16
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(),