@learncard/network-brain-client 1.0.4 → 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 CHANGED
@@ -1,5 +1,42 @@
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
+
17
+ ## 1.1.0
18
+
19
+ ### Minor Changes
20
+
21
+ - [#232](https://github.com/learningeconomy/LearnCard/pull/232) [`3606fec`](https://github.com/learningeconomy/LearnCard/commit/3606fec4c226828e51a3df6eb780e420935ebc94) Thanks [@wthomasmiii](https://github.com/wthomasmiii)! - Addition of push notification configs for hitting an http webhook
22
+
23
+ ## What is being done
24
+
25
+ On the backend learn-card-network we have done the following
26
+
27
+ 1. Added 2 new endpoints to the lambda service, one for registering, and one for unregistering
28
+ 2. Added both functions to the learncard Network plugin, hitting the tRPC client
29
+ 3. Triggerable push notifications are included with functions now, initalizing a class, then using its subfunctionality.
30
+
31
+ ## Why this was done
32
+
33
+ Was made to include hitting webhooks, that process notification sending.
34
+
35
+ ### Patch Changes
36
+
37
+ - Updated dependencies [[`3606fec`](https://github.com/learningeconomy/LearnCard/commit/3606fec4c226828e51a3df6eb780e420935ebc94)]:
38
+ - @learncard/network-brain-service@1.3.0
39
+
3
40
  ## 1.0.4
4
41
 
5
42
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@learncard/network-brain-client",
3
- "version": "1.0.4",
3
+ "version": "1.1.1",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "module": "./dist/brain-client.esm.js",
@@ -9,14 +9,14 @@
9
9
  "author": "Learning Economy Foundation (www.learningeconomy.io)",
10
10
  "license": "MIT",
11
11
  "devDependencies": {
12
- "@learncard/types": "5.2.3",
13
12
  "dts-bundle-generator": "^6.10.0",
14
- "esbuild": "^0.16.16"
13
+ "esbuild": "^0.16.16",
14
+ "@learncard/types": "5.2.4"
15
15
  },
16
16
  "dependencies": {
17
- "@learncard/network-brain-service": "1.2.2",
18
- "@trpc/client": "^10.9.0",
19
- "@trpc/server": "^10.9.0"
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"