common-types
Advanced tools
Comparing version 1.19.0 to 1.19.1
@@ -142,2 +142,3 @@ 'use strict'; | ||
exports.HttpStatusCodes = void 0; | ||
(function (HttpStatusCodes) { | ||
@@ -364,2 +365,3 @@ /** | ||
*/ | ||
exports.StepFunctionMissingDataTreatment = void 0; | ||
(function (StepFunctionMissingDataTreatment) { | ||
@@ -366,0 +368,0 @@ /** The alarm does not consider missing data points when evaluating whether to change state. */ |
import { IAWSLambdaProxyIntegrationRequest } from "./aws"; | ||
import { IDictionary } from "./basics"; | ||
import { IDictionary, Omit } from "./basics"; | ||
/** | ||
@@ -34,4 +34,4 @@ * **LambdaEventParser** | ||
request: T; | ||
apiGateway: Pick<IAWSLambdaProxyIntegrationRequest, "resource" | "path" | "httpMethod" | "headers" | "queryStringParameters" | "pathParameters" | "requestContext" | "isBase64Encoded">; | ||
apiGateway: Omit<IAWSLambdaProxyIntegrationRequest, "body">; | ||
}; | ||
} |
@@ -53,3 +53,3 @@ import { ICloudWatchConfigEvent } from "../aws/aws-events"; | ||
*/ | ||
cloudwatchEvent: { | ||
cloudwatchEvent?: { | ||
event: ICloudWatchConfigEvent; | ||
@@ -56,0 +56,0 @@ }; |
import { IAWSLambdaProxyIntegrationRequest } from "./aws"; | ||
import { IDictionary } from "./basics"; | ||
import { IDictionary, Omit } from "./basics"; | ||
/** | ||
@@ -34,4 +34,4 @@ * **LambdaEventParser** | ||
request: T; | ||
apiGateway: Pick<IAWSLambdaProxyIntegrationRequest, "resource" | "path" | "httpMethod" | "headers" | "queryStringParameters" | "pathParameters" | "requestContext" | "isBase64Encoded">; | ||
apiGateway: Omit<IAWSLambdaProxyIntegrationRequest, "body">; | ||
}; | ||
} |
@@ -53,3 +53,3 @@ import { ICloudWatchConfigEvent } from "../aws/aws-events"; | ||
*/ | ||
cloudwatchEvent: { | ||
cloudwatchEvent?: { | ||
event: ICloudWatchConfigEvent; | ||
@@ -56,0 +56,0 @@ }; |
{ | ||
"name": "common-types", | ||
"version": "1.19.0", | ||
"version": "1.19.1", | ||
"description": "Common types not included in Typescript", | ||
@@ -40,6 +40,6 @@ "repository": "https://github.com/lifegadget/common-types", | ||
"rollup": "^2.36.2", | ||
"rollup-plugin-typescript2": "^0.29.0", | ||
"rollup-plugin-typescript2": "^0.30.0", | ||
"ts-node": "^9.1.1", | ||
"typescript": "^4.1.3" | ||
"typescript": "^4.2.0" | ||
} | ||
} |
Sorry, the diff of this file is not supported yet
6054
259228