@learncard/network-brain-client 2.4.12 → 2.4.13
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 +7 -0
- package/dist/brain-client.cjs.development.js +5 -3
- 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 +2 -2
- package/dist/brain-client.esm.js +5 -3
- package/dist/brain-client.esm.js.map +2 -2
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# @learncard/network-brain-client
|
|
2
2
|
|
|
3
|
+
## 2.4.13
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [[`a8ba030d48e75094fd64cd3da0725c3c0f468cf2`](https://github.com/learningeconomy/LearnCard/commit/a8ba030d48e75094fd64cd3da0725c3c0f468cf2)]:
|
|
8
|
+
- @learncard/network-brain-service@3.7.1
|
|
9
|
+
|
|
3
10
|
## 2.4.12
|
|
4
11
|
|
|
5
12
|
### 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() })),
|