node-easywechat 2.13.3 → 2.13.5

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.
@@ -23,6 +23,6 @@ jobs:
23
23
  - run: npm install
24
24
  - run: npm run build
25
25
  - run: npm test
26
- - run: npm publish --tag latest --provenance --access public
26
+ - run: npm publish --tag second --provenance --access public
27
27
  env:
28
28
  NODE_AUTH_TOKEN: ${{secrets.npm_token}}
package/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  # CHANGELOG
2
2
 
3
3
 
4
+ ## v2.13.5 (2026-06-22)
5
+
6
+ - Fix: update test scripts
7
+ - Fix: ts error
8
+ - Fix: update dependencies
9
+
10
+ ## v2.13.4 (2025-07-24)
11
+
12
+ - Fix: 修复workflow发布错误的标签的问题
13
+
4
14
  ## v2.13.3 (2025-07-24)
5
15
 
6
16
  - Fix: 更新依赖包,修复安全漏洞
package/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
  ## EasyWechat for Node.js
3
3
 
4
4
  ![Build 2.x](https://github.com/hpyer/node-easywechat/actions/workflows/build-2.yml/badge.svg)
5
- [![npm](https://img.shields.io/npm/v/node-easywechat.svg)](https://www.npmjs.com/package/node-easywechat) [![License](https://img.shields.io/npm/l/node-easywechat.svg)](LICENSE)
5
+ [![npm](https://img.shields.io/npm/v/node-easywechat/second.svg)](https://www.npmjs.com/package/node-easywechat) [![License](https://img.shields.io/npm/l/node-easywechat.svg)](LICENSE)
6
6
 
7
7
  **注:2.x分支针对 EasyWechat 的 5.x版本(由于4.x与5.x的结构基本一致,就不升级大版本了)。**
8
8
 
@@ -28,7 +28,7 @@ import MediaClient from '../BaseService/Media/MediaClient';
28
28
  import QrcodeClient from '../BaseService/Qrcode/QrcodeClient';
29
29
  import UrlClient from '../BaseService/Url/UrlClient';
30
30
  import { EasyWechatConfig } from '../Core/Types';
31
- import WeChat from 'node-socialite/dist/Providers/WeChat';
31
+ import { WeChat } from 'node-socialite/dist/Providers/WeChat';
32
32
  import BaseClient from '../Core/BaseClient';
33
33
  declare class Client extends BaseClient {
34
34
  }
@@ -37,7 +37,7 @@ import ExternalProductClient from './ExternalContact/ProductClient';
37
37
  import ExternalSchoolClient from './ExternalContact/SchoolClient';
38
38
  import ExternalMomentClient from './ExternalContact/MomentClient';
39
39
  import CorpGroupClient from './CorpGroup/CorpGroupClient';
40
- import WeWork from 'node-socialite/dist/Providers/WeWork';
40
+ import { WeWork } from 'node-socialite/dist/Providers/WeWork';
41
41
  import BaseClient from '../Core/BaseClient';
42
42
  declare class Client extends BaseClient {
43
43
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "node-easywechat",
3
- "version": "2.13.3",
3
+ "version": "2.13.5",
4
4
  "description": "EasyWechat SDK for Node.js (NOT OFFICIAL)",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {
@@ -26,11 +26,11 @@
26
26
  "typescript": "^4.9.5"
27
27
  },
28
28
  "dependencies": {
29
- "axios": "^1.11.0",
30
- "form-data": "^4.0.4",
31
- "node-socialite": "^1.4.3",
32
- "qs": "^6.14.0",
33
- "raw-body": "^2.5.2",
29
+ "axios": "^1.18.0",
30
+ "form-data": "^4.0.6",
31
+ "node-socialite": "^1.5.6",
32
+ "qs": "^6.15.2",
33
+ "raw-body": "^2.5.3",
34
34
  "xml2js": "^0.6.2"
35
35
  },
36
36
  "packageManager": "pnpm@10.12.4+sha512.5ea8b0deed94ed68691c9bad4c955492705c5eeb8a87ef86bc62c74a26b037b08ff9570f108b2e4dbd1dd1a9186fea925e527f141c648e85af45631074680184"