@openvtc/trust-tasks 0.12.7 → 0.12.8
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/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/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
|
@@ -29,6 +29,10 @@ export interface EndorsementType {
|
|
|
29
29
|
*/
|
|
30
30
|
claimSchema?: {};
|
|
31
31
|
createdAt?: string;
|
|
32
|
+
/**
|
|
33
|
+
* The member who registered this endorsement type. An endorsement vocabulary is community-defined and shapes what every later endorsement can claim, so who introduced a type is audit-relevant in a way its creation time alone is not.
|
|
34
|
+
*/
|
|
35
|
+
createdByDid?: string;
|
|
32
36
|
}
|
|
33
37
|
/** Trust Task type URI. */
|
|
34
38
|
export declare const TYPE_URI: "https://trusttasks.org/spec/vtc/endorsement-types/list/0.1";
|
|
@@ -123,6 +127,10 @@ export declare const PAYLOAD_SCHEMA: {
|
|
|
123
127
|
readonly type: "string";
|
|
124
128
|
readonly format: "date-time";
|
|
125
129
|
};
|
|
130
|
+
readonly createdByDid: {
|
|
131
|
+
readonly type: "string";
|
|
132
|
+
readonly description: "The member who registered this endorsement type. An endorsement vocabulary is community-defined and shapes what every later endorsement can claim, so who introduced a type is audit-relevant in a way its creation time alone is not.";
|
|
133
|
+
};
|
|
126
134
|
};
|
|
127
135
|
};
|
|
128
136
|
};
|
|
@@ -188,6 +196,10 @@ export declare const RESPONSE_PAYLOAD_SCHEMA: {
|
|
|
188
196
|
readonly type: "string";
|
|
189
197
|
readonly format: "date-time";
|
|
190
198
|
};
|
|
199
|
+
readonly createdByDid: {
|
|
200
|
+
readonly type: "string";
|
|
201
|
+
readonly description: "The member who registered this endorsement type. An endorsement vocabulary is community-defined and shapes what every later endorsement can claim, so who introduced a type is audit-relevant in a way its creation time alone is not.";
|
|
202
|
+
};
|
|
191
203
|
};
|
|
192
204
|
};
|
|
193
205
|
};
|
|
@@ -279,6 +291,10 @@ export declare const SPEC: {
|
|
|
279
291
|
readonly type: "string";
|
|
280
292
|
readonly format: "date-time";
|
|
281
293
|
};
|
|
294
|
+
readonly createdByDid: {
|
|
295
|
+
readonly type: "string";
|
|
296
|
+
readonly description: "The member who registered this endorsement type. An endorsement vocabulary is community-defined and shapes what every later endorsement can claim, so who introduced a type is audit-relevant in a way its creation time alone is not.";
|
|
297
|
+
};
|
|
282
298
|
};
|
|
283
299
|
};
|
|
284
300
|
};
|
|
@@ -354,6 +370,10 @@ export declare const RESPONSE_SPEC: {
|
|
|
354
370
|
readonly type: "string";
|
|
355
371
|
readonly format: "date-time";
|
|
356
372
|
};
|
|
373
|
+
readonly createdByDid: {
|
|
374
|
+
readonly type: "string";
|
|
375
|
+
readonly description: "The member who registered this endorsement type. An endorsement vocabulary is community-defined and shapes what every later endorsement can claim, so who introduced a type is audit-relevant in a way its creation time alone is not.";
|
|
376
|
+
};
|
|
357
377
|
};
|
|
358
378
|
};
|
|
359
379
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"payload.d.ts","sourceRoot":"","sources":["../../../../../src/vtc/endorsement-types/list/0.1/payload.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,MAAM,WAAW,8BAA8B;IAC7C,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,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,sCAAsC;IACrD,KAAK,EAAE,eAAe,EAAE,CAAC;IACzB,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B,GAAG,CAAC,EAAE,GAAG,CAAC;CACX;AACD,MAAM,WAAW,eAAe;IAC9B;;OAEG;IACH,OAAO,EAAE,MAAM,CAAC;IAChB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB;;OAEG;IACH,WAAW,CAAC,EAAE,EAAE,CAAC;IACjB,SAAS,CAAC,EAAE,MAAM,CAAC;
|
|
1
|
+
{"version":3,"file":"payload.d.ts","sourceRoot":"","sources":["../../../../../src/vtc/endorsement-types/list/0.1/payload.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,MAAM,WAAW,8BAA8B;IAC7C,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,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,sCAAsC;IACrD,KAAK,EAAE,eAAe,EAAE,CAAC;IACzB,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B,GAAG,CAAC,EAAE,GAAG,CAAC;CACX;AACD,MAAM,WAAW,eAAe;IAC9B;;OAEG;IACH,OAAO,EAAE,MAAM,CAAC;IAChB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB;;OAEG;IACH,WAAW,CAAC,EAAE,EAAE,CAAC;IACjB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB;;OAEG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;CACvB;AAED,2BAA2B;AAC3B,eAAO,MAAM,QAAQ,EAAG,4DAAqE,CAAC;AAE9F,mEAAmE;AACnE,MAAM,MAAM,OAAO,GAAG,8BAA8B,CAAC;AAErD,qEAAqE;AACrE,eAAO,MAAM,iBAAiB,EAAG,qEAA8E,CAAC;AAEhH,4EAA4E;AAC5E,MAAM,MAAM,QAAQ,GAAG,sCAAsC,CAAC;AAE9D;;;;;;;;GAQG;AACH,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA0FjB,CAAC;AAEX,mEAAmE;AACnE,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA0E1B,CAAC;AAEX;;;;;GAKG;AACH,eAAO,MAAM,IAAI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMP,CAAC;AAEX;;;;GAIG;AACH,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMhB,CAAC"}
|
|
@@ -97,6 +97,10 @@ export const PAYLOAD_SCHEMA = {
|
|
|
97
97
|
"createdAt": {
|
|
98
98
|
"type": "string",
|
|
99
99
|
"format": "date-time"
|
|
100
|
+
},
|
|
101
|
+
"createdByDid": {
|
|
102
|
+
"type": "string",
|
|
103
|
+
"description": "The member who registered this endorsement type. An endorsement vocabulary is community-defined and shapes what every later endorsement can claim, so who introduced a type is audit-relevant in a way its creation time alone is not."
|
|
100
104
|
}
|
|
101
105
|
}
|
|
102
106
|
}
|
|
@@ -169,6 +173,10 @@ export const RESPONSE_PAYLOAD_SCHEMA = {
|
|
|
169
173
|
"createdAt": {
|
|
170
174
|
"type": "string",
|
|
171
175
|
"format": "date-time"
|
|
176
|
+
},
|
|
177
|
+
"createdByDid": {
|
|
178
|
+
"type": "string",
|
|
179
|
+
"description": "The member who registered this endorsement type. An endorsement vocabulary is community-defined and shapes what every later endorsement can claim, so who introduced a type is audit-relevant in a way its creation time alone is not."
|
|
172
180
|
}
|
|
173
181
|
}
|
|
174
182
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"payload.js","sourceRoot":"","sources":["../../../../../src/vtc/endorsement-types/list/0.1/payload.ts"],"names":[],"mappings":"AAAA;;;GAGG;
|
|
1
|
+
{"version":3,"file":"payload.js","sourceRoot":"","sources":["../../../../../src/vtc/endorsement-types/list/0.1/payload.ts"],"names":[],"mappings":"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"}
|
|
@@ -32,6 +32,10 @@ export interface EndorsementType {
|
|
|
32
32
|
*/
|
|
33
33
|
claimSchema?: {};
|
|
34
34
|
createdAt?: string;
|
|
35
|
+
/**
|
|
36
|
+
* The member who registered this endorsement type. An endorsement vocabulary is community-defined and shapes what every later endorsement can claim, so who introduced a type is audit-relevant in a way its creation time alone is not.
|
|
37
|
+
*/
|
|
38
|
+
createdByDid?: string;
|
|
35
39
|
}
|
|
36
40
|
/** Trust Task type URI. */
|
|
37
41
|
export declare const TYPE_URI: "https://trusttasks.org/spec/vtc/endorsement-types/register/0.1";
|
|
@@ -126,6 +130,10 @@ export declare const PAYLOAD_SCHEMA: {
|
|
|
126
130
|
readonly type: "string";
|
|
127
131
|
readonly format: "date-time";
|
|
128
132
|
};
|
|
133
|
+
readonly createdByDid: {
|
|
134
|
+
readonly type: "string";
|
|
135
|
+
readonly description: "The member who registered this endorsement type. An endorsement vocabulary is community-defined and shapes what every later endorsement can claim, so who introduced a type is audit-relevant in a way its creation time alone is not.";
|
|
136
|
+
};
|
|
129
137
|
};
|
|
130
138
|
};
|
|
131
139
|
};
|
|
@@ -185,6 +193,10 @@ export declare const RESPONSE_PAYLOAD_SCHEMA: {
|
|
|
185
193
|
readonly type: "string";
|
|
186
194
|
readonly format: "date-time";
|
|
187
195
|
};
|
|
196
|
+
readonly createdByDid: {
|
|
197
|
+
readonly type: "string";
|
|
198
|
+
readonly description: "The member who registered this endorsement type. An endorsement vocabulary is community-defined and shapes what every later endorsement can claim, so who introduced a type is audit-relevant in a way its creation time alone is not.";
|
|
199
|
+
};
|
|
188
200
|
};
|
|
189
201
|
};
|
|
190
202
|
};
|
|
@@ -276,6 +288,10 @@ export declare const SPEC: {
|
|
|
276
288
|
readonly type: "string";
|
|
277
289
|
readonly format: "date-time";
|
|
278
290
|
};
|
|
291
|
+
readonly createdByDid: {
|
|
292
|
+
readonly type: "string";
|
|
293
|
+
readonly description: "The member who registered this endorsement type. An endorsement vocabulary is community-defined and shapes what every later endorsement can claim, so who introduced a type is audit-relevant in a way its creation time alone is not.";
|
|
294
|
+
};
|
|
279
295
|
};
|
|
280
296
|
};
|
|
281
297
|
};
|
|
@@ -345,6 +361,10 @@ export declare const RESPONSE_SPEC: {
|
|
|
345
361
|
readonly type: "string";
|
|
346
362
|
readonly format: "date-time";
|
|
347
363
|
};
|
|
364
|
+
readonly createdByDid: {
|
|
365
|
+
readonly type: "string";
|
|
366
|
+
readonly description: "The member who registered this endorsement type. An endorsement vocabulary is community-defined and shapes what every later endorsement can claim, so who introduced a type is audit-relevant in a way its creation time alone is not.";
|
|
367
|
+
};
|
|
348
368
|
};
|
|
349
369
|
};
|
|
350
370
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"payload.d.ts","sourceRoot":"","sources":["../../../../../src/vtc/endorsement-types/register/0.1/payload.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,MAAM,WAAW,kCAAkC;IACjD,OAAO,EAAE,MAAM,CAAC;IAChB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB;;OAEG;IACH,WAAW,CAAC,EAAE,EAAE,CAAC;IACjB,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,0CAA0C;IACzD,eAAe,EAAE,eAAe,CAAC;IACjC,GAAG,CAAC,EAAE,GAAG,CAAC;CACX;AACD,MAAM,WAAW,eAAe;IAC9B;;OAEG;IACH,OAAO,EAAE,MAAM,CAAC;IAChB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB;;OAEG;IACH,WAAW,CAAC,EAAE,EAAE,CAAC;IACjB,SAAS,CAAC,EAAE,MAAM,CAAC;
|
|
1
|
+
{"version":3,"file":"payload.d.ts","sourceRoot":"","sources":["../../../../../src/vtc/endorsement-types/register/0.1/payload.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,MAAM,WAAW,kCAAkC;IACjD,OAAO,EAAE,MAAM,CAAC;IAChB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB;;OAEG;IACH,WAAW,CAAC,EAAE,EAAE,CAAC;IACjB,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,0CAA0C;IACzD,eAAe,EAAE,eAAe,CAAC;IACjC,GAAG,CAAC,EAAE,GAAG,CAAC;CACX;AACD,MAAM,WAAW,eAAe;IAC9B;;OAEG;IACH,OAAO,EAAE,MAAM,CAAC;IAChB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB;;OAEG;IACH,WAAW,CAAC,EAAE,EAAE,CAAC;IACjB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB;;OAEG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;CACvB;AAED,2BAA2B;AAC3B,eAAO,MAAM,QAAQ,EAAG,gEAAyE,CAAC;AAElG,mEAAmE;AACnE,MAAM,MAAM,OAAO,GAAG,kCAAkC,CAAC;AAEzD,qEAAqE;AACrE,eAAO,MAAM,iBAAiB,EAAG,yEAAkF,CAAC;AAEpH,4EAA4E;AAC5E,MAAM,MAAM,QAAQ,GAAG,0CAA0C,CAAC;AAElE;;;;;;;;GAQG;AACH,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAyFjB,CAAC;AAEX,mEAAmE;AACnE,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAiE1B,CAAC;AAEX;;;;;GAKG;AACH,eAAO,MAAM,IAAI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMP,CAAC;AAEX;;;;GAIG;AACH,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMhB,CAAC"}
|
|
@@ -96,6 +96,10 @@ export const PAYLOAD_SCHEMA = {
|
|
|
96
96
|
"createdAt": {
|
|
97
97
|
"type": "string",
|
|
98
98
|
"format": "date-time"
|
|
99
|
+
},
|
|
100
|
+
"createdByDid": {
|
|
101
|
+
"type": "string",
|
|
102
|
+
"description": "The member who registered this endorsement type. An endorsement vocabulary is community-defined and shapes what every later endorsement can claim, so who introduced a type is audit-relevant in a way its creation time alone is not."
|
|
99
103
|
}
|
|
100
104
|
}
|
|
101
105
|
}
|
|
@@ -159,6 +163,10 @@ export const RESPONSE_PAYLOAD_SCHEMA = {
|
|
|
159
163
|
"createdAt": {
|
|
160
164
|
"type": "string",
|
|
161
165
|
"format": "date-time"
|
|
166
|
+
},
|
|
167
|
+
"createdByDid": {
|
|
168
|
+
"type": "string",
|
|
169
|
+
"description": "The member who registered this endorsement type. An endorsement vocabulary is community-defined and shapes what every later endorsement can claim, so who introduced a type is audit-relevant in a way its creation time alone is not."
|
|
162
170
|
}
|
|
163
171
|
}
|
|
164
172
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"payload.js","sourceRoot":"","sources":["../../../../../src/vtc/endorsement-types/register/0.1/payload.ts"],"names":[],"mappings":"AAAA;;;GAGG;
|
|
1
|
+
{"version":3,"file":"payload.js","sourceRoot":"","sources":["../../../../../src/vtc/endorsement-types/register/0.1/payload.ts"],"names":[],"mappings":"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"}
|
|
@@ -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)."
|