@types/amqp-connection-manager
Advanced tools
Comparing version 2.0.11 to 2.0.12
@@ -20,3 +20,3 @@ // Type definitions for amqp-connection-manager 2.0 | ||
*/ | ||
heartbeatIntervalInSeconds?: number; | ||
heartbeatIntervalInSeconds?: number | undefined; | ||
@@ -26,3 +26,3 @@ /** | ||
*/ | ||
reconnectTimeInSeconds?: number; | ||
reconnectTimeInSeconds?: number | undefined; | ||
@@ -34,3 +34,3 @@ /** | ||
*/ | ||
findServers?: ((callback: (urls: string | string[]) => void) => void) | (() => Promise<string | string[]>); | ||
findServers?: ((callback: (urls: string | string[]) => void) => void) | (() => Promise<string | string[]>) | undefined; | ||
@@ -44,6 +44,6 @@ /** | ||
connectionOptions?: ConnectionOptions & { | ||
noDelay?: boolean; | ||
timeout?: number; | ||
keepAlive?: boolean; | ||
keepAliveDelay?: number; | ||
noDelay?: boolean | undefined; | ||
timeout?: number | undefined; | ||
keepAlive?: boolean | undefined; | ||
keepAliveDelay?: number | undefined; | ||
clientProperties?: any; | ||
@@ -55,4 +55,4 @@ credentials?: { | ||
response: () => Buffer; | ||
}; | ||
}; | ||
} | undefined; | ||
} | undefined; | ||
} | ||
@@ -74,3 +74,3 @@ | ||
*/ | ||
name?: string; | ||
name?: string | undefined; | ||
/** | ||
@@ -80,3 +80,3 @@ * A function to call whenever we reconnect to the broker (and therefore create a new underlying channel.) | ||
*/ | ||
setup?: SetupFunc; | ||
setup?: SetupFunc | undefined; | ||
/** | ||
@@ -86,3 +86,3 @@ * if true, then ChannelWrapper assumes all messages passed to publish() and sendToQueue() are plain JSON objects. | ||
*/ | ||
json?: boolean; | ||
json?: boolean | undefined; | ||
} | ||
@@ -89,0 +89,0 @@ |
{ | ||
"name": "@types/amqp-connection-manager", | ||
"version": "2.0.11", | ||
"version": "2.0.12", | ||
"description": "TypeScript definitions for amqp-connection-manager", | ||
@@ -35,4 +35,4 @@ "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/amqp-connection-manager", | ||
}, | ||
"typesPublisherContentHash": "f6fc1c07e8e4116dd2a41386ed9bbaaf0d2dd922fab5826dcaed71bf2081456c", | ||
"typesPublisherContentHash": "2558574ef6618d00c9a694f461cf04b46acd353b2e56bf0903b2461617a11b4b", | ||
"typeScriptVersion": "3.6" | ||
} |
@@ -11,3 +11,3 @@ # Installation | ||
### Additional Details | ||
* Last updated: Thu, 17 Jun 2021 06:31:14 GMT | ||
* Last updated: Wed, 07 Jul 2021 21:44:15 GMT | ||
* Dependencies: [@types/amqplib](https://npmjs.com/package/@types/amqplib) | ||
@@ -14,0 +14,0 @@ * Global values: none |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
12340