@amohamud23/notihub 1.1.68 → 1.1.69
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 +7 -7
- package/dist/index.d.cts +3 -0
- package/dist/index.d.ts +3 -0
- package/package.json +44 -44
package/README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
# NotiHubPackage
|
|
2
|
-
|
|
3
|
-
### How to publish package
|
|
4
|
-
|
|
5
|
-
1. Increment version
|
|
6
|
-
|
|
7
|
-
2. Run `npm publish`
|
|
1
|
+
# NotiHubPackage
|
|
2
|
+
|
|
3
|
+
### How to publish package
|
|
4
|
+
|
|
5
|
+
1. Increment version
|
|
6
|
+
|
|
7
|
+
2. Run `npm publish`
|
package/dist/index.d.cts
CHANGED
|
@@ -120,6 +120,7 @@ type INotiHubUser = {
|
|
|
120
120
|
subscriptions: string[];
|
|
121
121
|
events: number;
|
|
122
122
|
isSignedIn: boolean;
|
|
123
|
+
snsEndpointArn?: string;
|
|
123
124
|
createdAt: string;
|
|
124
125
|
updatedAt: string;
|
|
125
126
|
};
|
|
@@ -149,6 +150,7 @@ type INotiType = {
|
|
|
149
150
|
type: string;
|
|
150
151
|
customerId: string;
|
|
151
152
|
description?: string;
|
|
153
|
+
snsTopicArn?: string;
|
|
152
154
|
createdAt: string;
|
|
153
155
|
updatedAt: string;
|
|
154
156
|
};
|
|
@@ -175,6 +177,7 @@ type IUserSubscribeNotifier = {
|
|
|
175
177
|
customerId: string;
|
|
176
178
|
notiTypeId: string;
|
|
177
179
|
subscriptionId: string;
|
|
180
|
+
snsSubscriptionArn: string;
|
|
178
181
|
createdAt: string;
|
|
179
182
|
updatedAt: string;
|
|
180
183
|
};
|
package/dist/index.d.ts
CHANGED
|
@@ -120,6 +120,7 @@ type INotiHubUser = {
|
|
|
120
120
|
subscriptions: string[];
|
|
121
121
|
events: number;
|
|
122
122
|
isSignedIn: boolean;
|
|
123
|
+
snsEndpointArn?: string;
|
|
123
124
|
createdAt: string;
|
|
124
125
|
updatedAt: string;
|
|
125
126
|
};
|
|
@@ -149,6 +150,7 @@ type INotiType = {
|
|
|
149
150
|
type: string;
|
|
150
151
|
customerId: string;
|
|
151
152
|
description?: string;
|
|
153
|
+
snsTopicArn?: string;
|
|
152
154
|
createdAt: string;
|
|
153
155
|
updatedAt: string;
|
|
154
156
|
};
|
|
@@ -175,6 +177,7 @@ type IUserSubscribeNotifier = {
|
|
|
175
177
|
customerId: string;
|
|
176
178
|
notiTypeId: string;
|
|
177
179
|
subscriptionId: string;
|
|
180
|
+
snsSubscriptionArn: string;
|
|
178
181
|
createdAt: string;
|
|
179
182
|
updatedAt: string;
|
|
180
183
|
};
|
package/package.json
CHANGED
|
@@ -1,44 +1,44 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@amohamud23/notihub",
|
|
3
|
-
"version": "1.1.
|
|
4
|
-
"description": "Notihub Package",
|
|
5
|
-
"main": "./dist/index.cjs",
|
|
6
|
-
"types": "./dist/index.d.cts",
|
|
7
|
-
"type": "module",
|
|
8
|
-
"scripts": {
|
|
9
|
-
"build": "tsup",
|
|
10
|
-
"test": "jest"
|
|
11
|
-
},
|
|
12
|
-
"files": [
|
|
13
|
-
"dist"
|
|
14
|
-
],
|
|
15
|
-
"keywords": [
|
|
16
|
-
"npm",
|
|
17
|
-
"package",
|
|
18
|
-
"util",
|
|
19
|
-
"types"
|
|
20
|
-
],
|
|
21
|
-
"author": "Abdi Mohamud",
|
|
22
|
-
"license": "ISC",
|
|
23
|
-
"devDependencies": {
|
|
24
|
-
"@types/express": "^5.0.3",
|
|
25
|
-
"@types/jest": "^29.5.14",
|
|
26
|
-
"@types/node": "^22.8.4",
|
|
27
|
-
"express": "^5.1.0",
|
|
28
|
-
"jest": "^29.7.0",
|
|
29
|
-
"pino-pretty": "^13.1.3",
|
|
30
|
-
"ts-jest": "^29.3.4",
|
|
31
|
-
"tsup": "^8.5.1",
|
|
32
|
-
"typescript": "^5.8.3"
|
|
33
|
-
},
|
|
34
|
-
"dependencies": {
|
|
35
|
-
"@aws-sdk/client-dynamodb": "^3.821.0",
|
|
36
|
-
"@aws-sdk/client-ssm": "^3.939.0",
|
|
37
|
-
"@aws-sdk/lib-dynamodb": "^3.821.0",
|
|
38
|
-
"aws-sdk-client-mock": "^4.1.0",
|
|
39
|
-
"date-fns": "^4.1.0",
|
|
40
|
-
"pino": "^10.1.0",
|
|
41
|
-
"ts-node": "^10.9.2",
|
|
42
|
-
"uuid": "^11.0.2"
|
|
43
|
-
}
|
|
44
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@amohamud23/notihub",
|
|
3
|
+
"version": "1.1.69",
|
|
4
|
+
"description": "Notihub Package",
|
|
5
|
+
"main": "./dist/index.cjs",
|
|
6
|
+
"types": "./dist/index.d.cts",
|
|
7
|
+
"type": "module",
|
|
8
|
+
"scripts": {
|
|
9
|
+
"build": "tsup",
|
|
10
|
+
"test": "jest"
|
|
11
|
+
},
|
|
12
|
+
"files": [
|
|
13
|
+
"dist"
|
|
14
|
+
],
|
|
15
|
+
"keywords": [
|
|
16
|
+
"npm",
|
|
17
|
+
"package",
|
|
18
|
+
"util",
|
|
19
|
+
"types"
|
|
20
|
+
],
|
|
21
|
+
"author": "Abdi Mohamud",
|
|
22
|
+
"license": "ISC",
|
|
23
|
+
"devDependencies": {
|
|
24
|
+
"@types/express": "^5.0.3",
|
|
25
|
+
"@types/jest": "^29.5.14",
|
|
26
|
+
"@types/node": "^22.8.4",
|
|
27
|
+
"express": "^5.1.0",
|
|
28
|
+
"jest": "^29.7.0",
|
|
29
|
+
"pino-pretty": "^13.1.3",
|
|
30
|
+
"ts-jest": "^29.3.4",
|
|
31
|
+
"tsup": "^8.5.1",
|
|
32
|
+
"typescript": "^5.8.3"
|
|
33
|
+
},
|
|
34
|
+
"dependencies": {
|
|
35
|
+
"@aws-sdk/client-dynamodb": "^3.821.0",
|
|
36
|
+
"@aws-sdk/client-ssm": "^3.939.0",
|
|
37
|
+
"@aws-sdk/lib-dynamodb": "^3.821.0",
|
|
38
|
+
"aws-sdk-client-mock": "^4.1.0",
|
|
39
|
+
"date-fns": "^4.1.0",
|
|
40
|
+
"pino": "^10.1.0",
|
|
41
|
+
"ts-node": "^10.9.2",
|
|
42
|
+
"uuid": "^11.0.2"
|
|
43
|
+
}
|
|
44
|
+
}
|