@aurispec/core-backend 1.0.82 → 1.0.84
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/common/configs/postgres.d.ts.map +1 -1
- package/dist/common/configs/postgres.js +1 -0
- package/dist/common/configs/stripe.js +1 -1
- package/dist/common/enums/NotificationEnum.d.ts +1 -0
- package/dist/common/enums/NotificationEnum.d.ts.map +1 -1
- package/dist/common/enums/NotificationEnum.js +1 -0
- package/package.json +6 -6
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"postgres.d.ts","sourceRoot":"","sources":["../../../src/common/configs/postgres.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,SAAS,CAAC;AASrC,eAAO,MAAM,UAAU,
|
|
1
|
+
{"version":3,"file":"postgres.d.ts","sourceRoot":"","sources":["../../../src/common/configs/postgres.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,SAAS,CAAC;AASrC,eAAO,MAAM,UAAU,YAYrB,CAAC;AAEH,eAAO,MAAM,cAAc,qBAI1B,CAAC"}
|
|
@@ -51,6 +51,7 @@ exports.dataSource = new typeorm_1.DataSource({
|
|
|
51
51
|
migrations: [isCompiled ? "dist/database/migrations/**/*.js" : "src/database/migrations/**/*.ts"],
|
|
52
52
|
synchronize: false,
|
|
53
53
|
logging: true,
|
|
54
|
+
ssl: { rejectUnauthorized: false }
|
|
54
55
|
});
|
|
55
56
|
const postgresLoader = async () => {
|
|
56
57
|
await exports.dataSource.initialize()
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export declare enum NotificationType {
|
|
2
2
|
NEW_CONNECTION_REQUEST = "NEW_CONNECTION_REQUEST",
|
|
3
3
|
NEW_CHAT_MESSAGE = "NEW_CHAT_MESSAGE",
|
|
4
|
+
OTHER_NOTIFICATION = "OTHER_NOTIFICATION",
|
|
4
5
|
NEW_POST_LIKE = "NEW_POST_LIKE",
|
|
5
6
|
NEW_USER_MENTION = "NEW_USER_MENTION",
|
|
6
7
|
NEW_POST_COMMENT_LIKE = "NEW_POST_COMMENT_LIKE",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"NotificationEnum.d.ts","sourceRoot":"","sources":["../../../src/common/enums/NotificationEnum.ts"],"names":[],"mappings":"AAAA,oBAAY,gBAAgB;IACxB,sBAAsB,2BAA2B;IACjD,gBAAgB,qBAAqB;IACrC,aAAa,kBAAkB;IAC/B,gBAAgB,qBAAqB;IACrC,qBAAqB,0BAA0B;IAC/C,gBAAgB,qBAAqB;IACrC,mBAAmB,wBAAwB;IAC3C,wBAAwB,6BAA6B;IACrD,gBAAgB,qBAAqB;IACrC,yBAAyB,8BAA8B;IACvD,sBAAsB,2BAA2B;IACjD,4BAA4B,iCAAiC;IAC7D,8BAA8B,mCAAmC;CACpE"}
|
|
1
|
+
{"version":3,"file":"NotificationEnum.d.ts","sourceRoot":"","sources":["../../../src/common/enums/NotificationEnum.ts"],"names":[],"mappings":"AAAA,oBAAY,gBAAgB;IACxB,sBAAsB,2BAA2B;IACjD,gBAAgB,qBAAqB;IACrC,kBAAkB,uBAAuB;IACzC,aAAa,kBAAkB;IAC/B,gBAAgB,qBAAqB;IACrC,qBAAqB,0BAA0B;IAC/C,gBAAgB,qBAAqB;IACrC,mBAAmB,wBAAwB;IAC3C,wBAAwB,6BAA6B;IACrD,gBAAgB,qBAAqB;IACrC,yBAAyB,8BAA8B;IACvD,sBAAsB,2BAA2B;IACjD,4BAA4B,iCAAiC;IAC7D,8BAA8B,mCAAmC;CACpE"}
|
|
@@ -5,6 +5,7 @@ var NotificationType;
|
|
|
5
5
|
(function (NotificationType) {
|
|
6
6
|
NotificationType["NEW_CONNECTION_REQUEST"] = "NEW_CONNECTION_REQUEST";
|
|
7
7
|
NotificationType["NEW_CHAT_MESSAGE"] = "NEW_CHAT_MESSAGE";
|
|
8
|
+
NotificationType["OTHER_NOTIFICATION"] = "OTHER_NOTIFICATION";
|
|
8
9
|
NotificationType["NEW_POST_LIKE"] = "NEW_POST_LIKE";
|
|
9
10
|
NotificationType["NEW_USER_MENTION"] = "NEW_USER_MENTION";
|
|
10
11
|
NotificationType["NEW_POST_COMMENT_LIKE"] = "NEW_POST_COMMENT_LIKE";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aurispec/core-backend",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.84",
|
|
4
4
|
"description": "Auri spectrum's backend core",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -24,26 +24,26 @@
|
|
|
24
24
|
"author": "",
|
|
25
25
|
"license": "ISC",
|
|
26
26
|
"dependencies": {
|
|
27
|
+
"@sendgrid/mail": "^8.1.6",
|
|
28
|
+
"axios": "^1.9.0",
|
|
27
29
|
"bcryptjs": "^3.0.2",
|
|
28
30
|
"bullmq": "^5.53.0",
|
|
29
|
-
"axios": "^1.9.0",
|
|
30
31
|
"class-transformer": "^0.5.1",
|
|
31
32
|
"class-validator": "^0.14.2",
|
|
32
33
|
"cloudinary": "^2.7.0",
|
|
33
34
|
"cross-fetch": "^4.1.0",
|
|
34
35
|
"dotenv": "^16.4.7",
|
|
35
|
-
"express-handlebars": "^8.0.3",
|
|
36
36
|
"express": "^4.21.2",
|
|
37
|
+
"express-handlebars": "^8.0.3",
|
|
37
38
|
"heic-convert": "^2.1.0",
|
|
38
39
|
"ioredis": "^5.6.1",
|
|
39
40
|
"jsonwebtoken": "^9.0.2",
|
|
40
41
|
"moment": "^2.30.1",
|
|
41
42
|
"multer": "^2.0.2",
|
|
42
43
|
"node-fetch": "^3.3.2",
|
|
43
|
-
"nodemailer": "^
|
|
44
|
+
"nodemailer": "^8.0.10",
|
|
44
45
|
"openai": "^4.95.0",
|
|
45
46
|
"pg": "^8.16.0",
|
|
46
|
-
"@sendgrid/mail": "^8.1.6",
|
|
47
47
|
"raw-body": "^3.0.0",
|
|
48
48
|
"streamifier": "^0.1.1",
|
|
49
49
|
"stripe": "^20.1.0",
|
|
@@ -61,8 +61,8 @@
|
|
|
61
61
|
"@types/module-alias": "^2.0.4",
|
|
62
62
|
"@types/node": "^22.13.10",
|
|
63
63
|
"@types/nodemailer": "^6.4.17",
|
|
64
|
-
"@types/streamifier": "^0.1.2",
|
|
65
64
|
"@types/socket.io": "^3.0.2",
|
|
65
|
+
"@types/streamifier": "^0.1.2",
|
|
66
66
|
"barrelsby": "^2.8.1",
|
|
67
67
|
"nodemon": "^3.1.9",
|
|
68
68
|
"ts-node": "^10.9.2",
|