@learncard/network-brain-client 2.4.12 → 2.4.14

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,19 @@
1
1
  # @learncard/network-brain-client
2
2
 
3
+ ## 2.4.14
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [[`3c10bbf4677e783fb8080f5aea1370eb7459f088`](https://github.com/learningeconomy/LearnCard/commit/3c10bbf4677e783fb8080f5aea1370eb7459f088)]:
8
+ - @learncard/network-brain-service@3.7.2
9
+
10
+ ## 2.4.13
11
+
12
+ ### Patch Changes
13
+
14
+ - Updated dependencies [[`a8ba030d48e75094fd64cd3da0725c3c0f468cf2`](https://github.com/learningeconomy/LearnCard/commit/a8ba030d48e75094fd64cd3da0725c3c0f468cf2)]:
15
+ - @learncard/network-brain-service@3.7.1
16
+
3
17
  ## 2.4.12
4
18
 
5
19
  ### Patch Changes
@@ -4829,7 +4829,8 @@ var require_helpers_cjs_development = __commonJS({
4829
4829
  to: z.string(),
4830
4830
  from: z.string(),
4831
4831
  sent: z.string().datetime(),
4832
- received: z.string().datetime().optional()
4832
+ received: z.string().datetime().optional(),
4833
+ metadata: z.record(z.unknown()).optional()
4833
4834
  });
4834
4835
  var BoostPermissionsValidator = z.object({
4835
4836
  role: z.string(),
@@ -5198,8 +5199,9 @@ var require_helpers_cjs_development = __commonJS({
5198
5199
  vcUris: z.array(z.string()).optional(),
5199
5200
  vpUris: z.array(z.string()).optional(),
5200
5201
  transaction: ConsentFlowTransactionValidator.optional(),
5201
- inbox: LCNNotificationInboxValidator.optional()
5202
- });
5202
+ inbox: LCNNotificationInboxValidator.optional(),
5203
+ metadata: z.record(z.unknown()).optional()
5204
+ }).passthrough();
5203
5205
  var LCNNotificationValidator = z.object({
5204
5206
  type: LCNNotificationTypeEnumValidator,
5205
5207
  to: LCNProfileValidator.partial().and(z.object({ did: z.string() })),