lambda-essentials-ts 4.1.2 → 4.1.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.
@@ -13,6 +13,7 @@ export interface ApiRequest<Body = any, Query = any> {
13
13
  headers: Record<string, string>;
14
14
  pathParameters: Record<string, string>;
15
15
  queryStringParameters?: Query;
16
+ multiValueQueryStringParameters?: Query;
16
17
  }
17
18
  export interface PostRequest<Body = any, Query = any> extends ApiRequest<Body, Query> {
18
19
  body: Body;
@@ -54,6 +54,7 @@ class OpenApiWrapper {
54
54
  method: request.httpMethod,
55
55
  path: request.path,
56
56
  user: this.userPrincipal,
57
+ query: request.multiValueQueryStringParameters,
57
58
  });
58
59
  return request;
59
60
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lambda-essentials-ts",
3
- "version": "4.1.2",
3
+ "version": "4.1.3",
4
4
  "description": "A selection of the finest modules supporting authorization, API routing, error handling, logging and sending HTTP requests.",
5
5
  "main": "lib/index.js",
6
6
  "private": false,