@openvtc/trust-tasks 0.17.8 → 0.17.10

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.
Files changed (33) hide show
  1. package/CHANGELOG.md +111 -0
  2. package/dist/_shared/components.d.ts +4 -0
  3. package/dist/_shared/components.d.ts.map +1 -1
  4. package/dist/index.d.ts +3 -0
  5. package/dist/index.d.ts.map +1 -1
  6. package/dist/index.js +3 -0
  7. package/dist/index.js.map +1 -1
  8. package/dist/persona/_shared/0.1/persona-record.d.ts +1 -1
  9. package/dist/persona/_shared/0.1/persona-record.d.ts.map +1 -1
  10. package/dist/persona/correlation/analyze/1.0/payload.d.ts +82 -0
  11. package/dist/persona/correlation/analyze/1.0/payload.d.ts.map +1 -1
  12. package/dist/persona/correlation/analyze/1.0/payload.js +34 -0
  13. package/dist/persona/correlation/analyze/1.0/payload.js.map +1 -1
  14. package/dist/persona/facet/delete/1.0/payload.d.ts +310 -0
  15. package/dist/persona/facet/delete/1.0/payload.d.ts.map +1 -0
  16. package/dist/persona/facet/delete/1.0/payload.js +169 -0
  17. package/dist/persona/facet/delete/1.0/payload.js.map +1 -0
  18. package/dist/persona/facet/list/1.0/payload.d.ts +599 -0
  19. package/dist/persona/facet/list/1.0/payload.d.ts.map +1 -0
  20. package/dist/persona/facet/list/1.0/payload.js +332 -0
  21. package/dist/persona/facet/list/1.0/payload.js.map +1 -0
  22. package/dist/persona/facet/put/1.0/payload.d.ts +490 -0
  23. package/dist/persona/facet/put/1.0/payload.d.ts.map +1 -0
  24. package/dist/persona/facet/put/1.0/payload.js +272 -0
  25. package/dist/persona/facet/put/1.0/payload.js.map +1 -0
  26. package/package.json +1 -1
  27. package/src/_shared/components.ts +4 -0
  28. package/src/index.ts +3 -0
  29. package/src/persona/_shared/0.1/persona-record.ts +1 -1
  30. package/src/persona/correlation/analyze/1.0/payload.ts +48 -0
  31. package/src/persona/facet/delete/1.0/payload.ts +212 -0
  32. package/src/persona/facet/list/1.0/payload.ts +402 -0
  33. package/src/persona/facet/put/1.0/payload.ts +339 -0
@@ -0,0 +1,332 @@
1
+ /**
2
+ * Generated by scripts/build-ts-bindings.mjs — DO NOT EDIT BY HAND.
3
+ * Source: specs/persona/facet/list/1.0/payload.schema.json
4
+ */
5
+ /** Trust Task type URI. */
6
+ export const TYPE_URI = "https://trusttasks.org/spec/persona/facet/list/1.0";
7
+ /** Trust Task response type URI (request type URI + "#response"). */
8
+ export const RESPONSE_TYPE_URI = "https://trusttasks.org/spec/persona/facet/list/1.0#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/persona/facet/list/1.0",
21
+ "title": "Persona — Facet List — payload",
22
+ "description": "List the holder's facets, with their membership. Cursor-paginated like every other persona listing.",
23
+ "type": "object",
24
+ "additionalProperties": false,
25
+ "required": [],
26
+ "properties": {
27
+ "limit": {
28
+ "type": "integer",
29
+ "minimum": 1,
30
+ "maximum": 250,
31
+ "default": 100,
32
+ "description": "The page size to ask for — never a cap on the result. A consumer that wants every facet follows `nextCursor` to the end; one that treats this as a limit will silently draw a partial picture."
33
+ },
34
+ "cursor": {
35
+ "type": "string",
36
+ "maxLength": 4096,
37
+ "description": "Continue a prior listing. Opaque: a producer echoes what it was given and MUST NOT construct one."
38
+ },
39
+ "ext": {
40
+ "$ref": "#/$defs/Ext"
41
+ }
42
+ },
43
+ "$defs": {
44
+ "Response": {
45
+ "$anchor": "response",
46
+ "title": "Persona Facet List — response payload",
47
+ "description": "Success response to persona/facet/list. Type https://trusttasks.org/spec/persona/facet/list/1.0#response.",
48
+ "type": "object",
49
+ "additionalProperties": false,
50
+ "required": [
51
+ "facets"
52
+ ],
53
+ "properties": {
54
+ "facets": {
55
+ "type": "array",
56
+ "maxItems": 250,
57
+ "items": {
58
+ "$ref": "#/$defs/Facet"
59
+ }
60
+ },
61
+ "nextCursor": {
62
+ "type": "string",
63
+ "maxLength": 4096,
64
+ "description": "Present when more facets remain. **Its absence is the only signal that a listing is complete** — a consumer MUST NOT infer exhaustion from a short page, because a maintainer may return fewer than `limit` for reasons of its own."
65
+ },
66
+ "ext": {
67
+ "$ref": "#/$defs/Ext"
68
+ }
69
+ }
70
+ },
71
+ "Facet": {
72
+ "title": "Facet",
73
+ "type": "object",
74
+ "additionalProperties": false,
75
+ "required": [
76
+ "facetId",
77
+ "name",
78
+ "colour",
79
+ "faceIds",
80
+ "attributeIds",
81
+ "version",
82
+ "updatedAt"
83
+ ],
84
+ "description": "One named part of the holder's life, and what belongs to it. Agent-scoped, like the attribute pool and the profiles it groups — a facet names records that sit above every trust context, so it cannot itself live inside one.",
85
+ "properties": {
86
+ "facetId": {
87
+ "$ref": "#/$defs/Ulid"
88
+ },
89
+ "name": {
90
+ "type": "string",
91
+ "minLength": 1,
92
+ "maxLength": 64
93
+ },
94
+ "colour": {
95
+ "$ref": "#/$defs/FacetColour"
96
+ },
97
+ "icon": {
98
+ "type": "string",
99
+ "minLength": 1,
100
+ "maxLength": 8
101
+ },
102
+ "faceIds": {
103
+ "type": "array",
104
+ "maxItems": 256,
105
+ "uniqueItems": true,
106
+ "items": {
107
+ "$ref": "#/$defs/Ulid"
108
+ },
109
+ "description": "Profiles belonging to this facet. A maintainer MUST NOT prune an id whose profile has been deleted: a dangling member is how a consumer can offer to tidy, and silently dropping it turns a deletion the holder may not have intended into one they cannot see."
110
+ },
111
+ "attributeIds": {
112
+ "type": "array",
113
+ "maxItems": 1024,
114
+ "uniqueItems": true,
115
+ "items": {
116
+ "$ref": "#/$defs/Ulid"
117
+ },
118
+ "description": "Attributes belonging to this facet, with the same rule about dangling ids as `faceIds`."
119
+ },
120
+ "version": {
121
+ "$ref": "#/$defs/Version"
122
+ },
123
+ "createdAt": {
124
+ "type": "string",
125
+ "format": "date-time"
126
+ },
127
+ "updatedAt": {
128
+ "type": "string",
129
+ "format": "date-time"
130
+ }
131
+ }
132
+ },
133
+ "Version": {
134
+ "title": "Version",
135
+ "description": "A value of the store's monotonic write counter. Server-assigned; a producer never chooses one.",
136
+ "type": "integer",
137
+ "minimum": 1
138
+ },
139
+ "Ulid": {
140
+ "title": "Ulid",
141
+ "description": "A ULID in Crockford base32, uppercase. Used for `attributeId` and `profileId`. Chosen over a UUID because the leading 48 bits are a timestamp, so a key-ordered scan of the store is also creation-ordered and a `list` needs no secondary sort. Server-assigned on create; a producer MAY supply one to make a create idempotent, and a maintainer MUST reject a supplied value that already exists rather than silently overwriting.",
142
+ "type": "string",
143
+ "pattern": "^[0-9A-HJKMNP-TV-Z]{26}$"
144
+ },
145
+ "FacetColour": {
146
+ "title": "FacetColour",
147
+ "description": "A colour **name**, resolved by each consumer against its own palette — never a hex value or any other literal. Two reasons, and both are about the consumer rather than the holder. A literal cannot be legible in a terminal, in a light theme and in a dark one at once, so a stored `#8B0000` is a colour that is wrong somewhere and the holder has no way to know where. And a consumer that reserves colours to mean something — an error, a warning, an irreversible act — must be able to keep a holder's decorative choice out of that channel; it cannot do that with an arbitrary value, and it can do it trivially with a closed set it maps itself. The eight members are chosen to be distinguishable from one another and deliberately carry no status connotation: none is named for success, warning or danger.",
148
+ "type": "string",
149
+ "enum": [
150
+ "slate",
151
+ "indigo",
152
+ "teal",
153
+ "moss",
154
+ "sand",
155
+ "clay",
156
+ "rose",
157
+ "plum"
158
+ ]
159
+ },
160
+ "Ext": {
161
+ "title": "Ext",
162
+ "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.",
163
+ "type": "object",
164
+ "minProperties": 1,
165
+ "additionalProperties": true,
166
+ "propertyNames": {
167
+ "pattern": "^[a-z][a-z0-9-]*(\\.[a-z0-9-]+)+$"
168
+ }
169
+ }
170
+ }
171
+ };
172
+ /** As {@link PAYLOAD_SCHEMA}, for the success-response variant. */
173
+ export const RESPONSE_PAYLOAD_SCHEMA = {
174
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
175
+ "$ref": "#/$defs/Response",
176
+ "$defs": {
177
+ "Response": {
178
+ "$anchor": "response",
179
+ "title": "Persona Facet List — response payload",
180
+ "description": "Success response to persona/facet/list. Type https://trusttasks.org/spec/persona/facet/list/1.0#response.",
181
+ "type": "object",
182
+ "additionalProperties": false,
183
+ "required": [
184
+ "facets"
185
+ ],
186
+ "properties": {
187
+ "facets": {
188
+ "type": "array",
189
+ "maxItems": 250,
190
+ "items": {
191
+ "$ref": "#/$defs/Facet"
192
+ }
193
+ },
194
+ "nextCursor": {
195
+ "type": "string",
196
+ "maxLength": 4096,
197
+ "description": "Present when more facets remain. **Its absence is the only signal that a listing is complete** — a consumer MUST NOT infer exhaustion from a short page, because a maintainer may return fewer than `limit` for reasons of its own."
198
+ },
199
+ "ext": {
200
+ "$ref": "#/$defs/Ext"
201
+ }
202
+ }
203
+ },
204
+ "Facet": {
205
+ "title": "Facet",
206
+ "type": "object",
207
+ "additionalProperties": false,
208
+ "required": [
209
+ "facetId",
210
+ "name",
211
+ "colour",
212
+ "faceIds",
213
+ "attributeIds",
214
+ "version",
215
+ "updatedAt"
216
+ ],
217
+ "description": "One named part of the holder's life, and what belongs to it. Agent-scoped, like the attribute pool and the profiles it groups — a facet names records that sit above every trust context, so it cannot itself live inside one.",
218
+ "properties": {
219
+ "facetId": {
220
+ "$ref": "#/$defs/Ulid"
221
+ },
222
+ "name": {
223
+ "type": "string",
224
+ "minLength": 1,
225
+ "maxLength": 64
226
+ },
227
+ "colour": {
228
+ "$ref": "#/$defs/FacetColour"
229
+ },
230
+ "icon": {
231
+ "type": "string",
232
+ "minLength": 1,
233
+ "maxLength": 8
234
+ },
235
+ "faceIds": {
236
+ "type": "array",
237
+ "maxItems": 256,
238
+ "uniqueItems": true,
239
+ "items": {
240
+ "$ref": "#/$defs/Ulid"
241
+ },
242
+ "description": "Profiles belonging to this facet. A maintainer MUST NOT prune an id whose profile has been deleted: a dangling member is how a consumer can offer to tidy, and silently dropping it turns a deletion the holder may not have intended into one they cannot see."
243
+ },
244
+ "attributeIds": {
245
+ "type": "array",
246
+ "maxItems": 1024,
247
+ "uniqueItems": true,
248
+ "items": {
249
+ "$ref": "#/$defs/Ulid"
250
+ },
251
+ "description": "Attributes belonging to this facet, with the same rule about dangling ids as `faceIds`."
252
+ },
253
+ "version": {
254
+ "$ref": "#/$defs/Version"
255
+ },
256
+ "createdAt": {
257
+ "type": "string",
258
+ "format": "date-time"
259
+ },
260
+ "updatedAt": {
261
+ "type": "string",
262
+ "format": "date-time"
263
+ }
264
+ }
265
+ },
266
+ "Version": {
267
+ "title": "Version",
268
+ "description": "A value of the store's monotonic write counter. Server-assigned; a producer never chooses one.",
269
+ "type": "integer",
270
+ "minimum": 1
271
+ },
272
+ "Ulid": {
273
+ "title": "Ulid",
274
+ "description": "A ULID in Crockford base32, uppercase. Used for `attributeId` and `profileId`. Chosen over a UUID because the leading 48 bits are a timestamp, so a key-ordered scan of the store is also creation-ordered and a `list` needs no secondary sort. Server-assigned on create; a producer MAY supply one to make a create idempotent, and a maintainer MUST reject a supplied value that already exists rather than silently overwriting.",
275
+ "type": "string",
276
+ "pattern": "^[0-9A-HJKMNP-TV-Z]{26}$"
277
+ },
278
+ "FacetColour": {
279
+ "title": "FacetColour",
280
+ "description": "A colour **name**, resolved by each consumer against its own palette — never a hex value or any other literal. Two reasons, and both are about the consumer rather than the holder. A literal cannot be legible in a terminal, in a light theme and in a dark one at once, so a stored `#8B0000` is a colour that is wrong somewhere and the holder has no way to know where. And a consumer that reserves colours to mean something — an error, a warning, an irreversible act — must be able to keep a holder's decorative choice out of that channel; it cannot do that with an arbitrary value, and it can do it trivially with a closed set it maps itself. The eight members are chosen to be distinguishable from one another and deliberately carry no status connotation: none is named for success, warning or danger.",
281
+ "type": "string",
282
+ "enum": [
283
+ "slate",
284
+ "indigo",
285
+ "teal",
286
+ "moss",
287
+ "sand",
288
+ "clay",
289
+ "rose",
290
+ "plum"
291
+ ]
292
+ },
293
+ "Ext": {
294
+ "title": "Ext",
295
+ "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.",
296
+ "type": "object",
297
+ "minProperties": 1,
298
+ "additionalProperties": true,
299
+ "propertyNames": {
300
+ "pattern": "^[a-z][a-z0-9-]*(\\.[a-z0-9-]+)+$"
301
+ }
302
+ }
303
+ }
304
+ };
305
+ /**
306
+ * SPEC.md §7.2 policy for the request variant, from this specification's
307
+ * front matter. Pass to `consumeInbound` — items 5b, 7 and 8 are
308
+ * per-specification and cannot be derived from the document alone, and
309
+ * item 2 needs the schema this carries.
310
+ */
311
+ export const SPEC = {
312
+ typeUri: TYPE_URI,
313
+ isBearer: false,
314
+ isProofRequired: true,
315
+ isRecipientRequired: true,
316
+ isIssuedAtRequired: true,
317
+ payloadSchema: PAYLOAD_SCHEMA,
318
+ };
319
+ /**
320
+ * SPEC.md §7.2 policy for the success-response variant. `isRecipientRequired`
321
+ * tracks the *issuer* party's requirement because a response swaps the
322
+ * parties (§7.3 item 5).
323
+ */
324
+ export const RESPONSE_SPEC = {
325
+ typeUri: RESPONSE_TYPE_URI,
326
+ isBearer: false,
327
+ isProofRequired: true,
328
+ isRecipientRequired: true,
329
+ isIssuedAtRequired: true,
330
+ payloadSchema: RESPONSE_PAYLOAD_SCHEMA,
331
+ };
332
+ //# sourceMappingURL=payload.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"payload.js","sourceRoot":"","sources":["../../../../../src/persona/facet/list/1.0/payload.ts"],"names":[],"mappings":"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"}