@quatrain/messaging 1.0.11 → 1.0.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/README.md +4 -0
- package/package.json +7 -2
package/README.md
CHANGED
|
@@ -23,6 +23,10 @@ npm install @quatrain/messaging-firebase
|
|
|
23
23
|
|
|
24
24
|
Just like other Quatrain abstractions, you register adapters for different messaging channels (e.g., 'email', 'push', 'sms') to the central registry.
|
|
25
25
|
|
|
26
|
+
## Documentation
|
|
27
|
+
|
|
28
|
+
For concrete examples and usage guides, please refer to the [How-To Guide](HOWTO.md).
|
|
29
|
+
|
|
26
30
|
## License
|
|
27
31
|
|
|
28
32
|
AGPL-3.0-only
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quatrain/messaging",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.13",
|
|
4
4
|
"license": "AGPL-3.0-only",
|
|
5
5
|
"description": "Messaging adapters commons",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -12,9 +12,14 @@
|
|
|
12
12
|
"dist/",
|
|
13
13
|
"README.md"
|
|
14
14
|
],
|
|
15
|
+
"repository": {
|
|
16
|
+
"type": "git",
|
|
17
|
+
"url": "git+https://github.com/Quatrain/Core.git",
|
|
18
|
+
"directory": "packages/messaging"
|
|
19
|
+
},
|
|
15
20
|
"author": "Quatrain Développement SAS <developers@quatrain.com>",
|
|
16
21
|
"dependencies": {
|
|
17
|
-
"@quatrain/core": "^1.1.
|
|
22
|
+
"@quatrain/core": "^1.1.51",
|
|
18
23
|
"mustache": "^4.2.0"
|
|
19
24
|
},
|
|
20
25
|
"devDependencies": {
|