@types/serverless
Advanced tools
Comparing version 3.12.11 to 3.12.12
{ | ||
"name": "@types/serverless", | ||
"version": "3.12.11", | ||
"version": "3.12.12", | ||
"description": "TypeScript definitions for serverless", | ||
@@ -68,4 +68,4 @@ "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/serverless", | ||
"dependencies": {}, | ||
"typesPublisherContentHash": "330b85d8d06f03276d327ec006996ddf53ab1c6b81a04ddba4684f7225dba384", | ||
"typeScriptVersion": "4.2" | ||
"typesPublisherContentHash": "6413346c099287633208c4e34015e8b83f6bdfcf0c682ec6b5a9e91292c60196", | ||
"typeScriptVersion": "4.3" | ||
} |
@@ -519,2 +519,22 @@ import Serverless = require('../../../index'); | ||
interface KafkaAccessConfiguration { | ||
saslPlainAuth?: string | undefined; | ||
saslScram256Auth?: string | undefined; | ||
saslScram512Auth?: string | undefined; | ||
clientCertificateTlsAuth?: string | undefined; | ||
serverRootCaCertificate?: string | undefined; | ||
vpcSubnet?: string[] | undefined; | ||
vpcSecurityGroup?: string | undefined; | ||
} | ||
interface Kafka { | ||
accessConfigurations: KafkaAccessConfiguration; | ||
bootstrapServers: string[]; | ||
topic: string; | ||
batchSize?: number | undefined; | ||
maximumBatchingWindow?: number | undefined; | ||
startingPosition?: 'LATEST' | 'TRIM_HORIZON'; | ||
enabled?: boolean | undefined; | ||
} | ||
interface AlexaSkill { | ||
@@ -648,2 +668,3 @@ appId: string; | ||
rabbitmq?: RabbitMq | undefined; | ||
kafka?: Kafka | undefined; | ||
} | ||
@@ -650,0 +671,0 @@ |
@@ -11,3 +11,3 @@ # Installation | ||
### Additional Details | ||
* Last updated: Tue, 21 Feb 2023 23:02:43 GMT | ||
* Last updated: Mon, 05 Jun 2023 09:02:44 GMT | ||
* Dependencies: none | ||
@@ -14,0 +14,0 @@ * Global values: none |
40424
1019