@midwayjs/faas 2.13.2 → 2.14.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
@@ -3,6 +3,44 @@
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.14.2](https://github.com/midwayjs/midway/compare/v2.14.1...v2.14.2) (2021-12-28)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * generate middleware typings ([#1442](https://github.com/midwayjs/midway/issues/1442)) ([1b2f99b](https://github.com/midwayjs/midway/commit/1b2f99b0fcfa6d87fa216ac9277d9f1240ef26a2))
12
+
13
+
14
+
15
+
16
+
17
+ # [2.14.0](https://github.com/midwayjs/midway/compare/v2.13.5...v2.14.0) (2021-12-06)
18
+
19
+ **Note:** Version bump only for package @midwayjs/faas
20
+
21
+
22
+
23
+
24
+
25
+ ## [2.13.4](https://github.com/midwayjs/midway/compare/v2.13.3...v2.13.4) (2021-10-21)
26
+
27
+
28
+ ### Bug Fixes
29
+
30
+ * static prefix ([#1321](https://github.com/midwayjs/midway/issues/1321)) ([e6b4e46](https://github.com/midwayjs/midway/commit/e6b4e4673c1d2480da23d6bd664b613c813ee131))
31
+
32
+
33
+
34
+
35
+
36
+ ## [2.13.3](https://github.com/midwayjs/midway/compare/v2.13.2...v2.13.3) (2021-09-28)
37
+
38
+ **Note:** Version bump only for package @midwayjs/faas
39
+
40
+
41
+
42
+
43
+
6
44
  ## [2.13.2](https://github.com/midwayjs/midway/compare/v2.13.1...v2.13.2) (2021-09-09)
7
45
 
8
46
  **Note:** Version bump only for package @midwayjs/faas
@@ -15,7 +15,7 @@ export declare class MidwayFaaSFramework extends BaseFramework<IMidwayFaaSApplic
15
15
  run(): Promise<void>;
16
16
  getFrameworkType(): MidwayFrameworkType;
17
17
  handleInvokeWrapper(handlerMapping: string): (...args: any[]) => Promise<any>;
18
- generateMiddleware(middlewareId: string): Promise<FaaSMiddleware>;
18
+ generateMiddleware(middlewareId: any): Promise<FaaSMiddleware>;
19
19
  getContext(context: any): any;
20
20
  private invokeHandler;
21
21
  protected getFunctionHandler(ctx: any, args: any, target: any, method: any): string;
package/package.json CHANGED
@@ -1,20 +1,20 @@
1
1
  {
2
2
  "name": "@midwayjs/faas",
3
- "version": "2.13.2",
3
+ "version": "2.14.2",
4
4
  "main": "dist/index",
5
5
  "typings": "index.d.ts",
6
6
  "dependencies": {
7
- "@midwayjs/core": "^2.13.2",
8
- "@midwayjs/decorator": "^2.13.2",
7
+ "@midwayjs/core": "^2.14.0",
8
+ "@midwayjs/decorator": "^2.14.0",
9
9
  "@midwayjs/faas-typings": "^2.12.9",
10
10
  "@midwayjs/logger": "^2.13.0",
11
11
  "@midwayjs/simple-lock": "^1.1.4",
12
12
  "koa-compose": "^4.1.0"
13
13
  },
14
14
  "devDependencies": {
15
- "@midwayjs/mock": "^2.13.2",
16
- "@midwayjs/serverless-fc-starter": "^2.13.2",
17
- "@midwayjs/serverless-scf-starter": "^2.13.2",
15
+ "@midwayjs/mock": "^2.14.0",
16
+ "@midwayjs/serverless-fc-starter": "^2.14.0",
17
+ "@midwayjs/serverless-scf-starter": "^2.13.3",
18
18
  "mm": "3"
19
19
  },
20
20
  "engines": {
@@ -46,5 +46,5 @@
46
46
  "url": "git@github.com:midwayjs/midway.git"
47
47
  },
48
48
  "license": "MIT",
49
- "gitHead": "30cec549e5e393fb6ace1cecfb9c122d8ca647d0"
49
+ "gitHead": "68b7fd9182619e8428f353f24a52254abce6e5bf"
50
50
  }