@asyncify-hq/node 0.2.0 → 0.2.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/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/package.json +14 -4
package/dist/index.d.cts
CHANGED
|
@@ -157,7 +157,7 @@ declare class AsyncifyClient {
|
|
|
157
157
|
}>;
|
|
158
158
|
/** Drop a linked identity — future messages fall back to a channel-local one. */
|
|
159
159
|
unlink: (subscriberId: string, identity: {
|
|
160
|
-
channel: "telegram" | "email";
|
|
160
|
+
channel: "telegram" | "email" | "slack";
|
|
161
161
|
externalKey: string;
|
|
162
162
|
}) => Promise<{
|
|
163
163
|
deleted: boolean;
|
package/dist/index.d.ts
CHANGED
|
@@ -157,7 +157,7 @@ declare class AsyncifyClient {
|
|
|
157
157
|
}>;
|
|
158
158
|
/** Drop a linked identity — future messages fall back to a channel-local one. */
|
|
159
159
|
unlink: (subscriberId: string, identity: {
|
|
160
|
-
channel: "telegram" | "email";
|
|
160
|
+
channel: "telegram" | "email" | "slack";
|
|
161
161
|
externalKey: string;
|
|
162
162
|
}) => Promise<{
|
|
163
163
|
deleted: boolean;
|
package/package.json
CHANGED
|
@@ -1,12 +1,20 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@asyncify-hq/node",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"description": "Server-side SDK for Asyncify — multi-channel notification infrastructure (email, SMS, push, in-app)",
|
|
5
|
-
"keywords": [
|
|
5
|
+
"keywords": [
|
|
6
|
+
"notifications",
|
|
7
|
+
"email",
|
|
8
|
+
"sms",
|
|
9
|
+
"push",
|
|
10
|
+
"in-app",
|
|
11
|
+
"asyncify",
|
|
12
|
+
"notification-infrastructure"
|
|
13
|
+
],
|
|
6
14
|
"homepage": "https://asyncify.org",
|
|
7
15
|
"repository": {
|
|
8
16
|
"type": "git",
|
|
9
|
-
"url": "https://github.com/shubam14dec/Scalable-Notification-System.git",
|
|
17
|
+
"url": "git+https://github.com/shubam14dec/Scalable-Notification-System.git",
|
|
10
18
|
"directory": "packages/sdk-node"
|
|
11
19
|
},
|
|
12
20
|
"license": "MIT",
|
|
@@ -22,7 +30,9 @@
|
|
|
22
30
|
"require": "./dist/index.cjs"
|
|
23
31
|
}
|
|
24
32
|
},
|
|
25
|
-
"files": [
|
|
33
|
+
"files": [
|
|
34
|
+
"dist"
|
|
35
|
+
],
|
|
26
36
|
"sideEffects": false,
|
|
27
37
|
"publishConfig": {
|
|
28
38
|
"access": "public"
|