@midwayjs/faas 2.13.4 → 2.14.6

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.14.6](https://github.com/midwayjs/midway/compare/v2.14.5...v2.14.6) (2022-02-08)
7
+
8
+ **Note:** Version bump only for package @midwayjs/faas
9
+
10
+
11
+
12
+
13
+
14
+ ## [2.14.4](https://github.com/midwayjs/midway/compare/v2.14.3...v2.14.4) (2022-01-17)
15
+
16
+ **Note:** Version bump only for package @midwayjs/faas
17
+
18
+
19
+
20
+
21
+
22
+ ## [2.14.2](https://github.com/midwayjs/midway/compare/v2.14.1...v2.14.2) (2021-12-28)
23
+
24
+
25
+ ### Bug Fixes
26
+
27
+ * generate middleware typings ([#1442](https://github.com/midwayjs/midway/issues/1442)) ([1b2f99b](https://github.com/midwayjs/midway/commit/1b2f99b0fcfa6d87fa216ac9277d9f1240ef26a2))
28
+
29
+
30
+
31
+
32
+
33
+ # [2.14.0](https://github.com/midwayjs/midway/compare/v2.13.5...v2.14.0) (2021-12-06)
34
+
35
+ **Note:** Version bump only for package @midwayjs/faas
36
+
37
+
38
+
39
+
40
+
6
41
  ## [2.13.4](https://github.com/midwayjs/midway/compare/v2.13.3...v2.13.4) (2021-10-21)
7
42
 
8
43
 
@@ -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.4",
3
+ "version": "2.14.6",
4
4
  "main": "dist/index",
5
5
  "typings": "index.d.ts",
6
6
  "dependencies": {
7
- "@midwayjs/core": "^2.13.4",
8
- "@midwayjs/decorator": "^2.13.2",
7
+ "@midwayjs/core": "^2.14.6",
8
+ "@midwayjs/decorator": "^2.14.0",
9
9
  "@midwayjs/faas-typings": "^2.12.9",
10
- "@midwayjs/logger": "^2.13.0",
10
+ "@midwayjs/logger": "^2.15.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.4",
16
- "@midwayjs/serverless-fc-starter": "^2.13.4",
17
- "@midwayjs/serverless-scf-starter": "^2.13.3",
15
+ "@midwayjs/mock": "^2.14.6",
16
+ "@midwayjs/serverless-fc-starter": "^2.14.6",
17
+ "@midwayjs/serverless-scf-starter": "^2.14.4",
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": "9e61ff6e854b5641201e7d3df8aa19a7d6287f3d"
49
+ "gitHead": "9041633a98444568643bb5a1e8f10bb58e1f1b19"
50
50
  }