@bilig/workbook 0.90.5 → 0.90.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/check.d.ts +1 -1
- package/dist/result.d.ts +1 -1
- package/package.json +3 -3
package/dist/check.d.ts
CHANGED
|
@@ -19,7 +19,7 @@ export interface WorkbookCheckApi {
|
|
|
19
19
|
readonly custom: (options: WorkbookCustomCheckOptions) => WorkbookCheckResult;
|
|
20
20
|
}
|
|
21
21
|
export type WorkbookBuiltInCheckKind = 'exists' | 'noFormulaErrors' | 'valueEquals' | 'formulaEquals';
|
|
22
|
-
export declare const builtInWorkbookCheckKinds: readonly ("
|
|
22
|
+
export declare const builtInWorkbookCheckKinds: readonly ("valueEquals" | "formulaEquals" | "exists" | "noFormulaErrors")[];
|
|
23
23
|
export declare function isBuiltInWorkbookCheckKind(value: unknown): value is WorkbookBuiltInCheckKind;
|
|
24
24
|
export declare function createWorkbookCheckResult(kind: string, target: WorkbookRef, message: string): WorkbookCheckResult;
|
|
25
25
|
export declare function createWorkbookCustomCheck(options: WorkbookCustomCheckOptions): WorkbookCheckResult;
|
package/dist/result.d.ts
CHANGED
|
@@ -57,7 +57,7 @@ export interface WorkbookRunUnverified {
|
|
|
57
57
|
readonly message: string;
|
|
58
58
|
}
|
|
59
59
|
export type WorkbookRunErrorCode = 'invalid_model' | 'invalid_plan' | 'invalid_plan_data' | 'invalid_run_options' | 'action_not_found' | 'invalid_action_input' | 'find_failed' | 'checks_failed' | 'action_failed' | 'ref_not_in_refs' | 'duplicate_ref' | 'command_target_not_resolved' | 'formula_input_not_resolved' | 'formula_input_not_labeled' | 'formula_label_not_resolved' | 'formula_label_not_used' | 'invalid_formula' | 'change_target_not_resolved' | 'check_status_not_planned' | 'check_target_not_resolved' | 'check_ref_not_resolved' | 'check_expectation_input_not_resolved' | 'check_expectation_input_not_labeled' | 'check_expectation_label_not_resolved' | 'check_expectation_label_not_used' | 'invalid_check_expectation_formula' | 'invalid_workbook_op' | 'op_target_mismatch' | 'missing_concrete_op' | 'missing_workbook_op' | 'adapter_missing_capability' | 'apply_not_verified' | 'plan_not_verified' | 'apply_mismatch' | 'apply_failed' | 'readback_failed' | 'readback_invalid' | 'readback_duplicate' | 'readback_missing' | 'readback_unexpected' | 'value_mismatch' | 'formula_mismatch' | 'invalid_check_verification' | 'check_verification_failed' | 'check_failed' | 'check_not_verified' | 'runtime_rejected';
|
|
60
|
-
export declare const workbookRunErrorCodes: readonly ("
|
|
60
|
+
export declare const workbookRunErrorCodes: readonly ("invalid_action_input" | "invalid_model" | "invalid_plan" | "invalid_plan_data" | "invalid_run_options" | "action_not_found" | "find_failed" | "checks_failed" | "action_failed" | "ref_not_in_refs" | "duplicate_ref" | "command_target_not_resolved" | "formula_input_not_resolved" | "formula_input_not_labeled" | "formula_label_not_resolved" | "formula_label_not_used" | "invalid_formula" | "change_target_not_resolved" | "check_status_not_planned" | "check_target_not_resolved" | "check_ref_not_resolved" | "check_expectation_input_not_resolved" | "check_expectation_input_not_labeled" | "check_expectation_label_not_resolved" | "check_expectation_label_not_used" | "invalid_check_expectation_formula" | "invalid_workbook_op" | "op_target_mismatch" | "missing_concrete_op" | "missing_workbook_op" | "adapter_missing_capability" | "apply_not_verified" | "plan_not_verified" | "apply_mismatch" | "apply_failed" | "readback_failed" | "readback_invalid" | "readback_duplicate" | "readback_missing" | "readback_unexpected" | "value_mismatch" | "formula_mismatch" | "invalid_check_verification" | "check_verification_failed" | "check_failed" | "check_not_verified" | "runtime_rejected")[];
|
|
61
61
|
export declare function isWorkbookRunErrorCode(value: unknown): value is WorkbookRunErrorCode;
|
|
62
62
|
export interface WorkbookRunError {
|
|
63
63
|
readonly code: WorkbookRunErrorCode;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bilig/workbook",
|
|
3
|
-
"version": "0.90.
|
|
3
|
+
"version": "0.90.6",
|
|
4
4
|
"description": "Agent-first workbook model API and transport-neutral workbook operation language for bilig.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"agent-first",
|
|
@@ -43,8 +43,8 @@
|
|
|
43
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__/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__/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__/requirements-api.test.ts packages/workbook/src/__tests__/plan-refs-api.test.ts"
|
|
44
44
|
},
|
|
45
45
|
"dependencies": {
|
|
46
|
-
"@bilig/formula": "0.90.
|
|
47
|
-
"@bilig/protocol": "0.90.
|
|
46
|
+
"@bilig/formula": "0.90.6",
|
|
47
|
+
"@bilig/protocol": "0.90.6"
|
|
48
48
|
},
|
|
49
49
|
"engines": {
|
|
50
50
|
"node": ">=22.0.0"
|