@openvtc/trust-tasks 0.18.2 → 0.18.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.
- package/CHANGELOG.md +216 -0
- package/dist/_shared/components.d.ts +102 -0
- package/dist/_shared/components.d.ts.map +1 -1
- package/dist/index.d.ts +6 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +6 -0
- package/dist/index.js.map +1 -1
- package/dist/process-attestation/0.1/payload.d.ts +1190 -0
- package/dist/process-attestation/0.1/payload.d.ts.map +1 -0
- package/dist/process-attestation/0.1/payload.js +660 -0
- package/dist/process-attestation/0.1/payload.js.map +1 -0
- package/dist/rooms/_shared/0.1/room.d.ts +1 -1
- package/dist/rooms/_shared/0.1/room.d.ts.map +1 -1
- package/dist/rooms/create/0.1/payload.d.ts +58 -2
- package/dist/rooms/create/0.1/payload.d.ts.map +1 -1
- package/dist/rooms/create/0.1/payload.js +32 -0
- package/dist/rooms/create/0.1/payload.js.map +1 -1
- package/dist/rooms/epoch/commits/0.1/payload.d.ts +506 -0
- package/dist/rooms/epoch/commits/0.1/payload.d.ts.map +1 -0
- package/dist/rooms/epoch/commits/0.1/payload.js +268 -0
- package/dist/rooms/epoch/commits/0.1/payload.js.map +1 -0
- package/dist/rooms/epoch/mint/0.1/payload.d.ts +20 -0
- package/dist/rooms/epoch/mint/0.1/payload.d.ts.map +1 -1
- package/dist/rooms/epoch/mint/0.1/payload.js +5 -0
- package/dist/rooms/epoch/mint/0.1/payload.js.map +1 -1
- package/dist/rooms/epoch/prune/0.1/payload.d.ts +423 -0
- package/dist/rooms/epoch/prune/0.1/payload.d.ts.map +1 -0
- package/dist/rooms/epoch/prune/0.1/payload.js +229 -0
- package/dist/rooms/epoch/prune/0.1/payload.js.map +1 -0
- package/dist/rooms/keys/browse/0.1/payload.d.ts +825 -0
- package/dist/rooms/keys/browse/0.1/payload.d.ts.map +1 -0
- package/dist/rooms/keys/browse/0.1/payload.js +494 -0
- package/dist/rooms/keys/browse/0.1/payload.js.map +1 -0
- package/dist/rooms/keys/read/0.1/payload.d.ts +703 -0
- package/dist/rooms/keys/read/0.1/payload.d.ts.map +1 -0
- package/dist/rooms/keys/read/0.1/payload.js +424 -0
- package/dist/rooms/keys/read/0.1/payload.js.map +1 -0
- package/dist/rooms/owner/anchor/0.1/payload.d.ts +537 -0
- package/dist/rooms/owner/anchor/0.1/payload.d.ts.map +1 -0
- package/dist/rooms/owner/anchor/0.1/payload.js +291 -0
- package/dist/rooms/owner/anchor/0.1/payload.js.map +1 -0
- package/package.json +1 -1
- package/src/_shared/components.ts +102 -0
- package/src/index.ts +6 -0
- package/src/process-attestation/0.1/payload.ts +794 -0
- package/src/rooms/_shared/0.1/room.ts +1 -1
- package/src/rooms/create/0.1/payload.ts +42 -2
- package/src/rooms/epoch/commits/0.1/payload.ts +341 -0
- package/src/rooms/epoch/mint/0.1/payload.ts +15 -0
- package/src/rooms/epoch/prune/0.1/payload.ts +289 -0
- package/src/rooms/keys/browse/0.1/payload.ts +560 -0
- package/src/rooms/keys/read/0.1/payload.ts +498 -0
- package/src/rooms/owner/anchor/0.1/payload.ts +353 -0
|
@@ -0,0 +1,229 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Generated by scripts/build-ts-bindings.mjs — DO NOT EDIT BY HAND.
|
|
3
|
+
* Source: specs/rooms/epoch/prune/0.1/payload.schema.json
|
|
4
|
+
*/
|
|
5
|
+
/** Trust Task type URI. */
|
|
6
|
+
export const TYPE_URI = "https://trusttasks.org/spec/rooms/epoch/prune/0.1";
|
|
7
|
+
/** Trust Task response type URI (request type URI + "#response"). */
|
|
8
|
+
export const RESPONSE_TYPE_URI = "https://trusttasks.org/spec/rooms/epoch/prune/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/rooms/epoch/prune/0.1",
|
|
21
|
+
"title": "Rooms Epoch Prune — payload",
|
|
22
|
+
"description": "TODO: what the request payload of rooms/epoch/prune carries. The outer document members (id, type, issuer, recipient, issuedAt, expiresAt, proof) are owned by the framework — SPEC §6.3.",
|
|
23
|
+
"type": "object",
|
|
24
|
+
"additionalProperties": false,
|
|
25
|
+
"required": [
|
|
26
|
+
"roomId",
|
|
27
|
+
"beforeEpoch",
|
|
28
|
+
"presentation"
|
|
29
|
+
],
|
|
30
|
+
"properties": {
|
|
31
|
+
"roomId": {
|
|
32
|
+
"type": "string",
|
|
33
|
+
"description": "The room to prune."
|
|
34
|
+
},
|
|
35
|
+
"beforeEpoch": {
|
|
36
|
+
"type": "integer",
|
|
37
|
+
"minimum": 2,
|
|
38
|
+
"description": "Drop every rung *below* this epoch, so the chain walks back no further than it.\n\n`minimum: 2` because pruning below epoch 1 would drop nothing and asking to is a caller that has misunderstood the direction — the chain walks backwards, and epoch 1 is where it ends."
|
|
39
|
+
},
|
|
40
|
+
"presentation": {
|
|
41
|
+
"$ref": "#/$defs/AuthorityPresentation",
|
|
42
|
+
"description": "Must confer `admin` at this room's scope. Not `curate`, and not `write`: pruning is not a statement about any record, and every member who can write can curate. It ends the room's ability to open a span of its own history, for everyone, which is the same class of act as advancing the epoch."
|
|
43
|
+
},
|
|
44
|
+
"reason": {
|
|
45
|
+
"type": "string",
|
|
46
|
+
"maxLength": 512,
|
|
47
|
+
"description": "Why, for the room's audit trail. A prune is irreversible and unattributable after the fact — the rungs are simply gone — so the only record of intent is the one made at the time."
|
|
48
|
+
},
|
|
49
|
+
"ext": {
|
|
50
|
+
"$ref": "#/$defs/Ext",
|
|
51
|
+
"description": "Ecosystem-defined extension members per SPEC.md §4.5.1."
|
|
52
|
+
}
|
|
53
|
+
},
|
|
54
|
+
"$defs": {
|
|
55
|
+
"Response": {
|
|
56
|
+
"$anchor": "response",
|
|
57
|
+
"type": "object",
|
|
58
|
+
"additionalProperties": false,
|
|
59
|
+
"required": [
|
|
60
|
+
"roomId",
|
|
61
|
+
"pruned",
|
|
62
|
+
"earliestRung"
|
|
63
|
+
],
|
|
64
|
+
"description": "Success response to rooms/epoch/prune. Type https://trusttasks.org/spec/rooms/epoch/prune/0.1#response.",
|
|
65
|
+
"properties": {
|
|
66
|
+
"roomId": {
|
|
67
|
+
"type": "string"
|
|
68
|
+
},
|
|
69
|
+
"pruned": {
|
|
70
|
+
"type": "integer",
|
|
71
|
+
"minimum": 0,
|
|
72
|
+
"description": "How many rungs were dropped. `0` is a success: the chain already went back no further, and a caller that read it as a failure would retry an operation that has nothing left to do."
|
|
73
|
+
},
|
|
74
|
+
"earliestRung": {
|
|
75
|
+
"type": "integer",
|
|
76
|
+
"minimum": 1,
|
|
77
|
+
"description": "The lowest epoch the chain still reaches, after pruning. **Not a restatement of `beforeEpoch`**: a chain with a gap in it already stopped somewhere, and a prune below that gap changes nothing about how far back a member can actually walk. Reporting the request back would tell an operator they had achieved something they had not."
|
|
78
|
+
},
|
|
79
|
+
"ext": {
|
|
80
|
+
"$ref": "#/$defs/Ext"
|
|
81
|
+
}
|
|
82
|
+
},
|
|
83
|
+
"title": "Rooms Epoch Prune — response payload"
|
|
84
|
+
},
|
|
85
|
+
"Ext": {
|
|
86
|
+
"title": "Ext",
|
|
87
|
+
"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.",
|
|
88
|
+
"type": "object",
|
|
89
|
+
"minProperties": 1,
|
|
90
|
+
"additionalProperties": true,
|
|
91
|
+
"propertyNames": {
|
|
92
|
+
"pattern": "^[a-z][a-z0-9-]*(\\.[a-z0-9-]+)+$"
|
|
93
|
+
}
|
|
94
|
+
},
|
|
95
|
+
"AuthorityPresentation": {
|
|
96
|
+
"title": "AuthorityPresentation",
|
|
97
|
+
"type": "object",
|
|
98
|
+
"additionalProperties": false,
|
|
99
|
+
"required": [
|
|
100
|
+
"membership",
|
|
101
|
+
"authority"
|
|
102
|
+
],
|
|
103
|
+
"description": "What a party presents to act on a room. Carries the whole authority chain: a host MUST NOT dereference an authority credential's `parent` to fetch a link it was not given. Resolving over the network would make verification depend on availability, turn every identifier into a request the host can be induced to make against an address the holder chooses, and signal credential use to whoever hosts the identifier. A host MUST bind the presenter to the chain's leaf. A chain that verifies is evidence that authority was conferred on somebody; it is not evidence that the party presenting it is that somebody. The leaf's subject MUST equal the party the host authenticated for this request — an identity the transport established or a document `proof` proved, never one named in a payload. A host that omits this check authorizes every captured presentation, and the omission is silent, because the chain still verifies.",
|
|
104
|
+
"properties": {
|
|
105
|
+
"membership": {
|
|
106
|
+
"type": "string",
|
|
107
|
+
"description": "The presenter's membership credential for this room, or — on a `private` room — a zero-knowledge presentation of it. Serialized per the governing profile."
|
|
108
|
+
},
|
|
109
|
+
"authority": {
|
|
110
|
+
"type": "array",
|
|
111
|
+
"minItems": 1,
|
|
112
|
+
"maxItems": 8,
|
|
113
|
+
"items": {
|
|
114
|
+
"type": "string"
|
|
115
|
+
},
|
|
116
|
+
"description": "The authority chain, LEAF FIRST: the first element is the credential being relied on and the last MUST be one issued by the room itself. Every link the presenter relies on is present, because the host will not fetch one. Capped at 8: verification is linear in chain length and runs on every operation, so an unbounded chain is a denial-of-service surface against the host. The known uses need 2 to 3 — a person attenuating to an agent, and that agent to a sub-agent."
|
|
117
|
+
},
|
|
118
|
+
"subjectBinding": {
|
|
119
|
+
"type": "string",
|
|
120
|
+
"description": "REQUIRED on a `private` room, where the subject identifier is withheld: a proof that the membership credential and the authority chain's leaf describe the SAME subject. Without it two parties pool credentials — one contributes membership, the other authority — and the combination verifies as a single party holding both. A host MUST refuse a private-room presentation that omits this."
|
|
121
|
+
}
|
|
122
|
+
}
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
};
|
|
126
|
+
/** As {@link PAYLOAD_SCHEMA}, for the success-response variant. */
|
|
127
|
+
export const RESPONSE_PAYLOAD_SCHEMA = {
|
|
128
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
129
|
+
"$ref": "#/$defs/Response",
|
|
130
|
+
"$defs": {
|
|
131
|
+
"Response": {
|
|
132
|
+
"$anchor": "response",
|
|
133
|
+
"type": "object",
|
|
134
|
+
"additionalProperties": false,
|
|
135
|
+
"required": [
|
|
136
|
+
"roomId",
|
|
137
|
+
"pruned",
|
|
138
|
+
"earliestRung"
|
|
139
|
+
],
|
|
140
|
+
"description": "Success response to rooms/epoch/prune. Type https://trusttasks.org/spec/rooms/epoch/prune/0.1#response.",
|
|
141
|
+
"properties": {
|
|
142
|
+
"roomId": {
|
|
143
|
+
"type": "string"
|
|
144
|
+
},
|
|
145
|
+
"pruned": {
|
|
146
|
+
"type": "integer",
|
|
147
|
+
"minimum": 0,
|
|
148
|
+
"description": "How many rungs were dropped. `0` is a success: the chain already went back no further, and a caller that read it as a failure would retry an operation that has nothing left to do."
|
|
149
|
+
},
|
|
150
|
+
"earliestRung": {
|
|
151
|
+
"type": "integer",
|
|
152
|
+
"minimum": 1,
|
|
153
|
+
"description": "The lowest epoch the chain still reaches, after pruning. **Not a restatement of `beforeEpoch`**: a chain with a gap in it already stopped somewhere, and a prune below that gap changes nothing about how far back a member can actually walk. Reporting the request back would tell an operator they had achieved something they had not."
|
|
154
|
+
},
|
|
155
|
+
"ext": {
|
|
156
|
+
"$ref": "#/$defs/Ext"
|
|
157
|
+
}
|
|
158
|
+
},
|
|
159
|
+
"title": "Rooms Epoch Prune — response payload"
|
|
160
|
+
},
|
|
161
|
+
"Ext": {
|
|
162
|
+
"title": "Ext",
|
|
163
|
+
"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.",
|
|
164
|
+
"type": "object",
|
|
165
|
+
"minProperties": 1,
|
|
166
|
+
"additionalProperties": true,
|
|
167
|
+
"propertyNames": {
|
|
168
|
+
"pattern": "^[a-z][a-z0-9-]*(\\.[a-z0-9-]+)+$"
|
|
169
|
+
}
|
|
170
|
+
},
|
|
171
|
+
"AuthorityPresentation": {
|
|
172
|
+
"title": "AuthorityPresentation",
|
|
173
|
+
"type": "object",
|
|
174
|
+
"additionalProperties": false,
|
|
175
|
+
"required": [
|
|
176
|
+
"membership",
|
|
177
|
+
"authority"
|
|
178
|
+
],
|
|
179
|
+
"description": "What a party presents to act on a room. Carries the whole authority chain: a host MUST NOT dereference an authority credential's `parent` to fetch a link it was not given. Resolving over the network would make verification depend on availability, turn every identifier into a request the host can be induced to make against an address the holder chooses, and signal credential use to whoever hosts the identifier. A host MUST bind the presenter to the chain's leaf. A chain that verifies is evidence that authority was conferred on somebody; it is not evidence that the party presenting it is that somebody. The leaf's subject MUST equal the party the host authenticated for this request — an identity the transport established or a document `proof` proved, never one named in a payload. A host that omits this check authorizes every captured presentation, and the omission is silent, because the chain still verifies.",
|
|
180
|
+
"properties": {
|
|
181
|
+
"membership": {
|
|
182
|
+
"type": "string",
|
|
183
|
+
"description": "The presenter's membership credential for this room, or — on a `private` room — a zero-knowledge presentation of it. Serialized per the governing profile."
|
|
184
|
+
},
|
|
185
|
+
"authority": {
|
|
186
|
+
"type": "array",
|
|
187
|
+
"minItems": 1,
|
|
188
|
+
"maxItems": 8,
|
|
189
|
+
"items": {
|
|
190
|
+
"type": "string"
|
|
191
|
+
},
|
|
192
|
+
"description": "The authority chain, LEAF FIRST: the first element is the credential being relied on and the last MUST be one issued by the room itself. Every link the presenter relies on is present, because the host will not fetch one. Capped at 8: verification is linear in chain length and runs on every operation, so an unbounded chain is a denial-of-service surface against the host. The known uses need 2 to 3 — a person attenuating to an agent, and that agent to a sub-agent."
|
|
193
|
+
},
|
|
194
|
+
"subjectBinding": {
|
|
195
|
+
"type": "string",
|
|
196
|
+
"description": "REQUIRED on a `private` room, where the subject identifier is withheld: a proof that the membership credential and the authority chain's leaf describe the SAME subject. Without it two parties pool credentials — one contributes membership, the other authority — and the combination verifies as a single party holding both. A host MUST refuse a private-room presentation that omits this."
|
|
197
|
+
}
|
|
198
|
+
}
|
|
199
|
+
}
|
|
200
|
+
}
|
|
201
|
+
};
|
|
202
|
+
/**
|
|
203
|
+
* SPEC.md §7.2 policy for the request variant, from this specification's
|
|
204
|
+
* front matter. Pass to `consumeInbound` — items 5b, 7 and 8 are
|
|
205
|
+
* per-specification and cannot be derived from the document alone, and
|
|
206
|
+
* item 2 needs the schema this carries.
|
|
207
|
+
*/
|
|
208
|
+
export const SPEC = {
|
|
209
|
+
typeUri: TYPE_URI,
|
|
210
|
+
isBearer: false,
|
|
211
|
+
isProofRequired: true,
|
|
212
|
+
isRecipientRequired: true,
|
|
213
|
+
isIssuedAtRequired: true,
|
|
214
|
+
payloadSchema: PAYLOAD_SCHEMA,
|
|
215
|
+
};
|
|
216
|
+
/**
|
|
217
|
+
* SPEC.md §7.2 policy for the success-response variant. `isRecipientRequired`
|
|
218
|
+
* tracks the *issuer* party's requirement because a response swaps the
|
|
219
|
+
* parties (§7.3 item 5).
|
|
220
|
+
*/
|
|
221
|
+
export const RESPONSE_SPEC = {
|
|
222
|
+
typeUri: RESPONSE_TYPE_URI,
|
|
223
|
+
isBearer: false,
|
|
224
|
+
isProofRequired: true,
|
|
225
|
+
isRecipientRequired: true,
|
|
226
|
+
isIssuedAtRequired: true,
|
|
227
|
+
payloadSchema: RESPONSE_PAYLOAD_SCHEMA,
|
|
228
|
+
};
|
|
229
|
+
//# sourceMappingURL=payload.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"payload.js","sourceRoot":"","sources":["../../../../../src/rooms/epoch/prune/0.1/payload.ts"],"names":[],"mappings":"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"}
|