node-easywechat 3.5.1 → 3.5.2

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/CHANGELOG.md CHANGED
@@ -1,6 +1,10 @@
1
1
  # CHANGELOG
2
2
 
3
3
 
4
+ ## v3.5.2 (2023-11-11)
5
+
6
+ - Fix: 更新依赖包
7
+
4
8
  ## v3.5.1 (2023-09-04)
5
9
 
6
10
  - Fix: 调整公众号、小程序access_token默认缓存名称的配置方式
@@ -86,7 +86,7 @@ declare class HttpClientResponse implements HttpClientResponseInterface {
86
86
  getHeaders(throwError?: boolean): Record<string, any>;
87
87
  getContent(throwError?: boolean): any;
88
88
  cancel(): void;
89
- getInfo(type?: string): import("axios").AxiosRequestConfig<any>;
89
+ getInfo(type?: string): import("axios").InternalAxiosRequestConfig<any>;
90
90
  offsetExists(key: any): Promise<boolean>;
91
91
  offsetGet(key: any): Promise<any>;
92
92
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "node-easywechat",
3
- "version": "3.5.1",
3
+ "version": "3.5.2",
4
4
  "description": "EasyWechat SDK for Node.js (NOT OFFICIAL)",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {
@@ -29,13 +29,13 @@
29
29
  "typescript": "^4.6.3"
30
30
  },
31
31
  "dependencies": {
32
- "axios": "^0.26.1",
33
- "axios-retry": "^3.3.1",
32
+ "axios": "^1.6.1",
33
+ "axios-retry": "^3.8.1",
34
34
  "form-data": "^4.0.0",
35
35
  "merge": "^2.1.1",
36
- "node-socialite": "^1.3.2",
37
- "qs": "^6.10.3",
38
- "raw-body": "^2.5.1",
39
- "xml2js": "^0.5.0"
36
+ "node-socialite": "^1.4.1",
37
+ "qs": "^6.11.2",
38
+ "raw-body": "^2.5.2",
39
+ "xml2js": "^0.6.2"
40
40
  }
41
41
  }