@loopback/rest 11.0.0 → 11.0.1
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/dist/rest.application.d.ts +1 -4
- package/dist/rest.server.d.ts +1 -4
- package/package.json +25 -25
|
@@ -238,8 +238,5 @@ export declare class RestApplication extends Application implements HttpServerLi
|
|
|
238
238
|
* written to the console using the `log` function.
|
|
239
239
|
* @param log - Log function, default to `console.log`
|
|
240
240
|
*/
|
|
241
|
-
exportOpenApiSpec(outFile?: string, log?:
|
|
242
|
-
(...data: any[]): void;
|
|
243
|
-
(message?: any, ...optionalParams: any[]): void;
|
|
244
|
-
}): Promise<void>;
|
|
241
|
+
exportOpenApiSpec(outFile?: string, log?: (message?: any, ...optionalParams: any[]) => void): Promise<void>;
|
|
245
242
|
}
|
package/dist/rest.server.d.ts
CHANGED
|
@@ -351,10 +351,7 @@ export declare class RestServer extends BaseMiddlewareRegistry implements Server
|
|
|
351
351
|
* written to the console using the `log` function.
|
|
352
352
|
* @param log - Log function, default to `console.log`
|
|
353
353
|
*/
|
|
354
|
-
exportOpenApiSpec(outFile?: string, log?:
|
|
355
|
-
(...data: any[]): void;
|
|
356
|
-
(message?: any, ...optionalParams: any[]): void;
|
|
357
|
-
}): Promise<void>;
|
|
354
|
+
exportOpenApiSpec(outFile?: string, log?: (message?: any, ...optionalParams: any[]) => void): Promise<void>;
|
|
358
355
|
}
|
|
359
356
|
/**
|
|
360
357
|
* Create a binding for the given body parser class
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@loopback/rest",
|
|
3
3
|
"description": "Expose controllers as REST endpoints and route REST API requests to controller methods",
|
|
4
|
-
"version": "11.0.
|
|
4
|
+
"version": "11.0.1",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"types": "dist/index.d.ts",
|
|
@@ -35,57 +35,57 @@
|
|
|
35
35
|
"!*/__tests__"
|
|
36
36
|
],
|
|
37
37
|
"peerDependencies": {
|
|
38
|
-
"@loopback/core": "^3.0.
|
|
38
|
+
"@loopback/core": "^3.0.1"
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"@loopback/express": "^4.0.
|
|
42
|
-
"@loopback/http-server": "^3.0.
|
|
43
|
-
"@loopback/openapi-v3": "^7.0.
|
|
41
|
+
"@loopback/express": "^4.0.1",
|
|
42
|
+
"@loopback/http-server": "^3.0.1",
|
|
43
|
+
"@loopback/openapi-v3": "^7.0.1",
|
|
44
44
|
"@openapi-contrib/openapi-schema-to-json-schema": "^3.1.1",
|
|
45
|
-
"@types/body-parser": "^1.19.
|
|
45
|
+
"@types/body-parser": "^1.19.2",
|
|
46
46
|
"@types/cors": "^2.8.12",
|
|
47
47
|
"@types/express": "^4.17.13",
|
|
48
|
-
"@types/express-serve-static-core": "^4.17.
|
|
48
|
+
"@types/express-serve-static-core": "^4.17.27",
|
|
49
49
|
"@types/http-errors": "^1.8.1",
|
|
50
50
|
"@types/on-finished": "^2.3.1",
|
|
51
51
|
"@types/serve-static": "1.13.10",
|
|
52
52
|
"@types/type-is": "^1.6.3",
|
|
53
|
-
"ajv": "^8.
|
|
53
|
+
"ajv": "^8.8.2",
|
|
54
54
|
"ajv-errors": "^3.0.0",
|
|
55
55
|
"ajv-formats": "^2.1.1",
|
|
56
|
-
"ajv-keywords": "^5.
|
|
57
|
-
"body-parser": "^1.19.
|
|
56
|
+
"ajv-keywords": "^5.1.0",
|
|
57
|
+
"body-parser": "^1.19.1",
|
|
58
58
|
"cors": "^2.8.5",
|
|
59
|
-
"debug": "^4.3.
|
|
60
|
-
"express": "^4.17.
|
|
61
|
-
"http-errors": "^
|
|
59
|
+
"debug": "^4.3.3",
|
|
60
|
+
"express": "^4.17.2",
|
|
61
|
+
"http-errors": "^2.0.0",
|
|
62
62
|
"js-yaml": "^4.1.0",
|
|
63
63
|
"json-schema-compare": "^0.2.2",
|
|
64
64
|
"lodash": "^4.17.21",
|
|
65
65
|
"on-finished": "^2.3.0",
|
|
66
66
|
"path-to-regexp": "^6.2.0",
|
|
67
|
-
"qs": "^6.10.
|
|
67
|
+
"qs": "^6.10.3",
|
|
68
68
|
"strong-error-handler": "^4.0.0",
|
|
69
69
|
"tslib": "^2.3.1",
|
|
70
70
|
"type-is": "^1.6.18",
|
|
71
|
-
"validator": "^13.
|
|
71
|
+
"validator": "^13.7.0"
|
|
72
72
|
},
|
|
73
73
|
"devDependencies": {
|
|
74
|
-
"@loopback/build": "^8.0.
|
|
75
|
-
"@loopback/core": "^3.0.
|
|
76
|
-
"@loopback/eslint-config": "^12.0.
|
|
77
|
-
"@loopback/openapi-spec-builder": "^4.0.
|
|
78
|
-
"@loopback/repository": "^4.0.
|
|
79
|
-
"@loopback/testlab": "^4.0.
|
|
74
|
+
"@loopback/build": "^8.0.1",
|
|
75
|
+
"@loopback/core": "^3.0.1",
|
|
76
|
+
"@loopback/eslint-config": "^12.0.1",
|
|
77
|
+
"@loopback/openapi-spec-builder": "^4.0.1",
|
|
78
|
+
"@loopback/repository": "^4.0.1",
|
|
79
|
+
"@loopback/testlab": "^4.0.1",
|
|
80
80
|
"@types/debug": "^4.1.7",
|
|
81
|
-
"@types/js-yaml": "^4.0.
|
|
81
|
+
"@types/js-yaml": "^4.0.5",
|
|
82
82
|
"@types/json-schema-compare": "^0.2.1",
|
|
83
|
-
"@types/lodash": "^4.14.
|
|
83
|
+
"@types/lodash": "^4.14.178",
|
|
84
84
|
"@types/multer": "^1.4.7",
|
|
85
85
|
"@types/node": "^10.17.60",
|
|
86
86
|
"@types/on-finished": "^2.3.1",
|
|
87
87
|
"@types/qs": "^6.9.7",
|
|
88
|
-
"multer": "^1.4.
|
|
88
|
+
"multer": "^1.4.4"
|
|
89
89
|
},
|
|
90
|
-
"gitHead": "
|
|
90
|
+
"gitHead": "4a8886403cd9cb3ae529cb69712f077623cba2c2"
|
|
91
91
|
}
|