@openvtc/trust-tasks 0.12.7 → 0.12.9
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/dist/vtc/community/profile/show/0.1/payload.d.ts +154 -0
- package/dist/vtc/community/profile/show/0.1/payload.d.ts.map +1 -1
- package/dist/vtc/community/profile/show/0.1/payload.js +72 -0
- package/dist/vtc/community/profile/show/0.1/payload.js.map +1 -1
- package/dist/vtc/community/profile/update/0.1/payload.d.ts +184 -0
- package/dist/vtc/community/profile/update/0.1/payload.d.ts.map +1 -1
- package/dist/vtc/community/profile/update/0.1/payload.js +76 -0
- package/dist/vtc/community/profile/update/0.1/payload.js.map +1 -1
- package/dist/vtc/config/export/0.1/payload.d.ts +154 -0
- package/dist/vtc/config/export/0.1/payload.d.ts.map +1 -1
- package/dist/vtc/config/export/0.1/payload.js +72 -0
- package/dist/vtc/config/export/0.1/payload.js.map +1 -1
- package/dist/vtc/config/import/0.1/payload.d.ts +154 -0
- package/dist/vtc/config/import/0.1/payload.d.ts.map +1 -1
- package/dist/vtc/config/import/0.1/payload.js +72 -0
- package/dist/vtc/config/import/0.1/payload.js.map +1 -1
- package/dist/vtc/endorsement-types/list/0.1/payload.d.ts +20 -0
- package/dist/vtc/endorsement-types/list/0.1/payload.d.ts.map +1 -1
- package/dist/vtc/endorsement-types/list/0.1/payload.js +8 -0
- package/dist/vtc/endorsement-types/list/0.1/payload.js.map +1 -1
- package/dist/vtc/endorsement-types/register/0.1/payload.d.ts +20 -0
- package/dist/vtc/endorsement-types/register/0.1/payload.d.ts.map +1 -1
- package/dist/vtc/endorsement-types/register/0.1/payload.js +8 -0
- package/dist/vtc/endorsement-types/register/0.1/payload.js.map +1 -1
- package/dist/vtc/join-requests/decide/0.1/payload.d.ts +42 -0
- package/dist/vtc/join-requests/decide/0.1/payload.d.ts.map +1 -1
- package/dist/vtc/join-requests/decide/0.1/payload.js +28 -0
- package/dist/vtc/join-requests/decide/0.1/payload.js.map +1 -1
- package/dist/vtc/members/list/0.1/payload.d.ts +108 -0
- package/dist/vtc/members/list/0.1/payload.d.ts.map +1 -1
- package/dist/vtc/members/list/0.1/payload.js +62 -0
- package/dist/vtc/members/list/0.1/payload.js.map +1 -1
- package/dist/vtc/members/show/0.1/payload.d.ts +108 -0
- package/dist/vtc/members/show/0.1/payload.d.ts.map +1 -1
- package/dist/vtc/members/show/0.1/payload.js +62 -0
- package/dist/vtc/members/show/0.1/payload.js.map +1 -1
- package/dist/vtc/members/update/0.1/payload.d.ts +120 -0
- package/dist/vtc/members/update/0.1/payload.d.ts.map +1 -1
- package/dist/vtc/members/update/0.1/payload.js +69 -0
- package/dist/vtc/members/update/0.1/payload.js.map +1 -1
- package/package.json +1 -1
- package/src/vtc/community/profile/show/0.1/payload.ts +94 -0
- package/src/vtc/community/profile/update/0.1/payload.ts +120 -0
- package/src/vtc/config/export/0.1/payload.ts +94 -0
- package/src/vtc/config/import/0.1/payload.ts +94 -0
- package/src/vtc/endorsement-types/list/0.1/payload.ts +12 -0
- package/src/vtc/endorsement-types/register/0.1/payload.ts +12 -0
- package/src/vtc/join-requests/decide/0.1/payload.ts +38 -0
- package/src/vtc/members/list/0.1/payload.ts +82 -0
- package/src/vtc/members/show/0.1/payload.ts +82 -0
- package/src/vtc/members/update/0.1/payload.ts +93 -0
|
@@ -32,6 +32,16 @@ export interface VTCJoinRequestsDecideResponsePayload {
|
|
|
32
32
|
* The request's post-decision state; echoes the decision.
|
|
33
33
|
*/
|
|
34
34
|
status: "approved" | "rejected";
|
|
35
|
+
/**
|
|
36
|
+
* The membership credential issued by this decision, delivered inline. Present only where the decision admitted the applicant.
|
|
37
|
+
*
|
|
38
|
+
* Inline because the alternative is worse: the applicant would poll for a status, learn they were admitted, and then fetch the credential separately — a second round trip whose only purpose is to collect something the community already had in hand when it decided.
|
|
39
|
+
*/
|
|
40
|
+
vmc?: {} | null;
|
|
41
|
+
/**
|
|
42
|
+
* The endorsement credential carrying the role this decision granted, delivered inline alongside `vmc` and on the same reasoning. Present only where the decision admitted the applicant and granted a role.
|
|
43
|
+
*/
|
|
44
|
+
roleVec?: {} | null;
|
|
35
45
|
ext?: Ext;
|
|
36
46
|
}
|
|
37
47
|
/** Trust Task type URI. */
|
|
@@ -96,6 +106,14 @@ export declare const PAYLOAD_SCHEMA: {
|
|
|
96
106
|
readonly enum: readonly ["approved", "rejected"];
|
|
97
107
|
readonly description: "The request's post-decision state; echoes the decision.";
|
|
98
108
|
};
|
|
109
|
+
readonly vmc: {
|
|
110
|
+
readonly type: readonly ["object", "null"];
|
|
111
|
+
readonly description: "The membership credential issued by this decision, delivered inline. Present only where the decision admitted the applicant.\n\nInline because the alternative is worse: the applicant would poll for a status, learn they were admitted, and then fetch the credential separately — a second round trip whose only purpose is to collect something the community already had in hand when it decided.";
|
|
112
|
+
};
|
|
113
|
+
readonly roleVec: {
|
|
114
|
+
readonly type: readonly ["object", "null"];
|
|
115
|
+
readonly description: "The endorsement credential carrying the role this decision granted, delivered inline alongside `vmc` and on the same reasoning. Present only where the decision admitted the applicant and granted a role.";
|
|
116
|
+
};
|
|
99
117
|
readonly ext: {
|
|
100
118
|
readonly $ref: "#/$defs/Ext";
|
|
101
119
|
};
|
|
@@ -135,6 +153,14 @@ export declare const RESPONSE_PAYLOAD_SCHEMA: {
|
|
|
135
153
|
readonly enum: readonly ["approved", "rejected"];
|
|
136
154
|
readonly description: "The request's post-decision state; echoes the decision.";
|
|
137
155
|
};
|
|
156
|
+
readonly vmc: {
|
|
157
|
+
readonly type: readonly ["object", "null"];
|
|
158
|
+
readonly description: "The membership credential issued by this decision, delivered inline. Present only where the decision admitted the applicant.\n\nInline because the alternative is worse: the applicant would poll for a status, learn they were admitted, and then fetch the credential separately — a second round trip whose only purpose is to collect something the community already had in hand when it decided.";
|
|
159
|
+
};
|
|
160
|
+
readonly roleVec: {
|
|
161
|
+
readonly type: readonly ["object", "null"];
|
|
162
|
+
readonly description: "The endorsement credential carrying the role this decision granted, delivered inline alongside `vmc` and on the same reasoning. Present only where the decision admitted the applicant and granted a role.";
|
|
163
|
+
};
|
|
138
164
|
readonly ext: {
|
|
139
165
|
readonly $ref: "#/$defs/Ext";
|
|
140
166
|
};
|
|
@@ -208,6 +234,14 @@ export declare const SPEC: {
|
|
|
208
234
|
readonly enum: readonly ["approved", "rejected"];
|
|
209
235
|
readonly description: "The request's post-decision state; echoes the decision.";
|
|
210
236
|
};
|
|
237
|
+
readonly vmc: {
|
|
238
|
+
readonly type: readonly ["object", "null"];
|
|
239
|
+
readonly description: "The membership credential issued by this decision, delivered inline. Present only where the decision admitted the applicant.\n\nInline because the alternative is worse: the applicant would poll for a status, learn they were admitted, and then fetch the credential separately — a second round trip whose only purpose is to collect something the community already had in hand when it decided.";
|
|
240
|
+
};
|
|
241
|
+
readonly roleVec: {
|
|
242
|
+
readonly type: readonly ["object", "null"];
|
|
243
|
+
readonly description: "The endorsement credential carrying the role this decision granted, delivered inline alongside `vmc` and on the same reasoning. Present only where the decision admitted the applicant and granted a role.";
|
|
244
|
+
};
|
|
211
245
|
readonly ext: {
|
|
212
246
|
readonly $ref: "#/$defs/Ext";
|
|
213
247
|
};
|
|
@@ -257,6 +291,14 @@ export declare const RESPONSE_SPEC: {
|
|
|
257
291
|
readonly enum: readonly ["approved", "rejected"];
|
|
258
292
|
readonly description: "The request's post-decision state; echoes the decision.";
|
|
259
293
|
};
|
|
294
|
+
readonly vmc: {
|
|
295
|
+
readonly type: readonly ["object", "null"];
|
|
296
|
+
readonly description: "The membership credential issued by this decision, delivered inline. Present only where the decision admitted the applicant.\n\nInline because the alternative is worse: the applicant would poll for a status, learn they were admitted, and then fetch the credential separately — a second round trip whose only purpose is to collect something the community already had in hand when it decided.";
|
|
297
|
+
};
|
|
298
|
+
readonly roleVec: {
|
|
299
|
+
readonly type: readonly ["object", "null"];
|
|
300
|
+
readonly description: "The endorsement credential carrying the role this decision granted, delivered inline alongside `vmc` and on the same reasoning. Present only where the decision admitted the applicant and granted a role.";
|
|
301
|
+
};
|
|
260
302
|
readonly ext: {
|
|
261
303
|
readonly $ref: "#/$defs/Ext";
|
|
262
304
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"payload.d.ts","sourceRoot":"","sources":["../../../../../src/vtc/join-requests/decide/0.1/payload.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,MAAM,WAAW,4BAA4B;IAC3C;;OAEG;IACH,EAAE,EAAE,MAAM,CAAC;IACX;;OAEG;IACH,QAAQ,EAAE,UAAU,GAAG,UAAU,CAAC;IAClC;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,GAAG,CAAC,EAAE,GAAG,CAAC;CACX;AACD;;GAEG;AACH,MAAM,WAAW,GAAG;IAClB,CAAC,CAAC,EAAE,MAAM,GAAG,OAAO,GAAG,SAAS,CAAC;CAClC;AACD;;GAEG;AACH,MAAM,WAAW,oCAAoC;IACnD,SAAS,EAAE,MAAM,CAAC;IAClB;;OAEG;IACH,MAAM,EAAE,UAAU,GAAG,UAAU,CAAC;IAChC,GAAG,CAAC,EAAE,GAAG,CAAC;CACX;AAED,2BAA2B;AAC3B,eAAO,MAAM,QAAQ,EAAG,0DAAmE,CAAC;AAE5F,mEAAmE;AACnE,MAAM,MAAM,OAAO,GAAG,4BAA4B,CAAC;AAEnD,qEAAqE;AACrE,eAAO,MAAM,iBAAiB,EAAG,mEAA4E,CAAC;AAE9G,4EAA4E;AAC5E,MAAM,MAAM,QAAQ,GAAG,oCAAoC,CAAC;AAE5D;;;;;;;;GAQG;AACH,eAAO,MAAM,cAAc
|
|
1
|
+
{"version":3,"file":"payload.d.ts","sourceRoot":"","sources":["../../../../../src/vtc/join-requests/decide/0.1/payload.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,MAAM,WAAW,4BAA4B;IAC3C;;OAEG;IACH,EAAE,EAAE,MAAM,CAAC;IACX;;OAEG;IACH,QAAQ,EAAE,UAAU,GAAG,UAAU,CAAC;IAClC;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,GAAG,CAAC,EAAE,GAAG,CAAC;CACX;AACD;;GAEG;AACH,MAAM,WAAW,GAAG;IAClB,CAAC,CAAC,EAAE,MAAM,GAAG,OAAO,GAAG,SAAS,CAAC;CAClC;AACD;;GAEG;AACH,MAAM,WAAW,oCAAoC;IACnD,SAAS,EAAE,MAAM,CAAC;IAClB;;OAEG;IACH,MAAM,EAAE,UAAU,GAAG,UAAU,CAAC;IAChC;;;;OAIG;IACH,GAAG,CAAC,EAAE,EAAE,GAAG,IAAI,CAAC;IAChB;;OAEG;IACH,OAAO,CAAC,EAAE,EAAE,GAAG,IAAI,CAAC;IACpB,GAAG,CAAC,EAAE,GAAG,CAAC;CACX;AAED,2BAA2B;AAC3B,eAAO,MAAM,QAAQ,EAAG,0DAAmE,CAAC;AAE5F,mEAAmE;AACnE,MAAM,MAAM,OAAO,GAAG,4BAA4B,CAAC;AAEnD,qEAAqE;AACrE,eAAO,MAAM,iBAAiB,EAAG,mEAA4E,CAAC;AAE9G,4EAA4E;AAC5E,MAAM,MAAM,QAAQ,GAAG,oCAAoC,CAAC;AAE5D;;;;;;;;GAQG;AACH,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAuFjB,CAAC;AAEX,mEAAmE;AACnE,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAyD1B,CAAC;AAEX;;;;;GAKG;AACH,eAAO,MAAM,IAAI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMP,CAAC;AAEX;;;;GAIG;AACH,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMhB,CAAC"}
|
|
@@ -72,6 +72,20 @@ export const PAYLOAD_SCHEMA = {
|
|
|
72
72
|
],
|
|
73
73
|
"description": "The request's post-decision state; echoes the decision."
|
|
74
74
|
},
|
|
75
|
+
"vmc": {
|
|
76
|
+
"type": [
|
|
77
|
+
"object",
|
|
78
|
+
"null"
|
|
79
|
+
],
|
|
80
|
+
"description": "The membership credential issued by this decision, delivered inline. Present only where the decision admitted the applicant.\n\nInline because the alternative is worse: the applicant would poll for a status, learn they were admitted, and then fetch the credential separately — a second round trip whose only purpose is to collect something the community already had in hand when it decided."
|
|
81
|
+
},
|
|
82
|
+
"roleVec": {
|
|
83
|
+
"type": [
|
|
84
|
+
"object",
|
|
85
|
+
"null"
|
|
86
|
+
],
|
|
87
|
+
"description": "The endorsement credential carrying the role this decision granted, delivered inline alongside `vmc` and on the same reasoning. Present only where the decision admitted the applicant and granted a role."
|
|
88
|
+
},
|
|
75
89
|
"ext": {
|
|
76
90
|
"$ref": "#/$defs/Ext"
|
|
77
91
|
}
|
|
@@ -117,6 +131,20 @@ export const RESPONSE_PAYLOAD_SCHEMA = {
|
|
|
117
131
|
],
|
|
118
132
|
"description": "The request's post-decision state; echoes the decision."
|
|
119
133
|
},
|
|
134
|
+
"vmc": {
|
|
135
|
+
"type": [
|
|
136
|
+
"object",
|
|
137
|
+
"null"
|
|
138
|
+
],
|
|
139
|
+
"description": "The membership credential issued by this decision, delivered inline. Present only where the decision admitted the applicant.\n\nInline because the alternative is worse: the applicant would poll for a status, learn they were admitted, and then fetch the credential separately — a second round trip whose only purpose is to collect something the community already had in hand when it decided."
|
|
140
|
+
},
|
|
141
|
+
"roleVec": {
|
|
142
|
+
"type": [
|
|
143
|
+
"object",
|
|
144
|
+
"null"
|
|
145
|
+
],
|
|
146
|
+
"description": "The endorsement credential carrying the role this decision granted, delivered inline alongside `vmc` and on the same reasoning. Present only where the decision admitted the applicant and granted a role."
|
|
147
|
+
},
|
|
120
148
|
"ext": {
|
|
121
149
|
"$ref": "#/$defs/Ext"
|
|
122
150
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"payload.js","sourceRoot":"","sources":["../../../../../src/vtc/join-requests/decide/0.1/payload.ts"],"names":[],"mappings":"AAAA;;;GAGG;
|
|
1
|
+
{"version":3,"file":"payload.js","sourceRoot":"","sources":["../../../../../src/vtc/join-requests/decide/0.1/payload.ts"],"names":[],"mappings":"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"}
|
|
@@ -72,6 +72,26 @@ export interface MemberResponse {
|
|
|
72
72
|
* Id of the member's current role Verifiable Endorsement Credential, if issued.
|
|
73
73
|
*/
|
|
74
74
|
currentRoleVecId?: string | null;
|
|
75
|
+
/**
|
|
76
|
+
* Whether the community has asserted that this member is a distinct real person. Read-only here: it is set and cleared by the personhood verbs, and cleared by a renewal-policy downgrade. Load-bearing rather than informational — a community that recognises members of another community may gate on it, so a consumer that cannot read it cannot make that decision.
|
|
77
|
+
*/
|
|
78
|
+
personhood?: boolean;
|
|
79
|
+
/**
|
|
80
|
+
* When personhood was most recently asserted. Absent where it never has been. Operator-facing: it belongs on admin-gated reads, and a member's own view of themselves need carry only the flag.
|
|
81
|
+
*/
|
|
82
|
+
personhoodAssertedAt?: string | null;
|
|
83
|
+
/**
|
|
84
|
+
* Whether this member joined by presenting an invitation credential rather than by an admin's decision on an open request. The two routes to membership carry different evidence, and an operator reviewing a roster can otherwise not tell them apart.
|
|
85
|
+
*/
|
|
86
|
+
joinedViaInvitation?: boolean;
|
|
87
|
+
/**
|
|
88
|
+
* `id` of the member-issued reciprocal membership credential — the member half of the pair — once the member has sent it. Absent until then, which is the useful signal: it distinguishes a membership the community has asserted from one the member has acknowledged. The credential body is not echoed here.
|
|
89
|
+
*/
|
|
90
|
+
memberVmcId?: string | null;
|
|
91
|
+
/**
|
|
92
|
+
* When that reciprocal credential was received. Paired with `memberVmcId`.
|
|
93
|
+
*/
|
|
94
|
+
memberVmcReceivedAt?: string | null;
|
|
75
95
|
/**
|
|
76
96
|
* Opaque community-defined extension bag. Keys are maintainer-defined; the maintainer caps its size (16 KiB in the reference implementation).
|
|
77
97
|
*/
|
|
@@ -204,6 +224,28 @@ export declare const PAYLOAD_SCHEMA: {
|
|
|
204
224
|
readonly type: readonly ["string", "null"];
|
|
205
225
|
readonly description: "Id of the member's current role Verifiable Endorsement Credential, if issued.";
|
|
206
226
|
};
|
|
227
|
+
readonly personhood: {
|
|
228
|
+
readonly type: "boolean";
|
|
229
|
+
readonly description: "Whether the community has asserted that this member is a distinct real person. Read-only here: it is set and cleared by the personhood verbs, and cleared by a renewal-policy downgrade. Load-bearing rather than informational — a community that recognises members of another community may gate on it, so a consumer that cannot read it cannot make that decision.";
|
|
230
|
+
};
|
|
231
|
+
readonly personhoodAssertedAt: {
|
|
232
|
+
readonly type: readonly ["string", "null"];
|
|
233
|
+
readonly format: "date-time";
|
|
234
|
+
readonly description: "When personhood was most recently asserted. Absent where it never has been. Operator-facing: it belongs on admin-gated reads, and a member's own view of themselves need carry only the flag.";
|
|
235
|
+
};
|
|
236
|
+
readonly joinedViaInvitation: {
|
|
237
|
+
readonly type: "boolean";
|
|
238
|
+
readonly description: "Whether this member joined by presenting an invitation credential rather than by an admin's decision on an open request. The two routes to membership carry different evidence, and an operator reviewing a roster can otherwise not tell them apart.";
|
|
239
|
+
};
|
|
240
|
+
readonly memberVmcId: {
|
|
241
|
+
readonly type: readonly ["string", "null"];
|
|
242
|
+
readonly description: "`id` of the member-issued reciprocal membership credential — the member half of the pair — once the member has sent it. Absent until then, which is the useful signal: it distinguishes a membership the community has asserted from one the member has acknowledged. The credential body is not echoed here.";
|
|
243
|
+
};
|
|
244
|
+
readonly memberVmcReceivedAt: {
|
|
245
|
+
readonly type: readonly ["string", "null"];
|
|
246
|
+
readonly format: "date-time";
|
|
247
|
+
readonly description: "When that reciprocal credential was received. Paired with `memberVmcId`.";
|
|
248
|
+
};
|
|
207
249
|
readonly extensions: {
|
|
208
250
|
readonly type: "object";
|
|
209
251
|
readonly description: "Opaque community-defined extension bag. Keys are maintainer-defined; the maintainer caps its size (16 KiB in the reference implementation).";
|
|
@@ -300,6 +342,28 @@ export declare const RESPONSE_PAYLOAD_SCHEMA: {
|
|
|
300
342
|
readonly type: readonly ["string", "null"];
|
|
301
343
|
readonly description: "Id of the member's current role Verifiable Endorsement Credential, if issued.";
|
|
302
344
|
};
|
|
345
|
+
readonly personhood: {
|
|
346
|
+
readonly type: "boolean";
|
|
347
|
+
readonly description: "Whether the community has asserted that this member is a distinct real person. Read-only here: it is set and cleared by the personhood verbs, and cleared by a renewal-policy downgrade. Load-bearing rather than informational — a community that recognises members of another community may gate on it, so a consumer that cannot read it cannot make that decision.";
|
|
348
|
+
};
|
|
349
|
+
readonly personhoodAssertedAt: {
|
|
350
|
+
readonly type: readonly ["string", "null"];
|
|
351
|
+
readonly format: "date-time";
|
|
352
|
+
readonly description: "When personhood was most recently asserted. Absent where it never has been. Operator-facing: it belongs on admin-gated reads, and a member's own view of themselves need carry only the flag.";
|
|
353
|
+
};
|
|
354
|
+
readonly joinedViaInvitation: {
|
|
355
|
+
readonly type: "boolean";
|
|
356
|
+
readonly description: "Whether this member joined by presenting an invitation credential rather than by an admin's decision on an open request. The two routes to membership carry different evidence, and an operator reviewing a roster can otherwise not tell them apart.";
|
|
357
|
+
};
|
|
358
|
+
readonly memberVmcId: {
|
|
359
|
+
readonly type: readonly ["string", "null"];
|
|
360
|
+
readonly description: "`id` of the member-issued reciprocal membership credential — the member half of the pair — once the member has sent it. Absent until then, which is the useful signal: it distinguishes a membership the community has asserted from one the member has acknowledged. The credential body is not echoed here.";
|
|
361
|
+
};
|
|
362
|
+
readonly memberVmcReceivedAt: {
|
|
363
|
+
readonly type: readonly ["string", "null"];
|
|
364
|
+
readonly format: "date-time";
|
|
365
|
+
readonly description: "When that reciprocal credential was received. Paired with `memberVmcId`.";
|
|
366
|
+
};
|
|
303
367
|
readonly extensions: {
|
|
304
368
|
readonly type: "object";
|
|
305
369
|
readonly description: "Opaque community-defined extension bag. Keys are maintainer-defined; the maintainer caps its size (16 KiB in the reference implementation).";
|
|
@@ -429,6 +493,28 @@ export declare const SPEC: {
|
|
|
429
493
|
readonly type: readonly ["string", "null"];
|
|
430
494
|
readonly description: "Id of the member's current role Verifiable Endorsement Credential, if issued.";
|
|
431
495
|
};
|
|
496
|
+
readonly personhood: {
|
|
497
|
+
readonly type: "boolean";
|
|
498
|
+
readonly description: "Whether the community has asserted that this member is a distinct real person. Read-only here: it is set and cleared by the personhood verbs, and cleared by a renewal-policy downgrade. Load-bearing rather than informational — a community that recognises members of another community may gate on it, so a consumer that cannot read it cannot make that decision.";
|
|
499
|
+
};
|
|
500
|
+
readonly personhoodAssertedAt: {
|
|
501
|
+
readonly type: readonly ["string", "null"];
|
|
502
|
+
readonly format: "date-time";
|
|
503
|
+
readonly description: "When personhood was most recently asserted. Absent where it never has been. Operator-facing: it belongs on admin-gated reads, and a member's own view of themselves need carry only the flag.";
|
|
504
|
+
};
|
|
505
|
+
readonly joinedViaInvitation: {
|
|
506
|
+
readonly type: "boolean";
|
|
507
|
+
readonly description: "Whether this member joined by presenting an invitation credential rather than by an admin's decision on an open request. The two routes to membership carry different evidence, and an operator reviewing a roster can otherwise not tell them apart.";
|
|
508
|
+
};
|
|
509
|
+
readonly memberVmcId: {
|
|
510
|
+
readonly type: readonly ["string", "null"];
|
|
511
|
+
readonly description: "`id` of the member-issued reciprocal membership credential — the member half of the pair — once the member has sent it. Absent until then, which is the useful signal: it distinguishes a membership the community has asserted from one the member has acknowledged. The credential body is not echoed here.";
|
|
512
|
+
};
|
|
513
|
+
readonly memberVmcReceivedAt: {
|
|
514
|
+
readonly type: readonly ["string", "null"];
|
|
515
|
+
readonly format: "date-time";
|
|
516
|
+
readonly description: "When that reciprocal credential was received. Paired with `memberVmcId`.";
|
|
517
|
+
};
|
|
432
518
|
readonly extensions: {
|
|
433
519
|
readonly type: "object";
|
|
434
520
|
readonly description: "Opaque community-defined extension bag. Keys are maintainer-defined; the maintainer caps its size (16 KiB in the reference implementation).";
|
|
@@ -535,6 +621,28 @@ export declare const RESPONSE_SPEC: {
|
|
|
535
621
|
readonly type: readonly ["string", "null"];
|
|
536
622
|
readonly description: "Id of the member's current role Verifiable Endorsement Credential, if issued.";
|
|
537
623
|
};
|
|
624
|
+
readonly personhood: {
|
|
625
|
+
readonly type: "boolean";
|
|
626
|
+
readonly description: "Whether the community has asserted that this member is a distinct real person. Read-only here: it is set and cleared by the personhood verbs, and cleared by a renewal-policy downgrade. Load-bearing rather than informational — a community that recognises members of another community may gate on it, so a consumer that cannot read it cannot make that decision.";
|
|
627
|
+
};
|
|
628
|
+
readonly personhoodAssertedAt: {
|
|
629
|
+
readonly type: readonly ["string", "null"];
|
|
630
|
+
readonly format: "date-time";
|
|
631
|
+
readonly description: "When personhood was most recently asserted. Absent where it never has been. Operator-facing: it belongs on admin-gated reads, and a member's own view of themselves need carry only the flag.";
|
|
632
|
+
};
|
|
633
|
+
readonly joinedViaInvitation: {
|
|
634
|
+
readonly type: "boolean";
|
|
635
|
+
readonly description: "Whether this member joined by presenting an invitation credential rather than by an admin's decision on an open request. The two routes to membership carry different evidence, and an operator reviewing a roster can otherwise not tell them apart.";
|
|
636
|
+
};
|
|
637
|
+
readonly memberVmcId: {
|
|
638
|
+
readonly type: readonly ["string", "null"];
|
|
639
|
+
readonly description: "`id` of the member-issued reciprocal membership credential — the member half of the pair — once the member has sent it. Absent until then, which is the useful signal: it distinguishes a membership the community has asserted from one the member has acknowledged. The credential body is not echoed here.";
|
|
640
|
+
};
|
|
641
|
+
readonly memberVmcReceivedAt: {
|
|
642
|
+
readonly type: readonly ["string", "null"];
|
|
643
|
+
readonly format: "date-time";
|
|
644
|
+
readonly description: "When that reciprocal credential was received. Paired with `memberVmcId`.";
|
|
645
|
+
};
|
|
538
646
|
readonly extensions: {
|
|
539
647
|
readonly type: "object";
|
|
540
648
|
readonly description: "Opaque community-defined extension bag. Keys are maintainer-defined; the maintainer caps its size (16 KiB in the reference implementation).";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"payload.d.ts","sourceRoot":"","sources":["../../../../../src/vtc/members/list/0.1/payload.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,MAAM,WAAW,qBAAqB;IACpC;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB;;OAEG;IACH,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,GAAG,CAAC,EAAE,GAAG,CAAC;CACX;AACD;;GAEG;AACH,MAAM,WAAW,GAAG;IAClB,CAAC,CAAC,EAAE,MAAM,GAAG,OAAO,GAAG,SAAS,CAAC;CAClC;AACD,MAAM,WAAW,6BAA6B;IAC5C,KAAK,EAAE,cAAc,EAAE,CAAC;IACxB;;OAEG;IACH,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B;;OAEG;IACH,aAAa,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC9B,GAAG,CAAC,EAAE,GAAG,CAAC;CACX;AACD;;GAEG;AACH,MAAM,WAAW,cAAc;IAC7B;;OAEG;IACH,GAAG,EAAE,MAAM,CAAC;IACZ;;OAEG;IACH,IAAI,EAAE,MAAM,CAAC;IACb;;OAEG;IACH,KAAK,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACtB,QAAQ,EAAE,MAAM,CAAC;IACjB;;OAEG;IACH,cAAc,EAAE,OAAO,CAAC;IACxB;;OAEG;IACH,mBAAmB,EAAE,OAAO,GAAG,WAAW,GAAG,YAAY,GAAG,eAAe,CAAC;IAC5E;;OAEG;IACH,eAAe,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAChC;;OAEG;IACH,YAAY,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC7B;;OAEG;IACH,gBAAgB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACjC;;OAEG;IACH,UAAU,EAAE,EAAE,CAAC;CAChB;AAED,2BAA2B;AAC3B,eAAO,MAAM,QAAQ,EAAG,kDAA2D,CAAC;AAEpF,mEAAmE;AACnE,MAAM,MAAM,OAAO,GAAG,qBAAqB,CAAC;AAE5C,qEAAqE;AACrE,eAAO,MAAM,iBAAiB,EAAG,2DAAoE,CAAC;AAEtG,4EAA4E;AAC5E,MAAM,MAAM,QAAQ,GAAG,6BAA6B,CAAC;AAErD;;;;;;;;GAQG;AACH,eAAO,MAAM,cAAc
|
|
1
|
+
{"version":3,"file":"payload.d.ts","sourceRoot":"","sources":["../../../../../src/vtc/members/list/0.1/payload.ts"],"names":[],"mappings":"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"}
|
|
@@ -157,6 +157,37 @@ export const PAYLOAD_SCHEMA = {
|
|
|
157
157
|
],
|
|
158
158
|
"description": "Id of the member's current role Verifiable Endorsement Credential, if issued."
|
|
159
159
|
},
|
|
160
|
+
"personhood": {
|
|
161
|
+
"type": "boolean",
|
|
162
|
+
"description": "Whether the community has asserted that this member is a distinct real person. Read-only here: it is set and cleared by the personhood verbs, and cleared by a renewal-policy downgrade. Load-bearing rather than informational — a community that recognises members of another community may gate on it, so a consumer that cannot read it cannot make that decision."
|
|
163
|
+
},
|
|
164
|
+
"personhoodAssertedAt": {
|
|
165
|
+
"type": [
|
|
166
|
+
"string",
|
|
167
|
+
"null"
|
|
168
|
+
],
|
|
169
|
+
"format": "date-time",
|
|
170
|
+
"description": "When personhood was most recently asserted. Absent where it never has been. Operator-facing: it belongs on admin-gated reads, and a member's own view of themselves need carry only the flag."
|
|
171
|
+
},
|
|
172
|
+
"joinedViaInvitation": {
|
|
173
|
+
"type": "boolean",
|
|
174
|
+
"description": "Whether this member joined by presenting an invitation credential rather than by an admin's decision on an open request. The two routes to membership carry different evidence, and an operator reviewing a roster can otherwise not tell them apart."
|
|
175
|
+
},
|
|
176
|
+
"memberVmcId": {
|
|
177
|
+
"type": [
|
|
178
|
+
"string",
|
|
179
|
+
"null"
|
|
180
|
+
],
|
|
181
|
+
"description": "`id` of the member-issued reciprocal membership credential — the member half of the pair — once the member has sent it. Absent until then, which is the useful signal: it distinguishes a membership the community has asserted from one the member has acknowledged. The credential body is not echoed here."
|
|
182
|
+
},
|
|
183
|
+
"memberVmcReceivedAt": {
|
|
184
|
+
"type": [
|
|
185
|
+
"string",
|
|
186
|
+
"null"
|
|
187
|
+
],
|
|
188
|
+
"format": "date-time",
|
|
189
|
+
"description": "When that reciprocal credential was received. Paired with `memberVmcId`."
|
|
190
|
+
},
|
|
160
191
|
"extensions": {
|
|
161
192
|
"type": "object",
|
|
162
193
|
"description": "Opaque community-defined extension bag. Keys are maintainer-defined; the maintainer caps its size (16 KiB in the reference implementation)."
|
|
@@ -285,6 +316,37 @@ export const RESPONSE_PAYLOAD_SCHEMA = {
|
|
|
285
316
|
],
|
|
286
317
|
"description": "Id of the member's current role Verifiable Endorsement Credential, if issued."
|
|
287
318
|
},
|
|
319
|
+
"personhood": {
|
|
320
|
+
"type": "boolean",
|
|
321
|
+
"description": "Whether the community has asserted that this member is a distinct real person. Read-only here: it is set and cleared by the personhood verbs, and cleared by a renewal-policy downgrade. Load-bearing rather than informational — a community that recognises members of another community may gate on it, so a consumer that cannot read it cannot make that decision."
|
|
322
|
+
},
|
|
323
|
+
"personhoodAssertedAt": {
|
|
324
|
+
"type": [
|
|
325
|
+
"string",
|
|
326
|
+
"null"
|
|
327
|
+
],
|
|
328
|
+
"format": "date-time",
|
|
329
|
+
"description": "When personhood was most recently asserted. Absent where it never has been. Operator-facing: it belongs on admin-gated reads, and a member's own view of themselves need carry only the flag."
|
|
330
|
+
},
|
|
331
|
+
"joinedViaInvitation": {
|
|
332
|
+
"type": "boolean",
|
|
333
|
+
"description": "Whether this member joined by presenting an invitation credential rather than by an admin's decision on an open request. The two routes to membership carry different evidence, and an operator reviewing a roster can otherwise not tell them apart."
|
|
334
|
+
},
|
|
335
|
+
"memberVmcId": {
|
|
336
|
+
"type": [
|
|
337
|
+
"string",
|
|
338
|
+
"null"
|
|
339
|
+
],
|
|
340
|
+
"description": "`id` of the member-issued reciprocal membership credential — the member half of the pair — once the member has sent it. Absent until then, which is the useful signal: it distinguishes a membership the community has asserted from one the member has acknowledged. The credential body is not echoed here."
|
|
341
|
+
},
|
|
342
|
+
"memberVmcReceivedAt": {
|
|
343
|
+
"type": [
|
|
344
|
+
"string",
|
|
345
|
+
"null"
|
|
346
|
+
],
|
|
347
|
+
"format": "date-time",
|
|
348
|
+
"description": "When that reciprocal credential was received. Paired with `memberVmcId`."
|
|
349
|
+
},
|
|
288
350
|
"extensions": {
|
|
289
351
|
"type": "object",
|
|
290
352
|
"description": "Opaque community-defined extension bag. Keys are maintainer-defined; the maintainer caps its size (16 KiB in the reference implementation)."
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"payload.js","sourceRoot":"","sources":["../../../../../src/vtc/members/list/0.1/payload.ts"],"names":[],"mappings":"AAAA;;;GAGG;
|
|
1
|
+
{"version":3,"file":"payload.js","sourceRoot":"","sources":["../../../../../src/vtc/members/list/0.1/payload.ts"],"names":[],"mappings":"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"}
|
|
@@ -56,6 +56,26 @@ export interface MemberResponse {
|
|
|
56
56
|
* Id of the member's current role Verifiable Endorsement Credential, if issued.
|
|
57
57
|
*/
|
|
58
58
|
currentRoleVecId?: string | null;
|
|
59
|
+
/**
|
|
60
|
+
* Whether the community has asserted that this member is a distinct real person. Read-only here: it is set and cleared by the personhood verbs, and cleared by a renewal-policy downgrade. Load-bearing rather than informational — a community that recognises members of another community may gate on it, so a consumer that cannot read it cannot make that decision.
|
|
61
|
+
*/
|
|
62
|
+
personhood?: boolean;
|
|
63
|
+
/**
|
|
64
|
+
* When personhood was most recently asserted. Absent where it never has been. Operator-facing: it belongs on admin-gated reads, and a member's own view of themselves need carry only the flag.
|
|
65
|
+
*/
|
|
66
|
+
personhoodAssertedAt?: string | null;
|
|
67
|
+
/**
|
|
68
|
+
* Whether this member joined by presenting an invitation credential rather than by an admin's decision on an open request. The two routes to membership carry different evidence, and an operator reviewing a roster can otherwise not tell them apart.
|
|
69
|
+
*/
|
|
70
|
+
joinedViaInvitation?: boolean;
|
|
71
|
+
/**
|
|
72
|
+
* `id` of the member-issued reciprocal membership credential — the member half of the pair — once the member has sent it. Absent until then, which is the useful signal: it distinguishes a membership the community has asserted from one the member has acknowledged. The credential body is not echoed here.
|
|
73
|
+
*/
|
|
74
|
+
memberVmcId?: string | null;
|
|
75
|
+
/**
|
|
76
|
+
* When that reciprocal credential was received. Paired with `memberVmcId`.
|
|
77
|
+
*/
|
|
78
|
+
memberVmcReceivedAt?: string | null;
|
|
59
79
|
/**
|
|
60
80
|
* Opaque community-defined extension bag. Keys are maintainer-defined; the maintainer caps its size (16 KiB in the reference implementation).
|
|
61
81
|
*/
|
|
@@ -168,6 +188,28 @@ export declare const PAYLOAD_SCHEMA: {
|
|
|
168
188
|
readonly type: readonly ["string", "null"];
|
|
169
189
|
readonly description: "Id of the member's current role Verifiable Endorsement Credential, if issued.";
|
|
170
190
|
};
|
|
191
|
+
readonly personhood: {
|
|
192
|
+
readonly type: "boolean";
|
|
193
|
+
readonly description: "Whether the community has asserted that this member is a distinct real person. Read-only here: it is set and cleared by the personhood verbs, and cleared by a renewal-policy downgrade. Load-bearing rather than informational — a community that recognises members of another community may gate on it, so a consumer that cannot read it cannot make that decision.";
|
|
194
|
+
};
|
|
195
|
+
readonly personhoodAssertedAt: {
|
|
196
|
+
readonly type: readonly ["string", "null"];
|
|
197
|
+
readonly format: "date-time";
|
|
198
|
+
readonly description: "When personhood was most recently asserted. Absent where it never has been. Operator-facing: it belongs on admin-gated reads, and a member's own view of themselves need carry only the flag.";
|
|
199
|
+
};
|
|
200
|
+
readonly joinedViaInvitation: {
|
|
201
|
+
readonly type: "boolean";
|
|
202
|
+
readonly description: "Whether this member joined by presenting an invitation credential rather than by an admin's decision on an open request. The two routes to membership carry different evidence, and an operator reviewing a roster can otherwise not tell them apart.";
|
|
203
|
+
};
|
|
204
|
+
readonly memberVmcId: {
|
|
205
|
+
readonly type: readonly ["string", "null"];
|
|
206
|
+
readonly description: "`id` of the member-issued reciprocal membership credential — the member half of the pair — once the member has sent it. Absent until then, which is the useful signal: it distinguishes a membership the community has asserted from one the member has acknowledged. The credential body is not echoed here.";
|
|
207
|
+
};
|
|
208
|
+
readonly memberVmcReceivedAt: {
|
|
209
|
+
readonly type: readonly ["string", "null"];
|
|
210
|
+
readonly format: "date-time";
|
|
211
|
+
readonly description: "When that reciprocal credential was received. Paired with `memberVmcId`.";
|
|
212
|
+
};
|
|
171
213
|
readonly extensions: {
|
|
172
214
|
readonly type: "object";
|
|
173
215
|
readonly description: "Opaque community-defined extension bag. Keys are maintainer-defined; the maintainer caps its size (16 KiB in the reference implementation).";
|
|
@@ -253,6 +295,28 @@ export declare const RESPONSE_PAYLOAD_SCHEMA: {
|
|
|
253
295
|
readonly type: readonly ["string", "null"];
|
|
254
296
|
readonly description: "Id of the member's current role Verifiable Endorsement Credential, if issued.";
|
|
255
297
|
};
|
|
298
|
+
readonly personhood: {
|
|
299
|
+
readonly type: "boolean";
|
|
300
|
+
readonly description: "Whether the community has asserted that this member is a distinct real person. Read-only here: it is set and cleared by the personhood verbs, and cleared by a renewal-policy downgrade. Load-bearing rather than informational — a community that recognises members of another community may gate on it, so a consumer that cannot read it cannot make that decision.";
|
|
301
|
+
};
|
|
302
|
+
readonly personhoodAssertedAt: {
|
|
303
|
+
readonly type: readonly ["string", "null"];
|
|
304
|
+
readonly format: "date-time";
|
|
305
|
+
readonly description: "When personhood was most recently asserted. Absent where it never has been. Operator-facing: it belongs on admin-gated reads, and a member's own view of themselves need carry only the flag.";
|
|
306
|
+
};
|
|
307
|
+
readonly joinedViaInvitation: {
|
|
308
|
+
readonly type: "boolean";
|
|
309
|
+
readonly description: "Whether this member joined by presenting an invitation credential rather than by an admin's decision on an open request. The two routes to membership carry different evidence, and an operator reviewing a roster can otherwise not tell them apart.";
|
|
310
|
+
};
|
|
311
|
+
readonly memberVmcId: {
|
|
312
|
+
readonly type: readonly ["string", "null"];
|
|
313
|
+
readonly description: "`id` of the member-issued reciprocal membership credential — the member half of the pair — once the member has sent it. Absent until then, which is the useful signal: it distinguishes a membership the community has asserted from one the member has acknowledged. The credential body is not echoed here.";
|
|
314
|
+
};
|
|
315
|
+
readonly memberVmcReceivedAt: {
|
|
316
|
+
readonly type: readonly ["string", "null"];
|
|
317
|
+
readonly format: "date-time";
|
|
318
|
+
readonly description: "When that reciprocal credential was received. Paired with `memberVmcId`.";
|
|
319
|
+
};
|
|
256
320
|
readonly extensions: {
|
|
257
321
|
readonly type: "object";
|
|
258
322
|
readonly description: "Opaque community-defined extension bag. Keys are maintainer-defined; the maintainer caps its size (16 KiB in the reference implementation).";
|
|
@@ -362,6 +426,28 @@ export declare const SPEC: {
|
|
|
362
426
|
readonly type: readonly ["string", "null"];
|
|
363
427
|
readonly description: "Id of the member's current role Verifiable Endorsement Credential, if issued.";
|
|
364
428
|
};
|
|
429
|
+
readonly personhood: {
|
|
430
|
+
readonly type: "boolean";
|
|
431
|
+
readonly description: "Whether the community has asserted that this member is a distinct real person. Read-only here: it is set and cleared by the personhood verbs, and cleared by a renewal-policy downgrade. Load-bearing rather than informational — a community that recognises members of another community may gate on it, so a consumer that cannot read it cannot make that decision.";
|
|
432
|
+
};
|
|
433
|
+
readonly personhoodAssertedAt: {
|
|
434
|
+
readonly type: readonly ["string", "null"];
|
|
435
|
+
readonly format: "date-time";
|
|
436
|
+
readonly description: "When personhood was most recently asserted. Absent where it never has been. Operator-facing: it belongs on admin-gated reads, and a member's own view of themselves need carry only the flag.";
|
|
437
|
+
};
|
|
438
|
+
readonly joinedViaInvitation: {
|
|
439
|
+
readonly type: "boolean";
|
|
440
|
+
readonly description: "Whether this member joined by presenting an invitation credential rather than by an admin's decision on an open request. The two routes to membership carry different evidence, and an operator reviewing a roster can otherwise not tell them apart.";
|
|
441
|
+
};
|
|
442
|
+
readonly memberVmcId: {
|
|
443
|
+
readonly type: readonly ["string", "null"];
|
|
444
|
+
readonly description: "`id` of the member-issued reciprocal membership credential — the member half of the pair — once the member has sent it. Absent until then, which is the useful signal: it distinguishes a membership the community has asserted from one the member has acknowledged. The credential body is not echoed here.";
|
|
445
|
+
};
|
|
446
|
+
readonly memberVmcReceivedAt: {
|
|
447
|
+
readonly type: readonly ["string", "null"];
|
|
448
|
+
readonly format: "date-time";
|
|
449
|
+
readonly description: "When that reciprocal credential was received. Paired with `memberVmcId`.";
|
|
450
|
+
};
|
|
365
451
|
readonly extensions: {
|
|
366
452
|
readonly type: "object";
|
|
367
453
|
readonly description: "Opaque community-defined extension bag. Keys are maintainer-defined; the maintainer caps its size (16 KiB in the reference implementation).";
|
|
@@ -457,6 +543,28 @@ export declare const RESPONSE_SPEC: {
|
|
|
457
543
|
readonly type: readonly ["string", "null"];
|
|
458
544
|
readonly description: "Id of the member's current role Verifiable Endorsement Credential, if issued.";
|
|
459
545
|
};
|
|
546
|
+
readonly personhood: {
|
|
547
|
+
readonly type: "boolean";
|
|
548
|
+
readonly description: "Whether the community has asserted that this member is a distinct real person. Read-only here: it is set and cleared by the personhood verbs, and cleared by a renewal-policy downgrade. Load-bearing rather than informational — a community that recognises members of another community may gate on it, so a consumer that cannot read it cannot make that decision.";
|
|
549
|
+
};
|
|
550
|
+
readonly personhoodAssertedAt: {
|
|
551
|
+
readonly type: readonly ["string", "null"];
|
|
552
|
+
readonly format: "date-time";
|
|
553
|
+
readonly description: "When personhood was most recently asserted. Absent where it never has been. Operator-facing: it belongs on admin-gated reads, and a member's own view of themselves need carry only the flag.";
|
|
554
|
+
};
|
|
555
|
+
readonly joinedViaInvitation: {
|
|
556
|
+
readonly type: "boolean";
|
|
557
|
+
readonly description: "Whether this member joined by presenting an invitation credential rather than by an admin's decision on an open request. The two routes to membership carry different evidence, and an operator reviewing a roster can otherwise not tell them apart.";
|
|
558
|
+
};
|
|
559
|
+
readonly memberVmcId: {
|
|
560
|
+
readonly type: readonly ["string", "null"];
|
|
561
|
+
readonly description: "`id` of the member-issued reciprocal membership credential — the member half of the pair — once the member has sent it. Absent until then, which is the useful signal: it distinguishes a membership the community has asserted from one the member has acknowledged. The credential body is not echoed here.";
|
|
562
|
+
};
|
|
563
|
+
readonly memberVmcReceivedAt: {
|
|
564
|
+
readonly type: readonly ["string", "null"];
|
|
565
|
+
readonly format: "date-time";
|
|
566
|
+
readonly description: "When that reciprocal credential was received. Paired with `memberVmcId`.";
|
|
567
|
+
};
|
|
460
568
|
readonly extensions: {
|
|
461
569
|
readonly type: "object";
|
|
462
570
|
readonly description: "Opaque community-defined extension bag. Keys are maintainer-defined; the maintainer caps its size (16 KiB in the reference implementation).";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"payload.d.ts","sourceRoot":"","sources":["../../../../../src/vtc/members/show/0.1/payload.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,MAAM,WAAW,qBAAqB;IACpC;;OAEG;IACH,GAAG,EAAE,MAAM,CAAC;IACZ,GAAG,CAAC,EAAE,GAAG,CAAC;CACX;AACD;;GAEG;AACH,MAAM,WAAW,GAAG;IAClB,CAAC,CAAC,EAAE,MAAM,GAAG,OAAO,GAAG,SAAS,CAAC;CAClC;AACD,MAAM,WAAW,6BAA6B;IAC5C,MAAM,EAAE,cAAc,CAAC;IACvB,GAAG,CAAC,EAAE,GAAG,CAAC;CACX;AACD;;GAEG;AACH,MAAM,WAAW,cAAc;IAC7B;;OAEG;IACH,GAAG,EAAE,MAAM,CAAC;IACZ;;OAEG;IACH,IAAI,EAAE,MAAM,CAAC;IACb;;OAEG;IACH,KAAK,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACtB,QAAQ,EAAE,MAAM,CAAC;IACjB;;OAEG;IACH,cAAc,EAAE,OAAO,CAAC;IACxB;;OAEG;IACH,mBAAmB,EAAE,OAAO,GAAG,WAAW,GAAG,YAAY,GAAG,eAAe,CAAC;IAC5E;;OAEG;IACH,eAAe,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAChC;;OAEG;IACH,YAAY,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC7B;;OAEG;IACH,gBAAgB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACjC;;OAEG;IACH,UAAU,EAAE,EAAE,CAAC;CAChB;AAED,2BAA2B;AAC3B,eAAO,MAAM,QAAQ,EAAG,kDAA2D,CAAC;AAEpF,mEAAmE;AACnE,MAAM,MAAM,OAAO,GAAG,qBAAqB,CAAC;AAE5C,qEAAqE;AACrE,eAAO,MAAM,iBAAiB,EAAG,2DAAoE,CAAC;AAEtG,4EAA4E;AAC5E,MAAM,MAAM,QAAQ,GAAG,6BAA6B,CAAC;AAErD;;;;;;;;GAQG;AACH,eAAO,MAAM,cAAc
|
|
1
|
+
{"version":3,"file":"payload.d.ts","sourceRoot":"","sources":["../../../../../src/vtc/members/show/0.1/payload.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,MAAM,WAAW,qBAAqB;IACpC;;OAEG;IACH,GAAG,EAAE,MAAM,CAAC;IACZ,GAAG,CAAC,EAAE,GAAG,CAAC;CACX;AACD;;GAEG;AACH,MAAM,WAAW,GAAG;IAClB,CAAC,CAAC,EAAE,MAAM,GAAG,OAAO,GAAG,SAAS,CAAC;CAClC;AACD,MAAM,WAAW,6BAA6B;IAC5C,MAAM,EAAE,cAAc,CAAC;IACvB,GAAG,CAAC,EAAE,GAAG,CAAC;CACX;AACD;;GAEG;AACH,MAAM,WAAW,cAAc;IAC7B;;OAEG;IACH,GAAG,EAAE,MAAM,CAAC;IACZ;;OAEG;IACH,IAAI,EAAE,MAAM,CAAC;IACb;;OAEG;IACH,KAAK,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACtB,QAAQ,EAAE,MAAM,CAAC;IACjB;;OAEG;IACH,cAAc,EAAE,OAAO,CAAC;IACxB;;OAEG;IACH,mBAAmB,EAAE,OAAO,GAAG,WAAW,GAAG,YAAY,GAAG,eAAe,CAAC;IAC5E;;OAEG;IACH,eAAe,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAChC;;OAEG;IACH,YAAY,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC7B;;OAEG;IACH,gBAAgB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACjC;;OAEG;IACH,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB;;OAEG;IACH,oBAAoB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACrC;;OAEG;IACH,mBAAmB,CAAC,EAAE,OAAO,CAAC;IAC9B;;OAEG;IACH,WAAW,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC5B;;OAEG;IACH,mBAAmB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACpC;;OAEG;IACH,UAAU,EAAE,EAAE,CAAC;CAChB;AAED,2BAA2B;AAC3B,eAAO,MAAM,QAAQ,EAAG,kDAA2D,CAAC;AAEpF,mEAAmE;AACnE,MAAM,MAAM,OAAO,GAAG,qBAAqB,CAAC;AAE5C,qEAAqE;AACrE,eAAO,MAAM,iBAAiB,EAAG,2DAAoE,CAAC;AAEtG,4EAA4E;AAC5E,MAAM,MAAM,QAAQ,GAAG,6BAA6B,CAAC;AAErD;;;;;;;;GAQG;AACH,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA4JjB,CAAC;AAEX,mEAAmE;AACnE,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA4I1B,CAAC;AAEX;;;;;GAKG;AACH,eAAO,MAAM,IAAI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMP,CAAC;AAEX;;;;GAIG;AACH,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMhB,CAAC"}
|