@jupyterlab/services
Advanced tools
Comparing version 7.3.0 to 7.3.1
@@ -101,3 +101,8 @@ import type { ISharedDocument } from '@jupyter/ydoc'; | ||
/** | ||
* A contents file format. | ||
* A contents file format. Always `json` for `notebook` and | ||
* `directory` types. It should be set to either `text` or | ||
* `base64` for `file` type. | ||
* See the | ||
* [jupyter server data model for filesystem entities](https://jupyter-server.readthedocs.io/en/latest/developers/contents.html#filesystem-entities) | ||
* for more details. | ||
*/ | ||
@@ -176,7 +181,7 @@ type FileFormat = 'json' | 'text' | 'base64' | null; | ||
/** | ||
* The new contents. | ||
* The old contents. | ||
*/ | ||
oldValue: Partial<IModel> | null; | ||
/** | ||
* The old contents. | ||
* The new contents. | ||
*/ | ||
@@ -183,0 +188,0 @@ newValue: Partial<IModel> | null; |
{ | ||
"name": "@jupyterlab/services", | ||
"version": "7.3.0", | ||
"version": "7.3.1", | ||
"description": "Client APIs for the Jupyter services REST APIs", | ||
@@ -49,6 +49,6 @@ "keywords": [ | ||
"@jupyter/ydoc": "^3.0.0", | ||
"@jupyterlab/coreutils": "^6.3.0", | ||
"@jupyterlab/nbformat": "^4.3.0", | ||
"@jupyterlab/settingregistry": "^4.3.0", | ||
"@jupyterlab/statedb": "^4.3.0", | ||
"@jupyterlab/coreutils": "^6.3.1", | ||
"@jupyterlab/nbformat": "^4.3.1", | ||
"@jupyterlab/settingregistry": "^4.3.1", | ||
"@jupyterlab/statedb": "^4.3.1", | ||
"@lumino/coreutils": "^2.2.0", | ||
@@ -62,3 +62,3 @@ "@lumino/disposable": "^2.1.3", | ||
"devDependencies": { | ||
"@jupyterlab/testing": "^4.3.0", | ||
"@jupyterlab/testing": "^4.3.1", | ||
"@types/jest": "^29.2.0", | ||
@@ -65,0 +65,0 @@ "@types/ws": "^8.5.3", |
@@ -143,3 +143,8 @@ // Copyright (c) Jupyter Development Team. | ||
/** | ||
* A contents file format. | ||
* A contents file format. Always `json` for `notebook` and | ||
* `directory` types. It should be set to either `text` or | ||
* `base64` for `file` type. | ||
* See the | ||
* [jupyter server data model for filesystem entities](https://jupyter-server.readthedocs.io/en/latest/developers/contents.html#filesystem-entities) | ||
* for more details. | ||
*/ | ||
@@ -232,3 +237,3 @@ export type FileFormat = 'json' | 'text' | 'base64' | null; | ||
/** | ||
* The new contents. | ||
* The old contents. | ||
*/ | ||
@@ -238,3 +243,3 @@ oldValue: Partial<IModel> | null; | ||
/** | ||
* The old contents. | ||
* The new contents. | ||
*/ | ||
@@ -241,0 +246,0 @@ newValue: Partial<IModel> | null; |
Sorry, the diff of this file is not supported yet
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
1220985
27260