Comparing version 1.0.13 to 1.0.14
# CHANGELOG | ||
- 1.0.14 - 2020-02-13 | ||
- Added new property `idling` | ||
- v1.0.13 - 2020-02-12 | ||
@@ -4,0 +8,0 @@ |
@@ -17,2 +17,3 @@ 'use strict'; | ||
connection.log.debug({ src: 'c', msg: `initiated IDLE` }); | ||
connection.idling = true; | ||
}; | ||
@@ -24,2 +25,3 @@ | ||
connection.log.debug({ src: 'c', msg: `breaking IDLE` }); | ||
connection.idling = false; | ||
}; | ||
@@ -52,2 +54,3 @@ | ||
connection.log.debug({ src: 'c', msg: `breaking NOOP loop` }); | ||
connection.idling = false; | ||
resolve(); | ||
@@ -76,4 +79,5 @@ }; | ||
connection.log.debug({ src: 'c', msg: `initiated NOOP loop` }); | ||
connection.idling = true; | ||
runLoop(); | ||
}); | ||
}; |
@@ -75,2 +75,7 @@ /// <reference types="node" /> | ||
/** | ||
* Is current mailbox idling (`true`) or not (`false`) | ||
* @type {Boolean} | ||
*/ | ||
idling: boolean; | ||
/** | ||
* Initiates a connection against IMAP server. Throws if anything goes wrong. This is something you have to call before you can run any IMAP commands | ||
@@ -77,0 +82,0 @@ * |
{ | ||
"name": "imapflow", | ||
"version": "1.0.13", | ||
"version": "1.0.14", | ||
"description": "IMAP Client for Node", | ||
@@ -5,0 +5,0 @@ "main": "./lib/imap-flow.js", |
Sorry, the diff of this file is too big to display
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
466270
10647