@learncard/network-brain-client 1.0.3 → 1.1.0

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,37 @@
1
1
  # @learncard/network-brain-client
2
2
 
3
+ ## 1.1.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#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
8
+
9
+ ## What is being done
10
+
11
+ On the backend learn-card-network we have done the following
12
+
13
+ 1. Added 2 new endpoints to the lambda service, one for registering, and one for unregistering
14
+ 2. Added both functions to the learncard Network plugin, hitting the tRPC client
15
+ 3. Triggerable push notifications are included with functions now, initalizing a class, then using its subfunctionality.
16
+
17
+ ## Why this was done
18
+
19
+ Was made to include hitting webhooks, that process notification sending.
20
+
21
+ ### Patch Changes
22
+
23
+ - Updated dependencies [[`3606fec`](https://github.com/learningeconomy/LearnCard/commit/3606fec4c226828e51a3df6eb780e420935ebc94)]:
24
+ - @learncard/network-brain-service@1.3.0
25
+
26
+ ## 1.0.4
27
+
28
+ ### Patch Changes
29
+
30
+ - [#249](https://github.com/learningeconomy/LearnCard/pull/249) [`6a1a143`](https://github.com/learningeconomy/LearnCard/commit/6a1a1431a3bfdec261e1c9386a774cadbca6a5a1) Thanks [@goblincore](https://github.com/goblincore)! - Republish
31
+
32
+ - Updated dependencies [[`6a1a143`](https://github.com/learningeconomy/LearnCard/commit/6a1a1431a3bfdec261e1c9386a774cadbca6a5a1)]:
33
+ - @learncard/network-brain-service@1.2.2
34
+
3
35
  ## 1.0.3
4
36
 
5
37
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@learncard/network-brain-client",
3
- "version": "1.0.3",
3
+ "version": "1.1.0",
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.2",
13
12
  "dts-bundle-generator": "^6.10.0",
14
- "esbuild": "^0.16.16"
13
+ "esbuild": "^0.16.16",
14
+ "@learncard/types": "5.2.3"
15
15
  },
16
16
  "dependencies": {
17
- "@learncard/network-brain-service": "1.2.1",
18
17
  "@trpc/client": "^10.9.0",
19
- "@trpc/server": "^10.9.0"
18
+ "@trpc/server": "^10.9.0",
19
+ "@learncard/network-brain-service": "1.3.0"
20
20
  },
21
21
  "scripts": {
22
22
  "build": "node ./scripts/build.mjs && shx cp ./scripts/mixedEntypoint.js ./dist/index.js && tsc --p tsconfig.json"