jupyter-js-services
Advanced tools
Comparing version 0.16.0 to 0.16.1
@@ -1037,2 +1037,21 @@ import { IDisposable } from 'phosphor-disposable'; | ||
/** | ||
* An `'input_request'` message on the `'stdin'` channel. | ||
* | ||
* See [Messaging in Jupyter](http://jupyter-client.readthedocs.org/en/latest/messaging.html#messages-on-the-stdin-router-dealer-sockets). | ||
*/ | ||
interface IInputRequestMsg extends IStdinMessage { | ||
content: { | ||
[key: string]: JSONValue; | ||
/** | ||
* The text to show at the prompt. | ||
*/ | ||
prompt: string; | ||
/** | ||
* Whether the request is for a password. | ||
* If so, the frontend shouldn't echo input. | ||
*/ | ||
password: boolean; | ||
}; | ||
} | ||
/** | ||
* The content of an `'input_reply'` message. | ||
@@ -1039,0 +1058,0 @@ * |
{ | ||
"name": "jupyter-js-services", | ||
"version": "0.16.0", | ||
"version": "0.16.1", | ||
"description": "Client APIs for the Jupyter services REST APIs", | ||
@@ -5,0 +5,0 @@ "main": "lib/index.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
572674
17168