@learncard/network-brain-client 1.1.0 → 1.1.1
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/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @learncard/network-brain-client
|
|
2
2
|
|
|
3
|
+
## 1.1.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#252](https://github.com/learningeconomy/LearnCard/pull/252) [`f6abbd4`](https://github.com/learningeconomy/LearnCard/commit/f6abbd490e02f65d56465ec5853aa31cfd2ae40c) Thanks [@Custard7](https://github.com/Custard7)! - Update to prepare for LCA Notifications Webhook
|
|
8
|
+
|
|
9
|
+
Adds LCNNotification types for notification webhook payload
|
|
10
|
+
Updates learn card core getDidAuthVp() to use learnCard.id.did() instead of 'key' did method.
|
|
11
|
+
Removes previous notification microservice functions.
|
|
12
|
+
Adds SendNotification for sending notifications to external webhook service
|
|
13
|
+
|
|
14
|
+
- Updated dependencies [[`f6abbd4`](https://github.com/learningeconomy/LearnCard/commit/f6abbd490e02f65d56465ec5853aa31cfd2ae40c)]:
|
|
15
|
+
- @learncard/network-brain-service@1.3.1
|
|
16
|
+
|
|
3
17
|
## 1.1.0
|
|
4
18
|
|
|
5
19
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@learncard/network-brain-client",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.1",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "./dist/brain-client.esm.js",
|
|
@@ -11,12 +11,12 @@
|
|
|
11
11
|
"devDependencies": {
|
|
12
12
|
"dts-bundle-generator": "^6.10.0",
|
|
13
13
|
"esbuild": "^0.16.16",
|
|
14
|
-
"@learncard/types": "5.2.
|
|
14
|
+
"@learncard/types": "5.2.4"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"@trpc/client": "^10.
|
|
18
|
-
"@trpc/server": "^10.
|
|
19
|
-
"@learncard/network-brain-service": "1.3.
|
|
17
|
+
"@trpc/client": "^10.17.0",
|
|
18
|
+
"@trpc/server": "^10.17.0",
|
|
19
|
+
"@learncard/network-brain-service": "1.3.1"
|
|
20
20
|
},
|
|
21
21
|
"scripts": {
|
|
22
22
|
"build": "node ./scripts/build.mjs && shx cp ./scripts/mixedEntypoint.js ./dist/index.js && tsc --p tsconfig.json"
|