@bilig/workbook 0.94.0 → 0.103.0
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 +167 -438
- package/dist/command.d.ts +3 -0
- package/dist/command.js +4 -0
- package/dist/command.js.map +1 -0
- package/dist/features-public.d.ts +2 -0
- package/dist/features-public.js +3 -0
- package/dist/features-public.js.map +1 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +3 -0
- package/dist/index.js.map +1 -1
- package/dist/model-plan-result.d.ts +1 -0
- package/dist/model-plan-result.js +17 -0
- package/dist/model-plan-result.js.map +1 -1
- package/dist/model.d.ts +1 -0
- package/dist/model.js +21 -14
- package/dist/model.js.map +1 -1
- package/dist/prepare.d.ts +22 -0
- package/dist/prepare.js +41 -0
- package/dist/prepare.js.map +1 -0
- package/dist/readback.d.ts +16 -0
- package/dist/readback.js +57 -4
- package/dist/readback.js.map +1 -1
- package/dist/requirements.d.ts +4 -3
- package/dist/requirements.js +50 -7
- package/dist/requirements.js.map +1 -1
- package/dist/result.d.ts +2 -2
- package/dist/result.js +1 -0
- package/dist/result.js.map +1 -1
- package/dist/run-apply.d.ts +17 -0
- package/dist/run-apply.js +274 -0
- package/dist/run-apply.js.map +1 -0
- package/dist/run-check-verification.d.ts +8 -0
- package/dist/run-check-verification.js +174 -0
- package/dist/run-check-verification.js.map +1 -0
- package/dist/run-data.d.ts +6 -0
- package/dist/run-data.js +120 -0
- package/dist/run-data.js.map +1 -0
- package/dist/run-description.js +12 -9
- package/dist/run-description.js.map +1 -1
- package/dist/run-runtime-boundary.js +35 -12
- package/dist/run-runtime-boundary.js.map +1 -1
- package/dist/run.d.ts +2 -2
- package/dist/run.js +4 -560
- package/dist/run.js.map +1 -1
- package/dist/runtime.d.ts +7 -0
- package/dist/runtime.js +8 -0
- package/dist/runtime.js.map +1 -0
- package/dist/schema.d.ts +22 -0
- package/dist/schema.js +581 -0
- package/dist/schema.js.map +1 -0
- package/dist/testing.d.ts +34 -0
- package/dist/testing.js +85 -0
- package/dist/testing.js.map +1 -0
- package/fixtures/command-bundle.json +28 -0
- package/fixtures/command-result.json +58 -0
- package/fixtures/invalid-plan.json +9 -0
- package/fixtures/readback-proof.json +64 -0
- package/fixtures/runtime-requirements.json +72 -0
- package/fixtures/strict-run-failure.json +11 -0
- package/fixtures/strict-run-success.json +118 -0
- package/fixtures/valid-plan.json +145 -0
- package/package.json +60 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bilig/workbook",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.103.0",
|
|
4
4
|
"description": "Agent-first workbook model API and transport-neutral workbook operation language for bilig.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"agent-first",
|
|
@@ -21,6 +21,7 @@
|
|
|
21
21
|
},
|
|
22
22
|
"files": [
|
|
23
23
|
"dist",
|
|
24
|
+
"fixtures",
|
|
24
25
|
"README.md",
|
|
25
26
|
"LICENSE"
|
|
26
27
|
],
|
|
@@ -33,6 +34,61 @@
|
|
|
33
34
|
"types": "./dist/index.d.ts",
|
|
34
35
|
"import": "./dist/index.js",
|
|
35
36
|
"default": "./dist/index.js"
|
|
37
|
+
},
|
|
38
|
+
"./model": {
|
|
39
|
+
"types": "./dist/model.d.ts",
|
|
40
|
+
"import": "./dist/model.js",
|
|
41
|
+
"default": "./dist/model.js"
|
|
42
|
+
},
|
|
43
|
+
"./prepare": {
|
|
44
|
+
"types": "./dist/prepare.d.ts",
|
|
45
|
+
"import": "./dist/prepare.js",
|
|
46
|
+
"default": "./dist/prepare.js"
|
|
47
|
+
},
|
|
48
|
+
"./find": {
|
|
49
|
+
"types": "./dist/find.d.ts",
|
|
50
|
+
"import": "./dist/find.js",
|
|
51
|
+
"default": "./dist/find.js"
|
|
52
|
+
},
|
|
53
|
+
"./check": {
|
|
54
|
+
"types": "./dist/check.d.ts",
|
|
55
|
+
"import": "./dist/check.js",
|
|
56
|
+
"default": "./dist/check.js"
|
|
57
|
+
},
|
|
58
|
+
"./formula": {
|
|
59
|
+
"types": "./dist/formula.d.ts",
|
|
60
|
+
"import": "./dist/formula.js",
|
|
61
|
+
"default": "./dist/formula.js"
|
|
62
|
+
},
|
|
63
|
+
"./verify": {
|
|
64
|
+
"types": "./dist/verify.d.ts",
|
|
65
|
+
"import": "./dist/verify.js",
|
|
66
|
+
"default": "./dist/verify.js"
|
|
67
|
+
},
|
|
68
|
+
"./runtime": {
|
|
69
|
+
"types": "./dist/runtime.d.ts",
|
|
70
|
+
"import": "./dist/runtime.js",
|
|
71
|
+
"default": "./dist/runtime.js"
|
|
72
|
+
},
|
|
73
|
+
"./features": {
|
|
74
|
+
"types": "./dist/features-public.d.ts",
|
|
75
|
+
"import": "./dist/features-public.js",
|
|
76
|
+
"default": "./dist/features-public.js"
|
|
77
|
+
},
|
|
78
|
+
"./testing": {
|
|
79
|
+
"types": "./dist/testing.d.ts",
|
|
80
|
+
"import": "./dist/testing.js",
|
|
81
|
+
"default": "./dist/testing.js"
|
|
82
|
+
},
|
|
83
|
+
"./command": {
|
|
84
|
+
"types": "./dist/command.d.ts",
|
|
85
|
+
"import": "./dist/command.js",
|
|
86
|
+
"default": "./dist/command.js"
|
|
87
|
+
},
|
|
88
|
+
"./schema": {
|
|
89
|
+
"types": "./dist/schema.d.ts",
|
|
90
|
+
"import": "./dist/schema.js",
|
|
91
|
+
"default": "./dist/schema.js"
|
|
36
92
|
}
|
|
37
93
|
},
|
|
38
94
|
"publishConfig": {
|
|
@@ -40,11 +96,11 @@
|
|
|
40
96
|
},
|
|
41
97
|
"scripts": {
|
|
42
98
|
"build": "tsc -b tsconfig.json",
|
|
43
|
-
"test": "cd ../.. && tsx scripts/run-vitest.ts --run packages/workbook/src/__tests__/guards.test.ts packages/workbook/src/__tests__/model-api.test.ts packages/workbook/src/__tests__/model-verification-api.test.ts packages/workbook/src/__tests__/transport-api.test.ts packages/workbook/src/__tests__/ref-data-boundary.test.ts packages/workbook/src/__tests__/low-level-op-api.test.ts packages/workbook/src/__tests__/check-api.test.ts packages/workbook/src/__tests__/format-api.test.ts packages/workbook/src/__tests__/formula-api.test.ts packages/workbook/src/__tests__/action-input-api.test.ts packages/workbook/src/__tests__/action-metadata-api.test.ts packages/workbook/src/__tests__/features-api.test.ts packages/workbook/src/__tests__/feature-plugin-boundary.test.ts packages/workbook/src/__tests__/command-bundle-api.test.ts packages/workbook/src/__tests__/run-api.test.ts packages/workbook/src/__tests__/run-proof-boundary.test.ts packages/workbook/src/__tests__/run-strict-proof-api.test.ts packages/workbook/src/__tests__/requirements-api.test.ts packages/workbook/src/__tests__/plan-refs-api.test.ts"
|
|
99
|
+
"test": "cd ../.. && tsx scripts/run-vitest.ts --run packages/workbook/src/__tests__/guards.test.ts packages/workbook/src/__tests__/model-api.test.ts packages/workbook/src/__tests__/model-verification-api.test.ts packages/workbook/src/__tests__/transport-api.test.ts packages/workbook/src/__tests__/ref-data-boundary.test.ts packages/workbook/src/__tests__/low-level-op-api.test.ts packages/workbook/src/__tests__/check-api.test.ts packages/workbook/src/__tests__/format-api.test.ts packages/workbook/src/__tests__/formula-api.test.ts packages/workbook/src/__tests__/action-input-api.test.ts packages/workbook/src/__tests__/action-metadata-api.test.ts packages/workbook/src/__tests__/features-api.test.ts packages/workbook/src/__tests__/feature-plugin-boundary.test.ts packages/workbook/src/__tests__/command-bundle-api.test.ts packages/workbook/src/__tests__/run-api.test.ts packages/workbook/src/__tests__/run-proof-boundary.test.ts packages/workbook/src/__tests__/readback-proof-api.test.ts packages/workbook/src/__tests__/run-strict-proof-api.test.ts packages/workbook/src/__tests__/requirements-api.test.ts packages/workbook/src/__tests__/plan-refs-api.test.ts packages/workbook/src/__tests__/prepare-api.test.ts packages/workbook/src/__tests__/schema-api.test.ts packages/workbook/src/__tests__/testing-api.test.ts packages/workbook/src/__tests__/package-boundary.test.ts"
|
|
44
100
|
},
|
|
45
101
|
"dependencies": {
|
|
46
|
-
"@bilig/formula": "0.
|
|
47
|
-
"@bilig/protocol": "0.
|
|
102
|
+
"@bilig/formula": "0.103.0",
|
|
103
|
+
"@bilig/protocol": "0.103.0"
|
|
48
104
|
},
|
|
49
105
|
"engines": {
|
|
50
106
|
"node": ">=22.0.0"
|