@bilig/headless 0.10.56 → 0.10.57
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/README.md +0 -14
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -109,8 +109,6 @@ Repository:
|
|
|
109
109
|
[`docs/unsupported-formula-troubleshooting-recipe.md`](../../docs/unsupported-formula-troubleshooting-recipe.md)
|
|
110
110
|
- agent tool-calling recipe:
|
|
111
111
|
[`docs/agent-workpaper-tool-calling-recipe.md`](../../docs/agent-workpaper-tool-calling-recipe.md)
|
|
112
|
-
- public adoption kit:
|
|
113
|
-
[`docs/public-adoption-kit.md`](../../docs/public-adoption-kit.md)
|
|
114
112
|
- revenue-model article:
|
|
115
113
|
[`docs/building-a-revenue-model-with-headless-workpaper.md`](../../docs/building-a-revenue-model-with-headless-workpaper.md)
|
|
116
114
|
- compatibility boundaries:
|
|
@@ -127,14 +125,6 @@ Repository:
|
|
|
127
125
|
[`docs/formula-edge-sumifs-paired-criteria-fixture.md`](../../docs/formula-edge-sumifs-paired-criteria-fixture.md)
|
|
128
126
|
- GROUPBY spill fixture walkthrough:
|
|
129
127
|
[`docs/formula-edge-groupby-spill-fixture.md`](../../docs/formula-edge-groupby-spill-fixture.md)
|
|
130
|
-
- X reply growth playbook:
|
|
131
|
-
[`docs/x-reply-growth-playbook.md`](../../docs/x-reply-growth-playbook.md)
|
|
132
|
-
- Show HN launch pack:
|
|
133
|
-
[`docs/show-hn-launch-pack.md`](../../docs/show-hn-launch-pack.md)
|
|
134
|
-
- Community launch pack:
|
|
135
|
-
[`docs/community-launch-pack.md`](../../docs/community-launch-pack.md)
|
|
136
|
-
- Product Hunt launch assets:
|
|
137
|
-
[`docs/product-hunt-launch-assets.md`](../../docs/product-hunt-launch-assets.md)
|
|
138
128
|
- published DEV article:
|
|
139
129
|
<https://dev.to/gregkonush/why-agents-need-workbook-apis-instead-of-spreadsheet-screenshots-3d61>
|
|
140
130
|
- DEV article source:
|
|
@@ -273,10 +263,6 @@ It shows how to pair `getCellDisplayValue()` with
|
|
|
273
263
|
`getCellFormulaDiagnostics()` so Node services and agent tools can return
|
|
274
264
|
actionable errors instead of silently accepting unsupported formula inputs.
|
|
275
265
|
|
|
276
|
-
For a concise evaluator-facing summary with copy-paste npm commands, proof
|
|
277
|
-
links, shareable copy, and overclaim guardrails, use the root
|
|
278
|
-
[`Public Adoption Kit`](../../docs/public-adoption-kit.md).
|
|
279
|
-
|
|
280
266
|
For a focused persistence walkthrough, see
|
|
281
267
|
[`docs/persisting-formula-backed-workpaper-documents-in-node.md`](../../docs/persisting-formula-backed-workpaper-documents-in-node.md)
|
|
282
268
|
and run the example package:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bilig/headless",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.57",
|
|
4
4
|
"description": "Headless spreadsheet engine and WorkPaper workbook facade for Node services, coding agents, and HyperFormula-style workflows.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"agent",
|
|
@@ -66,9 +66,9 @@
|
|
|
66
66
|
"build": "rm -rf dist tsconfig.tsbuildinfo && tsc -p tsconfig.json"
|
|
67
67
|
},
|
|
68
68
|
"dependencies": {
|
|
69
|
-
"@bilig/core": "0.10.
|
|
70
|
-
"@bilig/formula": "0.10.
|
|
71
|
-
"@bilig/protocol": "0.10.
|
|
69
|
+
"@bilig/core": "0.10.57",
|
|
70
|
+
"@bilig/formula": "0.10.57",
|
|
71
|
+
"@bilig/protocol": "0.10.57"
|
|
72
72
|
},
|
|
73
73
|
"engines": {
|
|
74
74
|
"node": ">=24.0.0"
|