@openvtc/trust-tasks 0.16.2 → 0.16.4

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 (52) hide show
  1. package/CHANGELOG.md +76 -0
  2. package/dist/consent/approve-request/0.1/payload.d.ts +267 -0
  3. package/dist/consent/approve-request/0.1/payload.d.ts.map +1 -0
  4. package/dist/consent/approve-request/0.1/payload.js +138 -0
  5. package/dist/consent/approve-request/0.1/payload.js.map +1 -0
  6. package/dist/index.d.ts +9 -0
  7. package/dist/index.d.ts.map +1 -1
  8. package/dist/index.js +9 -0
  9. package/dist/index.js.map +1 -1
  10. package/dist/vault/credentials/archive/0.1/payload.d.ts +297 -0
  11. package/dist/vault/credentials/archive/0.1/payload.d.ts.map +1 -0
  12. package/dist/vault/credentials/archive/0.1/payload.js +171 -0
  13. package/dist/vault/credentials/archive/0.1/payload.js.map +1 -0
  14. package/dist/vault/credentials/delete/0.1/payload.d.ts +333 -0
  15. package/dist/vault/credentials/delete/0.1/payload.d.ts.map +1 -0
  16. package/dist/vault/credentials/delete/0.1/payload.js +185 -0
  17. package/dist/vault/credentials/delete/0.1/payload.js.map +1 -0
  18. package/dist/vault/credentials/get/0.1/payload.d.ts +244 -0
  19. package/dist/vault/credentials/get/0.1/payload.d.ts.map +1 -0
  20. package/dist/vault/credentials/get/0.1/payload.js +137 -0
  21. package/dist/vault/credentials/get/0.1/payload.js.map +1 -0
  22. package/dist/vault/credentials/purge/0.1/payload.d.ts +297 -0
  23. package/dist/vault/credentials/purge/0.1/payload.d.ts.map +1 -0
  24. package/dist/vault/credentials/purge/0.1/payload.js +171 -0
  25. package/dist/vault/credentials/purge/0.1/payload.js.map +1 -0
  26. package/dist/vault/credentials/query/0.1/payload.d.ts +689 -0
  27. package/dist/vault/credentials/query/0.1/payload.d.ts.map +1 -0
  28. package/dist/vault/credentials/query/0.1/payload.js +350 -0
  29. package/dist/vault/credentials/query/0.1/payload.js.map +1 -0
  30. package/dist/vault/credentials/receive/0.1/payload.d.ts +414 -0
  31. package/dist/vault/credentials/receive/0.1/payload.d.ts.map +1 -0
  32. package/dist/vault/credentials/receive/0.1/payload.js +226 -0
  33. package/dist/vault/credentials/receive/0.1/payload.js.map +1 -0
  34. package/dist/vault/credentials/restore/0.1/payload.d.ts +297 -0
  35. package/dist/vault/credentials/restore/0.1/payload.d.ts.map +1 -0
  36. package/dist/vault/credentials/restore/0.1/payload.js +171 -0
  37. package/dist/vault/credentials/restore/0.1/payload.js.map +1 -0
  38. package/dist/vault/credentials/unarchive/0.1/payload.d.ts +297 -0
  39. package/dist/vault/credentials/unarchive/0.1/payload.d.ts.map +1 -0
  40. package/dist/vault/credentials/unarchive/0.1/payload.js +171 -0
  41. package/dist/vault/credentials/unarchive/0.1/payload.js.map +1 -0
  42. package/package.json +1 -1
  43. package/src/consent/approve-request/0.1/payload.ts +200 -0
  44. package/src/index.ts +9 -0
  45. package/src/vault/credentials/archive/0.1/payload.ts +217 -0
  46. package/src/vault/credentials/delete/0.1/payload.ts +239 -0
  47. package/src/vault/credentials/get/0.1/payload.ts +178 -0
  48. package/src/vault/credentials/purge/0.1/payload.ts +217 -0
  49. package/src/vault/credentials/query/0.1/payload.ts +459 -0
  50. package/src/vault/credentials/receive/0.1/payload.ts +298 -0
  51. package/src/vault/credentials/restore/0.1/payload.ts +217 -0
  52. package/src/vault/credentials/unarchive/0.1/payload.ts +217 -0
package/CHANGELOG.md CHANGED
@@ -11,6 +11,82 @@ The package versions over **its own API** — what a consumer compiles against
11
11
  not over `SPEC.md`. Below 1.0 a breaking change bumps the leading non-zero
12
12
  component.
13
13
 
14
+ ## 0.16.4 — 2026-09-01
15
+
16
+
17
+ ### Added
18
+
19
+ - **vault**: Specify the vault/credentials family from its implementation (#338)
20
+
21
+ * feat(vault): specify the vault/credentials family from its implementation
22
+
23
+ Eight tasks — receive, query, get, archive, unarchive, delete, restore,
24
+ purge — are dispatched by `vta-sdk` and driven by `pnm cred-vault`, and none
25
+ of them has an entry under `specs/`. The registry generates no bindings for
26
+ what it does not know about, so every TypeScript consumer that wants the
27
+ holder-side credential store has to hand-transcribe the shapes out of the
28
+ Rust: a copy that drifts, silently, in the direction of whatever the reader
29
+ guessed.
30
+
31
+ This writes the family down. The shapes are read out of the implementation
32
+ rather than invented, so `status: draft` is honest — the aim is to stop the
33
+ contract being recoverable only by reading someone's service code, not to
34
+ foreclose the working group changing it.
35
+
36
+ Three properties the implementation enforces and prose has to carry, because
37
+ a consumer that misses them writes something unsafe that still validates:
38
+
39
+ - **Query refuses an unconstrained filter.** An empty filter returns the shape
40
+ of the holder's whole life — every community, every role, every issuer. A
41
+ consumer granted read access to answer one question does not thereby acquire
42
+ the right to ask all of them, and `includeArchived` / `includeDeleted` are
43
+ modifiers that deliberately do not satisfy the ≥1-filter rule.
44
+ - **Descriptors never carry the body.** Query enumerates, get discloses, and
45
+ they are separate tasks so the far narrower act of reading credential
46
+ contents stays separately authorised and separately recorded. `get` is the
47
+ only member of the family declaring `discloses: secret`.
48
+ - **Not-found and not-yours give the same answer.** Distinguishing them lets a
49
+ consumer map another context's vault one identifier at a time.
50
+
51
+ Validity and archival lifecycle are documented as orthogonal, because they
52
+ are: a credential can be `valid` and `archived`, or `revoked` and `active`,
53
+ and a consumer that collapses the two axes mis-renders its own wallet.
54
+
55
+ Two constraints found while writing these, both worth knowing:
56
+
57
+ - A top-level `anyOf` is not usable in this registry. typify renders it as an
58
+ untagged enum the generated example cannot deserialize into, and
59
+ json-schema-to-typescript widens the type to an index signature — which
60
+ would have let TS consumers write payloads that typecheck and then fail
61
+ validation. Query's ≥1-filter rule is therefore stated as a requirement on
62
+ the maintainer with its own error code, and the spec says why rather than
63
+ leaving the absence to look like an oversight. No other spec in the registry
64
+ uses a top-level `anyOf`.
65
+ - `default` on a boolean breaks the generated round-trip test: typify
66
+ materialises the value, and the example no longer matches itself. Defaults
67
+ are stated in prose here, matching the registry's existing specs.
68
+
69
+ Every spec carries `payload.invalid-examples.json`, so the negative space is
70
+ tested rather than assumed — including fixtures for the enumeration shapes and
71
+ for a consumer trying to declare a `purpose` that the maintainer derives.
72
+
73
+ Found while building a browser-based VTA management console, whose
74
+ credentials pane currently renders an explicit "this waits for the bindings"
75
+ notice rather than hand-copying these shapes.
76
+
77
+ ## 0.16.3 — 2026-08-28
78
+
79
+
80
+ ### Added
81
+
82
+ - **consent**: Specify consent/approve-request/0.1 with proof REQUIRED (#331)
83
+
84
+ The prompt an agent's home service pushes to a designated approver, asking a
85
+ human whether the agent may act on one conversation. It was already being
86
+ sent — by OpenVTC's VTA, over DIDComm to the approver's device — with no
87
+ published schema on either side and no registry page a second
88
+ implementation could work from.
89
+
14
90
  ## 0.16.2 — 2026-08-27
15
91
 
16
92
 
@@ -0,0 +1,267 @@
1
+ /**
2
+ * Generated by scripts/build-ts-bindings.mjs — DO NOT EDIT BY HAND.
3
+ * Source: specs/consent/approve-request/0.1/payload.schema.json
4
+ */
5
+ import type { Ext } from "../../../_shared/components.js";
6
+ /**
7
+ * Interaction kind. Present because it changes what the approver is agreeing to: consenting to an agent reading a 1:1 conversation exposes two parties, and consenting on a group exposes everyone in it, most of whom are not being asked.
8
+ */
9
+ export type ConsentKind = "dm" | "group" | "channel";
10
+ /**
11
+ * What the agent is asking to be allowed to do.
12
+ */
13
+ export type ConsentScope = "receive" | "converse";
14
+ /**
15
+ * The prompt an agent's home service sends to a designated approver, asking a human to decide whether an agent may act on one conversation. It carries no decision itself: the approver answers with a separate, separately-signed consent/decision. The outer document members (id, type, issuer, recipient, issuedAt, expiresAt, proof) are owned by the framework — SPEC §6.3.
16
+ */
17
+ export interface ConsentApproveRequestPayload {
18
+ subject: ConsentSubject;
19
+ scope: ConsentScope;
20
+ /**
21
+ * Single-use, unpredictable value the approver MUST echo in the consent/decision it signs. This is what binds a decision to this request: without it a decision is a free-floating assertion that the approver consented to something, and cannot be shown to answer this prompt rather than an earlier one. Consumers MUST reject a decision whose challenge they did not issue, and MUST NOT accept the same challenge twice.
22
+ */
23
+ challenge: string;
24
+ /**
25
+ * Human-readable label for the conversation, for the approver's screen — "Signal group 'Family'". Present because conversationRef is deliberately opaque: without a hint the approver is asked to decide about an identifier that means nothing to them, and will either always allow or always deny. Advisory only. It is chosen by the requesting party, so a renderer MUST treat it as untrusted text — escape it, bound its length, and never let it displace the subject members above as the basis of the decision.
26
+ */
27
+ displayHint?: string;
28
+ /**
29
+ * Digest of the inbound message that prompted this request, when there is one, so an approver deciding on a receive scope can confirm the decision it is being asked to make corresponds to a real arriving message. A digest rather than the content: the approver is deciding whether the agent may read the conversation, and showing them the message in order to ask would disclose what the decision is meant to gate.
30
+ */
31
+ firstMessageDigest?: string;
32
+ /**
33
+ * Ecosystem-defined extension members per SPEC.md §4.5.1.
34
+ */
35
+ ext?: Ext;
36
+ }
37
+ /**
38
+ * What the decision is about: one conversation, for one agent.
39
+ */
40
+ export interface ConsentSubject {
41
+ /**
42
+ * Messaging platform the conversation lives on, as the bridge names it (for example `signal`, `whatsapp`). Opaque to the framework.
43
+ */
44
+ platform: string;
45
+ /**
46
+ * The bridge's OPAQUE handle for the conversation. MUST NOT be a raw platform address (a phone number, a handle, a group invite link). The approver identifies the conversation from displayHint; this member exists so a decision can be matched to a conversation without the matching key being personal data.
47
+ */
48
+ conversationRef: string;
49
+ kind: ConsentKind;
50
+ /**
51
+ * DID of the agent the decision is about. Consent is granted to one agent, not to the service that hosts it, so that revoking one agent's access does not revoke another's.
52
+ */
53
+ agent: string;
54
+ }
55
+ /** Shared definitions this specification references, re-exported under the names it used to declare them with. */
56
+ export type { Ext };
57
+ /** Trust Task type URI. */
58
+ export declare const TYPE_URI: "https://trusttasks.org/spec/consent/approve-request/0.1";
59
+ /** Stable alias for this specification's request payload shape. */
60
+ export type Payload = ConsentApproveRequestPayload;
61
+ /**
62
+ * This specification's payload schema, as a value.
63
+ *
64
+ * SPEC.md §7.2 item 2 is performed against this. It is shipped as data
65
+ * rather than only as a `.json` file because TypeScript types are erased
66
+ * at runtime: without a schema a consumer has nothing to validate, and
67
+ * every REQUIRED payload member is optional in practice. Cross-file
68
+ * `$ref`s are already inlined, so it needs no resolver.
69
+ */
70
+ export declare const PAYLOAD_SCHEMA: {
71
+ readonly $schema: "https://json-schema.org/draft/2020-12/schema";
72
+ readonly $id: "https://trusttasks.org/spec/consent/approve-request/0.1";
73
+ readonly title: "Consent — Approve Request — payload";
74
+ readonly description: "The prompt an agent's home service sends to a designated approver, asking a human to decide whether an agent may act on one conversation. It carries no decision itself: the approver answers with a separate, separately-signed consent/decision. The outer document members (id, type, issuer, recipient, issuedAt, expiresAt, proof) are owned by the framework — SPEC §6.3.";
75
+ readonly type: "object";
76
+ readonly additionalProperties: false;
77
+ readonly required: readonly ["subject", "scope", "challenge"];
78
+ readonly properties: {
79
+ readonly subject: {
80
+ readonly $ref: "#/$defs/ConsentSubject";
81
+ readonly description: "What the decision is about: one conversation, for one agent.";
82
+ };
83
+ readonly scope: {
84
+ readonly $ref: "#/$defs/ConsentScope";
85
+ readonly description: "What the agent is asking to be allowed to do.";
86
+ };
87
+ readonly challenge: {
88
+ readonly type: "string";
89
+ readonly minLength: 1;
90
+ readonly description: "Single-use, unpredictable value the approver MUST echo in the consent/decision it signs. This is what binds a decision to this request: without it a decision is a free-floating assertion that the approver consented to something, and cannot be shown to answer this prompt rather than an earlier one. Consumers MUST reject a decision whose challenge they did not issue, and MUST NOT accept the same challenge twice.";
91
+ };
92
+ readonly displayHint: {
93
+ readonly type: "string";
94
+ readonly maxLength: 256;
95
+ readonly description: "Human-readable label for the conversation, for the approver's screen — \"Signal group 'Family'\". Present because conversationRef is deliberately opaque: without a hint the approver is asked to decide about an identifier that means nothing to them, and will either always allow or always deny. Advisory only. It is chosen by the requesting party, so a renderer MUST treat it as untrusted text — escape it, bound its length, and never let it displace the subject members above as the basis of the decision.";
96
+ };
97
+ readonly firstMessageDigest: {
98
+ readonly type: "string";
99
+ readonly minLength: 1;
100
+ readonly description: "Digest of the inbound message that prompted this request, when there is one, so an approver deciding on a receive scope can confirm the decision it is being asked to make corresponds to a real arriving message. A digest rather than the content: the approver is deciding whether the agent may read the conversation, and showing them the message in order to ask would disclose what the decision is meant to gate.";
101
+ };
102
+ readonly ext: {
103
+ readonly $ref: "#/$defs/Ext";
104
+ readonly description: "Ecosystem-defined extension members per SPEC.md §4.5.1.";
105
+ };
106
+ };
107
+ readonly $defs: {
108
+ readonly ConsentSubject: {
109
+ readonly $anchor: "consentSubject";
110
+ readonly title: "ConsentSubject";
111
+ readonly description: "Platform-agnostic identifier of what consent is about. Deliberately not a platform address: a consent record that named one would be a stored directory of who the subject talks to, readable by anyone who reaches the store.";
112
+ readonly type: "object";
113
+ readonly additionalProperties: false;
114
+ readonly required: readonly ["platform", "conversationRef", "kind", "agent"];
115
+ readonly properties: {
116
+ readonly platform: {
117
+ readonly type: "string";
118
+ readonly minLength: 1;
119
+ readonly description: "Messaging platform the conversation lives on, as the bridge names it (for example `signal`, `whatsapp`). Opaque to the framework.";
120
+ };
121
+ readonly conversationRef: {
122
+ readonly type: "string";
123
+ readonly minLength: 1;
124
+ readonly description: "The bridge's OPAQUE handle for the conversation. MUST NOT be a raw platform address (a phone number, a handle, a group invite link). The approver identifies the conversation from displayHint; this member exists so a decision can be matched to a conversation without the matching key being personal data.";
125
+ };
126
+ readonly kind: {
127
+ readonly $ref: "#/$defs/ConsentKind";
128
+ };
129
+ readonly agent: {
130
+ readonly type: "string";
131
+ readonly pattern: "^did:";
132
+ readonly description: "DID of the agent the decision is about. Consent is granted to one agent, not to the service that hosts it, so that revoking one agent's access does not revoke another's.";
133
+ };
134
+ };
135
+ };
136
+ readonly ConsentKind: {
137
+ readonly $anchor: "consentKind";
138
+ readonly title: "ConsentKind";
139
+ readonly description: "Interaction kind. Present because it changes what the approver is agreeing to: consenting to an agent reading a 1:1 conversation exposes two parties, and consenting on a group exposes everyone in it, most of whom are not being asked.";
140
+ readonly type: "string";
141
+ readonly enum: readonly ["dm", "group", "channel"];
142
+ };
143
+ readonly ConsentScope: {
144
+ readonly $anchor: "consentScope";
145
+ readonly title: "ConsentScope";
146
+ readonly description: "What the agent may do. `receive` is read-only: the agent sees inbound messages. `converse` additionally lets it reply, which means it can speak to the other parties as the subject — a materially different decision, and the reason the two are distinct values rather than a boolean.";
147
+ readonly type: "string";
148
+ readonly enum: readonly ["receive", "converse"];
149
+ };
150
+ readonly Ext: {
151
+ readonly title: "Ext";
152
+ readonly 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.";
153
+ readonly type: "object";
154
+ readonly minProperties: 1;
155
+ readonly additionalProperties: true;
156
+ readonly propertyNames: {
157
+ readonly pattern: "^[a-z][a-z0-9-]*(\\.[a-z0-9-]+)+$";
158
+ };
159
+ };
160
+ };
161
+ };
162
+ /**
163
+ * SPEC.md §7.2 policy for the request variant, from this specification's
164
+ * front matter. Pass to `consumeInbound` — items 5b, 7 and 8 are
165
+ * per-specification and cannot be derived from the document alone, and
166
+ * item 2 needs the schema this carries.
167
+ */
168
+ export declare const SPEC: {
169
+ readonly typeUri: "https://trusttasks.org/spec/consent/approve-request/0.1";
170
+ readonly isBearer: false;
171
+ readonly isProofRequired: true;
172
+ readonly isRecipientRequired: true;
173
+ readonly isIssuedAtRequired: false;
174
+ readonly payloadSchema: {
175
+ readonly $schema: "https://json-schema.org/draft/2020-12/schema";
176
+ readonly $id: "https://trusttasks.org/spec/consent/approve-request/0.1";
177
+ readonly title: "Consent — Approve Request — payload";
178
+ readonly description: "The prompt an agent's home service sends to a designated approver, asking a human to decide whether an agent may act on one conversation. It carries no decision itself: the approver answers with a separate, separately-signed consent/decision. The outer document members (id, type, issuer, recipient, issuedAt, expiresAt, proof) are owned by the framework — SPEC §6.3.";
179
+ readonly type: "object";
180
+ readonly additionalProperties: false;
181
+ readonly required: readonly ["subject", "scope", "challenge"];
182
+ readonly properties: {
183
+ readonly subject: {
184
+ readonly $ref: "#/$defs/ConsentSubject";
185
+ readonly description: "What the decision is about: one conversation, for one agent.";
186
+ };
187
+ readonly scope: {
188
+ readonly $ref: "#/$defs/ConsentScope";
189
+ readonly description: "What the agent is asking to be allowed to do.";
190
+ };
191
+ readonly challenge: {
192
+ readonly type: "string";
193
+ readonly minLength: 1;
194
+ readonly description: "Single-use, unpredictable value the approver MUST echo in the consent/decision it signs. This is what binds a decision to this request: without it a decision is a free-floating assertion that the approver consented to something, and cannot be shown to answer this prompt rather than an earlier one. Consumers MUST reject a decision whose challenge they did not issue, and MUST NOT accept the same challenge twice.";
195
+ };
196
+ readonly displayHint: {
197
+ readonly type: "string";
198
+ readonly maxLength: 256;
199
+ readonly description: "Human-readable label for the conversation, for the approver's screen — \"Signal group 'Family'\". Present because conversationRef is deliberately opaque: without a hint the approver is asked to decide about an identifier that means nothing to them, and will either always allow or always deny. Advisory only. It is chosen by the requesting party, so a renderer MUST treat it as untrusted text — escape it, bound its length, and never let it displace the subject members above as the basis of the decision.";
200
+ };
201
+ readonly firstMessageDigest: {
202
+ readonly type: "string";
203
+ readonly minLength: 1;
204
+ readonly description: "Digest of the inbound message that prompted this request, when there is one, so an approver deciding on a receive scope can confirm the decision it is being asked to make corresponds to a real arriving message. A digest rather than the content: the approver is deciding whether the agent may read the conversation, and showing them the message in order to ask would disclose what the decision is meant to gate.";
205
+ };
206
+ readonly ext: {
207
+ readonly $ref: "#/$defs/Ext";
208
+ readonly description: "Ecosystem-defined extension members per SPEC.md §4.5.1.";
209
+ };
210
+ };
211
+ readonly $defs: {
212
+ readonly ConsentSubject: {
213
+ readonly $anchor: "consentSubject";
214
+ readonly title: "ConsentSubject";
215
+ readonly description: "Platform-agnostic identifier of what consent is about. Deliberately not a platform address: a consent record that named one would be a stored directory of who the subject talks to, readable by anyone who reaches the store.";
216
+ readonly type: "object";
217
+ readonly additionalProperties: false;
218
+ readonly required: readonly ["platform", "conversationRef", "kind", "agent"];
219
+ readonly properties: {
220
+ readonly platform: {
221
+ readonly type: "string";
222
+ readonly minLength: 1;
223
+ readonly description: "Messaging platform the conversation lives on, as the bridge names it (for example `signal`, `whatsapp`). Opaque to the framework.";
224
+ };
225
+ readonly conversationRef: {
226
+ readonly type: "string";
227
+ readonly minLength: 1;
228
+ readonly description: "The bridge's OPAQUE handle for the conversation. MUST NOT be a raw platform address (a phone number, a handle, a group invite link). The approver identifies the conversation from displayHint; this member exists so a decision can be matched to a conversation without the matching key being personal data.";
229
+ };
230
+ readonly kind: {
231
+ readonly $ref: "#/$defs/ConsentKind";
232
+ };
233
+ readonly agent: {
234
+ readonly type: "string";
235
+ readonly pattern: "^did:";
236
+ readonly description: "DID of the agent the decision is about. Consent is granted to one agent, not to the service that hosts it, so that revoking one agent's access does not revoke another's.";
237
+ };
238
+ };
239
+ };
240
+ readonly ConsentKind: {
241
+ readonly $anchor: "consentKind";
242
+ readonly title: "ConsentKind";
243
+ readonly description: "Interaction kind. Present because it changes what the approver is agreeing to: consenting to an agent reading a 1:1 conversation exposes two parties, and consenting on a group exposes everyone in it, most of whom are not being asked.";
244
+ readonly type: "string";
245
+ readonly enum: readonly ["dm", "group", "channel"];
246
+ };
247
+ readonly ConsentScope: {
248
+ readonly $anchor: "consentScope";
249
+ readonly title: "ConsentScope";
250
+ readonly description: "What the agent may do. `receive` is read-only: the agent sees inbound messages. `converse` additionally lets it reply, which means it can speak to the other parties as the subject — a materially different decision, and the reason the two are distinct values rather than a boolean.";
251
+ readonly type: "string";
252
+ readonly enum: readonly ["receive", "converse"];
253
+ };
254
+ readonly Ext: {
255
+ readonly title: "Ext";
256
+ readonly 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.";
257
+ readonly type: "object";
258
+ readonly minProperties: 1;
259
+ readonly additionalProperties: true;
260
+ readonly propertyNames: {
261
+ readonly pattern: "^[a-z][a-z0-9-]*(\\.[a-z0-9-]+)+$";
262
+ };
263
+ };
264
+ };
265
+ };
266
+ };
267
+ //# sourceMappingURL=payload.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"payload.d.ts","sourceRoot":"","sources":["../../../../src/consent/approve-request/0.1/payload.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,KAAK,EAAE,GAAG,EAAE,MAAM,gCAAgC,CAAC;AAG1D;;GAEG;AACH,MAAM,MAAM,WAAW,GAAG,IAAI,GAAG,OAAO,GAAG,SAAS,CAAC;AACrD;;GAEG;AACH,MAAM,MAAM,YAAY,GAAG,SAAS,GAAG,UAAU,CAAC;AAElD;;GAEG;AACH,MAAM,WAAW,4BAA4B;IAC3C,OAAO,EAAE,cAAc,CAAC;IACxB,KAAK,EAAE,YAAY,CAAC;IACpB;;OAEG;IACH,SAAS,EAAE,MAAM,CAAC;IAClB;;OAEG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB;;OAEG;IACH,kBAAkB,CAAC,EAAE,MAAM,CAAC;IAC5B;;OAEG;IACH,GAAG,CAAC,EAAE,GAAG,CAAC;CACX;AACD;;GAEG;AACH,MAAM,WAAW,cAAc;IAC7B;;OAEG;IACH,QAAQ,EAAE,MAAM,CAAC;IACjB;;OAEG;IACH,eAAe,EAAE,MAAM,CAAC;IACxB,IAAI,EAAE,WAAW,CAAC;IAClB;;OAEG;IACH,KAAK,EAAE,MAAM,CAAC;CACf;AAED,kHAAkH;AAClH,YAAY,EAAE,GAAG,EAAE,CAAC;AAEpB,2BAA2B;AAC3B,eAAO,MAAM,QAAQ,EAAG,yDAAkE,CAAC;AAE3F,mEAAmE;AACnE,MAAM,MAAM,OAAO,GAAG,4BAA4B,CAAC;AAEnD;;;;;;;;GAQG;AACH,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA2GjB,CAAC;AAEX;;;;;GAKG;AACH,eAAO,MAAM,IAAI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAOP,CAAC"}
@@ -0,0 +1,138 @@
1
+ /**
2
+ * Generated by scripts/build-ts-bindings.mjs — DO NOT EDIT BY HAND.
3
+ * Source: specs/consent/approve-request/0.1/payload.schema.json
4
+ */
5
+ /** Trust Task type URI. */
6
+ export const TYPE_URI = "https://trusttasks.org/spec/consent/approve-request/0.1";
7
+ /**
8
+ * This specification's payload schema, as a value.
9
+ *
10
+ * SPEC.md §7.2 item 2 is performed against this. It is shipped as data
11
+ * rather than only as a `.json` file because TypeScript types are erased
12
+ * at runtime: without a schema a consumer has nothing to validate, and
13
+ * every REQUIRED payload member is optional in practice. Cross-file
14
+ * `$ref`s are already inlined, so it needs no resolver.
15
+ */
16
+ export const PAYLOAD_SCHEMA = {
17
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
18
+ "$id": "https://trusttasks.org/spec/consent/approve-request/0.1",
19
+ "title": "Consent — Approve Request — payload",
20
+ "description": "The prompt an agent's home service sends to a designated approver, asking a human to decide whether an agent may act on one conversation. It carries no decision itself: the approver answers with a separate, separately-signed consent/decision. The outer document members (id, type, issuer, recipient, issuedAt, expiresAt, proof) are owned by the framework — SPEC §6.3.",
21
+ "type": "object",
22
+ "additionalProperties": false,
23
+ "required": [
24
+ "subject",
25
+ "scope",
26
+ "challenge"
27
+ ],
28
+ "properties": {
29
+ "subject": {
30
+ "$ref": "#/$defs/ConsentSubject",
31
+ "description": "What the decision is about: one conversation, for one agent."
32
+ },
33
+ "scope": {
34
+ "$ref": "#/$defs/ConsentScope",
35
+ "description": "What the agent is asking to be allowed to do."
36
+ },
37
+ "challenge": {
38
+ "type": "string",
39
+ "minLength": 1,
40
+ "description": "Single-use, unpredictable value the approver MUST echo in the consent/decision it signs. This is what binds a decision to this request: without it a decision is a free-floating assertion that the approver consented to something, and cannot be shown to answer this prompt rather than an earlier one. Consumers MUST reject a decision whose challenge they did not issue, and MUST NOT accept the same challenge twice."
41
+ },
42
+ "displayHint": {
43
+ "type": "string",
44
+ "maxLength": 256,
45
+ "description": "Human-readable label for the conversation, for the approver's screen — \"Signal group 'Family'\". Present because conversationRef is deliberately opaque: without a hint the approver is asked to decide about an identifier that means nothing to them, and will either always allow or always deny. Advisory only. It is chosen by the requesting party, so a renderer MUST treat it as untrusted text — escape it, bound its length, and never let it displace the subject members above as the basis of the decision."
46
+ },
47
+ "firstMessageDigest": {
48
+ "type": "string",
49
+ "minLength": 1,
50
+ "description": "Digest of the inbound message that prompted this request, when there is one, so an approver deciding on a receive scope can confirm the decision it is being asked to make corresponds to a real arriving message. A digest rather than the content: the approver is deciding whether the agent may read the conversation, and showing them the message in order to ask would disclose what the decision is meant to gate."
51
+ },
52
+ "ext": {
53
+ "$ref": "#/$defs/Ext",
54
+ "description": "Ecosystem-defined extension members per SPEC.md §4.5.1."
55
+ }
56
+ },
57
+ "$defs": {
58
+ "ConsentSubject": {
59
+ "$anchor": "consentSubject",
60
+ "title": "ConsentSubject",
61
+ "description": "Platform-agnostic identifier of what consent is about. Deliberately not a platform address: a consent record that named one would be a stored directory of who the subject talks to, readable by anyone who reaches the store.",
62
+ "type": "object",
63
+ "additionalProperties": false,
64
+ "required": [
65
+ "platform",
66
+ "conversationRef",
67
+ "kind",
68
+ "agent"
69
+ ],
70
+ "properties": {
71
+ "platform": {
72
+ "type": "string",
73
+ "minLength": 1,
74
+ "description": "Messaging platform the conversation lives on, as the bridge names it (for example `signal`, `whatsapp`). Opaque to the framework."
75
+ },
76
+ "conversationRef": {
77
+ "type": "string",
78
+ "minLength": 1,
79
+ "description": "The bridge's OPAQUE handle for the conversation. MUST NOT be a raw platform address (a phone number, a handle, a group invite link). The approver identifies the conversation from displayHint; this member exists so a decision can be matched to a conversation without the matching key being personal data."
80
+ },
81
+ "kind": {
82
+ "$ref": "#/$defs/ConsentKind"
83
+ },
84
+ "agent": {
85
+ "type": "string",
86
+ "pattern": "^did:",
87
+ "description": "DID of the agent the decision is about. Consent is granted to one agent, not to the service that hosts it, so that revoking one agent's access does not revoke another's."
88
+ }
89
+ }
90
+ },
91
+ "ConsentKind": {
92
+ "$anchor": "consentKind",
93
+ "title": "ConsentKind",
94
+ "description": "Interaction kind. Present because it changes what the approver is agreeing to: consenting to an agent reading a 1:1 conversation exposes two parties, and consenting on a group exposes everyone in it, most of whom are not being asked.",
95
+ "type": "string",
96
+ "enum": [
97
+ "dm",
98
+ "group",
99
+ "channel"
100
+ ]
101
+ },
102
+ "ConsentScope": {
103
+ "$anchor": "consentScope",
104
+ "title": "ConsentScope",
105
+ "description": "What the agent may do. `receive` is read-only: the agent sees inbound messages. `converse` additionally lets it reply, which means it can speak to the other parties as the subject — a materially different decision, and the reason the two are distinct values rather than a boolean.",
106
+ "type": "string",
107
+ "enum": [
108
+ "receive",
109
+ "converse"
110
+ ]
111
+ },
112
+ "Ext": {
113
+ "title": "Ext",
114
+ "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.",
115
+ "type": "object",
116
+ "minProperties": 1,
117
+ "additionalProperties": true,
118
+ "propertyNames": {
119
+ "pattern": "^[a-z][a-z0-9-]*(\\.[a-z0-9-]+)+$"
120
+ }
121
+ }
122
+ }
123
+ };
124
+ /**
125
+ * SPEC.md §7.2 policy for the request variant, from this specification's
126
+ * front matter. Pass to `consumeInbound` — items 5b, 7 and 8 are
127
+ * per-specification and cannot be derived from the document alone, and
128
+ * item 2 needs the schema this carries.
129
+ */
130
+ export const SPEC = {
131
+ typeUri: TYPE_URI,
132
+ isBearer: false,
133
+ isProofRequired: true,
134
+ isRecipientRequired: true,
135
+ isIssuedAtRequired: false,
136
+ payloadSchema: PAYLOAD_SCHEMA,
137
+ };
138
+ //# sourceMappingURL=payload.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"payload.js","sourceRoot":"","sources":["../../../../src/consent/approve-request/0.1/payload.ts"],"names":[],"mappings":"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"}
package/dist/index.d.ts CHANGED
@@ -51,6 +51,7 @@ export * as ConfigShow_v0_1 from "./config/show/0.1/payload.js";
51
51
  export * as ConfirmRequest_v0_1 from "./confirm/request/0.1/payload.js";
52
52
  export * as ConfirmResponse_v0_1 from "./confirm/response/0.1/payload.js";
53
53
  export * as ConsentShared_v0_1 from "./consent/_shared/0.1/consent.js";
54
+ export * as ConsentApproveRequest_v0_1 from "./consent/approve-request/0.1/payload.js";
54
55
  export * as ConsentApproverList_v1_0 from "./consent/approver-list/1.0/payload.js";
55
56
  export * as ConsentApproverSet_v1_0 from "./consent/approver-set/1.0/payload.js";
56
57
  export * as ConsentDecision_v1_0 from "./consent/decision/1.0/payload.js";
@@ -225,6 +226,14 @@ export * as SealedEnvelopeShared_v0_3 from "./vault/_shared/0.3/sealed-envelope.
225
226
  export * as SessionBlobShared_v0_3 from "./vault/_shared/0.3/session-blob.js";
226
227
  export * as VaultEntryShared_v0_3 from "./vault/_shared/0.3/vault-entry.js";
227
228
  export * as VaultSecretShared_v0_3 from "./vault/_shared/0.3/vault-secret.js";
229
+ export * as VaultCredentialsArchive_v0_1 from "./vault/credentials/archive/0.1/payload.js";
230
+ export * as VaultCredentialsDelete_v0_1 from "./vault/credentials/delete/0.1/payload.js";
231
+ export * as VaultCredentialsGet_v0_1 from "./vault/credentials/get/0.1/payload.js";
232
+ export * as VaultCredentialsPurge_v0_1 from "./vault/credentials/purge/0.1/payload.js";
233
+ export * as VaultCredentialsQuery_v0_1 from "./vault/credentials/query/0.1/payload.js";
234
+ export * as VaultCredentialsReceive_v0_1 from "./vault/credentials/receive/0.1/payload.js";
235
+ export * as VaultCredentialsRestore_v0_1 from "./vault/credentials/restore/0.1/payload.js";
236
+ export * as VaultCredentialsUnarchive_v0_1 from "./vault/credentials/unarchive/0.1/payload.js";
228
237
  export * as VaultDelete_v0_1 from "./vault/delete/0.1/payload.js";
229
238
  export * as VaultGet_v0_1 from "./vault/get/0.1/payload.js";
230
239
  export * as VaultGet_v0_2 from "./vault/get/0.2/payload.js";
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
package/dist/index.js CHANGED
@@ -57,6 +57,7 @@ export * as ConfigShow_v0_1 from "./config/show/0.1/payload.js";
57
57
  export * as ConfirmRequest_v0_1 from "./confirm/request/0.1/payload.js";
58
58
  export * as ConfirmResponse_v0_1 from "./confirm/response/0.1/payload.js";
59
59
  export * as ConsentShared_v0_1 from "./consent/_shared/0.1/consent.js";
60
+ export * as ConsentApproveRequest_v0_1 from "./consent/approve-request/0.1/payload.js";
60
61
  export * as ConsentApproverList_v1_0 from "./consent/approver-list/1.0/payload.js";
61
62
  export * as ConsentApproverSet_v1_0 from "./consent/approver-set/1.0/payload.js";
62
63
  export * as ConsentDecision_v1_0 from "./consent/decision/1.0/payload.js";
@@ -231,6 +232,14 @@ export * as SealedEnvelopeShared_v0_3 from "./vault/_shared/0.3/sealed-envelope.
231
232
  export * as SessionBlobShared_v0_3 from "./vault/_shared/0.3/session-blob.js";
232
233
  export * as VaultEntryShared_v0_3 from "./vault/_shared/0.3/vault-entry.js";
233
234
  export * as VaultSecretShared_v0_3 from "./vault/_shared/0.3/vault-secret.js";
235
+ export * as VaultCredentialsArchive_v0_1 from "./vault/credentials/archive/0.1/payload.js";
236
+ export * as VaultCredentialsDelete_v0_1 from "./vault/credentials/delete/0.1/payload.js";
237
+ export * as VaultCredentialsGet_v0_1 from "./vault/credentials/get/0.1/payload.js";
238
+ export * as VaultCredentialsPurge_v0_1 from "./vault/credentials/purge/0.1/payload.js";
239
+ export * as VaultCredentialsQuery_v0_1 from "./vault/credentials/query/0.1/payload.js";
240
+ export * as VaultCredentialsReceive_v0_1 from "./vault/credentials/receive/0.1/payload.js";
241
+ export * as VaultCredentialsRestore_v0_1 from "./vault/credentials/restore/0.1/payload.js";
242
+ export * as VaultCredentialsUnarchive_v0_1 from "./vault/credentials/unarchive/0.1/payload.js";
234
243
  export * as VaultDelete_v0_1 from "./vault/delete/0.1/payload.js";
235
244
  export * as VaultGet_v0_1 from "./vault/get/0.1/payload.js";
236
245
  export * as VaultGet_v0_2 from "./vault/get/0.2/payload.js";