@irfanshadikrishad/anilist 1.3.0-forbidden.1 → 1.3.2-forbidden.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.
@@ -321,10 +321,10 @@ function activityBy(activity) {
321
321
  }
322
322
  else if ((_c = (_b = activity === null || activity === void 0 ? void 0 : activity.media) === null || _b === void 0 ? void 0 : _b.title) === null || _c === void 0 ? void 0 : _c.userPreferred) {
323
323
  if (activity.progress) {
324
- return `[${activity.id}]\t${activity.status} ${activity.progress} of ${activity.media.title.userPreferred}`;
324
+ return `[${activity.id}]\t${activity.user.name} ${activity.status} ${activity.progress} of ${activity.media.title.userPreferred}`;
325
325
  }
326
326
  else {
327
- return `[${activity.id}]\t${activity.status} ${activity.media.title.userPreferred}`;
327
+ return `[${activity.id}]\t${activity.user.name} ${activity.status} ${activity.media.title.userPreferred}`;
328
328
  }
329
329
  }
330
330
  else if ((_d = activity === null || activity === void 0 ? void 0 : activity.user) === null || _d === void 0 ? void 0 : _d.name) {
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@irfanshadikrishad/anilist",
3
3
  "description": "Minimalist unofficial AniList CLI for Anime and Manga Enthusiasts",
4
4
  "author": "Irfan Shadik Rishad",
5
- "version": "1.3.0-forbidden.1",
5
+ "version": "1.3.2-forbidden.1",
6
6
  "main": "./bin/index.js",
7
7
  "type": "module",
8
8
  "types": "./bin/index.d.ts",
@@ -19,7 +19,7 @@
19
19
  "format:check": "prettier . --check",
20
20
  "lint": "eslint ./dist",
21
21
  "lint:fix": "eslint ./dist --fix",
22
- "all": "npm run lint && npm run lint:fix && npm run format && npm test",
22
+ "all": "npm run build && npm run lint && npm run lint:fix && npm run format && npm test",
23
23
  "test": "jest ./tests"
24
24
  },
25
25
  "keywords": [
@@ -65,7 +65,7 @@
65
65
  "prettier-plugin-organize-imports": "^4.1.0",
66
66
  "ts-jest": "^29.2.5",
67
67
  "ts-node": "^10.9.2",
68
- "typescript": "^5.7.2",
68
+ "typescript": "^5.7.3",
69
69
  "@babel/preset-env": "^7.26.0",
70
70
  "@typescript-eslint/eslint-plugin": "^8.19.1"
71
71
  },