@kanonak-protocol/cli 2.4.0 → 3.0.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/index.js +78 -78
- package/dist/transformations/DocAstUriConstants.d.ts +57 -0
- package/dist/transformations/FormatOverride.d.ts +21 -0
- package/dist/transformations/backends/HtmlBackend.d.ts +2 -2
- package/dist/transformations/backends/IDocumentAstBackend.d.ts +2 -2
- package/dist/transformations/backends/JsonBackend.d.ts +2 -2
- package/dist/transformations/backends/MarkdownFrontmatterBackend.d.ts +2 -2
- package/dist/transformations/backends/SvgBackend.d.ts +2 -2
- package/dist/transformations/backends/TomlBackend.d.ts +2 -2
- package/dist/transformations/v3/CompiledTransformationV3.d.ts +215 -0
- package/dist/transformations/v3/ExpressionEngineV3.d.ts +49 -0
- package/dist/transformations/v3/TransformationLoaderV3.d.ts +22 -0
- package/dist/transformations/v3/TransformationRunnerV3.d.ts +90 -0
- package/dist/transformations/v3/TransformationUriConstantsV3.d.ts +131 -0
- package/package.json +3 -3
- package/dist/transformations/CompiledTransformation.d.ts +0 -155
- package/dist/transformations/ExpressionEngine.d.ts +0 -28
- package/dist/transformations/TransformationLoader.d.ts +0 -20
- package/dist/transformations/TransformationRunner.d.ts +0 -81
- package/dist/transformations/UriConstants.d.ts +0 -147
|
@@ -1,155 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Typed, parsed-once representation of a Transformation ontology
|
|
3
|
-
* instance. Produced by `TransformationLoader` from a `SubjectKanonak`
|
|
4
|
-
* of type `kanonak.org/transformations/Transformation`; consumed by
|
|
5
|
-
* `TransformationRunner` and `ExpressionEngine`.
|
|
6
|
-
*
|
|
7
|
-
* Separating the compiled form from the raw SDK object model means
|
|
8
|
-
* expression evaluation is a plain-data walk with no repeated
|
|
9
|
-
* predicate-URI matching per step. Compilation validates shape and
|
|
10
|
-
* throws with a BuilderNode path breadcrumb on first error.
|
|
11
|
-
*/
|
|
12
|
-
import type { EntityUri } from '../capabilities/UriHelpers.js';
|
|
13
|
-
export type NormalizeKindName = 'trim-end';
|
|
14
|
-
export interface CompiledTransformation {
|
|
15
|
-
/** The transformation entity's own local name, for diagnostics. */
|
|
16
|
-
name: string;
|
|
17
|
-
inputPattern: CompiledInputPattern;
|
|
18
|
-
rule: CompiledExpression;
|
|
19
|
-
artifactName: CompiledExpression;
|
|
20
|
-
/**
|
|
21
|
-
* The set of OutputFormat URIs this transformation supports,
|
|
22
|
-
* keyed by the OutputFormat's local name (not its backendUri).
|
|
23
|
-
* The runner rejects requests to render in a format not in this set.
|
|
24
|
-
*/
|
|
25
|
-
outputs: Set<string>;
|
|
26
|
-
/**
|
|
27
|
-
* Per-format overrides keyed by the OutputFormat's local name.
|
|
28
|
-
*/
|
|
29
|
-
overrides: Map<string, CompiledFormatOverride>;
|
|
30
|
-
}
|
|
31
|
-
export interface CompiledInputPattern {
|
|
32
|
-
/** The class URI whose instances this transformation matches. */
|
|
33
|
-
matchesClass: EntityUri;
|
|
34
|
-
/**
|
|
35
|
-
* Property URIs that must resolve to a non-empty value on the
|
|
36
|
-
* input subject. Missing-required instances are silently skipped.
|
|
37
|
-
*/
|
|
38
|
-
requires: EntityUri[];
|
|
39
|
-
}
|
|
40
|
-
export interface CompiledFormatOverride {
|
|
41
|
-
/**
|
|
42
|
-
* Optional include list of metadata entry keys the backend should
|
|
43
|
-
* emit, in order. Keys outside this list are skipped. If omitted,
|
|
44
|
-
* the backend emits all metadata entries in their AST order.
|
|
45
|
-
*/
|
|
46
|
-
metadataKeys?: string[];
|
|
47
|
-
/** AST-key → emitted-key renames. */
|
|
48
|
-
metadataRenames: Map<string, string>;
|
|
49
|
-
/** Whether to append a final newline to the serialized output. */
|
|
50
|
-
trailingNewline?: boolean;
|
|
51
|
-
}
|
|
52
|
-
export type CompiledExpression = CompiledBuildAstNode | CompiledForEach | CompiledWhen | CompiledConcat | CompiledStringLiteral | CompiledIntegerLiteral | CompiledBooleanLiteral | CompiledVarRef | CompiledPropertyRead | CompiledTraverse | CompiledFallback | CompiledUriName | CompiledListMap | CompiledJoin | CompiledNormalize | CompiledIsSet | CompiledUriLiteral | CompiledDisplayLabel | CompiledResolveRef;
|
|
53
|
-
export interface CompiledBuildAstNode {
|
|
54
|
-
kind: 'build-ast-node';
|
|
55
|
-
astClass: EntityUri;
|
|
56
|
-
set: CompiledBinding[];
|
|
57
|
-
}
|
|
58
|
-
export interface CompiledForEach {
|
|
59
|
-
kind: 'for-each';
|
|
60
|
-
iterate: CompiledExpression;
|
|
61
|
-
loopVar: string;
|
|
62
|
-
emit: CompiledExpression;
|
|
63
|
-
}
|
|
64
|
-
export interface CompiledWhen {
|
|
65
|
-
kind: 'when';
|
|
66
|
-
condition: CompiledExpression;
|
|
67
|
-
thenBuild: CompiledExpression;
|
|
68
|
-
elseBuild?: CompiledExpression;
|
|
69
|
-
}
|
|
70
|
-
export interface CompiledConcat {
|
|
71
|
-
kind: 'concat';
|
|
72
|
-
parts: CompiledExpression[];
|
|
73
|
-
}
|
|
74
|
-
export interface CompiledStringLiteral {
|
|
75
|
-
kind: 'string-literal';
|
|
76
|
-
value: string;
|
|
77
|
-
}
|
|
78
|
-
export interface CompiledIntegerLiteral {
|
|
79
|
-
kind: 'integer-literal';
|
|
80
|
-
value: number;
|
|
81
|
-
}
|
|
82
|
-
export interface CompiledBooleanLiteral {
|
|
83
|
-
kind: 'boolean-literal';
|
|
84
|
-
value: boolean;
|
|
85
|
-
}
|
|
86
|
-
export interface CompiledVarRef {
|
|
87
|
-
kind: 'var-ref';
|
|
88
|
-
varName: string;
|
|
89
|
-
}
|
|
90
|
-
export interface CompiledPropertyRead {
|
|
91
|
-
kind: 'property-read';
|
|
92
|
-
source: CompiledExpression;
|
|
93
|
-
readProp: EntityUri;
|
|
94
|
-
}
|
|
95
|
-
export interface CompiledTraverse {
|
|
96
|
-
kind: 'traverse';
|
|
97
|
-
source: CompiledExpression;
|
|
98
|
-
through: EntityUri;
|
|
99
|
-
step: CompiledExpression;
|
|
100
|
-
}
|
|
101
|
-
export interface CompiledFallback {
|
|
102
|
-
kind: 'fallback';
|
|
103
|
-
primary: CompiledExpression;
|
|
104
|
-
alternate: CompiledExpression;
|
|
105
|
-
}
|
|
106
|
-
export interface CompiledUriName {
|
|
107
|
-
kind: 'uri-name';
|
|
108
|
-
of: CompiledExpression;
|
|
109
|
-
}
|
|
110
|
-
export interface CompiledListMap {
|
|
111
|
-
kind: 'list-map';
|
|
112
|
-
source: CompiledExpression;
|
|
113
|
-
loopVar: string;
|
|
114
|
-
mapBody: CompiledExpression;
|
|
115
|
-
}
|
|
116
|
-
export interface CompiledJoin {
|
|
117
|
-
kind: 'join';
|
|
118
|
-
separator: string;
|
|
119
|
-
items: CompiledExpression;
|
|
120
|
-
}
|
|
121
|
-
export interface CompiledNormalize {
|
|
122
|
-
kind: 'normalize';
|
|
123
|
-
source: CompiledExpression;
|
|
124
|
-
normKind: NormalizeKindName;
|
|
125
|
-
}
|
|
126
|
-
export interface CompiledIsSet {
|
|
127
|
-
kind: 'is-set';
|
|
128
|
-
check: CompiledExpression;
|
|
129
|
-
}
|
|
130
|
-
export interface CompiledUriLiteral {
|
|
131
|
-
kind: 'uri-literal';
|
|
132
|
-
refTo: EntityUri;
|
|
133
|
-
}
|
|
134
|
-
export interface CompiledDisplayLabel {
|
|
135
|
-
kind: 'display-label';
|
|
136
|
-
/** The entity whose display label this expression resolves. */
|
|
137
|
-
labelTarget: EntityUri;
|
|
138
|
-
/** The property to read off the target for the display value. */
|
|
139
|
-
labelSource: EntityUri;
|
|
140
|
-
}
|
|
141
|
-
export interface CompiledResolveRef {
|
|
142
|
-
kind: 'resolve-ref';
|
|
143
|
-
/**
|
|
144
|
-
* Expression that yields a ReferenceKanonak or EntityUri. The
|
|
145
|
-
* engine dereferences it via ReferenceResolver and returns the
|
|
146
|
-
* target SubjectKanonak (or undefined on miss).
|
|
147
|
-
*/
|
|
148
|
-
source: CompiledExpression;
|
|
149
|
-
}
|
|
150
|
-
export interface CompiledBinding {
|
|
151
|
-
/** The document-ast property URI being bound. */
|
|
152
|
-
field: EntityUri;
|
|
153
|
-
/** Expression that produces the bound value. */
|
|
154
|
-
value: CompiledExpression;
|
|
155
|
-
}
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Evaluates a `CompiledExpression` tree against an input binding
|
|
3
|
-
* environment. Handles both value-producing kinds (property-read,
|
|
4
|
-
* traverse, fallback, ...) and structure-building kinds
|
|
5
|
-
* (build-ast-node, for-each, when, concat) under a single dispatch.
|
|
6
|
-
*
|
|
7
|
-
* All property reads walk `statement[]` by canonical predicate URI
|
|
8
|
-
* (via `UriHelpers`). Reference resolution during traverse goes
|
|
9
|
-
* through the shared `ReferenceResolver`. No string heuristics, no
|
|
10
|
-
* YAML hand-parsing.
|
|
11
|
-
*/
|
|
12
|
-
import { type Kanonak, type KanonakUri } from '@kanonak-protocol/sdk';
|
|
13
|
-
import { ReferenceResolver } from './ReferenceResolver.js';
|
|
14
|
-
import type { CompiledExpression } from './CompiledTransformation.js';
|
|
15
|
-
import { DOCAST } from './UriConstants.js';
|
|
16
|
-
export type EnvValue = string | number | boolean | Kanonak | Kanonak[] | KanonakUri | unknown[] | object | undefined | null;
|
|
17
|
-
export type Env = Map<string, EnvValue>;
|
|
18
|
-
export declare class ExpressionEvalError extends Error {
|
|
19
|
-
constructor(message: string);
|
|
20
|
-
}
|
|
21
|
-
export declare class ExpressionEngine {
|
|
22
|
-
private readonly resolver;
|
|
23
|
-
private readonly allKanonaks;
|
|
24
|
-
constructor(resolver: ReferenceResolver, allKanonaks: Kanonak[]);
|
|
25
|
-
evaluate(expr: CompiledExpression, env: Env): Promise<EnvValue>;
|
|
26
|
-
private buildAstNode;
|
|
27
|
-
}
|
|
28
|
-
export { DOCAST };
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Compiles a Kanonak `Transformation` subject into a typed
|
|
3
|
-
* CompiledTransformation. All property reads go through
|
|
4
|
-
* `UriHelpers`; no string matching, no YAML hand-parsing. Throws
|
|
5
|
-
* `TransformationLoadError` with a breadcrumb path on the first
|
|
6
|
-
* shape violation.
|
|
7
|
-
*/
|
|
8
|
-
import { SubjectKanonak, type Kanonak } from '@kanonak-protocol/sdk';
|
|
9
|
-
import { type EntityUri } from '../capabilities/UriHelpers.js';
|
|
10
|
-
import type { CompiledTransformation } from './CompiledTransformation.js';
|
|
11
|
-
export declare class TransformationLoadError extends Error {
|
|
12
|
-
readonly path: string;
|
|
13
|
-
constructor(message: string, path: string);
|
|
14
|
-
}
|
|
15
|
-
export declare function compileTransformation(transformation: SubjectKanonak, allKanonaks: Kanonak[]): CompiledTransformation;
|
|
16
|
-
/**
|
|
17
|
-
* Reference to a transformations-ontology entity (used externally
|
|
18
|
-
* to look up named Transformation instances by local name).
|
|
19
|
-
*/
|
|
20
|
-
export declare function findTransformation(kanonaks: Kanonak[], uri: EntityUri): SubjectKanonak | undefined;
|
|
@@ -1,81 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Top-level entry point for the generic transformation runner.
|
|
3
|
-
*
|
|
4
|
-
* Given a Transformation SubjectKanonak, a list of candidate input
|
|
5
|
-
* instances, the broader repository (for reference resolution), and
|
|
6
|
-
* the desired OutputFormat, produces a list of in-memory `Artifact`
|
|
7
|
-
* records. The runner never touches the filesystem — writing is the
|
|
8
|
-
* deployment handler's job.
|
|
9
|
-
*
|
|
10
|
-
* Pipeline per input:
|
|
11
|
-
* 1. Filter by InputPattern.matchesClass + requires.
|
|
12
|
-
* 2. Evaluate `rule` → DocAstDocument.
|
|
13
|
-
* 3. Evaluate `artifactName` → filename stem.
|
|
14
|
-
* 4. Look up backend by OutputFormat's local name.
|
|
15
|
-
* 5. Apply FormatOverride for that format if present.
|
|
16
|
-
* 6. Serialize → bytes → wrap as Artifact.
|
|
17
|
-
*/
|
|
18
|
-
import { KanonakParser, KanonakObjectParser, SubjectKanonak, type Kanonak, type IKanonakDocumentRepository } from '@kanonak-protocol/sdk';
|
|
19
|
-
import type { IDocumentAstBackend } from './backends/IDocumentAstBackend.js';
|
|
20
|
-
export interface Artifact {
|
|
21
|
-
/** Filename stem with no directory and no extension. */
|
|
22
|
-
fileName: string;
|
|
23
|
-
/** The OutputFormat local name this artifact was serialized as. */
|
|
24
|
-
format: string;
|
|
25
|
-
/** The serialized bytes (UTF-8 string). */
|
|
26
|
-
content: string;
|
|
27
|
-
/** The source subject this artifact was produced from. */
|
|
28
|
-
sourceName: string;
|
|
29
|
-
}
|
|
30
|
-
/**
|
|
31
|
-
* Metadata about one OutputFormat the runner knows how to serialize:
|
|
32
|
-
* the canonical Kanonak URI of the OutputFormat instance itself
|
|
33
|
-
* (which the runner uses as the backend-registry key) and the
|
|
34
|
-
* filename extension the CLI should append when writing artifacts to
|
|
35
|
-
* disk. Kept alongside the runner so callers (like the
|
|
36
|
-
* `kanonak transform` command) don't have to duplicate this table.
|
|
37
|
-
*
|
|
38
|
-
* Note: `formatUri` is a REAL Kanonak URI — `publisher/package/name`
|
|
39
|
-
* of an actual `tx.OutputFormat` instance declared in
|
|
40
|
-
* `kanonak.org/transformations@2.0.0`. It is NOT a faux-path
|
|
41
|
-
* identifier. Each registered IDocumentAstBackend uses the same URI
|
|
42
|
-
* as its own `backendUri` so the map lookup resolves one-to-one.
|
|
43
|
-
*/
|
|
44
|
-
export interface FormatDescriptor {
|
|
45
|
-
/**
|
|
46
|
-
* Canonical Kanonak URI of the tx.OutputFormat instance this
|
|
47
|
-
* descriptor describes. Matches IDocumentAstBackend.backendUri.
|
|
48
|
-
*/
|
|
49
|
-
formatUri: string;
|
|
50
|
-
/** Filename extension including the leading dot (e.g. `.md`). */
|
|
51
|
-
extension: string;
|
|
52
|
-
}
|
|
53
|
-
export declare const SUPPORTED_FORMATS: Record<string, FormatDescriptor>;
|
|
54
|
-
export interface RunInput {
|
|
55
|
-
transformation: SubjectKanonak;
|
|
56
|
-
/** Candidate input subjects to run the transformation against. */
|
|
57
|
-
instances: SubjectKanonak[];
|
|
58
|
-
allKanonaks: Kanonak[];
|
|
59
|
-
/**
|
|
60
|
-
* Optional: the Kanonaks of the transformation's own package
|
|
61
|
-
* (plus any packages hosting fragments the transformation calls).
|
|
62
|
-
* Used at compile time to resolve `call-fragment` references. If
|
|
63
|
-
* the transformation does not use fragments this can be left
|
|
64
|
-
* undefined — the retrofit Skill/Agent cases pass nothing.
|
|
65
|
-
*/
|
|
66
|
-
transformationKanonaks?: Kanonak[];
|
|
67
|
-
repository: IKanonakDocumentRepository;
|
|
68
|
-
parser: KanonakParser;
|
|
69
|
-
objectParser: KanonakObjectParser;
|
|
70
|
-
/** The OutputFormat local name (e.g. `'markdown-with-frontmatter'`). */
|
|
71
|
-
outputFormat: string;
|
|
72
|
-
}
|
|
73
|
-
export declare class TransformationRunnerError extends Error {
|
|
74
|
-
}
|
|
75
|
-
export declare class TransformationRunner {
|
|
76
|
-
private readonly backends;
|
|
77
|
-
constructor();
|
|
78
|
-
register(backend: IDocumentAstBackend): void;
|
|
79
|
-
run(input: RunInput): Promise<Artifact[]>;
|
|
80
|
-
private findBackendForFormat;
|
|
81
|
-
}
|
|
@@ -1,147 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Hardcoded canonical URIs for the document-ast and transformations
|
|
3
|
-
* ontologies. Per `typescript/CLAUDE.md` rule 6, hardcoded URI
|
|
4
|
-
* constants are fine and expected — they are the ontology contract.
|
|
5
|
-
* String-based alias or suffix matching is NOT.
|
|
6
|
-
*
|
|
7
|
-
* Every comparison in the runner is KanonakUri → EntityUri equality
|
|
8
|
-
* (publisher + package + name), never string manipulation of YAML
|
|
9
|
-
* keys or alias prefixes.
|
|
10
|
-
*/
|
|
11
|
-
import type { EntityUri } from '../capabilities/UriHelpers.js';
|
|
12
|
-
export declare const DOCAST_PUB = "kanonak.org";
|
|
13
|
-
export declare const DOCAST_PKG = "document-ast";
|
|
14
|
-
export declare const DOCAST: {
|
|
15
|
-
readonly Document: EntityUri;
|
|
16
|
-
readonly Block: EntityUri;
|
|
17
|
-
readonly Inline: EntityUri;
|
|
18
|
-
readonly StructuredValue: EntityUri;
|
|
19
|
-
readonly Heading: EntityUri;
|
|
20
|
-
readonly Paragraph: EntityUri;
|
|
21
|
-
readonly RawBlock: EntityUri;
|
|
22
|
-
readonly Text: EntityUri;
|
|
23
|
-
readonly StructuredMap: EntityUri;
|
|
24
|
-
readonly StructuredEntry: EntityUri;
|
|
25
|
-
readonly StructuredList: EntityUri;
|
|
26
|
-
readonly StringScalar: EntityUri;
|
|
27
|
-
readonly IntegerScalar: EntityUri;
|
|
28
|
-
readonly EscapeHint: EntityUri;
|
|
29
|
-
readonly MediaType: EntityUri;
|
|
30
|
-
readonly metadata: EntityUri;
|
|
31
|
-
readonly children: EntityUri;
|
|
32
|
-
readonly level: EntityUri;
|
|
33
|
-
readonly inlines: EntityUri;
|
|
34
|
-
readonly text: EntityUri;
|
|
35
|
-
readonly entries: EntityUri;
|
|
36
|
-
readonly key: EntityUri;
|
|
37
|
-
readonly value: EntityUri;
|
|
38
|
-
readonly escapeHint: EntityUri;
|
|
39
|
-
readonly items: EntityUri;
|
|
40
|
-
readonly stringValue: EntityUri;
|
|
41
|
-
readonly integerValue: EntityUri;
|
|
42
|
-
readonly rawContent: EntityUri;
|
|
43
|
-
readonly mediaType: EntityUri;
|
|
44
|
-
readonly mimeType: EntityUri;
|
|
45
|
-
readonly ESC_RAW: EntityUri;
|
|
46
|
-
readonly ESC_YAML_SAFE: EntityUri;
|
|
47
|
-
readonly ESC_TOML_STRING: EntityUri;
|
|
48
|
-
readonly ESC_TOML_MULTILINE: EntityUri;
|
|
49
|
-
readonly ESC_JSON: EntityUri;
|
|
50
|
-
readonly TEXT_PLAIN: EntityUri;
|
|
51
|
-
readonly TEXT_MARKDOWN: EntityUri;
|
|
52
|
-
readonly TEXT_HTML: EntityUri;
|
|
53
|
-
readonly APPLICATION_JSON: EntityUri;
|
|
54
|
-
readonly TEXT_YAML: EntityUri;
|
|
55
|
-
readonly IMAGE_SVG_XML: EntityUri;
|
|
56
|
-
};
|
|
57
|
-
export declare const TX_PUB = "kanonak.org";
|
|
58
|
-
export declare const TX_PKG = "transformations";
|
|
59
|
-
export declare const TX: {
|
|
60
|
-
readonly Transformation: EntityUri;
|
|
61
|
-
readonly InputPattern: EntityUri;
|
|
62
|
-
readonly Expression: EntityUri;
|
|
63
|
-
readonly ExpressionKind: EntityUri;
|
|
64
|
-
readonly ExpressionFragment: EntityUri;
|
|
65
|
-
readonly AstFieldBinding: EntityUri;
|
|
66
|
-
readonly OutputFormat: EntityUri;
|
|
67
|
-
readonly FormatOverride: EntityUri;
|
|
68
|
-
readonly RenameEntry: EntityUri;
|
|
69
|
-
readonly Artifact: EntityUri;
|
|
70
|
-
readonly NormalizeKind: EntityUri;
|
|
71
|
-
readonly inputPattern: EntityUri;
|
|
72
|
-
readonly rule: EntityUri;
|
|
73
|
-
readonly artifactName: EntityUri;
|
|
74
|
-
readonly outputs: EntityUri;
|
|
75
|
-
readonly formatOverrides: EntityUri;
|
|
76
|
-
readonly matchesClass: EntityUri;
|
|
77
|
-
readonly requires: EntityUri;
|
|
78
|
-
readonly kind: EntityUri;
|
|
79
|
-
readonly astClass: EntityUri;
|
|
80
|
-
readonly set: EntityUri;
|
|
81
|
-
readonly iterate: EntityUri;
|
|
82
|
-
readonly loopVar: EntityUri;
|
|
83
|
-
readonly emit: EntityUri;
|
|
84
|
-
readonly condition: EntityUri;
|
|
85
|
-
readonly thenBuild: EntityUri;
|
|
86
|
-
readonly elseBuild: EntityUri;
|
|
87
|
-
readonly parts: EntityUri;
|
|
88
|
-
readonly stringLiteral: EntityUri;
|
|
89
|
-
readonly integerLiteral: EntityUri;
|
|
90
|
-
readonly booleanLiteral: EntityUri;
|
|
91
|
-
readonly varName: EntityUri;
|
|
92
|
-
readonly readSource: EntityUri;
|
|
93
|
-
readonly readProp: EntityUri;
|
|
94
|
-
readonly traverseSource: EntityUri;
|
|
95
|
-
readonly through: EntityUri;
|
|
96
|
-
readonly step: EntityUri;
|
|
97
|
-
readonly primary: EntityUri;
|
|
98
|
-
readonly alternate: EntityUri;
|
|
99
|
-
readonly uriNameOf: EntityUri;
|
|
100
|
-
readonly listMapSource: EntityUri;
|
|
101
|
-
readonly mapBody: EntityUri;
|
|
102
|
-
readonly separator: EntityUri;
|
|
103
|
-
readonly items: EntityUri;
|
|
104
|
-
readonly normSource: EntityUri;
|
|
105
|
-
readonly normKind: EntityUri;
|
|
106
|
-
readonly checkExpr: EntityUri;
|
|
107
|
-
readonly refTo: EntityUri;
|
|
108
|
-
readonly fragmentRef: EntityUri;
|
|
109
|
-
readonly expr: EntityUri;
|
|
110
|
-
readonly labelTarget: EntityUri;
|
|
111
|
-
readonly labelSource: EntityUri;
|
|
112
|
-
readonly resolveSource: EntityUri;
|
|
113
|
-
readonly field: EntityUri;
|
|
114
|
-
readonly bindValue: EntityUri;
|
|
115
|
-
readonly backendUri: EntityUri;
|
|
116
|
-
readonly formatTarget: EntityUri;
|
|
117
|
-
readonly metadataKeys: EntityUri;
|
|
118
|
-
readonly metadataRenames: EntityUri;
|
|
119
|
-
readonly trailingNewline: EntityUri;
|
|
120
|
-
readonly fromKey: EntityUri;
|
|
121
|
-
readonly toKey: EntityUri;
|
|
122
|
-
readonly KIND_BUILD_AST_NODE: EntityUri;
|
|
123
|
-
readonly KIND_FOR_EACH: EntityUri;
|
|
124
|
-
readonly KIND_WHEN: EntityUri;
|
|
125
|
-
readonly KIND_CONCAT: EntityUri;
|
|
126
|
-
readonly KIND_STRING_LITERAL: EntityUri;
|
|
127
|
-
readonly KIND_INTEGER_LITERAL: EntityUri;
|
|
128
|
-
readonly KIND_BOOLEAN_LITERAL: EntityUri;
|
|
129
|
-
readonly KIND_VAR_REF: EntityUri;
|
|
130
|
-
readonly KIND_PROPERTY_READ: EntityUri;
|
|
131
|
-
readonly KIND_TRAVERSE: EntityUri;
|
|
132
|
-
readonly KIND_FALLBACK: EntityUri;
|
|
133
|
-
readonly KIND_URI_NAME: EntityUri;
|
|
134
|
-
readonly KIND_LIST_MAP: EntityUri;
|
|
135
|
-
readonly KIND_JOIN: EntityUri;
|
|
136
|
-
readonly KIND_NORMALIZE: EntityUri;
|
|
137
|
-
readonly KIND_IS_SET: EntityUri;
|
|
138
|
-
readonly KIND_URI_LITERAL: EntityUri;
|
|
139
|
-
readonly KIND_CALL_FRAGMENT: EntityUri;
|
|
140
|
-
readonly KIND_DISPLAY_LABEL: EntityUri;
|
|
141
|
-
readonly KIND_RESOLVE_REF: EntityUri;
|
|
142
|
-
readonly NORM_TRIM_END: EntityUri;
|
|
143
|
-
readonly FMT_MARKDOWN_FRONTMATTER: EntityUri;
|
|
144
|
-
readonly FMT_TOML: EntityUri;
|
|
145
|
-
readonly FMT_JSON: EntityUri;
|
|
146
|
-
readonly FMT_PLAIN_MARKDOWN: EntityUri;
|
|
147
|
-
};
|