@openvtc/trust-tasks 0.12.13 → 0.12.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.
@@ -0,0 +1,328 @@
1
+ /**
2
+ * Generated by scripts/build-ts-bindings.mjs — DO NOT EDIT BY HAND.
3
+ * Source: specs/vtc/relationships/graph/0.2/payload.schema.json
4
+ */
5
+ /** Trust Task type URI. */
6
+ export const TYPE_URI = "https://trusttasks.org/spec/vtc/relationships/graph/0.2";
7
+ /** Trust Task response type URI (request type URI + "#response"). */
8
+ export const RESPONSE_TYPE_URI = "https://trusttasks.org/spec/vtc/relationships/graph/0.2#response";
9
+ /**
10
+ * This specification's payload schema, as a value.
11
+ *
12
+ * SPEC.md §7.2 item 2 is performed against this. It is shipped as data
13
+ * rather than only as a `.json` file because TypeScript types are erased
14
+ * at runtime: without a schema a consumer has nothing to validate, and
15
+ * every REQUIRED payload member is optional in practice. Cross-file
16
+ * `$ref`s are already inlined, so it needs no resolver.
17
+ */
18
+ export const PAYLOAD_SCHEMA = {
19
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
20
+ "$id": "https://trusttasks.org/spec/vtc/relationships/graph/0.2",
21
+ "title": "VTC Relationships Graph — payload",
22
+ "type": "object",
23
+ "additionalProperties": false,
24
+ "properties": {
25
+ "ext": {
26
+ "$ref": "#/$defs/Ext"
27
+ }
28
+ },
29
+ "$defs": {
30
+ "Response": {
31
+ "$anchor": "response",
32
+ "title": "VTC Relationships Graph — response payload",
33
+ "type": "object",
34
+ "additionalProperties": false,
35
+ "required": [
36
+ "nodes",
37
+ "edges"
38
+ ],
39
+ "properties": {
40
+ "nodes": {
41
+ "type": "array",
42
+ "items": {
43
+ "$ref": "#/$defs/GraphNode"
44
+ },
45
+ "description": "One per distinct DID appearing in a live edge. No isolated nodes."
46
+ },
47
+ "edges": {
48
+ "type": "array",
49
+ "items": {
50
+ "$ref": "#/$defs/GraphEdge"
51
+ },
52
+ "description": "One per **pair** of identifiers with at least one live credential between them, not one per credential."
53
+ },
54
+ "ext": {
55
+ "$ref": "#/$defs/Ext"
56
+ }
57
+ }
58
+ },
59
+ "GraphNode": {
60
+ "$anchor": "graphNode",
61
+ "title": "GraphNode",
62
+ "type": "object",
63
+ "additionalProperties": false,
64
+ "required": [
65
+ "did"
66
+ ],
67
+ "properties": {
68
+ "did": {
69
+ "type": "string",
70
+ "minLength": 1,
71
+ "description": "A DID participating in at least one live relationship."
72
+ }
73
+ }
74
+ },
75
+ "GraphEdge": {
76
+ "$anchor": "graphEdge",
77
+ "title": "GraphEdge",
78
+ "type": "object",
79
+ "additionalProperties": false,
80
+ "required": [
81
+ "endpoints",
82
+ "halves",
83
+ "complete"
84
+ ],
85
+ "properties": {
86
+ "endpoints": {
87
+ "type": "array",
88
+ "items": {
89
+ "type": "string",
90
+ "pattern": "^did:"
91
+ },
92
+ "minItems": 2,
93
+ "maxItems": 2,
94
+ "description": "The two endpoints, DID-sorted. Sorting gives the pair one identity whichever half was published first. Both entries are equal only for a self-issued credential."
95
+ },
96
+ "halves": {
97
+ "type": "array",
98
+ "items": {
99
+ "$ref": "#/$defs/GraphHalf"
100
+ },
101
+ "minItems": 1,
102
+ "description": "Every credential published between the endpoints, oldest first. One for a half-edge, two for the ordinary reciprocated edge, more where a party has re-issued."
103
+ },
104
+ "complete": {
105
+ "type": "boolean",
106
+ "description": "True when both endpoints have asserted about each other. The distinction a flat list cannot make: an edge asserted by one party is a claim, and an edge asserted by both is a relationship."
107
+ }
108
+ },
109
+ "description": "One edge between a **pair** of identifiers, carrying every half published between them.\n\n`0.1` called each credential an edge, which made a DTG edge inexpressible: the two directed halves between the same pair are one relationship, and a consumer given a flat list had to re-derive that pairing — sorting DIDs, grouping, and deciding for itself what `complete` means. Two implementations doing that independently will disagree at the margins, which is exactly the reasoning a schema exists to settle once."
110
+ },
111
+ "GraphHalf": {
112
+ "$anchor": "graphHalf",
113
+ "title": "GraphHalf",
114
+ "type": "object",
115
+ "additionalProperties": false,
116
+ "description": "One published relationship credential: a **directed half** of an edge, asserted by `issuerDid` about `subjectDid`.\n\nBody-free on purpose — the graph shows the shape of the trust network, not credential contents. `id` is the row identifier a revoke takes.",
117
+ "required": [
118
+ "id",
119
+ "issuerDid",
120
+ "subjectDid",
121
+ "createdAt"
122
+ ],
123
+ "properties": {
124
+ "id": {
125
+ "type": "string",
126
+ "minLength": 1
127
+ },
128
+ "issuerDid": {
129
+ "type": "string",
130
+ "pattern": "^did:",
131
+ "description": "The asserting party."
132
+ },
133
+ "subjectDid": {
134
+ "type": "string",
135
+ "pattern": "^did:",
136
+ "description": "The party asserted about."
137
+ },
138
+ "createdAt": {
139
+ "type": "string",
140
+ "format": "date-time"
141
+ },
142
+ "personaDid": {
143
+ "type": [
144
+ "string",
145
+ "null"
146
+ ],
147
+ "pattern": "^did:|^$",
148
+ "description": "The persona this issuer has asserted on this half, when they have.\n\nThe one place deliberate correlation becomes visible: two pairwise halves carrying the same `personaDid` are the same party, said so by that party. A consumer that cannot read it cannot honour a correlation its subject chose to publish."
149
+ }
150
+ }
151
+ },
152
+ "Ext": {
153
+ "title": "Ext",
154
+ "description": "Vendor-namespaced extension object per SPEC.md §4.5.1. Each immediate key MUST be a reverse-DNS namespace; structure under each namespace is opaque to the framework.",
155
+ "type": "object",
156
+ "minProperties": 1,
157
+ "additionalProperties": true,
158
+ "propertyNames": {
159
+ "pattern": "^[a-z][a-z0-9-]*(\\.[a-z0-9-]+)+$"
160
+ }
161
+ }
162
+ }
163
+ };
164
+ /** As {@link PAYLOAD_SCHEMA}, for the success-response variant. */
165
+ export const RESPONSE_PAYLOAD_SCHEMA = {
166
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
167
+ "$ref": "#/$defs/Response",
168
+ "$defs": {
169
+ "Response": {
170
+ "$anchor": "response",
171
+ "title": "VTC Relationships Graph — response payload",
172
+ "type": "object",
173
+ "additionalProperties": false,
174
+ "required": [
175
+ "nodes",
176
+ "edges"
177
+ ],
178
+ "properties": {
179
+ "nodes": {
180
+ "type": "array",
181
+ "items": {
182
+ "$ref": "#/$defs/GraphNode"
183
+ },
184
+ "description": "One per distinct DID appearing in a live edge. No isolated nodes."
185
+ },
186
+ "edges": {
187
+ "type": "array",
188
+ "items": {
189
+ "$ref": "#/$defs/GraphEdge"
190
+ },
191
+ "description": "One per **pair** of identifiers with at least one live credential between them, not one per credential."
192
+ },
193
+ "ext": {
194
+ "$ref": "#/$defs/Ext"
195
+ }
196
+ }
197
+ },
198
+ "GraphNode": {
199
+ "$anchor": "graphNode",
200
+ "title": "GraphNode",
201
+ "type": "object",
202
+ "additionalProperties": false,
203
+ "required": [
204
+ "did"
205
+ ],
206
+ "properties": {
207
+ "did": {
208
+ "type": "string",
209
+ "minLength": 1,
210
+ "description": "A DID participating in at least one live relationship."
211
+ }
212
+ }
213
+ },
214
+ "GraphEdge": {
215
+ "$anchor": "graphEdge",
216
+ "title": "GraphEdge",
217
+ "type": "object",
218
+ "additionalProperties": false,
219
+ "required": [
220
+ "endpoints",
221
+ "halves",
222
+ "complete"
223
+ ],
224
+ "properties": {
225
+ "endpoints": {
226
+ "type": "array",
227
+ "items": {
228
+ "type": "string",
229
+ "pattern": "^did:"
230
+ },
231
+ "minItems": 2,
232
+ "maxItems": 2,
233
+ "description": "The two endpoints, DID-sorted. Sorting gives the pair one identity whichever half was published first. Both entries are equal only for a self-issued credential."
234
+ },
235
+ "halves": {
236
+ "type": "array",
237
+ "items": {
238
+ "$ref": "#/$defs/GraphHalf"
239
+ },
240
+ "minItems": 1,
241
+ "description": "Every credential published between the endpoints, oldest first. One for a half-edge, two for the ordinary reciprocated edge, more where a party has re-issued."
242
+ },
243
+ "complete": {
244
+ "type": "boolean",
245
+ "description": "True when both endpoints have asserted about each other. The distinction a flat list cannot make: an edge asserted by one party is a claim, and an edge asserted by both is a relationship."
246
+ }
247
+ },
248
+ "description": "One edge between a **pair** of identifiers, carrying every half published between them.\n\n`0.1` called each credential an edge, which made a DTG edge inexpressible: the two directed halves between the same pair are one relationship, and a consumer given a flat list had to re-derive that pairing — sorting DIDs, grouping, and deciding for itself what `complete` means. Two implementations doing that independently will disagree at the margins, which is exactly the reasoning a schema exists to settle once."
249
+ },
250
+ "GraphHalf": {
251
+ "$anchor": "graphHalf",
252
+ "title": "GraphHalf",
253
+ "type": "object",
254
+ "additionalProperties": false,
255
+ "description": "One published relationship credential: a **directed half** of an edge, asserted by `issuerDid` about `subjectDid`.\n\nBody-free on purpose — the graph shows the shape of the trust network, not credential contents. `id` is the row identifier a revoke takes.",
256
+ "required": [
257
+ "id",
258
+ "issuerDid",
259
+ "subjectDid",
260
+ "createdAt"
261
+ ],
262
+ "properties": {
263
+ "id": {
264
+ "type": "string",
265
+ "minLength": 1
266
+ },
267
+ "issuerDid": {
268
+ "type": "string",
269
+ "pattern": "^did:",
270
+ "description": "The asserting party."
271
+ },
272
+ "subjectDid": {
273
+ "type": "string",
274
+ "pattern": "^did:",
275
+ "description": "The party asserted about."
276
+ },
277
+ "createdAt": {
278
+ "type": "string",
279
+ "format": "date-time"
280
+ },
281
+ "personaDid": {
282
+ "type": [
283
+ "string",
284
+ "null"
285
+ ],
286
+ "pattern": "^did:|^$",
287
+ "description": "The persona this issuer has asserted on this half, when they have.\n\nThe one place deliberate correlation becomes visible: two pairwise halves carrying the same `personaDid` are the same party, said so by that party. A consumer that cannot read it cannot honour a correlation its subject chose to publish."
288
+ }
289
+ }
290
+ },
291
+ "Ext": {
292
+ "title": "Ext",
293
+ "description": "Vendor-namespaced extension object per SPEC.md §4.5.1. Each immediate key MUST be a reverse-DNS namespace; structure under each namespace is opaque to the framework.",
294
+ "type": "object",
295
+ "minProperties": 1,
296
+ "additionalProperties": true,
297
+ "propertyNames": {
298
+ "pattern": "^[a-z][a-z0-9-]*(\\.[a-z0-9-]+)+$"
299
+ }
300
+ }
301
+ }
302
+ };
303
+ /**
304
+ * SPEC.md §7.2 policy for the request variant, from this specification's
305
+ * front matter. Pass to `consumeInbound` — items 5b, 7 and 8 are
306
+ * per-specification and cannot be derived from the document alone, and
307
+ * item 2 needs the schema this carries.
308
+ */
309
+ export const SPEC = {
310
+ typeUri: TYPE_URI,
311
+ isBearer: false,
312
+ isProofRequired: false,
313
+ isRecipientRequired: true,
314
+ payloadSchema: PAYLOAD_SCHEMA,
315
+ };
316
+ /**
317
+ * SPEC.md §7.2 policy for the success-response variant. `isRecipientRequired`
318
+ * tracks the *issuer* party's requirement because a response swaps the
319
+ * parties (§7.3 item 5).
320
+ */
321
+ export const RESPONSE_SPEC = {
322
+ typeUri: RESPONSE_TYPE_URI,
323
+ isBearer: false,
324
+ isProofRequired: false,
325
+ isRecipientRequired: true,
326
+ payloadSchema: RESPONSE_PAYLOAD_SCHEMA,
327
+ };
328
+ //# sourceMappingURL=payload.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"payload.js","sourceRoot":"","sources":["../../../../../src/vtc/relationships/graph/0.2/payload.ts"],"names":[],"mappings":"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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openvtc/trust-tasks",
3
- "version": "0.12.13",
3
+ "version": "0.12.14",
4
4
  "description": "Generated TypeScript bindings for the Trust Tasks framework registry.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
package/src/index.ts CHANGED
@@ -398,6 +398,7 @@ export * as VtcPoliciesTest_v0_1 from "./vtc/policies/test/0.1/payload.js";
398
398
  export * as VtcRecognitionCheck_v0_1 from "./vtc/recognition/check/0.1/payload.js";
399
399
  export * as VtcRegistryDiagnostics_v0_1 from "./vtc/registry/diagnostics/0.1/payload.js";
400
400
  export * as VtcRelationshipsGraph_v0_1 from "./vtc/relationships/graph/0.1/payload.js";
401
+ export * as VtcRelationshipsGraph_v0_2 from "./vtc/relationships/graph/0.2/payload.js";
401
402
  export * as VtcRelationshipsList_v0_1 from "./vtc/relationships/list/0.1/payload.js";
402
403
  export * as VtcRelationshipsList_v0_2 from "./vtc/relationships/list/0.2/payload.js";
403
404
  export * as VtcRelationshipsPublish_v0_1 from "./vtc/relationships/publish/0.1/payload.js";