@kanonak-protocol/cli 5.17.1 → 5.19.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/dist/commands/validate.d.ts +12 -1
- package/dist/index.js +213 -212
- package/package.json +4 -4
|
@@ -1 +1,12 @@
|
|
|
1
|
-
export
|
|
1
|
+
export interface ValidateOptions {
|
|
2
|
+
/**
|
|
3
|
+
* Additionally evaluate SHACL INSTANCE conformance over the workspace
|
|
4
|
+
* scope — every sh:NodeShape in the resolved catalog runs against the
|
|
5
|
+
* data, and each finding prints with its focus node, path, and constraint
|
|
6
|
+
* component. Off by default: `kanonak validate` stays definition
|
|
7
|
+
* validation (the common case), and conformance is the deliberate opt-in
|
|
8
|
+
* whose scope is the workspace's own pinned closure.
|
|
9
|
+
*/
|
|
10
|
+
conformance?: boolean;
|
|
11
|
+
}
|
|
12
|
+
export declare function validateCommand(path: string, options?: ValidateOptions): Promise<void>;
|