@openvtc/trust-tasks 0.16.4 → 0.16.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/CHANGELOG.md +20 -0
- package/dist/_shared/components.d.ts +4 -4
- package/dist/_shared/components.d.ts.map +1 -1
- package/dist/device/list/0.1/payload.d.ts +8 -8
- package/dist/device/list/0.1/payload.d.ts.map +1 -1
- package/dist/device/list/0.1/payload.js +12 -4
- package/dist/device/list/0.1/payload.js.map +1 -1
- package/dist/device/list/0.2/payload.d.ts +8 -8
- package/dist/device/list/0.2/payload.d.ts.map +1 -1
- package/dist/device/list/0.2/payload.js +12 -4
- package/dist/device/list/0.2/payload.js.map +1 -1
- package/dist/device/register/0.1/payload.d.ts +8 -8
- package/dist/device/register/0.1/payload.d.ts.map +1 -1
- package/dist/device/register/0.1/payload.js +12 -4
- package/dist/device/register/0.1/payload.js.map +1 -1
- package/dist/device/register/0.2/payload.d.ts +8 -8
- package/dist/device/register/0.2/payload.d.ts.map +1 -1
- package/dist/device/register/0.2/payload.js +12 -4
- package/dist/device/register/0.2/payload.js.map +1 -1
- package/dist/index.d.ts +2 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +2 -0
- package/dist/index.js.map +1 -1
- package/dist/vta/credentials/list/0.1/payload.d.ts +630 -0
- package/dist/vta/credentials/list/0.1/payload.d.ts.map +1 -0
- package/dist/vta/credentials/list/0.1/payload.js +322 -0
- package/dist/vta/credentials/list/0.1/payload.js.map +1 -0
- package/dist/vtc/members/credentials/0.1/payload.d.ts +379 -0
- package/dist/vtc/members/credentials/0.1/payload.d.ts.map +1 -0
- package/dist/vtc/members/credentials/0.1/payload.js +195 -0
- package/dist/vtc/members/credentials/0.1/payload.js.map +1 -0
- package/package.json +1 -1
- package/src/_shared/components.ts +12 -4
- package/src/device/list/0.1/payload.ts +12 -4
- package/src/device/list/0.2/payload.ts +12 -4
- package/src/device/register/0.1/payload.ts +12 -4
- package/src/device/register/0.2/payload.ts +12 -4
- package/src/index.ts +2 -0
- package/src/vta/credentials/list/0.1/payload.ts +420 -0
- package/src/vtc/members/credentials/0.1/payload.ts +259 -0
|
@@ -0,0 +1,322 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Generated by scripts/build-ts-bindings.mjs — DO NOT EDIT BY HAND.
|
|
3
|
+
* Source: specs/vta/credentials/list/0.1/payload.schema.json
|
|
4
|
+
*/
|
|
5
|
+
/** Trust Task type URI. */
|
|
6
|
+
export const TYPE_URI = "https://trusttasks.org/spec/vta/credentials/list/0.1";
|
|
7
|
+
/** Trust Task response type URI (request type URI + "#response"). */
|
|
8
|
+
export const RESPONSE_TYPE_URI = "https://trusttasks.org/spec/vta/credentials/list/0.1#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/vta/credentials/list/0.1",
|
|
21
|
+
"title": "VTA Credentials — List",
|
|
22
|
+
"description": "Enumerate the credentials an agent has issued, as metadata. Every filter is optional and those present are AND-combined.",
|
|
23
|
+
"type": "object",
|
|
24
|
+
"additionalProperties": false,
|
|
25
|
+
"properties": {
|
|
26
|
+
"holder": {
|
|
27
|
+
"$ref": "#/$defs/Did",
|
|
28
|
+
"description": "Only credentials issued to this DID."
|
|
29
|
+
},
|
|
30
|
+
"credentialType": {
|
|
31
|
+
"type": "string",
|
|
32
|
+
"minLength": 1,
|
|
33
|
+
"maxLength": 256,
|
|
34
|
+
"description": "Only credentials carrying this type tag beyond `VerifiableCredential`."
|
|
35
|
+
},
|
|
36
|
+
"status": {
|
|
37
|
+
"$ref": "#/$defs/IssuedCredentialStatus",
|
|
38
|
+
"description": "Only credentials in this state. Derived by the agent at read time, never stored."
|
|
39
|
+
},
|
|
40
|
+
"pageSize": {
|
|
41
|
+
"type": "integer",
|
|
42
|
+
"minimum": 1,
|
|
43
|
+
"maximum": 1000,
|
|
44
|
+
"description": "Maximum records to return. The agent MAY return fewer and caps this value."
|
|
45
|
+
},
|
|
46
|
+
"cursor": {
|
|
47
|
+
"type": "string",
|
|
48
|
+
"minLength": 1,
|
|
49
|
+
"maxLength": 4096,
|
|
50
|
+
"description": "Continue a previous page. Opaque — consumers must not construct or parse one."
|
|
51
|
+
},
|
|
52
|
+
"ext": {
|
|
53
|
+
"$ref": "#/$defs/Ext",
|
|
54
|
+
"description": "Ecosystem-defined extension members per SPEC.md §4.5.1."
|
|
55
|
+
}
|
|
56
|
+
},
|
|
57
|
+
"$defs": {
|
|
58
|
+
"Response": {
|
|
59
|
+
"$anchor": "response",
|
|
60
|
+
"title": "VTA Credentials List — response payload",
|
|
61
|
+
"type": "object",
|
|
62
|
+
"additionalProperties": false,
|
|
63
|
+
"required": [
|
|
64
|
+
"credentials",
|
|
65
|
+
"truncated"
|
|
66
|
+
],
|
|
67
|
+
"properties": {
|
|
68
|
+
"credentials": {
|
|
69
|
+
"type": "array",
|
|
70
|
+
"items": {
|
|
71
|
+
"$ref": "#/$defs/IssuedCredentialSummary"
|
|
72
|
+
},
|
|
73
|
+
"description": "One summary per matching credential. Empty when nothing matched — a successful answer, not an error."
|
|
74
|
+
},
|
|
75
|
+
"truncated": {
|
|
76
|
+
"type": "boolean",
|
|
77
|
+
"description": "The agent stopped early. A consumer must not read a truncated page as a complete account of what was issued."
|
|
78
|
+
},
|
|
79
|
+
"cursor": {
|
|
80
|
+
"type": "string",
|
|
81
|
+
"minLength": 1,
|
|
82
|
+
"maxLength": 4096,
|
|
83
|
+
"description": "Pass to the next request to continue. Absent when the page is the last."
|
|
84
|
+
},
|
|
85
|
+
"ext": {
|
|
86
|
+
"$ref": "#/$defs/Ext",
|
|
87
|
+
"description": "Ecosystem-defined extension members per SPEC.md §4.5.1."
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
},
|
|
91
|
+
"IssuedCredentialSummary": {
|
|
92
|
+
"title": "IssuedCredentialSummary",
|
|
93
|
+
"description": "A body-free projection of an issuance record. Carries no claim content by construction — see the specification's rationale for why a list does not return credentials.",
|
|
94
|
+
"type": "object",
|
|
95
|
+
"additionalProperties": false,
|
|
96
|
+
"required": [
|
|
97
|
+
"credentialId",
|
|
98
|
+
"holder",
|
|
99
|
+
"issuedAt",
|
|
100
|
+
"expiresAt",
|
|
101
|
+
"status"
|
|
102
|
+
],
|
|
103
|
+
"properties": {
|
|
104
|
+
"credentialId": {
|
|
105
|
+
"$ref": "#/$defs/CredentialId",
|
|
106
|
+
"description": "The id `vta/credentials/revoke` is keyed on."
|
|
107
|
+
},
|
|
108
|
+
"holder": {
|
|
109
|
+
"$ref": "#/$defs/Did",
|
|
110
|
+
"description": "Who the credential was issued to."
|
|
111
|
+
},
|
|
112
|
+
"credentialType": {
|
|
113
|
+
"type": "string",
|
|
114
|
+
"minLength": 1,
|
|
115
|
+
"maxLength": 256,
|
|
116
|
+
"description": "The type tag beyond `VerifiableCredential`, when the credential carries one."
|
|
117
|
+
},
|
|
118
|
+
"issuedAt": {
|
|
119
|
+
"type": "string",
|
|
120
|
+
"format": "date-time"
|
|
121
|
+
},
|
|
122
|
+
"expiresAt": {
|
|
123
|
+
"type": "string",
|
|
124
|
+
"format": "date-time"
|
|
125
|
+
},
|
|
126
|
+
"status": {
|
|
127
|
+
"$ref": "#/$defs/IssuedCredentialStatus"
|
|
128
|
+
},
|
|
129
|
+
"revokedAt": {
|
|
130
|
+
"type": "string",
|
|
131
|
+
"format": "date-time",
|
|
132
|
+
"description": "Present iff `status` is `revoked`."
|
|
133
|
+
},
|
|
134
|
+
"revocationReason": {
|
|
135
|
+
"type": "string",
|
|
136
|
+
"maxLength": 1024,
|
|
137
|
+
"description": "Free text recorded at revocation. Disclosed to every caller entitled to this list — see Security & Privacy."
|
|
138
|
+
}
|
|
139
|
+
}
|
|
140
|
+
},
|
|
141
|
+
"IssuedCredentialStatus": {
|
|
142
|
+
"type": "string",
|
|
143
|
+
"enum": [
|
|
144
|
+
"active",
|
|
145
|
+
"expired",
|
|
146
|
+
"revoked"
|
|
147
|
+
],
|
|
148
|
+
"description": "Derived at read time. `revoked` takes precedence over `expired`: a credential revoked before its window closed is revoked, and reporting it as merely expired would hide that somebody acted."
|
|
149
|
+
},
|
|
150
|
+
"Did": {
|
|
151
|
+
"type": "string",
|
|
152
|
+
"pattern": "^did:[a-z0-9]+:.+$",
|
|
153
|
+
"maxLength": 2048
|
|
154
|
+
},
|
|
155
|
+
"CredentialId": {
|
|
156
|
+
"$anchor": "credentialId",
|
|
157
|
+
"title": "CredentialId",
|
|
158
|
+
"description": "Stable identifier for an issued credential — the handle for revocation and audit. Opaque to the holder: it MUST be echoed verbatim when revoking and MUST NOT be parsed.",
|
|
159
|
+
"type": "string",
|
|
160
|
+
"minLength": 1
|
|
161
|
+
},
|
|
162
|
+
"Ext": {
|
|
163
|
+
"title": "Ext",
|
|
164
|
+
"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.",
|
|
165
|
+
"type": "object",
|
|
166
|
+
"minProperties": 1,
|
|
167
|
+
"additionalProperties": true,
|
|
168
|
+
"propertyNames": {
|
|
169
|
+
"pattern": "^[a-z][a-z0-9-]*(\\.[a-z0-9-]+)+$"
|
|
170
|
+
}
|
|
171
|
+
}
|
|
172
|
+
}
|
|
173
|
+
};
|
|
174
|
+
/** As {@link PAYLOAD_SCHEMA}, for the success-response variant. */
|
|
175
|
+
export const RESPONSE_PAYLOAD_SCHEMA = {
|
|
176
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
177
|
+
"$ref": "#/$defs/Response",
|
|
178
|
+
"$defs": {
|
|
179
|
+
"Response": {
|
|
180
|
+
"$anchor": "response",
|
|
181
|
+
"title": "VTA Credentials List — response payload",
|
|
182
|
+
"type": "object",
|
|
183
|
+
"additionalProperties": false,
|
|
184
|
+
"required": [
|
|
185
|
+
"credentials",
|
|
186
|
+
"truncated"
|
|
187
|
+
],
|
|
188
|
+
"properties": {
|
|
189
|
+
"credentials": {
|
|
190
|
+
"type": "array",
|
|
191
|
+
"items": {
|
|
192
|
+
"$ref": "#/$defs/IssuedCredentialSummary"
|
|
193
|
+
},
|
|
194
|
+
"description": "One summary per matching credential. Empty when nothing matched — a successful answer, not an error."
|
|
195
|
+
},
|
|
196
|
+
"truncated": {
|
|
197
|
+
"type": "boolean",
|
|
198
|
+
"description": "The agent stopped early. A consumer must not read a truncated page as a complete account of what was issued."
|
|
199
|
+
},
|
|
200
|
+
"cursor": {
|
|
201
|
+
"type": "string",
|
|
202
|
+
"minLength": 1,
|
|
203
|
+
"maxLength": 4096,
|
|
204
|
+
"description": "Pass to the next request to continue. Absent when the page is the last."
|
|
205
|
+
},
|
|
206
|
+
"ext": {
|
|
207
|
+
"$ref": "#/$defs/Ext",
|
|
208
|
+
"description": "Ecosystem-defined extension members per SPEC.md §4.5.1."
|
|
209
|
+
}
|
|
210
|
+
}
|
|
211
|
+
},
|
|
212
|
+
"IssuedCredentialSummary": {
|
|
213
|
+
"title": "IssuedCredentialSummary",
|
|
214
|
+
"description": "A body-free projection of an issuance record. Carries no claim content by construction — see the specification's rationale for why a list does not return credentials.",
|
|
215
|
+
"type": "object",
|
|
216
|
+
"additionalProperties": false,
|
|
217
|
+
"required": [
|
|
218
|
+
"credentialId",
|
|
219
|
+
"holder",
|
|
220
|
+
"issuedAt",
|
|
221
|
+
"expiresAt",
|
|
222
|
+
"status"
|
|
223
|
+
],
|
|
224
|
+
"properties": {
|
|
225
|
+
"credentialId": {
|
|
226
|
+
"$ref": "#/$defs/CredentialId",
|
|
227
|
+
"description": "The id `vta/credentials/revoke` is keyed on."
|
|
228
|
+
},
|
|
229
|
+
"holder": {
|
|
230
|
+
"$ref": "#/$defs/Did",
|
|
231
|
+
"description": "Who the credential was issued to."
|
|
232
|
+
},
|
|
233
|
+
"credentialType": {
|
|
234
|
+
"type": "string",
|
|
235
|
+
"minLength": 1,
|
|
236
|
+
"maxLength": 256,
|
|
237
|
+
"description": "The type tag beyond `VerifiableCredential`, when the credential carries one."
|
|
238
|
+
},
|
|
239
|
+
"issuedAt": {
|
|
240
|
+
"type": "string",
|
|
241
|
+
"format": "date-time"
|
|
242
|
+
},
|
|
243
|
+
"expiresAt": {
|
|
244
|
+
"type": "string",
|
|
245
|
+
"format": "date-time"
|
|
246
|
+
},
|
|
247
|
+
"status": {
|
|
248
|
+
"$ref": "#/$defs/IssuedCredentialStatus"
|
|
249
|
+
},
|
|
250
|
+
"revokedAt": {
|
|
251
|
+
"type": "string",
|
|
252
|
+
"format": "date-time",
|
|
253
|
+
"description": "Present iff `status` is `revoked`."
|
|
254
|
+
},
|
|
255
|
+
"revocationReason": {
|
|
256
|
+
"type": "string",
|
|
257
|
+
"maxLength": 1024,
|
|
258
|
+
"description": "Free text recorded at revocation. Disclosed to every caller entitled to this list — see Security & Privacy."
|
|
259
|
+
}
|
|
260
|
+
}
|
|
261
|
+
},
|
|
262
|
+
"IssuedCredentialStatus": {
|
|
263
|
+
"type": "string",
|
|
264
|
+
"enum": [
|
|
265
|
+
"active",
|
|
266
|
+
"expired",
|
|
267
|
+
"revoked"
|
|
268
|
+
],
|
|
269
|
+
"description": "Derived at read time. `revoked` takes precedence over `expired`: a credential revoked before its window closed is revoked, and reporting it as merely expired would hide that somebody acted."
|
|
270
|
+
},
|
|
271
|
+
"Did": {
|
|
272
|
+
"type": "string",
|
|
273
|
+
"pattern": "^did:[a-z0-9]+:.+$",
|
|
274
|
+
"maxLength": 2048
|
|
275
|
+
},
|
|
276
|
+
"CredentialId": {
|
|
277
|
+
"$anchor": "credentialId",
|
|
278
|
+
"title": "CredentialId",
|
|
279
|
+
"description": "Stable identifier for an issued credential — the handle for revocation and audit. Opaque to the holder: it MUST be echoed verbatim when revoking and MUST NOT be parsed.",
|
|
280
|
+
"type": "string",
|
|
281
|
+
"minLength": 1
|
|
282
|
+
},
|
|
283
|
+
"Ext": {
|
|
284
|
+
"title": "Ext",
|
|
285
|
+
"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.",
|
|
286
|
+
"type": "object",
|
|
287
|
+
"minProperties": 1,
|
|
288
|
+
"additionalProperties": true,
|
|
289
|
+
"propertyNames": {
|
|
290
|
+
"pattern": "^[a-z][a-z0-9-]*(\\.[a-z0-9-]+)+$"
|
|
291
|
+
}
|
|
292
|
+
}
|
|
293
|
+
}
|
|
294
|
+
};
|
|
295
|
+
/**
|
|
296
|
+
* SPEC.md §7.2 policy for the request variant, from this specification's
|
|
297
|
+
* front matter. Pass to `consumeInbound` — items 5b, 7 and 8 are
|
|
298
|
+
* per-specification and cannot be derived from the document alone, and
|
|
299
|
+
* item 2 needs the schema this carries.
|
|
300
|
+
*/
|
|
301
|
+
export const SPEC = {
|
|
302
|
+
typeUri: TYPE_URI,
|
|
303
|
+
isBearer: false,
|
|
304
|
+
isProofRequired: false,
|
|
305
|
+
isRecipientRequired: true,
|
|
306
|
+
isIssuedAtRequired: false,
|
|
307
|
+
payloadSchema: PAYLOAD_SCHEMA,
|
|
308
|
+
};
|
|
309
|
+
/**
|
|
310
|
+
* SPEC.md §7.2 policy for the success-response variant. `isRecipientRequired`
|
|
311
|
+
* tracks the *issuer* party's requirement because a response swaps the
|
|
312
|
+
* parties (§7.3 item 5).
|
|
313
|
+
*/
|
|
314
|
+
export const RESPONSE_SPEC = {
|
|
315
|
+
typeUri: RESPONSE_TYPE_URI,
|
|
316
|
+
isBearer: false,
|
|
317
|
+
isProofRequired: false,
|
|
318
|
+
isRecipientRequired: true,
|
|
319
|
+
isIssuedAtRequired: false,
|
|
320
|
+
payloadSchema: RESPONSE_PAYLOAD_SCHEMA,
|
|
321
|
+
};
|
|
322
|
+
//# sourceMappingURL=payload.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"payload.js","sourceRoot":"","sources":["../../../../../src/vta/credentials/list/0.1/payload.ts"],"names":[],"mappings":"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"}
|