powr-sdk-api 3.2.1 → 3.2.4
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/routes/feeds.js +5 -11
- package/package.json +67 -67
package/dist/routes/feeds.js
CHANGED
|
@@ -20,7 +20,7 @@ router.post('/', async (req, res) => {
|
|
|
20
20
|
mentions
|
|
21
21
|
} = req.body;
|
|
22
22
|
const projectId = req.projectId;
|
|
23
|
-
const userId = req.user.
|
|
23
|
+
const userId = req.user.powrId;
|
|
24
24
|
if (!content && (!media || media.length === 0)) {
|
|
25
25
|
return res.status(400).json({
|
|
26
26
|
success: false,
|
|
@@ -48,7 +48,7 @@ router.post('/', async (req, res) => {
|
|
|
48
48
|
_id: new ObjectId(userId)
|
|
49
49
|
}, {
|
|
50
50
|
projection: {
|
|
51
|
-
|
|
51
|
+
fullName: 1,
|
|
52
52
|
email: 1,
|
|
53
53
|
avatar: 1
|
|
54
54
|
}
|
|
@@ -109,12 +109,6 @@ router.get('/', async (req, res) => {
|
|
|
109
109
|
}
|
|
110
110
|
const db = await getDb();
|
|
111
111
|
|
|
112
|
-
// Debug: Check if posts exist
|
|
113
|
-
const debugPosts = await db.collection('feeds').find(query).toArray();
|
|
114
|
-
console.log('Debug - Found posts:', debugPosts.length);
|
|
115
|
-
console.log('Debug - Query:', query);
|
|
116
|
-
console.log('Debug - ProjectId:', projectId);
|
|
117
|
-
|
|
118
112
|
// Get posts with author info
|
|
119
113
|
const posts = await db.collection('feeds').aggregate([{
|
|
120
114
|
$match: query
|
|
@@ -228,7 +222,7 @@ router.put('/:id', async (req, res) => {
|
|
|
228
222
|
mentions
|
|
229
223
|
} = req.body;
|
|
230
224
|
const projectId = req.projectId;
|
|
231
|
-
const userId = req.user.
|
|
225
|
+
const userId = req.user.powrId;
|
|
232
226
|
const db = await getDb();
|
|
233
227
|
const post = await db.collection('feeds').findOne({
|
|
234
228
|
_id: new ObjectId(id),
|
|
@@ -274,7 +268,7 @@ router.delete('/:id', async (req, res) => {
|
|
|
274
268
|
id
|
|
275
269
|
} = req.params;
|
|
276
270
|
const projectId = req.projectId;
|
|
277
|
-
const userId = req.user.
|
|
271
|
+
const userId = req.user.powrId;
|
|
278
272
|
const db = await getDb();
|
|
279
273
|
const post = await db.collection('feeds').findOne({
|
|
280
274
|
_id: new ObjectId(id),
|
|
@@ -313,7 +307,7 @@ router.post('/:id/like', async (req, res) => {
|
|
|
313
307
|
liked
|
|
314
308
|
} = req.body;
|
|
315
309
|
const projectId = req.projectId;
|
|
316
|
-
const userId = req.user.
|
|
310
|
+
const userId = req.user.powrId;
|
|
317
311
|
const db = await getDb();
|
|
318
312
|
|
|
319
313
|
// Update like count
|
package/package.json
CHANGED
|
@@ -1,67 +1,67 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "powr-sdk-api",
|
|
3
|
-
"version": "3.2.
|
|
4
|
-
"description": "Shared API core library for PowrStack projects",
|
|
5
|
-
"main": "dist/index.js",
|
|
6
|
-
"types": "dist/index.d.ts",
|
|
7
|
-
"files": [
|
|
8
|
-
"dist",
|
|
9
|
-
"README.md"
|
|
10
|
-
],
|
|
11
|
-
"scripts": {
|
|
12
|
-
"test": "jest --passWithNoTests",
|
|
13
|
-
"lint": "eslint .",
|
|
14
|
-
"build": "babel src -d dist",
|
|
15
|
-
"prepare": "npm run build",
|
|
16
|
-
"prepublishOnly": "npm run test"
|
|
17
|
-
},
|
|
18
|
-
"keywords": [
|
|
19
|
-
"api",
|
|
20
|
-
"express",
|
|
21
|
-
"middleware",
|
|
22
|
-
"error-handling",
|
|
23
|
-
"response-formatting",
|
|
24
|
-
"logging",
|
|
25
|
-
"swagger",
|
|
26
|
-
"documentation"
|
|
27
|
-
],
|
|
28
|
-
"author": "Lawazia Tech",
|
|
29
|
-
"license": "ISC",
|
|
30
|
-
"repository": {
|
|
31
|
-
"type": "git",
|
|
32
|
-
"url": "git+https://github.com/powrstack/powr-sdk-api.git"
|
|
33
|
-
},
|
|
34
|
-
"bugs": {
|
|
35
|
-
"url": "https://github.com/powrstack/powr-sdk-api/issues"
|
|
36
|
-
},
|
|
37
|
-
"homepage": "https://github.com/powrstack/powr-sdk-api#readme",
|
|
38
|
-
"dependencies": {
|
|
39
|
-
"@aws-sdk/client-s3": "^3.787.0",
|
|
40
|
-
"@google-cloud/storage": "^7.16.0",
|
|
41
|
-
"express": "^4.18.2",
|
|
42
|
-
"jsonwebtoken": "^9.0.2",
|
|
43
|
-
"swagger-jsdoc": "^6.2.8",
|
|
44
|
-
"swagger-ui-express": "^5.0.0",
|
|
45
|
-
"winston": "^3.17.0",
|
|
46
|
-
"mongodb": "^6.3.0",
|
|
47
|
-
"multer": "^1.4.5-lts.1",
|
|
48
|
-
"bcrypt": "^5.1.1"
|
|
49
|
-
},
|
|
50
|
-
"devDependencies": {
|
|
51
|
-
"@babel/cli": "^7.23.9",
|
|
52
|
-
"@babel/core": "^7.24.0",
|
|
53
|
-
"@babel/preset-env": "^7.24.0",
|
|
54
|
-
"@types/express": "^4.17.21",
|
|
55
|
-
"@types/swagger-jsdoc": "^6.0.4",
|
|
56
|
-
"@types/swagger-ui-express": "^4.1.6",
|
|
57
|
-
"eslint": "^8.57.0",
|
|
58
|
-
"jest": "^29.7.0",
|
|
59
|
-
"typescript": "^5.3.3"
|
|
60
|
-
},
|
|
61
|
-
"peerDependencies": {
|
|
62
|
-
"express": "^4.18.2"
|
|
63
|
-
},
|
|
64
|
-
"engines": {
|
|
65
|
-
"node": ">=14.0.0"
|
|
66
|
-
}
|
|
67
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "powr-sdk-api",
|
|
3
|
+
"version": "3.2.4",
|
|
4
|
+
"description": "Shared API core library for PowrStack projects",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"types": "dist/index.d.ts",
|
|
7
|
+
"files": [
|
|
8
|
+
"dist",
|
|
9
|
+
"README.md"
|
|
10
|
+
],
|
|
11
|
+
"scripts": {
|
|
12
|
+
"test": "jest --passWithNoTests",
|
|
13
|
+
"lint": "eslint .",
|
|
14
|
+
"build": "babel src -d dist",
|
|
15
|
+
"prepare": "npm run build",
|
|
16
|
+
"prepublishOnly": "npm run test"
|
|
17
|
+
},
|
|
18
|
+
"keywords": [
|
|
19
|
+
"api",
|
|
20
|
+
"express",
|
|
21
|
+
"middleware",
|
|
22
|
+
"error-handling",
|
|
23
|
+
"response-formatting",
|
|
24
|
+
"logging",
|
|
25
|
+
"swagger",
|
|
26
|
+
"documentation"
|
|
27
|
+
],
|
|
28
|
+
"author": "Lawazia Tech",
|
|
29
|
+
"license": "ISC",
|
|
30
|
+
"repository": {
|
|
31
|
+
"type": "git",
|
|
32
|
+
"url": "git+https://github.com/powrstack/powr-sdk-api.git"
|
|
33
|
+
},
|
|
34
|
+
"bugs": {
|
|
35
|
+
"url": "https://github.com/powrstack/powr-sdk-api/issues"
|
|
36
|
+
},
|
|
37
|
+
"homepage": "https://github.com/powrstack/powr-sdk-api#readme",
|
|
38
|
+
"dependencies": {
|
|
39
|
+
"@aws-sdk/client-s3": "^3.787.0",
|
|
40
|
+
"@google-cloud/storage": "^7.16.0",
|
|
41
|
+
"express": "^4.18.2",
|
|
42
|
+
"jsonwebtoken": "^9.0.2",
|
|
43
|
+
"swagger-jsdoc": "^6.2.8",
|
|
44
|
+
"swagger-ui-express": "^5.0.0",
|
|
45
|
+
"winston": "^3.17.0",
|
|
46
|
+
"mongodb": "^6.3.0",
|
|
47
|
+
"multer": "^1.4.5-lts.1",
|
|
48
|
+
"bcrypt": "^5.1.1"
|
|
49
|
+
},
|
|
50
|
+
"devDependencies": {
|
|
51
|
+
"@babel/cli": "^7.23.9",
|
|
52
|
+
"@babel/core": "^7.24.0",
|
|
53
|
+
"@babel/preset-env": "^7.24.0",
|
|
54
|
+
"@types/express": "^4.17.21",
|
|
55
|
+
"@types/swagger-jsdoc": "^6.0.4",
|
|
56
|
+
"@types/swagger-ui-express": "^4.1.6",
|
|
57
|
+
"eslint": "^8.57.0",
|
|
58
|
+
"jest": "^29.7.0",
|
|
59
|
+
"typescript": "^5.3.3"
|
|
60
|
+
},
|
|
61
|
+
"peerDependencies": {
|
|
62
|
+
"express": "^4.18.2"
|
|
63
|
+
},
|
|
64
|
+
"engines": {
|
|
65
|
+
"node": ">=14.0.0"
|
|
66
|
+
}
|
|
67
|
+
}
|