@marimo-team/frontend 0.23.16-dev24 → 0.23.16-dev26

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@marimo-team/frontend",
3
- "version": "0.23.16-dev24",
3
+ "version": "0.23.16-dev26",
4
4
  "main": "dist/main.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "type": "module",
@@ -17,6 +17,8 @@ export type CellConfig = schemas["CellConfig"];
17
17
  export type RuntimeState = schemas["CellNotification"]["status"];
18
18
  export type CodeCompletionRequest = schemas["CodeCompletionRequest"];
19
19
  export type DeleteCellRequest = schemas["DeleteCellRequest"];
20
+ export type AutoExportAsMarkdownRequest =
21
+ schemas["AutoExportAsMarkdownRequest"];
20
22
  export type ExportAsHTMLRequest = schemas["ExportAsHTMLRequest"];
21
23
  export type ExportAsMarkdownRequest = schemas["ExportAsMarkdownRequest"];
22
24
  export type ExportAsIPYNBRequest = schemas["ExportAsIPYNBRequest"];
@@ -221,7 +223,7 @@ export interface EditRequests {
221
223
  ) => Promise<ExportedFile<string>>;
222
224
  exportAsPDF: (request: ExportAsPDFRequest) => Promise<ExportedFile<Blob>>;
223
225
  autoExportAsHTML: (request: ExportAsHTMLRequest) => Promise<null>;
224
- autoExportAsMarkdown: (request: ExportAsMarkdownRequest) => Promise<null>;
226
+ autoExportAsMarkdown: (request: AutoExportAsMarkdownRequest) => Promise<null>;
225
227
  autoExportAsIPYNB: (request: ExportAsIPYNBRequest) => Promise<null>;
226
228
  updateCellOutputs: (request: UpdateCellOutputsRequest) => Promise<null>;
227
229
  // Package requests