@components-kit/open-workbook 0.1.6 → 0.1.8

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.
@@ -7,7 +7,7 @@ import { getToolCatalogSummary, PromptCatalog, ResourceCatalog, makeId, runtimeE
7
7
  import { SessionRegistry } from "./session-registry.js";
8
8
  import { NativeFileBridge } from "./native-file-bridge.js";
9
9
  import { RuntimeStateStore } from "./state-store.js";
10
- const runtimeVersion = process.env.OPEN_WORKBOOK_VERSION ?? "0.1.6";
10
+ const runtimeVersion = process.env.OPEN_WORKBOOK_VERSION ?? "0.1.8";
11
11
  export class RuntimeService {
12
12
  sessions = new SessionRegistry();
13
13
  backups = new BackupManager();
@@ -1,7 +1,7 @@
1
1
  import { chunkMatrixRows, createRangeFingerprint, createWorkbookFingerprint, formatA1Cell, hashStable, parseA1Address } from "@components-kit/open-workbook-excel-core";
2
2
  import { runtimeError } from "@components-kit/open-workbook-protocol";
3
3
  const ENGINE_NAME = "office-js-addin";
4
- const ENGINE_VERSION = "0.1.6";
4
+ const ENGINE_VERSION = "0.1.8";
5
5
  const CHUNK_CELL_LIMIT = 50_000;
6
6
  const OPEN_WORKBOOK_CUSTOM_XML_NAMESPACE = "https://open-workbook.dev/schema/local-config/1";
7
7
  const EXCEL_API_VERSIONS = ["1.1", "1.2", "1.3", "1.4", "1.5", "1.6", "1.7", "1.8", "1.9", "1.10", "1.11", "1.12", "1.13", "1.14", "1.15", "1.16", "1.17"];