@deepnote/blocks 1.3.5 → 1.3.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +1 -0
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -594,5 +594,6 @@ function createPythonCode(block, executionContext) {
|
|
|
594
594
|
exports.createMarkdown = createMarkdown;
|
|
595
595
|
exports.createPythonCode = createPythonCode;
|
|
596
596
|
exports.deepnoteBlockSchema = deepnoteBlockSchema;
|
|
597
|
+
exports.deepnoteFileSchema = deepnoteFileSchema;
|
|
597
598
|
exports.deserializeDeepnoteFile = deserializeDeepnoteFile;
|
|
598
599
|
exports.stripMarkdown = stripMarkdown;
|
package/dist/index.d.cts
CHANGED
|
@@ -378,4 +378,4 @@ interface ButtonExecutionContext {
|
|
|
378
378
|
//#region src/python-code.d.ts
|
|
379
379
|
declare function createPythonCode(block: DeepnoteBlock, executionContext?: ButtonExecutionContext): string;
|
|
380
380
|
//#endregion
|
|
381
|
-
export { type DeepnoteBlock, type DeepnoteFile, type TableState, createMarkdown, createPythonCode, deepnoteBlockSchema, deserializeDeepnoteFile, stripMarkdown };
|
|
381
|
+
export { type DeepnoteBlock, type DeepnoteFile, type TableState, createMarkdown, createPythonCode, deepnoteBlockSchema, deepnoteFileSchema, deserializeDeepnoteFile, stripMarkdown };
|
package/dist/index.d.ts
CHANGED
|
@@ -378,4 +378,4 @@ interface ButtonExecutionContext {
|
|
|
378
378
|
//#region src/python-code.d.ts
|
|
379
379
|
declare function createPythonCode(block: DeepnoteBlock, executionContext?: ButtonExecutionContext): string;
|
|
380
380
|
//#endregion
|
|
381
|
-
export { type DeepnoteBlock, type DeepnoteFile, type TableState, createMarkdown, createPythonCode, deepnoteBlockSchema, deserializeDeepnoteFile, stripMarkdown };
|
|
381
|
+
export { type DeepnoteBlock, type DeepnoteFile, type TableState, createMarkdown, createPythonCode, deepnoteBlockSchema, deepnoteFileSchema, deserializeDeepnoteFile, stripMarkdown };
|
package/dist/index.js
CHANGED
|
@@ -565,4 +565,4 @@ function createPythonCode(block, executionContext) {
|
|
|
565
565
|
}
|
|
566
566
|
|
|
567
567
|
//#endregion
|
|
568
|
-
export { createMarkdown, createPythonCode, deepnoteBlockSchema, deserializeDeepnoteFile, stripMarkdown };
|
|
568
|
+
export { createMarkdown, createPythonCode, deepnoteBlockSchema, deepnoteFileSchema, deserializeDeepnoteFile, stripMarkdown };
|