@midwayjs/axios 2.12.9 → 2.13.3

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
@@ -3,6 +3,41 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [2.13.3](https://github.com/midwayjs/midway/compare/v2.13.2...v2.13.3) (2021-09-28)
7
+
8
+ **Note:** Version bump only for package @midwayjs/axios
9
+
10
+
11
+
12
+
13
+
14
+ ## [2.13.2](https://github.com/midwayjs/midway/compare/v2.13.1...v2.13.2) (2021-09-09)
15
+
16
+ **Note:** Version bump only for package @midwayjs/axios
17
+
18
+
19
+
20
+
21
+
22
+ ## [2.13.1](https://github.com/midwayjs/midway/compare/v2.13.0...v2.13.1) (2021-09-08)
23
+
24
+ **Note:** Version bump only for package @midwayjs/axios
25
+
26
+
27
+
28
+
29
+
30
+ # [2.13.0](https://github.com/midwayjs/midway/compare/v2.12.9...v2.13.0) (2021-09-07)
31
+
32
+
33
+ ### Features
34
+
35
+ * add redis component ([#1270](https://github.com/midwayjs/midway/issues/1270)) ([cea81a8](https://github.com/midwayjs/midway/commit/cea81a8a1a775be90863b40616f8b86d0df6ec06))
36
+
37
+
38
+
39
+
40
+
6
41
  ## [2.12.9](https://github.com/midwayjs/midway/compare/v2.12.8...v2.12.9) (2021-09-01)
7
42
 
8
43
  **Note:** Version bump only for package @midwayjs/axios
@@ -16,9 +16,9 @@ let AutoConfiguration = class AutoConfiguration {
16
16
  }
17
17
  };
18
18
  AutoConfiguration = __decorate([
19
- decorator_1.Configuration({
19
+ (0, decorator_1.Configuration)({
20
20
  namespace: 'axios',
21
- importConfigs: [path_1.join(__dirname, './config.default')],
21
+ importConfigs: [(0, path_1.join)(__dirname, './config.default')],
22
22
  })
23
23
  ], AutoConfiguration);
24
24
  exports.AutoConfiguration = AutoConfiguration;
@@ -77,25 +77,25 @@ let HttpService = class HttpService {
77
77
  }
78
78
  };
79
79
  __decorate([
80
- decorator_1.Inject(),
80
+ (0, decorator_1.Inject)(),
81
81
  __metadata("design:type", Object)
82
82
  ], HttpService.prototype, "ctx", void 0);
83
83
  __decorate([
84
- decorator_1.App(),
84
+ (0, decorator_1.App)(),
85
85
  __metadata("design:type", Object)
86
86
  ], HttpService.prototype, "app", void 0);
87
87
  __decorate([
88
- decorator_1.Config('axios'),
88
+ (0, decorator_1.Config)('axios'),
89
89
  __metadata("design:type", Object)
90
90
  ], HttpService.prototype, "httpConfig", void 0);
91
91
  __decorate([
92
- decorator_1.Init(),
92
+ (0, decorator_1.Init)(),
93
93
  __metadata("design:type", Function),
94
94
  __metadata("design:paramtypes", []),
95
95
  __metadata("design:returntype", Promise)
96
96
  ], HttpService.prototype, "init", null);
97
97
  HttpService = __decorate([
98
- decorator_1.Provide()
98
+ (0, decorator_1.Provide)()
99
99
  ], HttpService);
100
100
  exports.HttpService = HttpService;
101
101
  //# sourceMappingURL=serviceManager.js.map
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@midwayjs/axios",
3
3
  "description": "midway http client with axios",
4
- "version": "2.12.9",
4
+ "version": "2.13.3",
5
5
  "main": "dist/index",
6
6
  "typings": "dist/index.d.ts",
7
7
  "files": [
@@ -9,9 +9,9 @@
9
9
  "dist/**/*.d.ts"
10
10
  ],
11
11
  "devDependencies": {
12
- "@midwayjs/core": "^2.12.9",
13
- "@midwayjs/decorator": "^2.12.9",
14
- "@midwayjs/mock": "^2.12.9"
12
+ "@midwayjs/core": "^2.13.3",
13
+ "@midwayjs/decorator": "^2.13.2",
14
+ "@midwayjs/mock": "^2.13.3"
15
15
  },
16
16
  "dependencies": {
17
17
  "axios": "^0.21.1"
@@ -33,5 +33,5 @@
33
33
  "type": "git",
34
34
  "url": "https://github.com/midwayjs/midway.git"
35
35
  },
36
- "gitHead": "f43ea420fd98164a5e06c3fb3f31588203a9897e"
36
+ "gitHead": "30f63af0d6560421b36f31064cb20b13a53b5afb"
37
37
  }