@agenticprimitives/ontology 1.0.0-alpha.12 → 1.0.0-alpha.14
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 +4 -2
- package/cbox/discovery-graph-shapes.shacl.ttl +234 -0
- package/context.jsonld +6 -0
- package/dist/artifacts.d.ts +3 -3
- package/dist/artifacts.d.ts.map +1 -1
- package/dist/artifacts.js +11 -1
- package/dist/artifacts.js.map +1 -1
- package/dist/index.d.ts +67 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +71 -1
- package/dist/index.js.map +1 -1
- package/mappings/agent-discovery-standards.ttl +106 -0
- package/mappings/spine-standards.ttl +83 -0
- package/package.json +2 -1
- package/tbox/attestation.ttl +2 -2
- package/tbox/core.ttl +16 -4
- package/tbox/discovery.ttl +149 -0
- package/tbox/identity.ttl +2 -6
- package/tbox/registry.ttl +227 -0
- package/tbox/resolution.ttl +2 -2
- package/tbox/security-exposure.ttl +102 -0
- package/tbox/trust.ttl +90 -0
package/README.md
CHANGED
|
@@ -41,13 +41,15 @@ Generic SKOS/SHACL toolchains manage vocabularies as documents — governed in a
|
|
|
41
41
|
|
|
42
42
|
1. **On chain** — a shape or predicate here must match its on-chain counterpart in `OntologyTermRegistry` / `ShapeRegistry` (spec 225 §8); drift is logged as a finding, not tolerated as skew.
|
|
43
43
|
2. **In TypeScript** — the IRIs mirror the branded types in [`types`](../types) (`CanonicalAgentId`, `Assurance`, …). One brand; this package names the IRI, never redefines the type.
|
|
44
|
-
3. **Across standards** — `mappings/*.ttl` carries explicit crosswalks to external agent-identity standards (HCS, ERC-8004) instead of informal "roughly corresponds to" prose.
|
|
44
|
+
3. **Across standards** — `mappings/*.ttl` carries explicit crosswalks to external agent-identity standards (HCS, ERC-8004, OASF) instead of informal "roughly corresponds to" prose.
|
|
45
45
|
|
|
46
46
|
And it ships light: no heavy RDF/SHACL libraries in the published surface — consumers wire their own engines against the artifacts.
|
|
47
47
|
|
|
48
48
|
## Scope
|
|
49
49
|
|
|
50
|
-
Bounded to
|
|
50
|
+
Bounded to generic AP primitives: identity, credential, custody, delegation, audit, naming, org, registry/discovery, trust, public exposure findings, and the substrate-spine T-box class definitions (spec 225 §11.5). Runtime SHACL shapes for product flows live in their owning packages; GraphDB A-box ingestion shapes for discovery live in `cbox/discovery-graph-shapes.shacl.ttl`; vertical vocabulary remains app-owned ([ADR-0021](../../docs/architecture/decisions/0021-generic-packages-vs-white-label-apps.md)).
|
|
51
|
+
|
|
52
|
+
The discovery ontology deliberately builds from the domain-derived vocabulary shape in Agent Explorer's `apps/ontology/ontology` modules — `core.ttl`, `discovery.ttl`, `descriptors.ttl`, `erc8004.ttl`, `hol.ttl`, `oasf.ttl`, and `trust.ttl` — while refining it into AP-native namespaces rooted in PROV-O and DOLCE+DnS/DUL.
|
|
51
53
|
|
|
52
54
|
## What this is NOT
|
|
53
55
|
|
|
@@ -0,0 +1,234 @@
|
|
|
1
|
+
# C-box — SHACL shapes for discovery A-box projections.
|
|
2
|
+
# These are graph-ingestion shapes for public discovery data and restricted
|
|
3
|
+
# penetration findings. They are not authority checks.
|
|
4
|
+
|
|
5
|
+
@prefix ap: <https://agenticprimitives.dev/ns/core#> .
|
|
6
|
+
@prefix apdisc: <https://agenticprimitives.dev/ns/discovery#> .
|
|
7
|
+
@prefix apreg: <https://agenticprimitives.dev/ns/registry#> .
|
|
8
|
+
@prefix apsec: <https://agenticprimitives.dev/ns/security-exposure#> .
|
|
9
|
+
@prefix aptrust: <https://agenticprimitives.dev/ns/trust#> .
|
|
10
|
+
@prefix prov: <http://www.w3.org/ns/prov#> .
|
|
11
|
+
@prefix sh: <http://www.w3.org/ns/shacl#> .
|
|
12
|
+
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
|
|
13
|
+
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
|
|
14
|
+
|
|
15
|
+
apreg:RegistryEntryShape a sh:NodeShape ;
|
|
16
|
+
rdfs:label "RegistryEntry shape" ;
|
|
17
|
+
sh:targetClass apreg:RegistryEntry ;
|
|
18
|
+
sh:property [
|
|
19
|
+
sh:path apreg:registryId ;
|
|
20
|
+
sh:minCount 1 ;
|
|
21
|
+
sh:maxCount 1 ;
|
|
22
|
+
sh:datatype xsd:string ;
|
|
23
|
+
sh:message "RegistryEntry must have exactly one registryId."
|
|
24
|
+
] ;
|
|
25
|
+
sh:property [
|
|
26
|
+
sh:path apreg:entryId ;
|
|
27
|
+
sh:minCount 1 ;
|
|
28
|
+
sh:maxCount 1 ;
|
|
29
|
+
sh:datatype xsd:string ;
|
|
30
|
+
sh:message "RegistryEntry must have exactly one entryId."
|
|
31
|
+
] ;
|
|
32
|
+
sh:property [
|
|
33
|
+
sh:path apreg:subjectAgent ;
|
|
34
|
+
sh:minCount 1 ;
|
|
35
|
+
sh:maxCount 1 ;
|
|
36
|
+
sh:class ap:Agent ;
|
|
37
|
+
sh:message "RegistryEntry must point to exactly one Smart Agent subject."
|
|
38
|
+
] ;
|
|
39
|
+
sh:property [
|
|
40
|
+
sh:path apreg:cardHash ;
|
|
41
|
+
sh:minCount 1 ;
|
|
42
|
+
sh:maxCount 1 ;
|
|
43
|
+
sh:datatype xsd:string ;
|
|
44
|
+
sh:pattern "^sha256:[0-9a-fA-F]{64}$" ;
|
|
45
|
+
sh:message "RegistryEntry.cardHash must be sha256:<64 hex>."
|
|
46
|
+
] ;
|
|
47
|
+
sh:property [
|
|
48
|
+
sh:path apreg:hasBindingProof ;
|
|
49
|
+
sh:minCount 1 ;
|
|
50
|
+
sh:maxCount 1 ;
|
|
51
|
+
sh:class apreg:RegistryEntryBindingProof ;
|
|
52
|
+
sh:message "RegistryEntry must carry exactly one binding proof."
|
|
53
|
+
] ;
|
|
54
|
+
sh:property [
|
|
55
|
+
sh:path apreg:bindingProofHash ;
|
|
56
|
+
sh:minCount 1 ;
|
|
57
|
+
sh:maxCount 1 ;
|
|
58
|
+
sh:datatype xsd:string ;
|
|
59
|
+
sh:pattern "^sha256:[0-9a-fA-F]{64}$" ;
|
|
60
|
+
sh:message "RegistryEntry.bindingProofHash must be sha256:<64 hex>."
|
|
61
|
+
] ;
|
|
62
|
+
sh:property [
|
|
63
|
+
sh:path apreg:lifecycleStatus ;
|
|
64
|
+
sh:minCount 1 ;
|
|
65
|
+
sh:maxCount 1 ;
|
|
66
|
+
sh:class apreg:RegistryLifecycleStatus ;
|
|
67
|
+
sh:message "RegistryEntry must project exactly one lifecycle status."
|
|
68
|
+
] ;
|
|
69
|
+
sh:property [
|
|
70
|
+
sh:path apreg:expiresAt ;
|
|
71
|
+
sh:maxCount 1 ;
|
|
72
|
+
sh:datatype xsd:dateTime ;
|
|
73
|
+
sh:message "RegistryEntry.expiresAt, if present, must be a single dateTime (absent = non-expiring)."
|
|
74
|
+
] .
|
|
75
|
+
|
|
76
|
+
apreg:SignedAgentCardShape a sh:NodeShape ;
|
|
77
|
+
rdfs:label "SignedAgentCard shape" ;
|
|
78
|
+
sh:targetClass apreg:SignedAgentCard ;
|
|
79
|
+
sh:property [
|
|
80
|
+
sh:path apreg:cardHash ;
|
|
81
|
+
sh:minCount 1 ;
|
|
82
|
+
sh:maxCount 1 ;
|
|
83
|
+
sh:datatype xsd:string ;
|
|
84
|
+
sh:pattern "^sha256:[0-9a-fA-F]{64}$" ;
|
|
85
|
+
sh:message "SignedAgentCard.cardHash must be sha256:<64 hex>."
|
|
86
|
+
] ;
|
|
87
|
+
sh:property [
|
|
88
|
+
sh:path apreg:cardSubject ;
|
|
89
|
+
sh:minCount 1 ;
|
|
90
|
+
sh:maxCount 1 ;
|
|
91
|
+
sh:class ap:Agent ;
|
|
92
|
+
sh:message "SignedAgentCard must point to exactly one Smart Agent subject."
|
|
93
|
+
] .
|
|
94
|
+
|
|
95
|
+
apreg:RegistryEntryBindingProofShape a sh:NodeShape ;
|
|
96
|
+
rdfs:label "RegistryEntryBindingProof shape" ;
|
|
97
|
+
sh:targetClass apreg:RegistryEntryBindingProof ;
|
|
98
|
+
sh:property [
|
|
99
|
+
sh:path apreg:proofHash ;
|
|
100
|
+
sh:minCount 1 ;
|
|
101
|
+
sh:maxCount 1 ;
|
|
102
|
+
sh:datatype xsd:string ;
|
|
103
|
+
sh:pattern "^sha256:[0-9a-fA-F]{64}$" ;
|
|
104
|
+
sh:message "RegistryEntryBindingProof.proofHash must be sha256:<64 hex>."
|
|
105
|
+
] ;
|
|
106
|
+
sh:property [
|
|
107
|
+
sh:path apreg:cardHash ;
|
|
108
|
+
sh:minCount 1 ;
|
|
109
|
+
sh:maxCount 1 ;
|
|
110
|
+
sh:datatype xsd:string ;
|
|
111
|
+
sh:pattern "^sha256:[0-9a-fA-F]{64}$" ;
|
|
112
|
+
sh:message "RegistryEntryBindingProof.cardHash must be sha256:<64 hex>."
|
|
113
|
+
] .
|
|
114
|
+
|
|
115
|
+
apreg:ExternalRegistryFacetShape a sh:NodeShape ;
|
|
116
|
+
rdfs:label "ExternalRegistryFacet shape" ;
|
|
117
|
+
sh:targetClass apreg:ExternalRegistryFacet ;
|
|
118
|
+
sh:property [
|
|
119
|
+
sh:path apreg:externalSurface ;
|
|
120
|
+
sh:minCount 1 ;
|
|
121
|
+
sh:maxCount 1 ;
|
|
122
|
+
sh:in ("erc8004" "hcs10" "hcs11" "hcs14" "hcs26" "ans" "dns-aid" "oasf" "a2a" "mcp-registry" "nanda") ;
|
|
123
|
+
sh:message "ExternalRegistryFacet.externalSurface must be a known projection surface."
|
|
124
|
+
] ;
|
|
125
|
+
sh:property [
|
|
126
|
+
sh:path apreg:externalIdentifier ;
|
|
127
|
+
sh:minCount 1 ;
|
|
128
|
+
sh:maxCount 1 ;
|
|
129
|
+
sh:datatype xsd:string ;
|
|
130
|
+
sh:message "ExternalRegistryFacet must have one external identifier."
|
|
131
|
+
] ;
|
|
132
|
+
sh:property [
|
|
133
|
+
sh:path apreg:projectionOf ;
|
|
134
|
+
sh:minCount 1 ;
|
|
135
|
+
sh:message "ExternalRegistryFacet must point back to an AP-native projection target."
|
|
136
|
+
] .
|
|
137
|
+
|
|
138
|
+
apdisc:CandidateQueryShape a sh:NodeShape ;
|
|
139
|
+
rdfs:label "CandidateQuery shape" ;
|
|
140
|
+
sh:targetClass apdisc:CandidateQuery ;
|
|
141
|
+
sh:property [
|
|
142
|
+
sh:path apdisc:queryHash ;
|
|
143
|
+
sh:minCount 1 ;
|
|
144
|
+
sh:maxCount 1 ;
|
|
145
|
+
sh:datatype xsd:string ;
|
|
146
|
+
sh:message "CandidateQuery must record the canonical query hash."
|
|
147
|
+
] ;
|
|
148
|
+
sh:property [
|
|
149
|
+
sh:path apdisc:usesGraphSnapshot ;
|
|
150
|
+
sh:minCount 1 ;
|
|
151
|
+
sh:maxCount 1 ;
|
|
152
|
+
sh:class apdisc:GraphSnapshot ;
|
|
153
|
+
sh:message "CandidateQuery must cite the graph snapshot used."
|
|
154
|
+
] ;
|
|
155
|
+
sh:property [
|
|
156
|
+
sh:path apdisc:usesInferenceProfile ;
|
|
157
|
+
sh:minCount 1 ;
|
|
158
|
+
sh:maxCount 1 ;
|
|
159
|
+
sh:class apdisc:InferenceProfile ;
|
|
160
|
+
sh:message "CandidateQuery must cite the inference profile used."
|
|
161
|
+
] .
|
|
162
|
+
|
|
163
|
+
apdisc:MatchCandidateShape a sh:NodeShape ;
|
|
164
|
+
rdfs:label "MatchCandidate shape" ;
|
|
165
|
+
sh:targetClass apdisc:MatchCandidate ;
|
|
166
|
+
sh:property [
|
|
167
|
+
sh:path apdisc:candidateAgent ;
|
|
168
|
+
sh:minCount 1 ;
|
|
169
|
+
sh:maxCount 1 ;
|
|
170
|
+
sh:class ap:Agent ;
|
|
171
|
+
sh:message "MatchCandidate must cite exactly one candidate Smart Agent."
|
|
172
|
+
] ;
|
|
173
|
+
sh:property [
|
|
174
|
+
sh:path apdisc:hasTrustDetermination ;
|
|
175
|
+
sh:minCount 1 ;
|
|
176
|
+
sh:maxCount 1 ;
|
|
177
|
+
sh:class apdisc:TrustDetermination ;
|
|
178
|
+
sh:message "MatchCandidate must include one trust determination."
|
|
179
|
+
] ;
|
|
180
|
+
sh:property [
|
|
181
|
+
sh:path apdisc:hasEvidencePath ;
|
|
182
|
+
sh:minCount 1 ;
|
|
183
|
+
sh:class apdisc:EvidencePath ;
|
|
184
|
+
sh:message "MatchCandidate must cite at least one evidence path."
|
|
185
|
+
] .
|
|
186
|
+
|
|
187
|
+
apdisc:TrustDeterminationShape a sh:NodeShape ;
|
|
188
|
+
rdfs:label "TrustDetermination shape" ;
|
|
189
|
+
sh:targetClass apdisc:TrustDetermination ;
|
|
190
|
+
sh:property [
|
|
191
|
+
sh:path apdisc:confidence ;
|
|
192
|
+
sh:minCount 1 ;
|
|
193
|
+
sh:maxCount 1 ;
|
|
194
|
+
sh:datatype xsd:decimal ;
|
|
195
|
+
sh:minInclusive 0 ;
|
|
196
|
+
sh:maxInclusive 1 ;
|
|
197
|
+
sh:message "TrustDetermination.confidence must be a decimal in [0, 1]."
|
|
198
|
+
] ;
|
|
199
|
+
sh:property [
|
|
200
|
+
sh:path apdisc:hasEvidencePath ;
|
|
201
|
+
sh:minCount 1 ;
|
|
202
|
+
sh:class apdisc:EvidencePath ;
|
|
203
|
+
sh:message "TrustDetermination must cite evidence paths."
|
|
204
|
+
] .
|
|
205
|
+
|
|
206
|
+
apsec:ExposureFindingShape a sh:NodeShape ;
|
|
207
|
+
rdfs:label "ExposureFinding shape" ;
|
|
208
|
+
sh:targetClass apsec:ExposureFinding ;
|
|
209
|
+
sh:property [
|
|
210
|
+
sh:path apsec:severity ;
|
|
211
|
+
sh:minCount 1 ;
|
|
212
|
+
sh:maxCount 1 ;
|
|
213
|
+
sh:class apsec:Severity ;
|
|
214
|
+
sh:message "ExposureFinding must have one severity."
|
|
215
|
+
] ;
|
|
216
|
+
sh:property [
|
|
217
|
+
sh:path apsec:findingStatus ;
|
|
218
|
+
sh:minCount 1 ;
|
|
219
|
+
sh:maxCount 1 ;
|
|
220
|
+
sh:class apsec:FindingStatus ;
|
|
221
|
+
sh:message "ExposureFinding must have one triage status."
|
|
222
|
+
] ;
|
|
223
|
+
sh:property [
|
|
224
|
+
sh:path apsec:affectsAgent ;
|
|
225
|
+
sh:minCount 1 ;
|
|
226
|
+
sh:class ap:Agent ;
|
|
227
|
+
sh:message "ExposureFinding must cite affected Smart Agent(s)."
|
|
228
|
+
] ;
|
|
229
|
+
sh:property [
|
|
230
|
+
sh:path apsec:basedOnEvidencePath ;
|
|
231
|
+
sh:minCount 1 ;
|
|
232
|
+
sh:class apdisc:EvidencePath ;
|
|
233
|
+
sh:message "ExposureFinding must cite an evidence path."
|
|
234
|
+
] .
|
package/context.jsonld
CHANGED
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
"apnam": "https://agenticprimitives.dev/ns/naming#",
|
|
10
10
|
"aprel": "https://agenticprimitives.dev/ns/relationships#",
|
|
11
11
|
"aporg": "https://agenticprimitives.dev/ns/org#",
|
|
12
|
+
"approf": "https://agenticprimitives.dev/ns/profile#",
|
|
12
13
|
|
|
13
14
|
"apint": "https://agenticprimitives.dev/ns/intent#",
|
|
14
15
|
"apcst": "https://agenticprimitives.dev/ns/constraint#",
|
|
@@ -22,6 +23,10 @@
|
|
|
22
23
|
"aps": "https://agenticprimitives.dev/ns/skill#",
|
|
23
24
|
"apg": "https://agenticprimitives.dev/ns/geo#",
|
|
24
25
|
"apcnt": "https://agenticprimitives.dev/ns/content#",
|
|
26
|
+
"apreg": "https://agenticprimitives.dev/ns/registry#",
|
|
27
|
+
"apdisc": "https://agenticprimitives.dev/ns/discovery#",
|
|
28
|
+
"apsec": "https://agenticprimitives.dev/ns/security-exposure#",
|
|
29
|
+
"aptrust": "https://agenticprimitives.dev/ns/trust#",
|
|
25
30
|
|
|
26
31
|
"rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#",
|
|
27
32
|
"rdfs": "http://www.w3.org/2000/01/rdf-schema#",
|
|
@@ -30,6 +35,7 @@
|
|
|
30
35
|
"sh": "http://www.w3.org/ns/shacl#",
|
|
31
36
|
"skos": "http://www.w3.org/2004/02/skos/core#",
|
|
32
37
|
"prov": "http://www.w3.org/ns/prov#",
|
|
38
|
+
"dul": "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#",
|
|
33
39
|
"vf": "https://w3id.org/valueflows#",
|
|
34
40
|
"ufo-c": "http://purl.org/nemo/ufo-c#",
|
|
35
41
|
"w3cvc": "https://www.w3.org/2018/credentials#"
|
package/dist/artifacts.d.ts
CHANGED
|
@@ -5,9 +5,9 @@
|
|
|
5
5
|
*/
|
|
6
6
|
export declare const ARTIFACTS: {
|
|
7
7
|
readonly context: "context.jsonld";
|
|
8
|
-
readonly tbox: readonly ["tbox/core.ttl", "tbox/identity.ttl", "tbox/intents.ttl", "tbox/constraints.ttl", "tbox/resolution.ttl", "tbox/agreement.ttl", "tbox/payment.ttl", "tbox/fulfillment.ttl", "tbox/attestation.ttl", "tbox/skills.ttl", "tbox/geo.ttl", "tbox/content.ttl"];
|
|
9
|
-
readonly cbox: readonly ["cbox/canonical-agent-id-shape.shacl.ttl", "cbox/controlled-vocabularies.ttl", "cbox/skill-vocabulary.ttl", "cbox/geo-vocabulary.ttl", "cbox/content-vocabulary.ttl"];
|
|
10
|
-
readonly mappings: readonly ["mappings/spine-standards.ttl"];
|
|
8
|
+
readonly tbox: readonly ["tbox/core.ttl", "tbox/identity.ttl", "tbox/intents.ttl", "tbox/constraints.ttl", "tbox/resolution.ttl", "tbox/agreement.ttl", "tbox/payment.ttl", "tbox/fulfillment.ttl", "tbox/attestation.ttl", "tbox/skills.ttl", "tbox/geo.ttl", "tbox/content.ttl", "tbox/registry.ttl", "tbox/discovery.ttl", "tbox/trust.ttl", "tbox/security-exposure.ttl"];
|
|
9
|
+
readonly cbox: readonly ["cbox/canonical-agent-id-shape.shacl.ttl", "cbox/controlled-vocabularies.ttl", "cbox/skill-vocabulary.ttl", "cbox/geo-vocabulary.ttl", "cbox/content-vocabulary.ttl", "cbox/discovery-graph-shapes.shacl.ttl"];
|
|
10
|
+
readonly mappings: readonly ["mappings/spine-standards.ttl", "mappings/agent-discovery-standards.ttl"];
|
|
11
11
|
};
|
|
12
12
|
/**
|
|
13
13
|
* Resolve a shipped artifact's relative path (see {@link ARTIFACTS}) to an
|
package/dist/artifacts.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"artifacts.d.ts","sourceRoot":"","sources":["../src/artifacts.ts"],"names":[],"mappings":"AASA;;;;GAIG;AACH,eAAO,MAAM,SAAS;;;;;
|
|
1
|
+
{"version":3,"file":"artifacts.d.ts","sourceRoot":"","sources":["../src/artifacts.ts"],"names":[],"mappings":"AASA;;;;GAIG;AACH,eAAO,MAAM,SAAS;;;;;CAwCZ,CAAC;AAEX;;;;GAIG;AACH,wBAAgB,YAAY,CAAC,YAAY,EAAE,MAAM,GAAG,MAAM,CAEzD"}
|
package/dist/artifacts.js
CHANGED
|
@@ -29,6 +29,11 @@ export const ARTIFACTS = {
|
|
|
29
29
|
'tbox/geo.ttl',
|
|
30
30
|
// Generic verifiable-content substrate (spec 266)
|
|
31
31
|
'tbox/content.ttl',
|
|
32
|
+
// Discovery / registry / trust knowledge graph substrate (spec 279)
|
|
33
|
+
'tbox/registry.ttl',
|
|
34
|
+
'tbox/discovery.ttl',
|
|
35
|
+
'tbox/trust.ttl',
|
|
36
|
+
'tbox/security-exposure.ttl',
|
|
32
37
|
],
|
|
33
38
|
cbox: [
|
|
34
39
|
'cbox/canonical-agent-id-shape.shacl.ttl',
|
|
@@ -38,8 +43,13 @@ export const ARTIFACTS = {
|
|
|
38
43
|
'cbox/geo-vocabulary.ttl',
|
|
39
44
|
// Verifiable-content codelists + ContentDescriptor shape (spec 266)
|
|
40
45
|
'cbox/content-vocabulary.ttl',
|
|
46
|
+
// GraphDB A-box ingestion + discovery/trust/admin findings shapes
|
|
47
|
+
'cbox/discovery-graph-shapes.shacl.ttl',
|
|
48
|
+
],
|
|
49
|
+
mappings: [
|
|
50
|
+
'mappings/spine-standards.ttl',
|
|
51
|
+
'mappings/agent-discovery-standards.ttl',
|
|
41
52
|
],
|
|
42
|
-
mappings: ['mappings/spine-standards.ttl'],
|
|
43
53
|
};
|
|
44
54
|
/**
|
|
45
55
|
* Resolve a shipped artifact's relative path (see {@link ARTIFACTS}) to an
|
package/dist/artifacts.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"artifacts.js","sourceRoot":"","sources":["../src/artifacts.ts"],"names":[],"mappings":"AAAA,8DAA8D;AAC9D,EAAE;AACF,0EAA0E;AAC1E,8EAA8E;AAC9E,6EAA6E;AAC7E,yCAAyC;AAEzC,OAAO,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AAEzC;;;;GAIG;AACH,MAAM,CAAC,MAAM,SAAS,GAAG;IACvB,OAAO,EAAE,gBAAgB;IACzB,IAAI,EAAE;QACJ,4BAA4B;QAC5B,eAAe;QACf,mBAAmB;QACnB,8DAA8D;QAC9D,kBAAkB;QAClB,sBAAsB;QACtB,qBAAqB;QACrB,oBAAoB;QACpB,kBAAkB;QAClB,sBAAsB;QACtB,sBAAsB;QACtB,4CAA4C;QAC5C,iBAAiB;QACjB,cAAc;QACd,kDAAkD;QAClD,kBAAkB;
|
|
1
|
+
{"version":3,"file":"artifacts.js","sourceRoot":"","sources":["../src/artifacts.ts"],"names":[],"mappings":"AAAA,8DAA8D;AAC9D,EAAE;AACF,0EAA0E;AAC1E,8EAA8E;AAC9E,6EAA6E;AAC7E,yCAAyC;AAEzC,OAAO,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AAEzC;;;;GAIG;AACH,MAAM,CAAC,MAAM,SAAS,GAAG;IACvB,OAAO,EAAE,gBAAgB;IACzB,IAAI,EAAE;QACJ,4BAA4B;QAC5B,eAAe;QACf,mBAAmB;QACnB,8DAA8D;QAC9D,kBAAkB;QAClB,sBAAsB;QACtB,qBAAqB;QACrB,oBAAoB;QACpB,kBAAkB;QAClB,sBAAsB;QACtB,sBAAsB;QACtB,4CAA4C;QAC5C,iBAAiB;QACjB,cAAc;QACd,kDAAkD;QAClD,kBAAkB;QAClB,oEAAoE;QACpE,mBAAmB;QACnB,oBAAoB;QACpB,gBAAgB;QAChB,4BAA4B;KAC7B;IACD,IAAI,EAAE;QACJ,yCAAyC;QACzC,kCAAkC;QAClC,6EAA6E;QAC7E,2BAA2B;QAC3B,yBAAyB;QACzB,oEAAoE;QACpE,6BAA6B;QAC7B,kEAAkE;QAClE,uCAAuC;KACxC;IACD,QAAQ,EAAE;QACR,8BAA8B;QAC9B,wCAAwC;KACzC;CACO,CAAC;AAEX;;;;GAIG;AACH,MAAM,UAAU,YAAY,CAAC,YAAoB;IAC/C,OAAO,aAAa,CAAC,IAAI,GAAG,CAAC,MAAM,YAAY,EAAE,EAAE,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC;AACvE,CAAC"}
|
package/dist/index.d.ts
CHANGED
|
@@ -21,6 +21,7 @@ export declare const NS: {
|
|
|
21
21
|
readonly apnam: "https://agenticprimitives.dev/ns/naming#";
|
|
22
22
|
readonly aprel: "https://agenticprimitives.dev/ns/relationships#";
|
|
23
23
|
readonly aporg: "https://agenticprimitives.dev/ns/org#";
|
|
24
|
+
readonly approf: "https://agenticprimitives.dev/ns/profile#";
|
|
24
25
|
readonly apint: "https://agenticprimitives.dev/ns/intent#";
|
|
25
26
|
readonly apcst: "https://agenticprimitives.dev/ns/constraint#";
|
|
26
27
|
readonly apres: "https://agenticprimitives.dev/ns/resolution#";
|
|
@@ -32,6 +33,10 @@ export declare const NS: {
|
|
|
32
33
|
readonly aps: "https://agenticprimitives.dev/ns/skill#";
|
|
33
34
|
readonly apg: "https://agenticprimitives.dev/ns/geo#";
|
|
34
35
|
readonly apcnt: "https://agenticprimitives.dev/ns/content#";
|
|
36
|
+
readonly apreg: "https://agenticprimitives.dev/ns/registry#";
|
|
37
|
+
readonly apdisc: "https://agenticprimitives.dev/ns/discovery#";
|
|
38
|
+
readonly apsec: "https://agenticprimitives.dev/ns/security-exposure#";
|
|
39
|
+
readonly aptrust: "https://agenticprimitives.dev/ns/trust#";
|
|
35
40
|
};
|
|
36
41
|
/** Class IRIs (T-box). Each is `<namespace><LocalName>`. */
|
|
37
42
|
export declare const CLASS: {
|
|
@@ -42,7 +47,10 @@ export declare const CLASS: {
|
|
|
42
47
|
readonly CredentialFacet: "https://agenticprimitives.dev/ns/credential#CredentialFacet";
|
|
43
48
|
readonly NameFacet: "https://agenticprimitives.dev/ns/naming#NameFacet";
|
|
44
49
|
readonly OidcSubject: "https://agenticprimitives.dev/ns/identity#OidcSubject";
|
|
45
|
-
readonly
|
|
50
|
+
readonly PersonAgent: "https://agenticprimitives.dev/ns/core#PersonAgent";
|
|
51
|
+
readonly OrganizationAgent: "https://agenticprimitives.dev/ns/core#OrganizationAgent";
|
|
52
|
+
readonly ServiceAgent: "https://agenticprimitives.dev/ns/core#ServiceAgent";
|
|
53
|
+
readonly Treasury: "https://agenticprimitives.dev/ns/core#Treasury";
|
|
46
54
|
readonly Desire: "https://agenticprimitives.dev/ns/intent#Desire";
|
|
47
55
|
readonly Intent: "https://agenticprimitives.dev/ns/intent#Intent";
|
|
48
56
|
readonly ReceiveIntent: "https://agenticprimitives.dev/ns/intent#ReceiveIntent";
|
|
@@ -101,6 +109,24 @@ export declare const CLASS: {
|
|
|
101
109
|
readonly ContentDescriptor: "https://agenticprimitives.dev/ns/content#ContentDescriptor";
|
|
102
110
|
readonly CitationAssertion: "https://agenticprimitives.dev/ns/content#CitationAssertion";
|
|
103
111
|
readonly Entitlement: "https://agenticprimitives.dev/ns/content#Entitlement";
|
|
112
|
+
readonly RegistryKitProfile: "https://agenticprimitives.dev/ns/registry#RegistryKitProfile";
|
|
113
|
+
readonly RegistryEntry: "https://agenticprimitives.dev/ns/registry#RegistryEntry";
|
|
114
|
+
readonly RegistryEntryBindingProof: "https://agenticprimitives.dev/ns/registry#RegistryEntryBindingProof";
|
|
115
|
+
readonly RegistryClaimSlot: "https://agenticprimitives.dev/ns/registry#RegistryClaimSlot";
|
|
116
|
+
readonly SignedAgentCard: "https://agenticprimitives.dev/ns/registry#SignedAgentCard";
|
|
117
|
+
readonly ExternalRegistryFacet: "https://agenticprimitives.dev/ns/registry#ExternalRegistryFacet";
|
|
118
|
+
readonly CandidateQuery: "https://agenticprimitives.dev/ns/discovery#CandidateQuery";
|
|
119
|
+
readonly MatchCandidate: "https://agenticprimitives.dev/ns/discovery#MatchCandidate";
|
|
120
|
+
readonly TrustDetermination: "https://agenticprimitives.dev/ns/discovery#TrustDetermination";
|
|
121
|
+
readonly EvidencePath: "https://agenticprimitives.dev/ns/discovery#EvidencePath";
|
|
122
|
+
readonly GraphSnapshot: "https://agenticprimitives.dev/ns/discovery#GraphSnapshot";
|
|
123
|
+
readonly InferenceProfile: "https://agenticprimitives.dev/ns/discovery#InferenceProfile";
|
|
124
|
+
readonly TrustSignal: "https://agenticprimitives.dev/ns/trust#TrustSignal";
|
|
125
|
+
readonly ReputationEvidence: "https://agenticprimitives.dev/ns/trust#ReputationEvidence";
|
|
126
|
+
readonly ValidationEvidence: "https://agenticprimitives.dev/ns/trust#ValidationEvidence";
|
|
127
|
+
readonly ExposureFinding: "https://agenticprimitives.dev/ns/security-exposure#ExposureFinding";
|
|
128
|
+
readonly CorrelationRisk: "https://agenticprimitives.dev/ns/security-exposure#CorrelationRisk";
|
|
129
|
+
readonly ProjectionMismatch: "https://agenticprimitives.dev/ns/security-exposure#ProjectionMismatch";
|
|
104
130
|
};
|
|
105
131
|
/** Predicate / property IRIs (T-box). */
|
|
106
132
|
export declare const PREDICATE: {
|
|
@@ -201,6 +227,38 @@ export declare const PREDICATE: {
|
|
|
201
227
|
readonly proofPolicy: "https://agenticprimitives.dev/ns/content#proofPolicy";
|
|
202
228
|
readonly citesLocus: "https://agenticprimitives.dev/ns/content#citesLocus";
|
|
203
229
|
readonly underEntitlement: "https://agenticprimitives.dev/ns/content#underEntitlement";
|
|
230
|
+
readonly registryId: "https://agenticprimitives.dev/ns/registry#registryId";
|
|
231
|
+
readonly entryId: "https://agenticprimitives.dev/ns/registry#entryId";
|
|
232
|
+
readonly subjectAgent: "https://agenticprimitives.dev/ns/registry#subjectAgent";
|
|
233
|
+
readonly hasBindingProof: "https://agenticprimitives.dev/ns/registry#hasBindingProof";
|
|
234
|
+
readonly cardHash: "https://agenticprimitives.dev/ns/registry#cardHash";
|
|
235
|
+
readonly claimHash: "https://agenticprimitives.dev/ns/registry#claimHash";
|
|
236
|
+
readonly claimSlotId: "https://agenticprimitives.dev/ns/registry#claimSlotId";
|
|
237
|
+
readonly bindingProofHash: "https://agenticprimitives.dev/ns/registry#bindingProofHash";
|
|
238
|
+
readonly proofHash: "https://agenticprimitives.dev/ns/registry#proofHash";
|
|
239
|
+
readonly describesCard: "https://agenticprimitives.dev/ns/registry#describesCard";
|
|
240
|
+
readonly cardSubject: "https://agenticprimitives.dev/ns/registry#cardSubject";
|
|
241
|
+
readonly verifyingContract: "https://agenticprimitives.dev/ns/registry#verifyingContract";
|
|
242
|
+
readonly cardChainId: "https://agenticprimitives.dev/ns/registry#cardChainId";
|
|
243
|
+
readonly entryIssuedAt: "https://agenticprimitives.dev/ns/registry#issuedAt";
|
|
244
|
+
readonly entryExpiresAt: "https://agenticprimitives.dev/ns/registry#expiresAt";
|
|
245
|
+
readonly reasonHash: "https://agenticprimitives.dev/ns/registry#reasonHash";
|
|
246
|
+
readonly lifecycleStatus: "https://agenticprimitives.dev/ns/registry#lifecycleStatus";
|
|
247
|
+
readonly externalSurface: "https://agenticprimitives.dev/ns/registry#externalSurface";
|
|
248
|
+
readonly externalIdentifier: "https://agenticprimitives.dev/ns/registry#externalIdentifier";
|
|
249
|
+
readonly projectionOf: "https://agenticprimitives.dev/ns/registry#projectionOf";
|
|
250
|
+
readonly queryHash: "https://agenticprimitives.dev/ns/discovery#queryHash";
|
|
251
|
+
readonly usesGraphSnapshot: "https://agenticprimitives.dev/ns/discovery#usesGraphSnapshot";
|
|
252
|
+
readonly usesInferenceProfile: "https://agenticprimitives.dev/ns/discovery#usesInferenceProfile";
|
|
253
|
+
readonly candidateAgent: "https://agenticprimitives.dev/ns/discovery#candidateAgent";
|
|
254
|
+
readonly candidateRegistryEntry: "https://agenticprimitives.dev/ns/discovery#candidateRegistryEntry";
|
|
255
|
+
readonly hasTrustDetermination: "https://agenticprimitives.dev/ns/discovery#hasTrustDetermination";
|
|
256
|
+
readonly hasEvidencePath: "https://agenticprimitives.dev/ns/discovery#hasEvidencePath";
|
|
257
|
+
readonly trustScore: "https://agenticprimitives.dev/ns/discovery#trustScore";
|
|
258
|
+
readonly matchScore: "https://agenticprimitives.dev/ns/discovery#matchScore";
|
|
259
|
+
readonly severity: "https://agenticprimitives.dev/ns/security-exposure#severity";
|
|
260
|
+
readonly findingStatus: "https://agenticprimitives.dev/ns/security-exposure#findingStatus";
|
|
261
|
+
readonly affectsAgent: "https://agenticprimitives.dev/ns/security-exposure#affectsAgent";
|
|
204
262
|
};
|
|
205
263
|
/** SHACL shape IRIs (C-box).
|
|
206
264
|
*
|
|
@@ -214,5 +272,13 @@ export declare const SHAPE: {
|
|
|
214
272
|
readonly CanonicalAgentId: "https://agenticprimitives.dev/ns/core#CanonicalAgentIdShape";
|
|
215
273
|
readonly CredentialFacet: "https://agenticprimitives.dev/ns/credential#CredentialFacetShape";
|
|
216
274
|
readonly ContentDescriptor: "https://agenticprimitives.dev/ns/content#ContentDescriptorShape";
|
|
275
|
+
readonly RegistryEntry: "https://agenticprimitives.dev/ns/registry#RegistryEntryShape";
|
|
276
|
+
readonly SignedAgentCard: "https://agenticprimitives.dev/ns/registry#SignedAgentCardShape";
|
|
277
|
+
readonly RegistryEntryBindingProof: "https://agenticprimitives.dev/ns/registry#RegistryEntryBindingProofShape";
|
|
278
|
+
readonly ExternalRegistryFacet: "https://agenticprimitives.dev/ns/registry#ExternalRegistryFacetShape";
|
|
279
|
+
readonly CandidateQuery: "https://agenticprimitives.dev/ns/discovery#CandidateQueryShape";
|
|
280
|
+
readonly MatchCandidate: "https://agenticprimitives.dev/ns/discovery#MatchCandidateShape";
|
|
281
|
+
readonly TrustDetermination: "https://agenticprimitives.dev/ns/discovery#TrustDeterminationShape";
|
|
282
|
+
readonly ExposureFinding: "https://agenticprimitives.dev/ns/security-exposure#ExposureFindingShape";
|
|
217
283
|
};
|
|
218
284
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAmBA,+DAA+D;AAC/D,eAAO,MAAM,gBAAgB,EAAG,OAAgB,CAAC;AAEjD;;;;;;;;;;GAUG;AACH,eAAO,MAAM,EAAE
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAmBA,+DAA+D;AAC/D,eAAO,MAAM,gBAAgB,EAAG,OAAgB,CAAC;AAEjD;;;;;;;;;;GAUG;AACH,eAAO,MAAM,EAAE;;;;;;;;;;;;;;;;;;;;;;;;;;CAgCL,CAAC;AAEX,4DAA4D;AAC5D,eAAO,MAAM,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAoGR,CAAC;AAEX,yCAAyC;AACzC,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA4IZ,CAAC;AAEX;;;;;;;GAOG;AACH,eAAO,MAAM,KAAK;;;;;;;;;;;;CAaR,CAAC"}
|
package/dist/index.js
CHANGED
|
@@ -40,6 +40,7 @@ export const NS = {
|
|
|
40
40
|
apnam: 'https://agenticprimitives.dev/ns/naming#',
|
|
41
41
|
aprel: 'https://agenticprimitives.dev/ns/relationships#',
|
|
42
42
|
aporg: 'https://agenticprimitives.dev/ns/org#',
|
|
43
|
+
approf: 'https://agenticprimitives.dev/ns/profile#',
|
|
43
44
|
// Phase-1.5 (v2 coordination substrate spine; spec 225 §11.5)
|
|
44
45
|
apint: 'https://agenticprimitives.dev/ns/intent#',
|
|
45
46
|
apcst: 'https://agenticprimitives.dev/ns/constraint#',
|
|
@@ -55,6 +56,11 @@ export const NS = {
|
|
|
55
56
|
// Generic verifiable-content substrate (spec 266) — content is scheme-anchored,
|
|
56
57
|
// NOT a Smart Agent facet (ADR-0033). Zero vertical/faith vocabulary.
|
|
57
58
|
apcnt: 'https://agenticprimitives.dev/ns/content#',
|
|
59
|
+
// Discovery / registry / GraphDB A-box substrate (spec 279)
|
|
60
|
+
apreg: 'https://agenticprimitives.dev/ns/registry#',
|
|
61
|
+
apdisc: 'https://agenticprimitives.dev/ns/discovery#',
|
|
62
|
+
apsec: 'https://agenticprimitives.dev/ns/security-exposure#',
|
|
63
|
+
aptrust: 'https://agenticprimitives.dev/ns/trust#',
|
|
58
64
|
};
|
|
59
65
|
/** Class IRIs (T-box). Each is `<namespace><LocalName>`. */
|
|
60
66
|
export const CLASS = {
|
|
@@ -66,7 +72,11 @@ export const CLASS = {
|
|
|
66
72
|
CredentialFacet: `${NS.apcr}CredentialFacet`,
|
|
67
73
|
NameFacet: `${NS.apnam}NameFacet`,
|
|
68
74
|
OidcSubject: `${NS.apid}OidcSubject`,
|
|
69
|
-
|
|
75
|
+
// Agent-kind taxonomy (⊑ Agent; grounded onto PROV-O in mappings/agent-discovery-standards.ttl).
|
|
76
|
+
PersonAgent: `${NS.ap}PersonAgent`,
|
|
77
|
+
OrganizationAgent: `${NS.ap}OrganizationAgent`,
|
|
78
|
+
ServiceAgent: `${NS.ap}ServiceAgent`,
|
|
79
|
+
Treasury: `${NS.ap}Treasury`,
|
|
70
80
|
// Phase-1.5: intent layer
|
|
71
81
|
Desire: `${NS.apint}Desire`,
|
|
72
82
|
Intent: `${NS.apint}Intent`,
|
|
@@ -134,6 +144,25 @@ export const CLASS = {
|
|
|
134
144
|
ContentDescriptor: `${NS.apcnt}ContentDescriptor`,
|
|
135
145
|
CitationAssertion: `${NS.apcnt}CitationAssertion`,
|
|
136
146
|
Entitlement: `${NS.apcnt}Entitlement`,
|
|
147
|
+
// Discovery / registry / trust graph (spec 279)
|
|
148
|
+
RegistryKitProfile: `${NS.apreg}RegistryKitProfile`,
|
|
149
|
+
RegistryEntry: `${NS.apreg}RegistryEntry`,
|
|
150
|
+
RegistryEntryBindingProof: `${NS.apreg}RegistryEntryBindingProof`,
|
|
151
|
+
RegistryClaimSlot: `${NS.apreg}RegistryClaimSlot`,
|
|
152
|
+
SignedAgentCard: `${NS.apreg}SignedAgentCard`,
|
|
153
|
+
ExternalRegistryFacet: `${NS.apreg}ExternalRegistryFacet`,
|
|
154
|
+
CandidateQuery: `${NS.apdisc}CandidateQuery`,
|
|
155
|
+
MatchCandidate: `${NS.apdisc}MatchCandidate`,
|
|
156
|
+
TrustDetermination: `${NS.apdisc}TrustDetermination`,
|
|
157
|
+
EvidencePath: `${NS.apdisc}EvidencePath`,
|
|
158
|
+
GraphSnapshot: `${NS.apdisc}GraphSnapshot`,
|
|
159
|
+
InferenceProfile: `${NS.apdisc}InferenceProfile`,
|
|
160
|
+
TrustSignal: `${NS.aptrust}TrustSignal`,
|
|
161
|
+
ReputationEvidence: `${NS.aptrust}ReputationEvidence`,
|
|
162
|
+
ValidationEvidence: `${NS.aptrust}ValidationEvidence`,
|
|
163
|
+
ExposureFinding: `${NS.apsec}ExposureFinding`,
|
|
164
|
+
CorrelationRisk: `${NS.apsec}CorrelationRisk`,
|
|
165
|
+
ProjectionMismatch: `${NS.apsec}ProjectionMismatch`,
|
|
137
166
|
};
|
|
138
167
|
/** Predicate / property IRIs (T-box). */
|
|
139
168
|
export const PREDICATE = {
|
|
@@ -243,6 +272,39 @@ export const PREDICATE = {
|
|
|
243
272
|
proofPolicy: `${NS.apcnt}proofPolicy`,
|
|
244
273
|
citesLocus: `${NS.apcnt}citesLocus`,
|
|
245
274
|
underEntitlement: `${NS.apcnt}underEntitlement`,
|
|
275
|
+
// Discovery / registry / trust graph (spec 279)
|
|
276
|
+
registryId: `${NS.apreg}registryId`,
|
|
277
|
+
entryId: `${NS.apreg}entryId`,
|
|
278
|
+
subjectAgent: `${NS.apreg}subjectAgent`,
|
|
279
|
+
hasBindingProof: `${NS.apreg}hasBindingProof`,
|
|
280
|
+
cardHash: `${NS.apreg}cardHash`,
|
|
281
|
+
claimHash: `${NS.apreg}claimHash`,
|
|
282
|
+
claimSlotId: `${NS.apreg}claimSlotId`,
|
|
283
|
+
bindingProofHash: `${NS.apreg}bindingProofHash`,
|
|
284
|
+
proofHash: `${NS.apreg}proofHash`,
|
|
285
|
+
describesCard: `${NS.apreg}describesCard`,
|
|
286
|
+
cardSubject: `${NS.apreg}cardSubject`,
|
|
287
|
+
verifyingContract: `${NS.apreg}verifyingContract`,
|
|
288
|
+
cardChainId: `${NS.apreg}cardChainId`,
|
|
289
|
+
entryIssuedAt: `${NS.apreg}issuedAt`,
|
|
290
|
+
entryExpiresAt: `${NS.apreg}expiresAt`,
|
|
291
|
+
reasonHash: `${NS.apreg}reasonHash`,
|
|
292
|
+
lifecycleStatus: `${NS.apreg}lifecycleStatus`,
|
|
293
|
+
externalSurface: `${NS.apreg}externalSurface`,
|
|
294
|
+
externalIdentifier: `${NS.apreg}externalIdentifier`,
|
|
295
|
+
projectionOf: `${NS.apreg}projectionOf`,
|
|
296
|
+
queryHash: `${NS.apdisc}queryHash`,
|
|
297
|
+
usesGraphSnapshot: `${NS.apdisc}usesGraphSnapshot`,
|
|
298
|
+
usesInferenceProfile: `${NS.apdisc}usesInferenceProfile`,
|
|
299
|
+
candidateAgent: `${NS.apdisc}candidateAgent`,
|
|
300
|
+
candidateRegistryEntry: `${NS.apdisc}candidateRegistryEntry`,
|
|
301
|
+
hasTrustDetermination: `${NS.apdisc}hasTrustDetermination`,
|
|
302
|
+
hasEvidencePath: `${NS.apdisc}hasEvidencePath`,
|
|
303
|
+
trustScore: `${NS.apdisc}trustScore`,
|
|
304
|
+
matchScore: `${NS.apdisc}matchScore`,
|
|
305
|
+
severity: `${NS.apsec}severity`,
|
|
306
|
+
findingStatus: `${NS.apsec}findingStatus`,
|
|
307
|
+
affectsAgent: `${NS.apsec}affectsAgent`,
|
|
246
308
|
};
|
|
247
309
|
/** SHACL shape IRIs (C-box).
|
|
248
310
|
*
|
|
@@ -257,6 +319,14 @@ export const SHAPE = {
|
|
|
257
319
|
CredentialFacet: `${NS.apcr}CredentialFacetShape`,
|
|
258
320
|
// Verifiable-content substrate (spec 266) — encodes ADR-0033 R3 (no inline text).
|
|
259
321
|
ContentDescriptor: `${NS.apcnt}ContentDescriptorShape`,
|
|
322
|
+
RegistryEntry: `${NS.apreg}RegistryEntryShape`,
|
|
323
|
+
SignedAgentCard: `${NS.apreg}SignedAgentCardShape`,
|
|
324
|
+
RegistryEntryBindingProof: `${NS.apreg}RegistryEntryBindingProofShape`,
|
|
325
|
+
ExternalRegistryFacet: `${NS.apreg}ExternalRegistryFacetShape`,
|
|
326
|
+
CandidateQuery: `${NS.apdisc}CandidateQueryShape`,
|
|
327
|
+
MatchCandidate: `${NS.apdisc}MatchCandidateShape`,
|
|
328
|
+
TrustDetermination: `${NS.apdisc}TrustDeterminationShape`,
|
|
329
|
+
ExposureFinding: `${NS.apsec}ExposureFindingShape`,
|
|
260
330
|
};
|
|
261
331
|
// `ARTIFACTS` + `artifactPath` (Node-only, `node:url`) live in the
|
|
262
332
|
// `@agenticprimitives/ontology/artifacts` subpath — keep this entry browser-safe.
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,qEAAqE;AACrE,EAAE;AACF,8EAA8E;AAC9E,2EAA2E;AAC3E,8EAA8E;AAC9E,2EAA2E;AAC3E,iDAAiD;AACjD,EAAE;AACF,OAAO;AACP,iDAAiD;AACjD,uFAAuF;AACvF,mGAAmG;AACnG,EAAE;AACF,yEAAyE;AACzE,6EAA6E;AAC7E,gFAAgF;AAChF,iFAAiF;AACjF,2CAA2C;AAE3C,+DAA+D;AAC/D,MAAM,CAAC,MAAM,gBAAgB,GAAG,OAAgB,CAAC;AAEjD;;;;;;;;;;GAUG;AACH,MAAM,CAAC,MAAM,EAAE,GAAG;IAChB,qBAAqB;IACrB,EAAE,EAAE,wCAAwC;IAC5C,IAAI,EAAE,4CAA4C;IAClD,IAAI,EAAE,8CAA8C;IACpD,KAAK,EAAE,8CAA8C;IACrD,KAAK,EAAE,2CAA2C;IAClD,KAAK,EAAE,yCAAyC;IAChD,KAAK,EAAE,0CAA0C;IACjD,KAAK,EAAE,iDAAiD;IACxD,KAAK,EAAE,uCAAuC;IAC9C,MAAM,EAAE,2CAA2C;IACnD,8DAA8D;IAC9D,KAAK,EAAE,0CAA0C;IACjD,KAAK,EAAE,8CAA8C;IACrD,KAAK,EAAE,8CAA8C;IACrD,KAAK,EAAE,6CAA6C;IACpD,KAAK,EAAE,2CAA2C;IAClD,KAAK,EAAE,+CAA+C;IACtD,KAAK,EAAE,+CAA+C;IACtD,IAAI,EAAE,yDAAyD;IAC/D,4CAA4C;IAC5C,GAAG,EAAE,yCAAyC;IAC9C,GAAG,EAAE,uCAAuC;IAC5C,gFAAgF;IAChF,sEAAsE;IACtE,KAAK,EAAE,2CAA2C;IAClD,4DAA4D;IAC5D,KAAK,EAAE,4CAA4C;IACnD,MAAM,EAAE,6CAA6C;IACrD,KAAK,EAAE,qDAAqD;IAC5D,OAAO,EAAE,yCAAyC;CAC1C,CAAC;AAEX,4DAA4D;AAC5D,MAAM,CAAC,MAAM,KAAK,GAAG;IACnB,UAAU;IACV,KAAK,EAAE,GAAG,EAAE,CAAC,EAAE,OAAO;IACtB,gBAAgB,EAAE,GAAG,EAAE,CAAC,EAAE,kBAAkB;IAC5C,KAAK,EAAE,GAAG,EAAE,CAAC,EAAE,OAAO;IACtB,QAAQ,EAAE,GAAG,EAAE,CAAC,EAAE,UAAU;IAC5B,eAAe,EAAE,GAAG,EAAE,CAAC,IAAI,iBAAiB;IAC5C,SAAS,EAAE,GAAG,EAAE,CAAC,KAAK,WAAW;IACjC,WAAW,EAAE,GAAG,EAAE,CAAC,IAAI,aAAa;IACpC,iGAAiG;IACjG,WAAW,EAAE,GAAG,EAAE,CAAC,EAAE,aAAa;IAClC,iBAAiB,EAAE,GAAG,EAAE,CAAC,EAAE,mBAAmB;IAC9C,YAAY,EAAE,GAAG,EAAE,CAAC,EAAE,cAAc;IACpC,QAAQ,EAAE,GAAG,EAAE,CAAC,EAAE,UAAU;IAC5B,0BAA0B;IAC1B,MAAM,EAAE,GAAG,EAAE,CAAC,KAAK,QAAQ;IAC3B,MAAM,EAAE,GAAG,EAAE,CAAC,KAAK,QAAQ;IAC3B,aAAa,EAAE,GAAG,EAAE,CAAC,KAAK,eAAe;IACzC,UAAU,EAAE,GAAG,EAAE,CAAC,KAAK,YAAY;IACnC,eAAe,EAAE,GAAG,EAAE,CAAC,KAAK,iBAAiB;IAC7C,WAAW,EAAE,GAAG,EAAE,CAAC,KAAK,aAAa;IACrC,UAAU,EAAE,GAAG,EAAE,CAAC,KAAK,YAAY;IACnC,QAAQ,EAAE,GAAG,EAAE,CAAC,KAAK,UAAU;IAC/B,SAAS,EAAE,GAAG,EAAE,CAAC,KAAK,WAAW;IACjC,8BAA8B;IAC9B,aAAa,EAAE,GAAG,EAAE,CAAC,KAAK,eAAe;IACzC,UAAU,EAAE,GAAG,EAAE,CAAC,KAAK,YAAY;IACnC,cAAc,EAAE,GAAG,EAAE,CAAC,KAAK,gBAAgB;IAC3C,cAAc,EAAE,GAAG,EAAE,CAAC,KAAK,gBAAgB;IAC3C,gBAAgB,EAAE,GAAG,EAAE,CAAC,KAAK,kBAAkB;IAC/C,UAAU,EAAE,GAAG,EAAE,CAAC,KAAK,YAAY;IACnC,WAAW,EAAE,GAAG,EAAE,CAAC,KAAK,aAAa;IACrC,SAAS,EAAE,GAAG,EAAE,CAAC,KAAK,WAAW;IACjC,eAAe,EAAE,GAAG,EAAE,CAAC,KAAK,iBAAiB;IAC7C,aAAa,EAAE,GAAG,EAAE,CAAC,KAAK,eAAe;IACzC,eAAe,EAAE,GAAG,EAAE,CAAC,KAAK,iBAAiB;IAC7C,qBAAqB,EAAE,GAAG,EAAE,CAAC,KAAK,uBAAuB;IACzD,8BAA8B;IAC9B,QAAQ,EAAE,GAAG,EAAE,CAAC,KAAK,UAAU;IAC/B,aAAa,EAAE,GAAG,EAAE,CAAC,KAAK,eAAe;IACzC,iBAAiB,EAAE,GAAG,EAAE,CAAC,KAAK,mBAAmB;IACjD,iBAAiB,EAAE,GAAG,EAAE,CAAC,KAAK,mBAAmB;IACjD,aAAa,EAAE,GAAG,EAAE,CAAC,KAAK,eAAe;IACzC,6BAA6B;IAC7B,mBAAmB,EAAE,GAAG,EAAE,CAAC,KAAK,qBAAqB;IACrD,mBAAmB,EAAE,GAAG,EAAE,CAAC,KAAK,qBAAqB;IACrD,eAAe,EAAE,GAAG,EAAE,CAAC,KAAK,iBAAiB;IAC7C,2BAA2B;IAC3B,cAAc,EAAE,GAAG,EAAE,CAAC,KAAK,gBAAgB;IAC3C,kBAAkB,EAAE,GAAG,EAAE,CAAC,KAAK,oBAAoB;IACnD,oBAAoB,EAAE,GAAG,EAAE,CAAC,KAAK,sBAAsB;IACvD,cAAc,EAAE,GAAG,EAAE,CAAC,KAAK,gBAAgB;IAC3C,kBAAkB,EAAE,GAAG,EAAE,CAAC,KAAK,oBAAoB;IACnD,cAAc,EAAE,GAAG,EAAE,CAAC,KAAK,gBAAgB;IAC3C,WAAW,EAAE,GAAG,EAAE,CAAC,KAAK,aAAa;IACrC,+BAA+B;IAC/B,eAAe,EAAE,GAAG,EAAE,CAAC,KAAK,iBAAiB;IAC7C,mBAAmB,EAAE,GAAG,EAAE,CAAC,KAAK,qBAAqB;IACrD,IAAI,EAAE,GAAG,EAAE,CAAC,KAAK,MAAM;IACvB,aAAa,EAAE,GAAG,EAAE,CAAC,KAAK,eAAe;IACzC,OAAO,EAAE,GAAG,EAAE,CAAC,KAAK,SAAS;IAC7B,QAAQ,EAAE,GAAG,EAAE,CAAC,KAAK,UAAU;IAC/B,YAAY,EAAE,GAAG,EAAE,CAAC,KAAK,cAAc;IACvC,eAAe,EAAE,GAAG,EAAE,CAAC,KAAK,iBAAiB;IAC7C,+BAA+B;IAC/B,WAAW,EAAE,GAAG,EAAE,CAAC,KAAK,aAAa;IACrC,kBAAkB,EAAE,GAAG,EAAE,CAAC,KAAK,oBAAoB;IACnD,iBAAiB,EAAE,GAAG,EAAE,CAAC,KAAK,mBAAmB;IACjD,oBAAoB,EAAE,GAAG,EAAE,CAAC,KAAK,sBAAsB;IACvD,SAAS,EAAE,GAAG,EAAE,CAAC,KAAK,WAAW;IACjC,aAAa,EAAE,GAAG,EAAE,CAAC,KAAK,eAAe;IACzC,WAAW,EAAE,GAAG,EAAE,CAAC,KAAK,aAAa;IACrC,qBAAqB,EAAE,GAAG,EAAE,CAAC,KAAK,uBAAuB;IACzD,yBAAyB;IACzB,oBAAoB,EAAE,GAAG,EAAE,CAAC,IAAI,sBAAsB;IACtD,wEAAwE;IACxE,cAAc,EAAE,GAAG,EAAE,CAAC,KAAK,gBAAgB;IAC3C,cAAc,EAAE,GAAG,EAAE,CAAC,KAAK,gBAAgB;IAC3C,iBAAiB,EAAE,GAAG,EAAE,CAAC,KAAK,mBAAmB;IACjD,iBAAiB,EAAE,GAAG,EAAE,CAAC,KAAK,mBAAmB;IACjD,WAAW,EAAE,GAAG,EAAE,CAAC,KAAK,aAAa;IACrC,gDAAgD;IAChD,kBAAkB,EAAE,GAAG,EAAE,CAAC,KAAK,oBAAoB;IACnD,aAAa,EAAE,GAAG,EAAE,CAAC,KAAK,eAAe;IACzC,yBAAyB,EAAE,GAAG,EAAE,CAAC,KAAK,2BAA2B;IACjE,iBAAiB,EAAE,GAAG,EAAE,CAAC,KAAK,mBAAmB;IACjD,eAAe,EAAE,GAAG,EAAE,CAAC,KAAK,iBAAiB;IAC7C,qBAAqB,EAAE,GAAG,EAAE,CAAC,KAAK,uBAAuB;IACzD,cAAc,EAAE,GAAG,EAAE,CAAC,MAAM,gBAAgB;IAC5C,cAAc,EAAE,GAAG,EAAE,CAAC,MAAM,gBAAgB;IAC5C,kBAAkB,EAAE,GAAG,EAAE,CAAC,MAAM,oBAAoB;IACpD,YAAY,EAAE,GAAG,EAAE,CAAC,MAAM,cAAc;IACxC,aAAa,EAAE,GAAG,EAAE,CAAC,MAAM,eAAe;IAC1C,gBAAgB,EAAE,GAAG,EAAE,CAAC,MAAM,kBAAkB;IAChD,WAAW,EAAE,GAAG,EAAE,CAAC,OAAO,aAAa;IACvC,kBAAkB,EAAE,GAAG,EAAE,CAAC,OAAO,oBAAoB;IACrD,kBAAkB,EAAE,GAAG,EAAE,CAAC,OAAO,oBAAoB;IACrD,eAAe,EAAE,GAAG,EAAE,CAAC,KAAK,iBAAiB;IAC7C,eAAe,EAAE,GAAG,EAAE,CAAC,KAAK,iBAAiB;IAC7C,kBAAkB,EAAE,GAAG,EAAE,CAAC,KAAK,oBAAoB;CAC3C,CAAC;AAEX,yCAAyC;AACzC,MAAM,CAAC,MAAM,SAAS,GAAG;IACvB,UAAU;IACV,SAAS,EAAE,GAAG,EAAE,CAAC,IAAI,WAAW;IAChC,QAAQ,EAAE,GAAG,EAAE,CAAC,IAAI,UAAU;IAC9B,WAAW,EAAE,GAAG,EAAE,CAAC,EAAE,aAAa;IAClC,SAAS,EAAE,GAAG,EAAE,CAAC,EAAE,WAAW;IAC9B,aAAa,EAAE,GAAG,EAAE,CAAC,EAAE,eAAe;IACtC,UAAU,EAAE,GAAG,EAAE,CAAC,KAAK,YAAY;IACnC,QAAQ,EAAE,GAAG,EAAE,CAAC,KAAK,UAAU;IAC/B,WAAW,EAAE,GAAG,EAAE,CAAC,KAAK,aAAa;IACrC,oBAAoB;IACpB,SAAS,EAAE,GAAG,EAAE,CAAC,KAAK,WAAW;IACjC,MAAM,EAAE,GAAG,EAAE,CAAC,KAAK,QAAQ;IAC3B,KAAK,EAAE,GAAG,EAAE,CAAC,KAAK,OAAO;IACzB,WAAW,EAAE,GAAG,EAAE,CAAC,KAAK,aAAa;IACrC,WAAW,EAAE,GAAG,EAAE,CAAC,KAAK,aAAa;IACrC,gBAAgB,EAAE,GAAG,EAAE,CAAC,KAAK,kBAAkB;IAC/C,gBAAgB,EAAE,GAAG,EAAE,CAAC,KAAK,kBAAkB;IAC/C,eAAe,EAAE,GAAG,EAAE,CAAC,KAAK,iBAAiB;IAC7C,UAAU,EAAE,GAAG,EAAE,CAAC,KAAK,YAAY;IACnC,MAAM,EAAE,GAAG,EAAE,CAAC,KAAK,QAAQ;IAC3B,WAAW,EAAE,GAAG,EAAE,CAAC,KAAK,aAAa;IACrC,wBAAwB;IACxB,QAAQ,EAAE,GAAG,EAAE,CAAC,KAAK,UAAU;IAC/B,MAAM,EAAE,GAAG,EAAE,CAAC,KAAK,QAAQ;IAC3B,MAAM,EAAE,GAAG,EAAE,CAAC,KAAK,QAAQ;IAC3B,SAAS,EAAE,GAAG,EAAE,CAAC,KAAK,WAAW;IACjC,QAAQ,EAAE,GAAG,EAAE,CAAC,KAAK,UAAU;IAC/B,WAAW,EAAE,GAAG,EAAE,CAAC,KAAK,aAAa;IACrC,eAAe,EAAE,GAAG,EAAE,CAAC,KAAK,iBAAiB;IAC7C,UAAU,EAAE,GAAG,EAAE,CAAC,KAAK,YAAY;IACnC,UAAU,EAAE,GAAG,EAAE,CAAC,KAAK,YAAY;IACnC,IAAI,EAAE,GAAG,EAAE,CAAC,KAAK,MAAM;IACvB,WAAW,EAAE,GAAG,EAAE,CAAC,KAAK,aAAa;IACrC,wBAAwB;IACxB,YAAY,EAAE,GAAG,EAAE,CAAC,KAAK,cAAc;IACvC,oBAAoB,EAAE,GAAG,EAAE,CAAC,KAAK,sBAAsB;IACvD,mBAAmB,EAAE,GAAG,EAAE,CAAC,KAAK,qBAAqB;IACrD,aAAa,EAAE,GAAG,EAAE,CAAC,KAAK,eAAe;IACzC,eAAe,EAAE,GAAG,EAAE,CAAC,KAAK,iBAAiB;IAC7C,SAAS,EAAE,GAAG,EAAE,CAAC,KAAK,WAAW;IACjC,UAAU,EAAE,GAAG,EAAE,CAAC,KAAK,YAAY;IACnC,wBAAwB,EAAE,GAAG,EAAE,CAAC,KAAK,0BAA0B;IAC/D,eAAe,EAAE,GAAG,EAAE,CAAC,KAAK,iBAAiB;IAC7C,aAAa,EAAE,GAAG,EAAE,CAAC,KAAK,eAAe;IACzC,cAAc,EAAE,GAAG,EAAE,CAAC,KAAK,gBAAgB;IAC3C,WAAW,EAAE,GAAG,EAAE,CAAC,KAAK,aAAa;IACrC,uBAAuB;IACvB,SAAS,EAAE,GAAG,EAAE,CAAC,KAAK,WAAW;IACjC,QAAQ,EAAE,GAAG,EAAE,CAAC,KAAK,UAAU;IAC/B,uBAAuB,EAAE,GAAG,EAAE,CAAC,KAAK,yBAAyB;IAC7D,UAAU,EAAE,GAAG,EAAE,CAAC,KAAK,YAAY;IACnC,eAAe,EAAE,GAAG,EAAE,CAAC,KAAK,QAAQ;IACpC,kBAAkB,EAAE,GAAG,EAAE,CAAC,KAAK,oBAAoB;IACnD,eAAe,EAAE,GAAG,EAAE,CAAC,KAAK,iBAAiB;IAC7C,qBAAqB;IACrB,KAAK,EAAE,GAAG,EAAE,CAAC,KAAK,OAAO;IACzB,KAAK,EAAE,GAAG,EAAE,CAAC,KAAK,OAAO;IACzB,OAAO,EAAE,GAAG,EAAE,CAAC,KAAK,SAAS;IAC7B,IAAI,EAAE,GAAG,EAAE,CAAC,KAAK,MAAM;IACvB,IAAI,EAAE,GAAG,EAAE,CAAC,KAAK,MAAM;IACvB,mCAAmC,EAAE,GAAG,EAAE,CAAC,KAAK,qCAAqC;IACrF,oBAAoB,EAAE,GAAG,EAAE,CAAC,KAAK,sBAAsB;IACvD,uBAAuB,EAAE,GAAG,EAAE,CAAC,KAAK,yBAAyB;IAC7D,KAAK,EAAE,GAAG,EAAE,CAAC,KAAK,OAAO;IACzB,kBAAkB,EAAE,GAAG,EAAE,CAAC,KAAK,oBAAoB;IACnD,KAAK,EAAE,GAAG,EAAE,CAAC,KAAK,OAAO;IACzB,cAAc,EAAE,GAAG,EAAE,CAAC,KAAK,gBAAgB;IAC3C,SAAS,EAAE,GAAG,EAAE,CAAC,KAAK,WAAW;IACjC,yBAAyB;IACzB,kBAAkB,EAAE,GAAG,EAAE,CAAC,KAAK,oBAAoB;IACnD,QAAQ,EAAE,GAAG,EAAE,CAAC,KAAK,UAAU;IAC/B,SAAS,EAAE,GAAG,EAAE,CAAC,KAAK,WAAW;IACjC,QAAQ,EAAE,GAAG,EAAE,CAAC,KAAK,UAAU;IAC/B,YAAY,EAAE,GAAG,EAAE,CAAC,KAAK,cAAc;IACvC,kBAAkB,EAAE,GAAG,EAAE,CAAC,KAAK,oBAAoB;IACnD,iBAAiB,EAAE,GAAG,EAAE,CAAC,KAAK,mBAAmB;IACjD,MAAM,EAAE,GAAG,EAAE,CAAC,KAAK,QAAQ;IAC3B,OAAO,EAAE,GAAG,EAAE,CAAC,KAAK,SAAS;IAC7B,QAAQ,EAAE,GAAG,EAAE,CAAC,KAAK,UAAU;IAC/B,YAAY,EAAE,GAAG,EAAE,CAAC,KAAK,cAAc;IACvC,gBAAgB,EAAE,GAAG,EAAE,CAAC,KAAK,kBAAkB;IAC/C,QAAQ,EAAE,GAAG,EAAE,CAAC,KAAK,UAAU;IAC/B,UAAU,EAAE,GAAG,EAAE,CAAC,KAAK,YAAY;IACnC,yBAAyB;IACzB,GAAG,EAAE,GAAG,EAAE,CAAC,KAAK,KAAK;IACrB,cAAc,EAAE,GAAG,EAAE,CAAC,KAAK,gBAAgB;IAC3C,cAAc,EAAE,GAAG,EAAE,CAAC,KAAK,gBAAgB;IAC3C,MAAM,EAAE,GAAG,EAAE,CAAC,KAAK,QAAQ;IAC3B,mBAAmB,EAAE,GAAG,EAAE,CAAC,KAAK,qBAAqB;IACrD,aAAa,EAAE,GAAG,EAAE,CAAC,KAAK,eAAe;IACzC,eAAe,EAAE,GAAG,EAAE,CAAC,KAAK,iBAAiB;IAC7C,aAAa,EAAE,GAAG,EAAE,CAAC,KAAK,eAAe;IACzC,eAAe,EAAE,GAAG,EAAE,CAAC,KAAK,iBAAiB;IAC7C,aAAa,EAAE,GAAG,EAAE,CAAC,KAAK,eAAe;IACzC,4BAA4B,EAAE,GAAG,EAAE,CAAC,KAAK,8BAA8B;IACvE,0CAA0C;IAC1C,OAAO,EAAE,GAAG,EAAE,CAAC,KAAK,SAAS;IAC7B,UAAU,EAAE,GAAG,EAAE,CAAC,KAAK,YAAY;IACnC,SAAS,EAAE,GAAG,EAAE,CAAC,KAAK,WAAW;IACjC,gBAAgB,EAAE,GAAG,EAAE,CAAC,KAAK,kBAAkB;IAC/C,UAAU,EAAE,GAAG,EAAE,CAAC,KAAK,YAAY;IACnC,QAAQ,EAAE,GAAG,EAAE,CAAC,KAAK,UAAU;IAC/B,YAAY,EAAE,GAAG,EAAE,CAAC,KAAK,cAAc;IACvC,WAAW,EAAE,GAAG,EAAE,CAAC,KAAK,aAAa;IACrC,UAAU,EAAE,GAAG,EAAE,CAAC,KAAK,YAAY;IACnC,gBAAgB,EAAE,GAAG,EAAE,CAAC,KAAK,kBAAkB;IAC/C,gDAAgD;IAChD,UAAU,EAAE,GAAG,EAAE,CAAC,KAAK,YAAY;IACnC,OAAO,EAAE,GAAG,EAAE,CAAC,KAAK,SAAS;IAC7B,YAAY,EAAE,GAAG,EAAE,CAAC,KAAK,cAAc;IACvC,eAAe,EAAE,GAAG,EAAE,CAAC,KAAK,iBAAiB;IAC7C,QAAQ,EAAE,GAAG,EAAE,CAAC,KAAK,UAAU;IAC/B,SAAS,EAAE,GAAG,EAAE,CAAC,KAAK,WAAW;IACjC,WAAW,EAAE,GAAG,EAAE,CAAC,KAAK,aAAa;IACrC,gBAAgB,EAAE,GAAG,EAAE,CAAC,KAAK,kBAAkB;IAC/C,SAAS,EAAE,GAAG,EAAE,CAAC,KAAK,WAAW;IACjC,aAAa,EAAE,GAAG,EAAE,CAAC,KAAK,eAAe;IACzC,WAAW,EAAE,GAAG,EAAE,CAAC,KAAK,aAAa;IACrC,iBAAiB,EAAE,GAAG,EAAE,CAAC,KAAK,mBAAmB;IACjD,WAAW,EAAE,GAAG,EAAE,CAAC,KAAK,aAAa;IACrC,aAAa,EAAE,GAAG,EAAE,CAAC,KAAK,UAAU;IACpC,cAAc,EAAE,GAAG,EAAE,CAAC,KAAK,WAAW;IACtC,UAAU,EAAE,GAAG,EAAE,CAAC,KAAK,YAAY;IACnC,eAAe,EAAE,GAAG,EAAE,CAAC,KAAK,iBAAiB;IAC7C,eAAe,EAAE,GAAG,EAAE,CAAC,KAAK,iBAAiB;IAC7C,kBAAkB,EAAE,GAAG,EAAE,CAAC,KAAK,oBAAoB;IACnD,YAAY,EAAE,GAAG,EAAE,CAAC,KAAK,cAAc;IACvC,SAAS,EAAE,GAAG,EAAE,CAAC,MAAM,WAAW;IAClC,iBAAiB,EAAE,GAAG,EAAE,CAAC,MAAM,mBAAmB;IAClD,oBAAoB,EAAE,GAAG,EAAE,CAAC,MAAM,sBAAsB;IACxD,cAAc,EAAE,GAAG,EAAE,CAAC,MAAM,gBAAgB;IAC5C,sBAAsB,EAAE,GAAG,EAAE,CAAC,MAAM,wBAAwB;IAC5D,qBAAqB,EAAE,GAAG,EAAE,CAAC,MAAM,uBAAuB;IAC1D,eAAe,EAAE,GAAG,EAAE,CAAC,MAAM,iBAAiB;IAC9C,UAAU,EAAE,GAAG,EAAE,CAAC,MAAM,YAAY;IACpC,UAAU,EAAE,GAAG,EAAE,CAAC,MAAM,YAAY;IACpC,QAAQ,EAAE,GAAG,EAAE,CAAC,KAAK,UAAU;IAC/B,aAAa,EAAE,GAAG,EAAE,CAAC,KAAK,eAAe;IACzC,YAAY,EAAE,GAAG,EAAE,CAAC,KAAK,cAAc;CAC/B,CAAC;AAEX;;;;;;;GAOG;AACH,MAAM,CAAC,MAAM,KAAK,GAAG;IACnB,gBAAgB,EAAE,GAAG,EAAE,CAAC,EAAE,uBAAuB;IACjD,eAAe,EAAE,GAAG,EAAE,CAAC,IAAI,sBAAsB;IACjD,kFAAkF;IAClF,iBAAiB,EAAE,GAAG,EAAE,CAAC,KAAK,wBAAwB;IACtD,aAAa,EAAE,GAAG,EAAE,CAAC,KAAK,oBAAoB;IAC9C,eAAe,EAAE,GAAG,EAAE,CAAC,KAAK,sBAAsB;IAClD,yBAAyB,EAAE,GAAG,EAAE,CAAC,KAAK,gCAAgC;IACtE,qBAAqB,EAAE,GAAG,EAAE,CAAC,KAAK,4BAA4B;IAC9D,cAAc,EAAE,GAAG,EAAE,CAAC,MAAM,qBAAqB;IACjD,cAAc,EAAE,GAAG,EAAE,CAAC,MAAM,qBAAqB;IACjD,kBAAkB,EAAE,GAAG,EAAE,CAAC,MAAM,yBAAyB;IACzD,eAAe,EAAE,GAAG,EAAE,CAAC,KAAK,sBAAsB;CAC1C,CAAC;AAEX,mEAAmE;AACnE,kFAAkF"}
|