@peasant-labs/schema 0.1.2 → 0.1.3
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/internal/generated/contract/zod.gen.d.ts +1047 -0
- package/dist/internal/generated/contract/zod.gen.js +555 -0
- package/dist/internal/generated/enums.gen.d.ts +112 -0
- package/dist/internal/generated/enums.gen.js +124 -0
- package/dist/internal/generated/public-contract.gen.d.ts +2 -2
- package/dist/internal/generated/public-contract.gen.js +1 -1
- package/dist/internal/generated/versions.gen.d.ts +2 -2
- package/dist/internal/generated/versions.gen.js +2 -2
- package/dist/internal/generated/village-api.d.ts +2471 -136
- package/package.json +4 -4
|
@@ -68,6 +68,317 @@ export interface paths {
|
|
|
68
68
|
patch?: never;
|
|
69
69
|
trace?: never;
|
|
70
70
|
};
|
|
71
|
+
"/api/v1/groups": {
|
|
72
|
+
parameters: {
|
|
73
|
+
query?: never;
|
|
74
|
+
header?: never;
|
|
75
|
+
path?: never;
|
|
76
|
+
cookie?: never;
|
|
77
|
+
};
|
|
78
|
+
/** @description List collectives the authenticated caller belongs to, with the caller's role and membership time. */
|
|
79
|
+
get: operations["listGroups"];
|
|
80
|
+
put?: never;
|
|
81
|
+
/** @description Create a collective. Name is required; acceptance_mode defaults to open and data_access defaults to members_only when omitted. */
|
|
82
|
+
post: operations["createGroup"];
|
|
83
|
+
delete?: never;
|
|
84
|
+
options?: never;
|
|
85
|
+
head?: never;
|
|
86
|
+
patch?: never;
|
|
87
|
+
trace?: never;
|
|
88
|
+
};
|
|
89
|
+
"/api/v1/groups/public": {
|
|
90
|
+
parameters: {
|
|
91
|
+
query?: never;
|
|
92
|
+
header?: never;
|
|
93
|
+
path?: never;
|
|
94
|
+
cookie?: never;
|
|
95
|
+
};
|
|
96
|
+
/** @description List collectives for the public directory as compact rows with member and approved-transcript counts. */
|
|
97
|
+
get: operations["listPublicGroups"];
|
|
98
|
+
put?: never;
|
|
99
|
+
post?: never;
|
|
100
|
+
delete?: never;
|
|
101
|
+
options?: never;
|
|
102
|
+
head?: never;
|
|
103
|
+
patch?: never;
|
|
104
|
+
trace?: never;
|
|
105
|
+
};
|
|
106
|
+
"/api/v1/groups/search": {
|
|
107
|
+
parameters: {
|
|
108
|
+
query?: never;
|
|
109
|
+
header?: never;
|
|
110
|
+
path?: never;
|
|
111
|
+
cookie?: never;
|
|
112
|
+
};
|
|
113
|
+
/** @description Search visible collectives. An empty q returns an empty collectives array; limit defaults to 10 and is capped at 50. */
|
|
114
|
+
get: operations["searchCollectives"];
|
|
115
|
+
put?: never;
|
|
116
|
+
post?: never;
|
|
117
|
+
delete?: never;
|
|
118
|
+
options?: never;
|
|
119
|
+
head?: never;
|
|
120
|
+
patch?: never;
|
|
121
|
+
trace?: never;
|
|
122
|
+
};
|
|
123
|
+
"/api/v1/groups/visible": {
|
|
124
|
+
parameters: {
|
|
125
|
+
query?: never;
|
|
126
|
+
header?: never;
|
|
127
|
+
path?: never;
|
|
128
|
+
cookie?: never;
|
|
129
|
+
};
|
|
130
|
+
/** @description List collectives the authenticated caller may see. Role and member_since are null when the caller sees the collective through public or open visibility but is not a member. */
|
|
131
|
+
get: operations["listVisibleGroups"];
|
|
132
|
+
put?: never;
|
|
133
|
+
post?: never;
|
|
134
|
+
delete?: never;
|
|
135
|
+
options?: never;
|
|
136
|
+
head?: never;
|
|
137
|
+
patch?: never;
|
|
138
|
+
trace?: never;
|
|
139
|
+
};
|
|
140
|
+
"/api/v1/groups/{id}": {
|
|
141
|
+
parameters: {
|
|
142
|
+
query?: never;
|
|
143
|
+
header?: never;
|
|
144
|
+
path?: never;
|
|
145
|
+
cookie?: never;
|
|
146
|
+
};
|
|
147
|
+
/** @description Get a collective with roster, stats, model breakdown, contributors, the caller's role, and a transcript page. pending_members is present only for owners. transcripts is an empty array when the caller may see the collective but may not read its data. */
|
|
148
|
+
get: operations["getGroup"];
|
|
149
|
+
put?: never;
|
|
150
|
+
post?: never;
|
|
151
|
+
/** @description Delete an owned collective and return a status receipt. */
|
|
152
|
+
delete: operations["deleteGroup"];
|
|
153
|
+
options?: never;
|
|
154
|
+
head?: never;
|
|
155
|
+
/** @description Update an owned collective. Name and description are written from the request body's string values, so a caller that wants to preserve them must send their current values. linked_github_org omitted means preserve, empty string clears, and non-empty sets after visible-org validation. */
|
|
156
|
+
patch: operations["updateGroup"];
|
|
157
|
+
trace?: never;
|
|
158
|
+
};
|
|
159
|
+
"/api/v1/groups/{id}/contributable": {
|
|
160
|
+
parameters: {
|
|
161
|
+
query?: never;
|
|
162
|
+
header?: never;
|
|
163
|
+
path?: never;
|
|
164
|
+
cookie?: never;
|
|
165
|
+
};
|
|
166
|
+
/** @description List every transcript the authenticated caller may offer to one collective, plus whether each transcript is already live in that collective. The response is deliberately unpaginated and bounded by the server row limit. */
|
|
167
|
+
get: operations["listContributableTranscripts"];
|
|
168
|
+
put?: never;
|
|
169
|
+
post?: never;
|
|
170
|
+
delete?: never;
|
|
171
|
+
options?: never;
|
|
172
|
+
head?: never;
|
|
173
|
+
patch?: never;
|
|
174
|
+
trace?: never;
|
|
175
|
+
};
|
|
176
|
+
"/api/v1/groups/{id}/join": {
|
|
177
|
+
parameters: {
|
|
178
|
+
query?: never;
|
|
179
|
+
header?: never;
|
|
180
|
+
path?: never;
|
|
181
|
+
cookie?: never;
|
|
182
|
+
};
|
|
183
|
+
get?: never;
|
|
184
|
+
put?: never;
|
|
185
|
+
/** @description Join an open or verified collective as a contributor. Curated collectives require invitation and refuse this route. */
|
|
186
|
+
post: operations["joinGroup"];
|
|
187
|
+
delete?: never;
|
|
188
|
+
options?: never;
|
|
189
|
+
head?: never;
|
|
190
|
+
patch?: never;
|
|
191
|
+
trace?: never;
|
|
192
|
+
};
|
|
193
|
+
"/api/v1/groups/{id}/members": {
|
|
194
|
+
parameters: {
|
|
195
|
+
query?: never;
|
|
196
|
+
header?: never;
|
|
197
|
+
path?: never;
|
|
198
|
+
cookie?: never;
|
|
199
|
+
};
|
|
200
|
+
get?: never;
|
|
201
|
+
put?: never;
|
|
202
|
+
/** @description Add a platform user to an owned collective by username. */
|
|
203
|
+
post: operations["addGroupMember"];
|
|
204
|
+
delete?: never;
|
|
205
|
+
options?: never;
|
|
206
|
+
head?: never;
|
|
207
|
+
patch?: never;
|
|
208
|
+
trace?: never;
|
|
209
|
+
};
|
|
210
|
+
"/api/v1/groups/{id}/members/{userID}": {
|
|
211
|
+
parameters: {
|
|
212
|
+
query?: never;
|
|
213
|
+
header?: never;
|
|
214
|
+
path?: never;
|
|
215
|
+
cookie?: never;
|
|
216
|
+
};
|
|
217
|
+
get?: never;
|
|
218
|
+
put?: never;
|
|
219
|
+
post?: never;
|
|
220
|
+
/** @description Remove a member from a collective. The member may remove themselves; removing somebody else requires owner access. retract=true or a mandatory deletion policy retracts that member's live submissions. */
|
|
221
|
+
delete: operations["removeGroupMember"];
|
|
222
|
+
options?: never;
|
|
223
|
+
head?: never;
|
|
224
|
+
patch?: never;
|
|
225
|
+
trace?: never;
|
|
226
|
+
};
|
|
227
|
+
"/api/v1/groups/{id}/members/{userID}/role": {
|
|
228
|
+
parameters: {
|
|
229
|
+
query?: never;
|
|
230
|
+
header?: never;
|
|
231
|
+
path?: never;
|
|
232
|
+
cookie?: never;
|
|
233
|
+
};
|
|
234
|
+
get?: never;
|
|
235
|
+
put?: never;
|
|
236
|
+
post?: never;
|
|
237
|
+
delete?: never;
|
|
238
|
+
options?: never;
|
|
239
|
+
head?: never;
|
|
240
|
+
/** @description Change a collective member's role to contributor or member. Owner and pending are not accepted by this operation. */
|
|
241
|
+
patch: operations["updateGroupMemberRole"];
|
|
242
|
+
trace?: never;
|
|
243
|
+
};
|
|
244
|
+
"/api/v1/groups/{id}/my-shares": {
|
|
245
|
+
parameters: {
|
|
246
|
+
query?: never;
|
|
247
|
+
header?: never;
|
|
248
|
+
path?: never;
|
|
249
|
+
cookie?: never;
|
|
250
|
+
};
|
|
251
|
+
/** @description List the authenticated caller's own live submissions to one collective, including pending and approved rows. */
|
|
252
|
+
get: operations["listMyGroupShares"];
|
|
253
|
+
put?: never;
|
|
254
|
+
post?: never;
|
|
255
|
+
delete?: never;
|
|
256
|
+
options?: never;
|
|
257
|
+
head?: never;
|
|
258
|
+
patch?: never;
|
|
259
|
+
trace?: never;
|
|
260
|
+
};
|
|
261
|
+
"/api/v1/groups/{id}/pending": {
|
|
262
|
+
parameters: {
|
|
263
|
+
query?: never;
|
|
264
|
+
header?: never;
|
|
265
|
+
path?: never;
|
|
266
|
+
cookie?: never;
|
|
267
|
+
};
|
|
268
|
+
/** @description List pending transcript submissions for an owned collective, oldest first. */
|
|
269
|
+
get: operations["listPendingShares"];
|
|
270
|
+
put?: never;
|
|
271
|
+
post?: never;
|
|
272
|
+
delete?: never;
|
|
273
|
+
options?: never;
|
|
274
|
+
head?: never;
|
|
275
|
+
patch?: never;
|
|
276
|
+
trace?: never;
|
|
277
|
+
};
|
|
278
|
+
"/api/v1/groups/{id}/repositories": {
|
|
279
|
+
parameters: {
|
|
280
|
+
query?: never;
|
|
281
|
+
header?: never;
|
|
282
|
+
path?: never;
|
|
283
|
+
cookie?: never;
|
|
284
|
+
};
|
|
285
|
+
/** @description List GitHub repositories linked to a collective. The caller must be an authenticated collective member. */
|
|
286
|
+
get: operations["listGroupRepositories"];
|
|
287
|
+
put?: never;
|
|
288
|
+
/** @description Link a GitHub repository to an owned collective after validating that the configured GitHub App installation can access it. */
|
|
289
|
+
post: operations["linkGroupRepository"];
|
|
290
|
+
delete?: never;
|
|
291
|
+
options?: never;
|
|
292
|
+
head?: never;
|
|
293
|
+
patch?: never;
|
|
294
|
+
trace?: never;
|
|
295
|
+
};
|
|
296
|
+
"/api/v1/groups/{id}/repositories/{owner}/{name}": {
|
|
297
|
+
parameters: {
|
|
298
|
+
query?: never;
|
|
299
|
+
header?: never;
|
|
300
|
+
path?: never;
|
|
301
|
+
cookie?: never;
|
|
302
|
+
};
|
|
303
|
+
get?: never;
|
|
304
|
+
put?: never;
|
|
305
|
+
post?: never;
|
|
306
|
+
/** @description Unlink a GitHub repository from an owned collective. */
|
|
307
|
+
delete: operations["unlinkGroupRepository"];
|
|
308
|
+
options?: never;
|
|
309
|
+
head?: never;
|
|
310
|
+
patch?: never;
|
|
311
|
+
trace?: never;
|
|
312
|
+
};
|
|
313
|
+
"/api/v1/groups/{id}/repositories/{owner}/{name}/commits": {
|
|
314
|
+
parameters: {
|
|
315
|
+
query?: never;
|
|
316
|
+
header?: never;
|
|
317
|
+
path?: never;
|
|
318
|
+
cookie?: never;
|
|
319
|
+
};
|
|
320
|
+
/** @description List cached commits for a linked repository. refresh=true fetches from GitHub and requires collective owner access; otherwise any collective member may read the cache. */
|
|
321
|
+
get: operations["listGroupRepositoryCommits"];
|
|
322
|
+
put?: never;
|
|
323
|
+
post?: never;
|
|
324
|
+
delete?: never;
|
|
325
|
+
options?: never;
|
|
326
|
+
head?: never;
|
|
327
|
+
patch?: never;
|
|
328
|
+
trace?: never;
|
|
329
|
+
};
|
|
330
|
+
"/api/v1/groups/{id}/shares": {
|
|
331
|
+
parameters: {
|
|
332
|
+
query?: never;
|
|
333
|
+
header?: never;
|
|
334
|
+
path?: never;
|
|
335
|
+
cookie?: never;
|
|
336
|
+
};
|
|
337
|
+
get?: never;
|
|
338
|
+
put?: never;
|
|
339
|
+
/** @description Offer selected transcripts from one owned project to one collective in one transaction. Omitted or empty transcript_ids means every owned transcript in the project. visibility_confirmed must be true when any selected private transcript would become visible to the collective. */
|
|
340
|
+
post: operations["batchShareProject"];
|
|
341
|
+
delete?: never;
|
|
342
|
+
options?: never;
|
|
343
|
+
head?: never;
|
|
344
|
+
/** @description Approve or reject many pending submissions in one owner-only action. The response separates ids that were decided by this action from ids that were already decided, never submitted to this collective, or stale. */
|
|
345
|
+
patch: operations["batchReviewShares"];
|
|
346
|
+
trace?: never;
|
|
347
|
+
};
|
|
348
|
+
"/api/v1/groups/{id}/shares/{transcriptID}": {
|
|
349
|
+
parameters: {
|
|
350
|
+
query?: never;
|
|
351
|
+
header?: never;
|
|
352
|
+
path?: never;
|
|
353
|
+
cookie?: never;
|
|
354
|
+
};
|
|
355
|
+
get?: never;
|
|
356
|
+
put?: never;
|
|
357
|
+
post?: never;
|
|
358
|
+
delete?: never;
|
|
359
|
+
options?: never;
|
|
360
|
+
head?: never;
|
|
361
|
+
/** @description Approve or reject one pending submission to an owned collective. The decision changes the share-attempt status and does not mutate transcript visibility. */
|
|
362
|
+
patch: operations["reviewShare"];
|
|
363
|
+
trace?: never;
|
|
364
|
+
};
|
|
365
|
+
"/api/v1/groups/{id}/transcripts/{transcriptID}": {
|
|
366
|
+
parameters: {
|
|
367
|
+
query?: never;
|
|
368
|
+
header?: never;
|
|
369
|
+
path?: never;
|
|
370
|
+
cookie?: never;
|
|
371
|
+
};
|
|
372
|
+
get?: never;
|
|
373
|
+
put?: never;
|
|
374
|
+
post?: never;
|
|
375
|
+
/** @description Remove or revoke a transcript contribution from an owned collective without deleting the transcript from its owner's library. */
|
|
376
|
+
delete: operations["removeGroupTranscript"];
|
|
377
|
+
options?: never;
|
|
378
|
+
head?: never;
|
|
379
|
+
patch?: never;
|
|
380
|
+
trace?: never;
|
|
381
|
+
};
|
|
71
382
|
"/api/v1/pull/transcripts": {
|
|
72
383
|
parameters: {
|
|
73
384
|
query?: never;
|
|
@@ -204,15 +515,117 @@ export interface paths {
|
|
|
204
515
|
patch: operations["updateTranscript"];
|
|
205
516
|
trace?: never;
|
|
206
517
|
};
|
|
207
|
-
}
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
518
|
+
"/api/v1/transcripts/{id}/collectives": {
|
|
519
|
+
parameters: {
|
|
520
|
+
query?: never;
|
|
521
|
+
header?: never;
|
|
522
|
+
path?: never;
|
|
523
|
+
cookie?: never;
|
|
524
|
+
};
|
|
525
|
+
/** @description List visible collectives that hold a transcript. The server returns an empty collectives array, not a refusal, when memberships are hidden by collective visibility or contributor opt-in policy. */
|
|
526
|
+
get: operations["listTranscriptCollectives"];
|
|
527
|
+
put?: never;
|
|
528
|
+
post?: never;
|
|
529
|
+
delete?: never;
|
|
530
|
+
options?: never;
|
|
531
|
+
head?: never;
|
|
532
|
+
patch?: never;
|
|
533
|
+
trace?: never;
|
|
534
|
+
};
|
|
535
|
+
"/api/v1/transcripts/{id}/share": {
|
|
536
|
+
parameters: {
|
|
537
|
+
query?: never;
|
|
538
|
+
header?: never;
|
|
539
|
+
path?: never;
|
|
540
|
+
cookie?: never;
|
|
541
|
+
};
|
|
542
|
+
get?: never;
|
|
543
|
+
put?: never;
|
|
544
|
+
/** @description Offer one owned transcript to one or more collectives. The response is the transcript's share list, while duplicate or refused collectives are skipped unless every requested collective is already live. */
|
|
545
|
+
post: operations["shareTranscriptWithGroups"];
|
|
546
|
+
delete?: never;
|
|
547
|
+
options?: never;
|
|
548
|
+
head?: never;
|
|
549
|
+
patch?: never;
|
|
550
|
+
trace?: never;
|
|
551
|
+
};
|
|
552
|
+
"/api/v1/transcripts/{id}/share/{groupID}": {
|
|
553
|
+
parameters: {
|
|
554
|
+
query?: never;
|
|
555
|
+
header?: never;
|
|
556
|
+
path?: never;
|
|
557
|
+
cookie?: never;
|
|
558
|
+
};
|
|
559
|
+
get?: never;
|
|
560
|
+
put?: never;
|
|
561
|
+
post?: never;
|
|
562
|
+
/** @description Withdraw one owned transcript from one collective and return a status receipt. */
|
|
563
|
+
delete: operations["unshareTranscriptFromGroup"];
|
|
564
|
+
options?: never;
|
|
565
|
+
head?: never;
|
|
566
|
+
patch?: never;
|
|
567
|
+
trace?: never;
|
|
568
|
+
};
|
|
569
|
+
"/api/v1/users/me/collectives/contributions": {
|
|
570
|
+
parameters: {
|
|
571
|
+
query?: never;
|
|
572
|
+
header?: never;
|
|
573
|
+
path?: never;
|
|
574
|
+
cookie?: never;
|
|
575
|
+
};
|
|
576
|
+
/** @description List collectives the authenticated caller has offered transcripts to, with approved and pending transcript counts and rejected and withdrawn attempt counts. */
|
|
577
|
+
get: operations["listMyCollectiveContributions"];
|
|
578
|
+
put?: never;
|
|
579
|
+
post?: never;
|
|
580
|
+
delete?: never;
|
|
581
|
+
options?: never;
|
|
582
|
+
head?: never;
|
|
583
|
+
patch?: never;
|
|
584
|
+
trace?: never;
|
|
585
|
+
};
|
|
586
|
+
"/api/v1/users/me/collectives/{groupId}/submissions": {
|
|
587
|
+
parameters: {
|
|
588
|
+
query?: never;
|
|
589
|
+
header?: never;
|
|
590
|
+
path?: never;
|
|
591
|
+
cookie?: never;
|
|
592
|
+
};
|
|
593
|
+
/** @description List every transcript-collective pair the authenticated caller has offered to one collective, including pairs whose latest event was a withdrawal. A caller with no pair receives 404, matching no-such-collective. */
|
|
594
|
+
get: operations["listMyCollectiveSubmissions"];
|
|
595
|
+
put?: never;
|
|
596
|
+
post?: never;
|
|
597
|
+
delete?: never;
|
|
598
|
+
options?: never;
|
|
599
|
+
head?: never;
|
|
600
|
+
patch?: never;
|
|
601
|
+
trace?: never;
|
|
602
|
+
};
|
|
603
|
+
"/api/v1/users/me/collectives/{groupId}/transcripts/{transcriptId}/events": {
|
|
604
|
+
parameters: {
|
|
605
|
+
query?: never;
|
|
606
|
+
header?: never;
|
|
607
|
+
path?: never;
|
|
608
|
+
cookie?: never;
|
|
609
|
+
};
|
|
610
|
+
/** @description List the full owner-only event history for one transcript and collective pair, oldest event first. The decided_by_actor field is an actor class, never a moderator user id. */
|
|
611
|
+
get: operations["listShareEventHistory"];
|
|
612
|
+
put?: never;
|
|
613
|
+
post?: never;
|
|
614
|
+
delete?: never;
|
|
615
|
+
options?: never;
|
|
616
|
+
head?: never;
|
|
617
|
+
patch?: never;
|
|
618
|
+
trace?: never;
|
|
619
|
+
};
|
|
620
|
+
}
|
|
621
|
+
export type webhooks = Record<string, never>;
|
|
622
|
+
export interface components {
|
|
623
|
+
schemas: {
|
|
624
|
+
/**
|
|
625
|
+
* Harness
|
|
626
|
+
* @description AI coding tool or development environment
|
|
627
|
+
* @example claude-code
|
|
628
|
+
* @example opencode
|
|
216
629
|
* @enum {string}
|
|
217
630
|
*/
|
|
218
631
|
BestiaryHarness: Schema.Harness;
|
|
@@ -368,6 +781,15 @@ export interface components {
|
|
|
368
781
|
* @example ABCDEFGHIJKLMNOPQRST234567
|
|
369
782
|
*/
|
|
370
783
|
SchemaSessionID: Schema.SessionID;
|
|
784
|
+
/**
|
|
785
|
+
* Session Origin
|
|
786
|
+
* @description Who drove a recorded session, as declared by the producer that recorded it
|
|
787
|
+
* @example user
|
|
788
|
+
* @example agent
|
|
789
|
+
* @example unknown
|
|
790
|
+
* @enum {string}
|
|
791
|
+
*/
|
|
792
|
+
SchemaSessionOrigin: Schema.SessionOrigin;
|
|
371
793
|
/**
|
|
372
794
|
* Session Outcome
|
|
373
795
|
* @description Resolution status of the session
|
|
@@ -432,6 +854,169 @@ export interface components {
|
|
|
432
854
|
* @enum {string}
|
|
433
855
|
*/
|
|
434
856
|
SchemaTranscriptUpdateVisibility: Schema.TranscriptUpdateVisibility;
|
|
857
|
+
/**
|
|
858
|
+
* Village Assignable Group Role
|
|
859
|
+
* @description Collective roles an owner may assign through the member role endpoint
|
|
860
|
+
* @example contributor
|
|
861
|
+
* @example member
|
|
862
|
+
* @enum {string}
|
|
863
|
+
*/
|
|
864
|
+
SchemaVillageAssignableGroupRole: Schema.VillageAssignableGroupRole;
|
|
865
|
+
SchemaVillageBatchReviewRequest: Schema.VillageBatchReviewRequest;
|
|
866
|
+
SchemaVillageBatchReviewResponse: Schema.VillageBatchReviewResponse;
|
|
867
|
+
SchemaVillageBatchShareEntry: Schema.VillageBatchShareEntry;
|
|
868
|
+
SchemaVillageBatchShareRequest: Schema.VillageBatchShareRequest;
|
|
869
|
+
SchemaVillageBatchShareResponse: Schema.VillageBatchShareResponse;
|
|
870
|
+
SchemaVillageCollectiveSearchResponse: Schema.VillageCollectiveSearchResponse;
|
|
871
|
+
SchemaVillageCollectiveSearchResult: Schema.VillageCollectiveSearchResult;
|
|
872
|
+
SchemaVillageCollectiveSubmission: Schema.VillageCollectiveSubmission;
|
|
873
|
+
SchemaVillageContributableResponse: Schema.VillageContributableResponse;
|
|
874
|
+
SchemaVillageContributableTranscript: Schema.VillageContributableTranscript;
|
|
875
|
+
SchemaVillageContributedCollective: Schema.VillageContributedCollective;
|
|
876
|
+
SchemaVillageContributedCollectivesResponse: Schema.VillageContributedCollectivesResponse;
|
|
877
|
+
/**
|
|
878
|
+
* Village Contribution Status
|
|
879
|
+
* @description Status assigned when a new collective contribution is opened
|
|
880
|
+
* @example approved
|
|
881
|
+
* @example pending
|
|
882
|
+
* @enum {string}
|
|
883
|
+
*/
|
|
884
|
+
SchemaVillageContributionStatus: Schema.VillageContributionStatus;
|
|
885
|
+
SchemaVillageCreateGroupRequest: Schema.VillageCreateGroupRequest;
|
|
886
|
+
SchemaVillageErrorResponse: Schema.VillageErrorResponse;
|
|
887
|
+
SchemaVillageGroup: Schema.VillageGroup;
|
|
888
|
+
/**
|
|
889
|
+
* Village Group Acceptance Mode
|
|
890
|
+
* @description How a collective accepts new members and contributions
|
|
891
|
+
* @example open
|
|
892
|
+
* @example verified_only
|
|
893
|
+
* @example curated
|
|
894
|
+
* @enum {string}
|
|
895
|
+
*/
|
|
896
|
+
SchemaVillageGroupAcceptanceMode: Schema.VillageGroupAcceptanceMode;
|
|
897
|
+
SchemaVillageGroupContributor: Schema.VillageGroupContributor;
|
|
898
|
+
/**
|
|
899
|
+
* Village Group Data Access
|
|
900
|
+
* @description Who may read a collective's pooled transcript data
|
|
901
|
+
* @example members_only
|
|
902
|
+
* @example contributors
|
|
903
|
+
* @example public
|
|
904
|
+
* @enum {string}
|
|
905
|
+
*/
|
|
906
|
+
SchemaVillageGroupDataAccess: Schema.VillageGroupDataAccess;
|
|
907
|
+
SchemaVillageGroupDetailResponse: Schema.VillageGroupDetailResponse;
|
|
908
|
+
SchemaVillageGroupMember: Schema.VillageGroupMember;
|
|
909
|
+
SchemaVillageGroupMemberRoleRequest: Schema.VillageGroupMemberRoleRequest;
|
|
910
|
+
SchemaVillageGroupMemberUsernameRequest: Schema.VillageGroupMemberUsernameRequest;
|
|
911
|
+
SchemaVillageGroupModelBreakdown: Schema.VillageGroupModelBreakdown;
|
|
912
|
+
/**
|
|
913
|
+
* Village Group Role
|
|
914
|
+
* @description A user's role in one collective
|
|
915
|
+
* @example owner
|
|
916
|
+
* @example member
|
|
917
|
+
* @example contributor
|
|
918
|
+
* @example pending
|
|
919
|
+
* @enum {string}
|
|
920
|
+
*/
|
|
921
|
+
SchemaVillageGroupRole: Schema.VillageGroupRole;
|
|
922
|
+
SchemaVillageGroupStatusRoleResponse: Schema.VillageGroupStatusRoleResponse;
|
|
923
|
+
SchemaVillageGroupTranscript: Schema.VillageGroupTranscript;
|
|
924
|
+
SchemaVillageGroupTranscriptStats: Schema.VillageGroupTranscriptStats;
|
|
925
|
+
/**
|
|
926
|
+
* Village Group Viewer Role
|
|
927
|
+
* @description The caller's role in a collective, or an empty string when the caller has none
|
|
928
|
+
* @example
|
|
929
|
+
* @example owner
|
|
930
|
+
* @example member
|
|
931
|
+
* @example contributor
|
|
932
|
+
* @example pending
|
|
933
|
+
* @enum {string}
|
|
934
|
+
*/
|
|
935
|
+
SchemaVillageGroupViewerRole: Schema.VillageGroupViewerRole;
|
|
936
|
+
SchemaVillageLinkRepositoryRequest: Schema.VillageLinkRepositoryRequest;
|
|
937
|
+
SchemaVillageLinkedRepositoriesResponse: Schema.VillageLinkedRepositoriesResponse;
|
|
938
|
+
SchemaVillageLinkedRepository: Schema.VillageLinkedRepository;
|
|
939
|
+
SchemaVillagePendingShare: Schema.VillagePendingShare;
|
|
940
|
+
/**
|
|
941
|
+
* Village Project Name Source
|
|
942
|
+
* @description Which source tier produced a resolved project display name
|
|
943
|
+
* @example override
|
|
944
|
+
* @example consented
|
|
945
|
+
* @example remote
|
|
946
|
+
* @example path
|
|
947
|
+
* @example privacy
|
|
948
|
+
* @enum {string}
|
|
949
|
+
*/
|
|
950
|
+
SchemaVillageProjectNameSource: Schema.VillageProjectNameSource;
|
|
951
|
+
SchemaVillagePublicGroup: Schema.VillagePublicGroup;
|
|
952
|
+
SchemaVillageRemoveGroupMemberResponse: Schema.VillageRemoveGroupMemberResponse;
|
|
953
|
+
SchemaVillageRepositoryCommit: Schema.VillageRepositoryCommit;
|
|
954
|
+
SchemaVillageRepositoryCommitsResponse: Schema.VillageRepositoryCommitsResponse;
|
|
955
|
+
/**
|
|
956
|
+
* Village Review Decision
|
|
957
|
+
* @description Decision applied by a collective owner to pending submissions
|
|
958
|
+
* @example approved
|
|
959
|
+
* @example rejected
|
|
960
|
+
* @enum {string}
|
|
961
|
+
*/
|
|
962
|
+
SchemaVillageReviewDecision: Schema.VillageReviewDecision;
|
|
963
|
+
SchemaVillageReviewShareRequest: Schema.VillageReviewShareRequest;
|
|
964
|
+
SchemaVillageReviewShareResponse: Schema.VillageReviewShareResponse;
|
|
965
|
+
SchemaVillageShareEvent: Schema.VillageShareEvent;
|
|
966
|
+
/**
|
|
967
|
+
* Village Share Event Actor
|
|
968
|
+
* @description Actor class that decided one collective share event
|
|
969
|
+
* @example
|
|
970
|
+
* @example owner
|
|
971
|
+
* @example collective
|
|
972
|
+
* @example moderator
|
|
973
|
+
* @enum {string}
|
|
974
|
+
*/
|
|
975
|
+
SchemaVillageShareEventActor: Schema.VillageShareEventActor;
|
|
976
|
+
/**
|
|
977
|
+
* Village Share Status
|
|
978
|
+
* @description Status of one collective share-attempt event. Pending, approved, and rejected can appear in current projections; retracted and revoked are terminal ledger states.
|
|
979
|
+
* @example pending
|
|
980
|
+
* @example approved
|
|
981
|
+
* @example rejected
|
|
982
|
+
* @example retracted
|
|
983
|
+
* @example revoked
|
|
984
|
+
* @enum {string}
|
|
985
|
+
*/
|
|
986
|
+
SchemaVillageShareStatus: Schema.VillageShareStatus;
|
|
987
|
+
SchemaVillageShareTranscriptRequest: Schema.VillageShareTranscriptRequest;
|
|
988
|
+
SchemaVillageStatusResponse: Schema.VillageStatusResponse;
|
|
989
|
+
SchemaVillageTranscriptCollective: Schema.VillageTranscriptCollective;
|
|
990
|
+
SchemaVillageTranscriptCollectivesResponse: Schema.VillageTranscriptCollectivesResponse;
|
|
991
|
+
/**
|
|
992
|
+
* Village Transcript Deletion Policy
|
|
993
|
+
* @description Whether leaving a collective retracts contributed transcripts by default
|
|
994
|
+
* @example user_choice
|
|
995
|
+
* @example mandatory
|
|
996
|
+
* @enum {string}
|
|
997
|
+
*/
|
|
998
|
+
SchemaVillageTranscriptDeletionPolicy: Schema.VillageTranscriptDeletionPolicy;
|
|
999
|
+
SchemaVillageTranscriptShare: Schema.VillageTranscriptShare;
|
|
1000
|
+
/**
|
|
1001
|
+
* Village Transcript Visibility
|
|
1002
|
+
* @description Village transcript visibility as stored and served by web routes
|
|
1003
|
+
* @example private
|
|
1004
|
+
* @example shared
|
|
1005
|
+
* @example public
|
|
1006
|
+
* @enum {string}
|
|
1007
|
+
*/
|
|
1008
|
+
SchemaVillageTranscriptVisibility: Schema.VillageTranscriptVisibility;
|
|
1009
|
+
/**
|
|
1010
|
+
* Village UUID
|
|
1011
|
+
* Format: uuid
|
|
1012
|
+
* @description Village-side canonical lowercase UUID identifier
|
|
1013
|
+
* @example 123e4567-e89b-12d3-a456-426614174000
|
|
1014
|
+
*/
|
|
1015
|
+
SchemaVillageUUID: Schema.VillageUUID;
|
|
1016
|
+
SchemaVillageUpdateGroupRequest: Schema.VillageUpdateGroupRequest;
|
|
1017
|
+
SchemaVillageUserGroup: Schema.VillageUserGroup;
|
|
1018
|
+
SchemaVillageUserGroupShare: Schema.VillageUserGroupShare;
|
|
1019
|
+
SchemaVillageVisibleGroup: Schema.VillageVisibleGroup;
|
|
435
1020
|
/**
|
|
436
1021
|
* Visibility
|
|
437
1022
|
* @description Access control level for a published transcript
|
|
@@ -484,16 +1069,1722 @@ export interface operations {
|
|
|
484
1069
|
[name: string]: unknown;
|
|
485
1070
|
};
|
|
486
1071
|
content: {
|
|
487
|
-
"application/json": components["schemas"]["SchemaAnnotationPushResponse"];
|
|
1072
|
+
"application/json": components["schemas"]["SchemaAnnotationPushResponse"];
|
|
1073
|
+
};
|
|
1074
|
+
};
|
|
1075
|
+
};
|
|
1076
|
+
};
|
|
1077
|
+
getAnnotationManifest: {
|
|
1078
|
+
parameters: {
|
|
1079
|
+
query?: never;
|
|
1080
|
+
header?: never;
|
|
1081
|
+
path?: never;
|
|
1082
|
+
cookie?: never;
|
|
1083
|
+
};
|
|
1084
|
+
requestBody?: never;
|
|
1085
|
+
responses: {
|
|
1086
|
+
/** @description OK */
|
|
1087
|
+
200: {
|
|
1088
|
+
headers: {
|
|
1089
|
+
[name: string]: unknown;
|
|
1090
|
+
};
|
|
1091
|
+
content: {
|
|
1092
|
+
"application/json": components["schemas"]["SchemaAnnotationManifestResponse"];
|
|
1093
|
+
};
|
|
1094
|
+
};
|
|
1095
|
+
};
|
|
1096
|
+
};
|
|
1097
|
+
cliExchangeCode: {
|
|
1098
|
+
parameters: {
|
|
1099
|
+
query?: never;
|
|
1100
|
+
header?: never;
|
|
1101
|
+
path?: never;
|
|
1102
|
+
cookie?: never;
|
|
1103
|
+
};
|
|
1104
|
+
requestBody?: {
|
|
1105
|
+
content: {
|
|
1106
|
+
"application/json": components["schemas"]["SchemaExchangeCodeRequest"];
|
|
1107
|
+
};
|
|
1108
|
+
};
|
|
1109
|
+
responses: {
|
|
1110
|
+
/** @description OK */
|
|
1111
|
+
200: {
|
|
1112
|
+
headers: {
|
|
1113
|
+
[name: string]: unknown;
|
|
1114
|
+
};
|
|
1115
|
+
content: {
|
|
1116
|
+
"application/json": components["schemas"]["SchemaExchangeCodeResponse"];
|
|
1117
|
+
};
|
|
1118
|
+
};
|
|
1119
|
+
};
|
|
1120
|
+
};
|
|
1121
|
+
cliLogin: {
|
|
1122
|
+
parameters: {
|
|
1123
|
+
query?: {
|
|
1124
|
+
/** @description Local callback server port */
|
|
1125
|
+
port?: number;
|
|
1126
|
+
/** @description OAuth state parameter for CSRF protection */
|
|
1127
|
+
state?: string;
|
|
1128
|
+
};
|
|
1129
|
+
header?: never;
|
|
1130
|
+
path?: never;
|
|
1131
|
+
cookie?: never;
|
|
1132
|
+
};
|
|
1133
|
+
requestBody?: never;
|
|
1134
|
+
responses: {
|
|
1135
|
+
/** @description No Content */
|
|
1136
|
+
204: {
|
|
1137
|
+
headers: {
|
|
1138
|
+
[name: string]: unknown;
|
|
1139
|
+
};
|
|
1140
|
+
content?: never;
|
|
1141
|
+
};
|
|
1142
|
+
};
|
|
1143
|
+
};
|
|
1144
|
+
listGroups: {
|
|
1145
|
+
parameters: {
|
|
1146
|
+
query?: never;
|
|
1147
|
+
header?: never;
|
|
1148
|
+
path?: never;
|
|
1149
|
+
cookie?: never;
|
|
1150
|
+
};
|
|
1151
|
+
requestBody?: never;
|
|
1152
|
+
responses: {
|
|
1153
|
+
/** @description OK */
|
|
1154
|
+
200: {
|
|
1155
|
+
headers: {
|
|
1156
|
+
[name: string]: unknown;
|
|
1157
|
+
};
|
|
1158
|
+
content: {
|
|
1159
|
+
"application/json": null | components["schemas"]["SchemaVillageUserGroup"][];
|
|
1160
|
+
};
|
|
1161
|
+
};
|
|
1162
|
+
/** @description Unauthorized */
|
|
1163
|
+
401: {
|
|
1164
|
+
headers: {
|
|
1165
|
+
[name: string]: unknown;
|
|
1166
|
+
};
|
|
1167
|
+
content: {
|
|
1168
|
+
"application/json": components["schemas"]["SchemaVillageErrorResponse"];
|
|
1169
|
+
};
|
|
1170
|
+
};
|
|
1171
|
+
/** @description Internal Server Error */
|
|
1172
|
+
500: {
|
|
1173
|
+
headers: {
|
|
1174
|
+
[name: string]: unknown;
|
|
1175
|
+
};
|
|
1176
|
+
content: {
|
|
1177
|
+
"application/json": components["schemas"]["SchemaVillageErrorResponse"];
|
|
1178
|
+
};
|
|
1179
|
+
};
|
|
1180
|
+
};
|
|
1181
|
+
};
|
|
1182
|
+
createGroup: {
|
|
1183
|
+
parameters: {
|
|
1184
|
+
query?: never;
|
|
1185
|
+
header?: never;
|
|
1186
|
+
path?: never;
|
|
1187
|
+
cookie?: never;
|
|
1188
|
+
};
|
|
1189
|
+
requestBody: {
|
|
1190
|
+
content: {
|
|
1191
|
+
"application/json": components["schemas"]["SchemaVillageCreateGroupRequest"];
|
|
1192
|
+
};
|
|
1193
|
+
};
|
|
1194
|
+
responses: {
|
|
1195
|
+
/** @description Created */
|
|
1196
|
+
201: {
|
|
1197
|
+
headers: {
|
|
1198
|
+
[name: string]: unknown;
|
|
1199
|
+
};
|
|
1200
|
+
content: {
|
|
1201
|
+
"application/json": components["schemas"]["SchemaVillageGroup"];
|
|
1202
|
+
};
|
|
1203
|
+
};
|
|
1204
|
+
/** @description Bad Request */
|
|
1205
|
+
400: {
|
|
1206
|
+
headers: {
|
|
1207
|
+
[name: string]: unknown;
|
|
1208
|
+
};
|
|
1209
|
+
content: {
|
|
1210
|
+
"application/json": components["schemas"]["SchemaVillageErrorResponse"];
|
|
1211
|
+
};
|
|
1212
|
+
};
|
|
1213
|
+
/** @description Unauthorized */
|
|
1214
|
+
401: {
|
|
1215
|
+
headers: {
|
|
1216
|
+
[name: string]: unknown;
|
|
1217
|
+
};
|
|
1218
|
+
content: {
|
|
1219
|
+
"application/json": components["schemas"]["SchemaVillageErrorResponse"];
|
|
1220
|
+
};
|
|
1221
|
+
};
|
|
1222
|
+
/** @description Internal Server Error */
|
|
1223
|
+
500: {
|
|
1224
|
+
headers: {
|
|
1225
|
+
[name: string]: unknown;
|
|
1226
|
+
};
|
|
1227
|
+
content: {
|
|
1228
|
+
"application/json": components["schemas"]["SchemaVillageErrorResponse"];
|
|
1229
|
+
};
|
|
1230
|
+
};
|
|
1231
|
+
};
|
|
1232
|
+
};
|
|
1233
|
+
listPublicGroups: {
|
|
1234
|
+
parameters: {
|
|
1235
|
+
query?: never;
|
|
1236
|
+
header?: never;
|
|
1237
|
+
path?: never;
|
|
1238
|
+
cookie?: never;
|
|
1239
|
+
};
|
|
1240
|
+
requestBody?: never;
|
|
1241
|
+
responses: {
|
|
1242
|
+
/** @description OK */
|
|
1243
|
+
200: {
|
|
1244
|
+
headers: {
|
|
1245
|
+
[name: string]: unknown;
|
|
1246
|
+
};
|
|
1247
|
+
content: {
|
|
1248
|
+
"application/json": null | components["schemas"]["SchemaVillagePublicGroup"][];
|
|
1249
|
+
};
|
|
1250
|
+
};
|
|
1251
|
+
/** @description Internal Server Error */
|
|
1252
|
+
500: {
|
|
1253
|
+
headers: {
|
|
1254
|
+
[name: string]: unknown;
|
|
1255
|
+
};
|
|
1256
|
+
content: {
|
|
1257
|
+
"application/json": components["schemas"]["SchemaVillageErrorResponse"];
|
|
1258
|
+
};
|
|
1259
|
+
};
|
|
1260
|
+
};
|
|
1261
|
+
};
|
|
1262
|
+
searchCollectives: {
|
|
1263
|
+
parameters: {
|
|
1264
|
+
query?: {
|
|
1265
|
+
q?: string;
|
|
1266
|
+
limit?: number;
|
|
1267
|
+
};
|
|
1268
|
+
header?: never;
|
|
1269
|
+
path?: never;
|
|
1270
|
+
cookie?: never;
|
|
1271
|
+
};
|
|
1272
|
+
requestBody?: never;
|
|
1273
|
+
responses: {
|
|
1274
|
+
/** @description OK */
|
|
1275
|
+
200: {
|
|
1276
|
+
headers: {
|
|
1277
|
+
[name: string]: unknown;
|
|
1278
|
+
};
|
|
1279
|
+
content: {
|
|
1280
|
+
"application/json": components["schemas"]["SchemaVillageCollectiveSearchResponse"];
|
|
1281
|
+
};
|
|
1282
|
+
};
|
|
1283
|
+
/** @description Internal Server Error */
|
|
1284
|
+
500: {
|
|
1285
|
+
headers: {
|
|
1286
|
+
[name: string]: unknown;
|
|
1287
|
+
};
|
|
1288
|
+
content: {
|
|
1289
|
+
"application/json": components["schemas"]["SchemaVillageErrorResponse"];
|
|
1290
|
+
};
|
|
1291
|
+
};
|
|
1292
|
+
};
|
|
1293
|
+
};
|
|
1294
|
+
listVisibleGroups: {
|
|
1295
|
+
parameters: {
|
|
1296
|
+
query?: never;
|
|
1297
|
+
header?: never;
|
|
1298
|
+
path?: never;
|
|
1299
|
+
cookie?: never;
|
|
1300
|
+
};
|
|
1301
|
+
requestBody?: never;
|
|
1302
|
+
responses: {
|
|
1303
|
+
/** @description OK */
|
|
1304
|
+
200: {
|
|
1305
|
+
headers: {
|
|
1306
|
+
[name: string]: unknown;
|
|
1307
|
+
};
|
|
1308
|
+
content: {
|
|
1309
|
+
"application/json": null | components["schemas"]["SchemaVillageVisibleGroup"][];
|
|
1310
|
+
};
|
|
1311
|
+
};
|
|
1312
|
+
/** @description Unauthorized */
|
|
1313
|
+
401: {
|
|
1314
|
+
headers: {
|
|
1315
|
+
[name: string]: unknown;
|
|
1316
|
+
};
|
|
1317
|
+
content: {
|
|
1318
|
+
"application/json": components["schemas"]["SchemaVillageErrorResponse"];
|
|
1319
|
+
};
|
|
1320
|
+
};
|
|
1321
|
+
/** @description Internal Server Error */
|
|
1322
|
+
500: {
|
|
1323
|
+
headers: {
|
|
1324
|
+
[name: string]: unknown;
|
|
1325
|
+
};
|
|
1326
|
+
content: {
|
|
1327
|
+
"application/json": components["schemas"]["SchemaVillageErrorResponse"];
|
|
1328
|
+
};
|
|
1329
|
+
};
|
|
1330
|
+
};
|
|
1331
|
+
};
|
|
1332
|
+
getGroup: {
|
|
1333
|
+
parameters: {
|
|
1334
|
+
query?: {
|
|
1335
|
+
limit?: number;
|
|
1336
|
+
offset?: number;
|
|
1337
|
+
};
|
|
1338
|
+
header?: never;
|
|
1339
|
+
path: {
|
|
1340
|
+
/** @description Collective identifier */
|
|
1341
|
+
id: components["schemas"]["SchemaVillageUUID"];
|
|
1342
|
+
};
|
|
1343
|
+
cookie?: never;
|
|
1344
|
+
};
|
|
1345
|
+
requestBody?: never;
|
|
1346
|
+
responses: {
|
|
1347
|
+
/** @description OK */
|
|
1348
|
+
200: {
|
|
1349
|
+
headers: {
|
|
1350
|
+
[name: string]: unknown;
|
|
1351
|
+
};
|
|
1352
|
+
content: {
|
|
1353
|
+
"application/json": components["schemas"]["SchemaVillageGroupDetailResponse"];
|
|
1354
|
+
};
|
|
1355
|
+
};
|
|
1356
|
+
/** @description Bad Request */
|
|
1357
|
+
400: {
|
|
1358
|
+
headers: {
|
|
1359
|
+
[name: string]: unknown;
|
|
1360
|
+
};
|
|
1361
|
+
content: {
|
|
1362
|
+
"application/json": components["schemas"]["SchemaVillageErrorResponse"];
|
|
1363
|
+
};
|
|
1364
|
+
};
|
|
1365
|
+
/** @description Not Found */
|
|
1366
|
+
404: {
|
|
1367
|
+
headers: {
|
|
1368
|
+
[name: string]: unknown;
|
|
1369
|
+
};
|
|
1370
|
+
content: {
|
|
1371
|
+
"application/json": components["schemas"]["SchemaVillageErrorResponse"];
|
|
1372
|
+
};
|
|
1373
|
+
};
|
|
1374
|
+
};
|
|
1375
|
+
};
|
|
1376
|
+
deleteGroup: {
|
|
1377
|
+
parameters: {
|
|
1378
|
+
query?: never;
|
|
1379
|
+
header?: never;
|
|
1380
|
+
path: {
|
|
1381
|
+
/** @description Collective identifier */
|
|
1382
|
+
id: components["schemas"]["SchemaVillageUUID"];
|
|
1383
|
+
};
|
|
1384
|
+
cookie?: never;
|
|
1385
|
+
};
|
|
1386
|
+
requestBody?: never;
|
|
1387
|
+
responses: {
|
|
1388
|
+
/** @description OK */
|
|
1389
|
+
200: {
|
|
1390
|
+
headers: {
|
|
1391
|
+
[name: string]: unknown;
|
|
1392
|
+
};
|
|
1393
|
+
content: {
|
|
1394
|
+
"application/json": components["schemas"]["SchemaVillageStatusResponse"];
|
|
1395
|
+
};
|
|
1396
|
+
};
|
|
1397
|
+
/** @description Bad Request */
|
|
1398
|
+
400: {
|
|
1399
|
+
headers: {
|
|
1400
|
+
[name: string]: unknown;
|
|
1401
|
+
};
|
|
1402
|
+
content: {
|
|
1403
|
+
"application/json": components["schemas"]["SchemaVillageErrorResponse"];
|
|
1404
|
+
};
|
|
1405
|
+
};
|
|
1406
|
+
/** @description Unauthorized */
|
|
1407
|
+
401: {
|
|
1408
|
+
headers: {
|
|
1409
|
+
[name: string]: unknown;
|
|
1410
|
+
};
|
|
1411
|
+
content: {
|
|
1412
|
+
"application/json": components["schemas"]["SchemaVillageErrorResponse"];
|
|
1413
|
+
};
|
|
1414
|
+
};
|
|
1415
|
+
/** @description Forbidden */
|
|
1416
|
+
403: {
|
|
1417
|
+
headers: {
|
|
1418
|
+
[name: string]: unknown;
|
|
1419
|
+
};
|
|
1420
|
+
content: {
|
|
1421
|
+
"application/json": components["schemas"]["SchemaVillageErrorResponse"];
|
|
1422
|
+
};
|
|
1423
|
+
};
|
|
1424
|
+
/** @description Internal Server Error */
|
|
1425
|
+
500: {
|
|
1426
|
+
headers: {
|
|
1427
|
+
[name: string]: unknown;
|
|
1428
|
+
};
|
|
1429
|
+
content: {
|
|
1430
|
+
"application/json": components["schemas"]["SchemaVillageErrorResponse"];
|
|
1431
|
+
};
|
|
1432
|
+
};
|
|
1433
|
+
};
|
|
1434
|
+
};
|
|
1435
|
+
updateGroup: {
|
|
1436
|
+
parameters: {
|
|
1437
|
+
query?: never;
|
|
1438
|
+
header?: never;
|
|
1439
|
+
path: {
|
|
1440
|
+
/** @description Collective identifier */
|
|
1441
|
+
id: components["schemas"]["SchemaVillageUUID"];
|
|
1442
|
+
};
|
|
1443
|
+
cookie?: never;
|
|
1444
|
+
};
|
|
1445
|
+
requestBody: {
|
|
1446
|
+
content: {
|
|
1447
|
+
"application/json": components["schemas"]["SchemaVillageUpdateGroupRequest"];
|
|
1448
|
+
};
|
|
1449
|
+
};
|
|
1450
|
+
responses: {
|
|
1451
|
+
/** @description OK */
|
|
1452
|
+
200: {
|
|
1453
|
+
headers: {
|
|
1454
|
+
[name: string]: unknown;
|
|
1455
|
+
};
|
|
1456
|
+
content: {
|
|
1457
|
+
"application/json": components["schemas"]["SchemaVillageGroup"];
|
|
1458
|
+
};
|
|
1459
|
+
};
|
|
1460
|
+
/** @description Bad Request */
|
|
1461
|
+
400: {
|
|
1462
|
+
headers: {
|
|
1463
|
+
[name: string]: unknown;
|
|
1464
|
+
};
|
|
1465
|
+
content: {
|
|
1466
|
+
"application/json": components["schemas"]["SchemaVillageErrorResponse"];
|
|
1467
|
+
};
|
|
1468
|
+
};
|
|
1469
|
+
/** @description Unauthorized */
|
|
1470
|
+
401: {
|
|
1471
|
+
headers: {
|
|
1472
|
+
[name: string]: unknown;
|
|
1473
|
+
};
|
|
1474
|
+
content: {
|
|
1475
|
+
"application/json": components["schemas"]["SchemaVillageErrorResponse"];
|
|
1476
|
+
};
|
|
1477
|
+
};
|
|
1478
|
+
/** @description Forbidden */
|
|
1479
|
+
403: {
|
|
1480
|
+
headers: {
|
|
1481
|
+
[name: string]: unknown;
|
|
1482
|
+
};
|
|
1483
|
+
content: {
|
|
1484
|
+
"application/json": components["schemas"]["SchemaVillageErrorResponse"];
|
|
1485
|
+
};
|
|
1486
|
+
};
|
|
1487
|
+
/** @description Not Found */
|
|
1488
|
+
404: {
|
|
1489
|
+
headers: {
|
|
1490
|
+
[name: string]: unknown;
|
|
1491
|
+
};
|
|
1492
|
+
content: {
|
|
1493
|
+
"application/json": components["schemas"]["SchemaVillageErrorResponse"];
|
|
1494
|
+
};
|
|
1495
|
+
};
|
|
1496
|
+
/** @description Internal Server Error */
|
|
1497
|
+
500: {
|
|
1498
|
+
headers: {
|
|
1499
|
+
[name: string]: unknown;
|
|
1500
|
+
};
|
|
1501
|
+
content: {
|
|
1502
|
+
"application/json": components["schemas"]["SchemaVillageErrorResponse"];
|
|
1503
|
+
};
|
|
1504
|
+
};
|
|
1505
|
+
};
|
|
1506
|
+
};
|
|
1507
|
+
listContributableTranscripts: {
|
|
1508
|
+
parameters: {
|
|
1509
|
+
query?: never;
|
|
1510
|
+
header?: never;
|
|
1511
|
+
path: {
|
|
1512
|
+
/** @description Collective identifier */
|
|
1513
|
+
id: components["schemas"]["SchemaVillageUUID"];
|
|
1514
|
+
};
|
|
1515
|
+
cookie?: never;
|
|
1516
|
+
};
|
|
1517
|
+
requestBody?: never;
|
|
1518
|
+
responses: {
|
|
1519
|
+
/** @description OK */
|
|
1520
|
+
200: {
|
|
1521
|
+
headers: {
|
|
1522
|
+
[name: string]: unknown;
|
|
1523
|
+
};
|
|
1524
|
+
content: {
|
|
1525
|
+
"application/json": components["schemas"]["SchemaVillageContributableResponse"];
|
|
1526
|
+
};
|
|
1527
|
+
};
|
|
1528
|
+
/** @description Bad Request */
|
|
1529
|
+
400: {
|
|
1530
|
+
headers: {
|
|
1531
|
+
[name: string]: unknown;
|
|
1532
|
+
};
|
|
1533
|
+
content: {
|
|
1534
|
+
"application/json": components["schemas"]["SchemaVillageErrorResponse"];
|
|
1535
|
+
};
|
|
1536
|
+
};
|
|
1537
|
+
/** @description Unauthorized */
|
|
1538
|
+
401: {
|
|
1539
|
+
headers: {
|
|
1540
|
+
[name: string]: unknown;
|
|
1541
|
+
};
|
|
1542
|
+
content: {
|
|
1543
|
+
"application/json": components["schemas"]["SchemaVillageErrorResponse"];
|
|
1544
|
+
};
|
|
1545
|
+
};
|
|
1546
|
+
/** @description Forbidden */
|
|
1547
|
+
403: {
|
|
1548
|
+
headers: {
|
|
1549
|
+
[name: string]: unknown;
|
|
1550
|
+
};
|
|
1551
|
+
content: {
|
|
1552
|
+
"application/json": components["schemas"]["SchemaVillageErrorResponse"];
|
|
1553
|
+
};
|
|
1554
|
+
};
|
|
1555
|
+
/** @description Request Entity Too Large */
|
|
1556
|
+
413: {
|
|
1557
|
+
headers: {
|
|
1558
|
+
[name: string]: unknown;
|
|
1559
|
+
};
|
|
1560
|
+
content: {
|
|
1561
|
+
"application/json": components["schemas"]["SchemaVillageErrorResponse"];
|
|
1562
|
+
};
|
|
1563
|
+
};
|
|
1564
|
+
/** @description Internal Server Error */
|
|
1565
|
+
500: {
|
|
1566
|
+
headers: {
|
|
1567
|
+
[name: string]: unknown;
|
|
1568
|
+
};
|
|
1569
|
+
content: {
|
|
1570
|
+
"application/json": components["schemas"]["SchemaVillageErrorResponse"];
|
|
1571
|
+
};
|
|
1572
|
+
};
|
|
1573
|
+
};
|
|
1574
|
+
};
|
|
1575
|
+
joinGroup: {
|
|
1576
|
+
parameters: {
|
|
1577
|
+
query?: never;
|
|
1578
|
+
header?: never;
|
|
1579
|
+
path: {
|
|
1580
|
+
/** @description Collective identifier */
|
|
1581
|
+
id: components["schemas"]["SchemaVillageUUID"];
|
|
1582
|
+
};
|
|
1583
|
+
cookie?: never;
|
|
1584
|
+
};
|
|
1585
|
+
requestBody?: never;
|
|
1586
|
+
responses: {
|
|
1587
|
+
/** @description OK */
|
|
1588
|
+
200: {
|
|
1589
|
+
headers: {
|
|
1590
|
+
[name: string]: unknown;
|
|
1591
|
+
};
|
|
1592
|
+
content: {
|
|
1593
|
+
"application/json": components["schemas"]["SchemaVillageGroupStatusRoleResponse"];
|
|
1594
|
+
};
|
|
1595
|
+
};
|
|
1596
|
+
/** @description Bad Request */
|
|
1597
|
+
400: {
|
|
1598
|
+
headers: {
|
|
1599
|
+
[name: string]: unknown;
|
|
1600
|
+
};
|
|
1601
|
+
content: {
|
|
1602
|
+
"application/json": components["schemas"]["SchemaVillageErrorResponse"];
|
|
1603
|
+
};
|
|
1604
|
+
};
|
|
1605
|
+
/** @description Unauthorized */
|
|
1606
|
+
401: {
|
|
1607
|
+
headers: {
|
|
1608
|
+
[name: string]: unknown;
|
|
1609
|
+
};
|
|
1610
|
+
content: {
|
|
1611
|
+
"application/json": components["schemas"]["SchemaVillageErrorResponse"];
|
|
1612
|
+
};
|
|
1613
|
+
};
|
|
1614
|
+
/** @description Forbidden */
|
|
1615
|
+
403: {
|
|
1616
|
+
headers: {
|
|
1617
|
+
[name: string]: unknown;
|
|
1618
|
+
};
|
|
1619
|
+
content: {
|
|
1620
|
+
"application/json": components["schemas"]["SchemaVillageErrorResponse"];
|
|
1621
|
+
};
|
|
1622
|
+
};
|
|
1623
|
+
/** @description Not Found */
|
|
1624
|
+
404: {
|
|
1625
|
+
headers: {
|
|
1626
|
+
[name: string]: unknown;
|
|
1627
|
+
};
|
|
1628
|
+
content: {
|
|
1629
|
+
"application/json": components["schemas"]["SchemaVillageErrorResponse"];
|
|
1630
|
+
};
|
|
1631
|
+
};
|
|
1632
|
+
/** @description Conflict */
|
|
1633
|
+
409: {
|
|
1634
|
+
headers: {
|
|
1635
|
+
[name: string]: unknown;
|
|
1636
|
+
};
|
|
1637
|
+
content: {
|
|
1638
|
+
"application/json": components["schemas"]["SchemaVillageErrorResponse"];
|
|
1639
|
+
};
|
|
1640
|
+
};
|
|
1641
|
+
/** @description Internal Server Error */
|
|
1642
|
+
500: {
|
|
1643
|
+
headers: {
|
|
1644
|
+
[name: string]: unknown;
|
|
1645
|
+
};
|
|
1646
|
+
content: {
|
|
1647
|
+
"application/json": components["schemas"]["SchemaVillageErrorResponse"];
|
|
1648
|
+
};
|
|
1649
|
+
};
|
|
1650
|
+
};
|
|
1651
|
+
};
|
|
1652
|
+
addGroupMember: {
|
|
1653
|
+
parameters: {
|
|
1654
|
+
query?: never;
|
|
1655
|
+
header?: never;
|
|
1656
|
+
path: {
|
|
1657
|
+
/** @description Collective identifier */
|
|
1658
|
+
id: components["schemas"]["SchemaVillageUUID"];
|
|
1659
|
+
};
|
|
1660
|
+
cookie?: never;
|
|
1661
|
+
};
|
|
1662
|
+
requestBody: {
|
|
1663
|
+
content: {
|
|
1664
|
+
"application/json": components["schemas"]["SchemaVillageGroupMemberUsernameRequest"];
|
|
1665
|
+
};
|
|
1666
|
+
};
|
|
1667
|
+
responses: {
|
|
1668
|
+
/** @description OK */
|
|
1669
|
+
200: {
|
|
1670
|
+
headers: {
|
|
1671
|
+
[name: string]: unknown;
|
|
1672
|
+
};
|
|
1673
|
+
content: {
|
|
1674
|
+
"application/json": components["schemas"]["SchemaVillageStatusResponse"];
|
|
1675
|
+
};
|
|
1676
|
+
};
|
|
1677
|
+
/** @description Bad Request */
|
|
1678
|
+
400: {
|
|
1679
|
+
headers: {
|
|
1680
|
+
[name: string]: unknown;
|
|
1681
|
+
};
|
|
1682
|
+
content: {
|
|
1683
|
+
"application/json": components["schemas"]["SchemaVillageErrorResponse"];
|
|
1684
|
+
};
|
|
1685
|
+
};
|
|
1686
|
+
/** @description Unauthorized */
|
|
1687
|
+
401: {
|
|
1688
|
+
headers: {
|
|
1689
|
+
[name: string]: unknown;
|
|
1690
|
+
};
|
|
1691
|
+
content: {
|
|
1692
|
+
"application/json": components["schemas"]["SchemaVillageErrorResponse"];
|
|
1693
|
+
};
|
|
1694
|
+
};
|
|
1695
|
+
/** @description Forbidden */
|
|
1696
|
+
403: {
|
|
1697
|
+
headers: {
|
|
1698
|
+
[name: string]: unknown;
|
|
1699
|
+
};
|
|
1700
|
+
content: {
|
|
1701
|
+
"application/json": components["schemas"]["SchemaVillageErrorResponse"];
|
|
1702
|
+
};
|
|
1703
|
+
};
|
|
1704
|
+
/** @description Not Found */
|
|
1705
|
+
404: {
|
|
1706
|
+
headers: {
|
|
1707
|
+
[name: string]: unknown;
|
|
1708
|
+
};
|
|
1709
|
+
content: {
|
|
1710
|
+
"application/json": components["schemas"]["SchemaVillageErrorResponse"];
|
|
1711
|
+
};
|
|
1712
|
+
};
|
|
1713
|
+
/** @description Internal Server Error */
|
|
1714
|
+
500: {
|
|
1715
|
+
headers: {
|
|
1716
|
+
[name: string]: unknown;
|
|
1717
|
+
};
|
|
1718
|
+
content: {
|
|
1719
|
+
"application/json": components["schemas"]["SchemaVillageErrorResponse"];
|
|
1720
|
+
};
|
|
1721
|
+
};
|
|
1722
|
+
};
|
|
1723
|
+
};
|
|
1724
|
+
removeGroupMember: {
|
|
1725
|
+
parameters: {
|
|
1726
|
+
query?: {
|
|
1727
|
+
retract?: boolean;
|
|
1728
|
+
};
|
|
1729
|
+
header?: never;
|
|
1730
|
+
path: {
|
|
1731
|
+
/** @description Collective identifier */
|
|
1732
|
+
id: components["schemas"]["SchemaVillageUUID"];
|
|
1733
|
+
/** @description Member user identifier */
|
|
1734
|
+
userID: components["schemas"]["SchemaVillageUUID"];
|
|
1735
|
+
};
|
|
1736
|
+
cookie?: never;
|
|
1737
|
+
};
|
|
1738
|
+
requestBody?: never;
|
|
1739
|
+
responses: {
|
|
1740
|
+
/** @description OK */
|
|
1741
|
+
200: {
|
|
1742
|
+
headers: {
|
|
1743
|
+
[name: string]: unknown;
|
|
1744
|
+
};
|
|
1745
|
+
content: {
|
|
1746
|
+
"application/json": components["schemas"]["SchemaVillageRemoveGroupMemberResponse"];
|
|
1747
|
+
};
|
|
1748
|
+
};
|
|
1749
|
+
/** @description Bad Request */
|
|
1750
|
+
400: {
|
|
1751
|
+
headers: {
|
|
1752
|
+
[name: string]: unknown;
|
|
1753
|
+
};
|
|
1754
|
+
content: {
|
|
1755
|
+
"application/json": components["schemas"]["SchemaVillageErrorResponse"];
|
|
1756
|
+
};
|
|
1757
|
+
};
|
|
1758
|
+
/** @description Unauthorized */
|
|
1759
|
+
401: {
|
|
1760
|
+
headers: {
|
|
1761
|
+
[name: string]: unknown;
|
|
1762
|
+
};
|
|
1763
|
+
content: {
|
|
1764
|
+
"application/json": components["schemas"]["SchemaVillageErrorResponse"];
|
|
1765
|
+
};
|
|
1766
|
+
};
|
|
1767
|
+
/** @description Forbidden */
|
|
1768
|
+
403: {
|
|
1769
|
+
headers: {
|
|
1770
|
+
[name: string]: unknown;
|
|
1771
|
+
};
|
|
1772
|
+
content: {
|
|
1773
|
+
"application/json": components["schemas"]["SchemaVillageErrorResponse"];
|
|
1774
|
+
};
|
|
1775
|
+
};
|
|
1776
|
+
/** @description Internal Server Error */
|
|
1777
|
+
500: {
|
|
1778
|
+
headers: {
|
|
1779
|
+
[name: string]: unknown;
|
|
1780
|
+
};
|
|
1781
|
+
content: {
|
|
1782
|
+
"application/json": components["schemas"]["SchemaVillageErrorResponse"];
|
|
1783
|
+
};
|
|
1784
|
+
};
|
|
1785
|
+
};
|
|
1786
|
+
};
|
|
1787
|
+
updateGroupMemberRole: {
|
|
1788
|
+
parameters: {
|
|
1789
|
+
query?: never;
|
|
1790
|
+
header?: never;
|
|
1791
|
+
path: {
|
|
1792
|
+
/** @description Collective identifier */
|
|
1793
|
+
id: components["schemas"]["SchemaVillageUUID"];
|
|
1794
|
+
/** @description Member user identifier */
|
|
1795
|
+
userID: components["schemas"]["SchemaVillageUUID"];
|
|
1796
|
+
};
|
|
1797
|
+
cookie?: never;
|
|
1798
|
+
};
|
|
1799
|
+
requestBody: {
|
|
1800
|
+
content: {
|
|
1801
|
+
"application/json": components["schemas"]["SchemaVillageGroupMemberRoleRequest"];
|
|
1802
|
+
};
|
|
1803
|
+
};
|
|
1804
|
+
responses: {
|
|
1805
|
+
/** @description OK */
|
|
1806
|
+
200: {
|
|
1807
|
+
headers: {
|
|
1808
|
+
[name: string]: unknown;
|
|
1809
|
+
};
|
|
1810
|
+
content: {
|
|
1811
|
+
"application/json": components["schemas"]["SchemaVillageGroupStatusRoleResponse"];
|
|
1812
|
+
};
|
|
1813
|
+
};
|
|
1814
|
+
/** @description Bad Request */
|
|
1815
|
+
400: {
|
|
1816
|
+
headers: {
|
|
1817
|
+
[name: string]: unknown;
|
|
1818
|
+
};
|
|
1819
|
+
content: {
|
|
1820
|
+
"application/json": components["schemas"]["SchemaVillageErrorResponse"];
|
|
1821
|
+
};
|
|
1822
|
+
};
|
|
1823
|
+
/** @description Unauthorized */
|
|
1824
|
+
401: {
|
|
1825
|
+
headers: {
|
|
1826
|
+
[name: string]: unknown;
|
|
1827
|
+
};
|
|
1828
|
+
content: {
|
|
1829
|
+
"application/json": components["schemas"]["SchemaVillageErrorResponse"];
|
|
1830
|
+
};
|
|
1831
|
+
};
|
|
1832
|
+
/** @description Forbidden */
|
|
1833
|
+
403: {
|
|
1834
|
+
headers: {
|
|
1835
|
+
[name: string]: unknown;
|
|
1836
|
+
};
|
|
1837
|
+
content: {
|
|
1838
|
+
"application/json": components["schemas"]["SchemaVillageErrorResponse"];
|
|
1839
|
+
};
|
|
1840
|
+
};
|
|
1841
|
+
/** @description Not Found */
|
|
1842
|
+
404: {
|
|
1843
|
+
headers: {
|
|
1844
|
+
[name: string]: unknown;
|
|
1845
|
+
};
|
|
1846
|
+
content: {
|
|
1847
|
+
"application/json": components["schemas"]["SchemaVillageErrorResponse"];
|
|
1848
|
+
};
|
|
1849
|
+
};
|
|
1850
|
+
/** @description Internal Server Error */
|
|
1851
|
+
500: {
|
|
1852
|
+
headers: {
|
|
1853
|
+
[name: string]: unknown;
|
|
1854
|
+
};
|
|
1855
|
+
content: {
|
|
1856
|
+
"application/json": components["schemas"]["SchemaVillageErrorResponse"];
|
|
1857
|
+
};
|
|
1858
|
+
};
|
|
1859
|
+
};
|
|
1860
|
+
};
|
|
1861
|
+
listMyGroupShares: {
|
|
1862
|
+
parameters: {
|
|
1863
|
+
query?: never;
|
|
1864
|
+
header?: never;
|
|
1865
|
+
path: {
|
|
1866
|
+
/** @description Collective identifier */
|
|
1867
|
+
id: components["schemas"]["SchemaVillageUUID"];
|
|
1868
|
+
};
|
|
1869
|
+
cookie?: never;
|
|
1870
|
+
};
|
|
1871
|
+
requestBody?: never;
|
|
1872
|
+
responses: {
|
|
1873
|
+
/** @description OK */
|
|
1874
|
+
200: {
|
|
1875
|
+
headers: {
|
|
1876
|
+
[name: string]: unknown;
|
|
1877
|
+
};
|
|
1878
|
+
content: {
|
|
1879
|
+
"application/json": null | components["schemas"]["SchemaVillageUserGroupShare"][];
|
|
1880
|
+
};
|
|
1881
|
+
};
|
|
1882
|
+
/** @description Bad Request */
|
|
1883
|
+
400: {
|
|
1884
|
+
headers: {
|
|
1885
|
+
[name: string]: unknown;
|
|
1886
|
+
};
|
|
1887
|
+
content: {
|
|
1888
|
+
"application/json": components["schemas"]["SchemaVillageErrorResponse"];
|
|
1889
|
+
};
|
|
1890
|
+
};
|
|
1891
|
+
/** @description Unauthorized */
|
|
1892
|
+
401: {
|
|
1893
|
+
headers: {
|
|
1894
|
+
[name: string]: unknown;
|
|
1895
|
+
};
|
|
1896
|
+
content: {
|
|
1897
|
+
"application/json": components["schemas"]["SchemaVillageErrorResponse"];
|
|
1898
|
+
};
|
|
1899
|
+
};
|
|
1900
|
+
/** @description Internal Server Error */
|
|
1901
|
+
500: {
|
|
1902
|
+
headers: {
|
|
1903
|
+
[name: string]: unknown;
|
|
1904
|
+
};
|
|
1905
|
+
content: {
|
|
1906
|
+
"application/json": components["schemas"]["SchemaVillageErrorResponse"];
|
|
1907
|
+
};
|
|
1908
|
+
};
|
|
1909
|
+
};
|
|
1910
|
+
};
|
|
1911
|
+
listPendingShares: {
|
|
1912
|
+
parameters: {
|
|
1913
|
+
query?: never;
|
|
1914
|
+
header?: never;
|
|
1915
|
+
path: {
|
|
1916
|
+
/** @description Collective identifier */
|
|
1917
|
+
id: components["schemas"]["SchemaVillageUUID"];
|
|
1918
|
+
};
|
|
1919
|
+
cookie?: never;
|
|
1920
|
+
};
|
|
1921
|
+
requestBody?: never;
|
|
1922
|
+
responses: {
|
|
1923
|
+
/** @description OK */
|
|
1924
|
+
200: {
|
|
1925
|
+
headers: {
|
|
1926
|
+
[name: string]: unknown;
|
|
1927
|
+
};
|
|
1928
|
+
content: {
|
|
1929
|
+
"application/json": null | components["schemas"]["SchemaVillagePendingShare"][];
|
|
1930
|
+
};
|
|
1931
|
+
};
|
|
1932
|
+
/** @description Bad Request */
|
|
1933
|
+
400: {
|
|
1934
|
+
headers: {
|
|
1935
|
+
[name: string]: unknown;
|
|
1936
|
+
};
|
|
1937
|
+
content: {
|
|
1938
|
+
"application/json": components["schemas"]["SchemaVillageErrorResponse"];
|
|
1939
|
+
};
|
|
1940
|
+
};
|
|
1941
|
+
/** @description Unauthorized */
|
|
1942
|
+
401: {
|
|
1943
|
+
headers: {
|
|
1944
|
+
[name: string]: unknown;
|
|
1945
|
+
};
|
|
1946
|
+
content: {
|
|
1947
|
+
"application/json": components["schemas"]["SchemaVillageErrorResponse"];
|
|
1948
|
+
};
|
|
1949
|
+
};
|
|
1950
|
+
/** @description Forbidden */
|
|
1951
|
+
403: {
|
|
1952
|
+
headers: {
|
|
1953
|
+
[name: string]: unknown;
|
|
1954
|
+
};
|
|
1955
|
+
content: {
|
|
1956
|
+
"application/json": components["schemas"]["SchemaVillageErrorResponse"];
|
|
1957
|
+
};
|
|
1958
|
+
};
|
|
1959
|
+
/** @description Internal Server Error */
|
|
1960
|
+
500: {
|
|
1961
|
+
headers: {
|
|
1962
|
+
[name: string]: unknown;
|
|
1963
|
+
};
|
|
1964
|
+
content: {
|
|
1965
|
+
"application/json": components["schemas"]["SchemaVillageErrorResponse"];
|
|
1966
|
+
};
|
|
1967
|
+
};
|
|
1968
|
+
};
|
|
1969
|
+
};
|
|
1970
|
+
listGroupRepositories: {
|
|
1971
|
+
parameters: {
|
|
1972
|
+
query?: never;
|
|
1973
|
+
header?: never;
|
|
1974
|
+
path: {
|
|
1975
|
+
/** @description Collective identifier */
|
|
1976
|
+
id: components["schemas"]["SchemaVillageUUID"];
|
|
1977
|
+
};
|
|
1978
|
+
cookie?: never;
|
|
1979
|
+
};
|
|
1980
|
+
requestBody?: never;
|
|
1981
|
+
responses: {
|
|
1982
|
+
/** @description OK */
|
|
1983
|
+
200: {
|
|
1984
|
+
headers: {
|
|
1985
|
+
[name: string]: unknown;
|
|
1986
|
+
};
|
|
1987
|
+
content: {
|
|
1988
|
+
"application/json": components["schemas"]["SchemaVillageLinkedRepositoriesResponse"];
|
|
1989
|
+
};
|
|
1990
|
+
};
|
|
1991
|
+
/** @description Bad Request */
|
|
1992
|
+
400: {
|
|
1993
|
+
headers: {
|
|
1994
|
+
[name: string]: unknown;
|
|
1995
|
+
};
|
|
1996
|
+
content: {
|
|
1997
|
+
"application/json": components["schemas"]["SchemaVillageErrorResponse"];
|
|
1998
|
+
};
|
|
1999
|
+
};
|
|
2000
|
+
/** @description Unauthorized */
|
|
2001
|
+
401: {
|
|
2002
|
+
headers: {
|
|
2003
|
+
[name: string]: unknown;
|
|
2004
|
+
};
|
|
2005
|
+
content: {
|
|
2006
|
+
"application/json": components["schemas"]["SchemaVillageErrorResponse"];
|
|
2007
|
+
};
|
|
2008
|
+
};
|
|
2009
|
+
/** @description Forbidden */
|
|
2010
|
+
403: {
|
|
2011
|
+
headers: {
|
|
2012
|
+
[name: string]: unknown;
|
|
2013
|
+
};
|
|
2014
|
+
content: {
|
|
2015
|
+
"application/json": components["schemas"]["SchemaVillageErrorResponse"];
|
|
2016
|
+
};
|
|
2017
|
+
};
|
|
2018
|
+
/** @description Internal Server Error */
|
|
2019
|
+
500: {
|
|
2020
|
+
headers: {
|
|
2021
|
+
[name: string]: unknown;
|
|
2022
|
+
};
|
|
2023
|
+
content: {
|
|
2024
|
+
"application/json": components["schemas"]["SchemaVillageErrorResponse"];
|
|
2025
|
+
};
|
|
2026
|
+
};
|
|
2027
|
+
};
|
|
2028
|
+
};
|
|
2029
|
+
linkGroupRepository: {
|
|
2030
|
+
parameters: {
|
|
2031
|
+
query?: never;
|
|
2032
|
+
header?: never;
|
|
2033
|
+
path: {
|
|
2034
|
+
/** @description Collective identifier */
|
|
2035
|
+
id: components["schemas"]["SchemaVillageUUID"];
|
|
2036
|
+
};
|
|
2037
|
+
cookie?: never;
|
|
2038
|
+
};
|
|
2039
|
+
requestBody: {
|
|
2040
|
+
content: {
|
|
2041
|
+
"application/json": components["schemas"]["SchemaVillageLinkRepositoryRequest"];
|
|
2042
|
+
};
|
|
2043
|
+
};
|
|
2044
|
+
responses: {
|
|
2045
|
+
/** @description Created */
|
|
2046
|
+
201: {
|
|
2047
|
+
headers: {
|
|
2048
|
+
[name: string]: unknown;
|
|
2049
|
+
};
|
|
2050
|
+
content: {
|
|
2051
|
+
"application/json": components["schemas"]["SchemaVillageLinkedRepository"];
|
|
2052
|
+
};
|
|
2053
|
+
};
|
|
2054
|
+
/** @description Bad Request */
|
|
2055
|
+
400: {
|
|
2056
|
+
headers: {
|
|
2057
|
+
[name: string]: unknown;
|
|
2058
|
+
};
|
|
2059
|
+
content: {
|
|
2060
|
+
"application/json": components["schemas"]["SchemaVillageErrorResponse"];
|
|
2061
|
+
};
|
|
2062
|
+
};
|
|
2063
|
+
/** @description Unauthorized */
|
|
2064
|
+
401: {
|
|
2065
|
+
headers: {
|
|
2066
|
+
[name: string]: unknown;
|
|
2067
|
+
};
|
|
2068
|
+
content: {
|
|
2069
|
+
"application/json": components["schemas"]["SchemaVillageErrorResponse"];
|
|
2070
|
+
};
|
|
2071
|
+
};
|
|
2072
|
+
/** @description Forbidden */
|
|
2073
|
+
403: {
|
|
2074
|
+
headers: {
|
|
2075
|
+
[name: string]: unknown;
|
|
2076
|
+
};
|
|
2077
|
+
content: {
|
|
2078
|
+
"application/json": components["schemas"]["SchemaVillageErrorResponse"];
|
|
2079
|
+
};
|
|
2080
|
+
};
|
|
2081
|
+
/** @description Internal Server Error */
|
|
2082
|
+
500: {
|
|
2083
|
+
headers: {
|
|
2084
|
+
[name: string]: unknown;
|
|
2085
|
+
};
|
|
2086
|
+
content: {
|
|
2087
|
+
"application/json": components["schemas"]["SchemaVillageErrorResponse"];
|
|
2088
|
+
};
|
|
2089
|
+
};
|
|
2090
|
+
/** @description Not Implemented */
|
|
2091
|
+
501: {
|
|
2092
|
+
headers: {
|
|
2093
|
+
[name: string]: unknown;
|
|
2094
|
+
};
|
|
2095
|
+
content: {
|
|
2096
|
+
"application/json": components["schemas"]["SchemaVillageErrorResponse"];
|
|
2097
|
+
};
|
|
2098
|
+
};
|
|
2099
|
+
};
|
|
2100
|
+
};
|
|
2101
|
+
unlinkGroupRepository: {
|
|
2102
|
+
parameters: {
|
|
2103
|
+
query?: never;
|
|
2104
|
+
header?: never;
|
|
2105
|
+
path: {
|
|
2106
|
+
/** @description Collective identifier */
|
|
2107
|
+
id: components["schemas"]["SchemaVillageUUID"];
|
|
2108
|
+
/** @description Repository owner login */
|
|
2109
|
+
owner: string;
|
|
2110
|
+
/** @description Repository name */
|
|
2111
|
+
name: string;
|
|
2112
|
+
};
|
|
2113
|
+
cookie?: never;
|
|
2114
|
+
};
|
|
2115
|
+
requestBody?: never;
|
|
2116
|
+
responses: {
|
|
2117
|
+
/** @description OK */
|
|
2118
|
+
200: {
|
|
2119
|
+
headers: {
|
|
2120
|
+
[name: string]: unknown;
|
|
2121
|
+
};
|
|
2122
|
+
content: {
|
|
2123
|
+
"application/json": components["schemas"]["SchemaVillageStatusResponse"];
|
|
2124
|
+
};
|
|
2125
|
+
};
|
|
2126
|
+
/** @description Bad Request */
|
|
2127
|
+
400: {
|
|
2128
|
+
headers: {
|
|
2129
|
+
[name: string]: unknown;
|
|
2130
|
+
};
|
|
2131
|
+
content: {
|
|
2132
|
+
"application/json": components["schemas"]["SchemaVillageErrorResponse"];
|
|
2133
|
+
};
|
|
2134
|
+
};
|
|
2135
|
+
/** @description Unauthorized */
|
|
2136
|
+
401: {
|
|
2137
|
+
headers: {
|
|
2138
|
+
[name: string]: unknown;
|
|
2139
|
+
};
|
|
2140
|
+
content: {
|
|
2141
|
+
"application/json": components["schemas"]["SchemaVillageErrorResponse"];
|
|
2142
|
+
};
|
|
2143
|
+
};
|
|
2144
|
+
/** @description Forbidden */
|
|
2145
|
+
403: {
|
|
2146
|
+
headers: {
|
|
2147
|
+
[name: string]: unknown;
|
|
2148
|
+
};
|
|
2149
|
+
content: {
|
|
2150
|
+
"application/json": components["schemas"]["SchemaVillageErrorResponse"];
|
|
2151
|
+
};
|
|
2152
|
+
};
|
|
2153
|
+
/** @description Not Found */
|
|
2154
|
+
404: {
|
|
2155
|
+
headers: {
|
|
2156
|
+
[name: string]: unknown;
|
|
2157
|
+
};
|
|
2158
|
+
content: {
|
|
2159
|
+
"application/json": components["schemas"]["SchemaVillageErrorResponse"];
|
|
2160
|
+
};
|
|
2161
|
+
};
|
|
2162
|
+
/** @description Internal Server Error */
|
|
2163
|
+
500: {
|
|
2164
|
+
headers: {
|
|
2165
|
+
[name: string]: unknown;
|
|
2166
|
+
};
|
|
2167
|
+
content: {
|
|
2168
|
+
"application/json": components["schemas"]["SchemaVillageErrorResponse"];
|
|
2169
|
+
};
|
|
2170
|
+
};
|
|
2171
|
+
};
|
|
2172
|
+
};
|
|
2173
|
+
listGroupRepositoryCommits: {
|
|
2174
|
+
parameters: {
|
|
2175
|
+
query?: {
|
|
2176
|
+
refresh?: boolean;
|
|
2177
|
+
};
|
|
2178
|
+
header?: never;
|
|
2179
|
+
path: {
|
|
2180
|
+
/** @description Collective identifier */
|
|
2181
|
+
id: components["schemas"]["SchemaVillageUUID"];
|
|
2182
|
+
/** @description Repository owner login */
|
|
2183
|
+
owner: string;
|
|
2184
|
+
/** @description Repository name */
|
|
2185
|
+
name: string;
|
|
2186
|
+
};
|
|
2187
|
+
cookie?: never;
|
|
2188
|
+
};
|
|
2189
|
+
requestBody?: never;
|
|
2190
|
+
responses: {
|
|
2191
|
+
/** @description OK */
|
|
2192
|
+
200: {
|
|
2193
|
+
headers: {
|
|
2194
|
+
[name: string]: unknown;
|
|
2195
|
+
};
|
|
2196
|
+
content: {
|
|
2197
|
+
"application/json": components["schemas"]["SchemaVillageRepositoryCommitsResponse"];
|
|
2198
|
+
};
|
|
2199
|
+
};
|
|
2200
|
+
/** @description Bad Request */
|
|
2201
|
+
400: {
|
|
2202
|
+
headers: {
|
|
2203
|
+
[name: string]: unknown;
|
|
2204
|
+
};
|
|
2205
|
+
content: {
|
|
2206
|
+
"application/json": components["schemas"]["SchemaVillageErrorResponse"];
|
|
2207
|
+
};
|
|
2208
|
+
};
|
|
2209
|
+
/** @description Unauthorized */
|
|
2210
|
+
401: {
|
|
2211
|
+
headers: {
|
|
2212
|
+
[name: string]: unknown;
|
|
2213
|
+
};
|
|
2214
|
+
content: {
|
|
2215
|
+
"application/json": components["schemas"]["SchemaVillageErrorResponse"];
|
|
2216
|
+
};
|
|
2217
|
+
};
|
|
2218
|
+
/** @description Forbidden */
|
|
2219
|
+
403: {
|
|
2220
|
+
headers: {
|
|
2221
|
+
[name: string]: unknown;
|
|
2222
|
+
};
|
|
2223
|
+
content: {
|
|
2224
|
+
"application/json": components["schemas"]["SchemaVillageErrorResponse"];
|
|
2225
|
+
};
|
|
2226
|
+
};
|
|
2227
|
+
/** @description Not Found */
|
|
2228
|
+
404: {
|
|
2229
|
+
headers: {
|
|
2230
|
+
[name: string]: unknown;
|
|
2231
|
+
};
|
|
2232
|
+
content: {
|
|
2233
|
+
"application/json": components["schemas"]["SchemaVillageErrorResponse"];
|
|
2234
|
+
};
|
|
2235
|
+
};
|
|
2236
|
+
/** @description Internal Server Error */
|
|
2237
|
+
500: {
|
|
2238
|
+
headers: {
|
|
2239
|
+
[name: string]: unknown;
|
|
2240
|
+
};
|
|
2241
|
+
content: {
|
|
2242
|
+
"application/json": components["schemas"]["SchemaVillageErrorResponse"];
|
|
2243
|
+
};
|
|
2244
|
+
};
|
|
2245
|
+
/** @description Not Implemented */
|
|
2246
|
+
501: {
|
|
2247
|
+
headers: {
|
|
2248
|
+
[name: string]: unknown;
|
|
2249
|
+
};
|
|
2250
|
+
content: {
|
|
2251
|
+
"application/json": components["schemas"]["SchemaVillageErrorResponse"];
|
|
2252
|
+
};
|
|
2253
|
+
};
|
|
2254
|
+
/** @description Bad Gateway */
|
|
2255
|
+
502: {
|
|
2256
|
+
headers: {
|
|
2257
|
+
[name: string]: unknown;
|
|
2258
|
+
};
|
|
2259
|
+
content: {
|
|
2260
|
+
"application/json": components["schemas"]["SchemaVillageErrorResponse"];
|
|
2261
|
+
};
|
|
2262
|
+
};
|
|
2263
|
+
};
|
|
2264
|
+
};
|
|
2265
|
+
batchShareProject: {
|
|
2266
|
+
parameters: {
|
|
2267
|
+
query?: never;
|
|
2268
|
+
header?: never;
|
|
2269
|
+
path: {
|
|
2270
|
+
/** @description Collective identifier */
|
|
2271
|
+
id: components["schemas"]["SchemaVillageUUID"];
|
|
2272
|
+
};
|
|
2273
|
+
cookie?: never;
|
|
2274
|
+
};
|
|
2275
|
+
requestBody: {
|
|
2276
|
+
content: {
|
|
2277
|
+
"application/json": components["schemas"]["SchemaVillageBatchShareRequest"];
|
|
2278
|
+
};
|
|
2279
|
+
};
|
|
2280
|
+
responses: {
|
|
2281
|
+
/** @description OK */
|
|
2282
|
+
200: {
|
|
2283
|
+
headers: {
|
|
2284
|
+
[name: string]: unknown;
|
|
2285
|
+
};
|
|
2286
|
+
content: {
|
|
2287
|
+
"application/json": components["schemas"]["SchemaVillageBatchShareResponse"];
|
|
2288
|
+
};
|
|
2289
|
+
};
|
|
2290
|
+
/** @description Bad Request */
|
|
2291
|
+
400: {
|
|
2292
|
+
headers: {
|
|
2293
|
+
[name: string]: unknown;
|
|
2294
|
+
};
|
|
2295
|
+
content: {
|
|
2296
|
+
"application/json": components["schemas"]["SchemaVillageErrorResponse"];
|
|
2297
|
+
};
|
|
2298
|
+
};
|
|
2299
|
+
/** @description Unauthorized */
|
|
2300
|
+
401: {
|
|
2301
|
+
headers: {
|
|
2302
|
+
[name: string]: unknown;
|
|
2303
|
+
};
|
|
2304
|
+
content: {
|
|
2305
|
+
"application/json": components["schemas"]["SchemaVillageErrorResponse"];
|
|
2306
|
+
};
|
|
2307
|
+
};
|
|
2308
|
+
/** @description Forbidden */
|
|
2309
|
+
403: {
|
|
2310
|
+
headers: {
|
|
2311
|
+
[name: string]: unknown;
|
|
2312
|
+
};
|
|
2313
|
+
content: {
|
|
2314
|
+
"application/json": components["schemas"]["SchemaVillageErrorResponse"];
|
|
2315
|
+
};
|
|
2316
|
+
};
|
|
2317
|
+
/** @description Not Found */
|
|
2318
|
+
404: {
|
|
2319
|
+
headers: {
|
|
2320
|
+
[name: string]: unknown;
|
|
2321
|
+
};
|
|
2322
|
+
content: {
|
|
2323
|
+
"application/json": components["schemas"]["SchemaVillageErrorResponse"];
|
|
2324
|
+
};
|
|
2325
|
+
};
|
|
2326
|
+
/** @description Conflict */
|
|
2327
|
+
409: {
|
|
2328
|
+
headers: {
|
|
2329
|
+
[name: string]: unknown;
|
|
2330
|
+
};
|
|
2331
|
+
content: {
|
|
2332
|
+
"application/json": components["schemas"]["SchemaVillageErrorResponse"];
|
|
2333
|
+
};
|
|
2334
|
+
};
|
|
2335
|
+
/** @description Unprocessable Entity */
|
|
2336
|
+
422: {
|
|
2337
|
+
headers: {
|
|
2338
|
+
[name: string]: unknown;
|
|
2339
|
+
};
|
|
2340
|
+
content: {
|
|
2341
|
+
"application/json": components["schemas"]["SchemaVillageErrorResponse"];
|
|
2342
|
+
};
|
|
2343
|
+
};
|
|
2344
|
+
/** @description Internal Server Error */
|
|
2345
|
+
500: {
|
|
2346
|
+
headers: {
|
|
2347
|
+
[name: string]: unknown;
|
|
2348
|
+
};
|
|
2349
|
+
content: {
|
|
2350
|
+
"application/json": components["schemas"]["SchemaVillageErrorResponse"];
|
|
2351
|
+
};
|
|
2352
|
+
};
|
|
2353
|
+
};
|
|
2354
|
+
};
|
|
2355
|
+
batchReviewShares: {
|
|
2356
|
+
parameters: {
|
|
2357
|
+
query?: never;
|
|
2358
|
+
header?: never;
|
|
2359
|
+
path: {
|
|
2360
|
+
/** @description Collective identifier */
|
|
2361
|
+
id: components["schemas"]["SchemaVillageUUID"];
|
|
2362
|
+
};
|
|
2363
|
+
cookie?: never;
|
|
2364
|
+
};
|
|
2365
|
+
requestBody: {
|
|
2366
|
+
content: {
|
|
2367
|
+
"application/json": components["schemas"]["SchemaVillageBatchReviewRequest"];
|
|
2368
|
+
};
|
|
2369
|
+
};
|
|
2370
|
+
responses: {
|
|
2371
|
+
/** @description OK */
|
|
2372
|
+
200: {
|
|
2373
|
+
headers: {
|
|
2374
|
+
[name: string]: unknown;
|
|
2375
|
+
};
|
|
2376
|
+
content: {
|
|
2377
|
+
"application/json": components["schemas"]["SchemaVillageBatchReviewResponse"];
|
|
2378
|
+
};
|
|
2379
|
+
};
|
|
2380
|
+
/** @description Bad Request */
|
|
2381
|
+
400: {
|
|
2382
|
+
headers: {
|
|
2383
|
+
[name: string]: unknown;
|
|
2384
|
+
};
|
|
2385
|
+
content: {
|
|
2386
|
+
"application/json": components["schemas"]["SchemaVillageErrorResponse"];
|
|
2387
|
+
};
|
|
2388
|
+
};
|
|
2389
|
+
/** @description Unauthorized */
|
|
2390
|
+
401: {
|
|
2391
|
+
headers: {
|
|
2392
|
+
[name: string]: unknown;
|
|
2393
|
+
};
|
|
2394
|
+
content: {
|
|
2395
|
+
"application/json": components["schemas"]["SchemaVillageErrorResponse"];
|
|
2396
|
+
};
|
|
2397
|
+
};
|
|
2398
|
+
/** @description Forbidden */
|
|
2399
|
+
403: {
|
|
2400
|
+
headers: {
|
|
2401
|
+
[name: string]: unknown;
|
|
2402
|
+
};
|
|
2403
|
+
content: {
|
|
2404
|
+
"application/json": components["schemas"]["SchemaVillageErrorResponse"];
|
|
2405
|
+
};
|
|
2406
|
+
};
|
|
2407
|
+
/** @description Internal Server Error */
|
|
2408
|
+
500: {
|
|
2409
|
+
headers: {
|
|
2410
|
+
[name: string]: unknown;
|
|
2411
|
+
};
|
|
2412
|
+
content: {
|
|
2413
|
+
"application/json": components["schemas"]["SchemaVillageErrorResponse"];
|
|
2414
|
+
};
|
|
2415
|
+
};
|
|
2416
|
+
};
|
|
2417
|
+
};
|
|
2418
|
+
reviewShare: {
|
|
2419
|
+
parameters: {
|
|
2420
|
+
query?: never;
|
|
2421
|
+
header?: never;
|
|
2422
|
+
path: {
|
|
2423
|
+
/** @description Collective identifier */
|
|
2424
|
+
id: components["schemas"]["SchemaVillageUUID"];
|
|
2425
|
+
/** @description Transcript identifier */
|
|
2426
|
+
transcriptID: components["schemas"]["SchemaTranscriptID"];
|
|
2427
|
+
};
|
|
2428
|
+
cookie?: never;
|
|
2429
|
+
};
|
|
2430
|
+
requestBody: {
|
|
2431
|
+
content: {
|
|
2432
|
+
"application/json": components["schemas"]["SchemaVillageReviewShareRequest"];
|
|
2433
|
+
};
|
|
2434
|
+
};
|
|
2435
|
+
responses: {
|
|
2436
|
+
/** @description OK */
|
|
2437
|
+
200: {
|
|
2438
|
+
headers: {
|
|
2439
|
+
[name: string]: unknown;
|
|
2440
|
+
};
|
|
2441
|
+
content: {
|
|
2442
|
+
"application/json": components["schemas"]["SchemaVillageReviewShareResponse"];
|
|
2443
|
+
};
|
|
2444
|
+
};
|
|
2445
|
+
/** @description Bad Request */
|
|
2446
|
+
400: {
|
|
2447
|
+
headers: {
|
|
2448
|
+
[name: string]: unknown;
|
|
2449
|
+
};
|
|
2450
|
+
content: {
|
|
2451
|
+
"application/json": components["schemas"]["SchemaVillageErrorResponse"];
|
|
2452
|
+
};
|
|
2453
|
+
};
|
|
2454
|
+
/** @description Unauthorized */
|
|
2455
|
+
401: {
|
|
2456
|
+
headers: {
|
|
2457
|
+
[name: string]: unknown;
|
|
2458
|
+
};
|
|
2459
|
+
content: {
|
|
2460
|
+
"application/json": components["schemas"]["SchemaVillageErrorResponse"];
|
|
2461
|
+
};
|
|
2462
|
+
};
|
|
2463
|
+
/** @description Forbidden */
|
|
2464
|
+
403: {
|
|
2465
|
+
headers: {
|
|
2466
|
+
[name: string]: unknown;
|
|
2467
|
+
};
|
|
2468
|
+
content: {
|
|
2469
|
+
"application/json": components["schemas"]["SchemaVillageErrorResponse"];
|
|
2470
|
+
};
|
|
2471
|
+
};
|
|
2472
|
+
/** @description Internal Server Error */
|
|
2473
|
+
500: {
|
|
2474
|
+
headers: {
|
|
2475
|
+
[name: string]: unknown;
|
|
2476
|
+
};
|
|
2477
|
+
content: {
|
|
2478
|
+
"application/json": components["schemas"]["SchemaVillageErrorResponse"];
|
|
2479
|
+
};
|
|
2480
|
+
};
|
|
2481
|
+
};
|
|
2482
|
+
};
|
|
2483
|
+
removeGroupTranscript: {
|
|
2484
|
+
parameters: {
|
|
2485
|
+
query?: never;
|
|
2486
|
+
header?: never;
|
|
2487
|
+
path: {
|
|
2488
|
+
/** @description Collective identifier */
|
|
2489
|
+
id: components["schemas"]["SchemaVillageUUID"];
|
|
2490
|
+
/** @description Transcript identifier */
|
|
2491
|
+
transcriptID: components["schemas"]["SchemaTranscriptID"];
|
|
2492
|
+
};
|
|
2493
|
+
cookie?: never;
|
|
2494
|
+
};
|
|
2495
|
+
requestBody?: never;
|
|
2496
|
+
responses: {
|
|
2497
|
+
/** @description OK */
|
|
2498
|
+
200: {
|
|
2499
|
+
headers: {
|
|
2500
|
+
[name: string]: unknown;
|
|
2501
|
+
};
|
|
2502
|
+
content: {
|
|
2503
|
+
"application/json": components["schemas"]["SchemaVillageStatusResponse"];
|
|
2504
|
+
};
|
|
2505
|
+
};
|
|
2506
|
+
/** @description Bad Request */
|
|
2507
|
+
400: {
|
|
2508
|
+
headers: {
|
|
2509
|
+
[name: string]: unknown;
|
|
2510
|
+
};
|
|
2511
|
+
content: {
|
|
2512
|
+
"application/json": components["schemas"]["SchemaVillageErrorResponse"];
|
|
2513
|
+
};
|
|
2514
|
+
};
|
|
2515
|
+
/** @description Unauthorized */
|
|
2516
|
+
401: {
|
|
2517
|
+
headers: {
|
|
2518
|
+
[name: string]: unknown;
|
|
2519
|
+
};
|
|
2520
|
+
content: {
|
|
2521
|
+
"application/json": components["schemas"]["SchemaVillageErrorResponse"];
|
|
2522
|
+
};
|
|
2523
|
+
};
|
|
2524
|
+
/** @description Forbidden */
|
|
2525
|
+
403: {
|
|
2526
|
+
headers: {
|
|
2527
|
+
[name: string]: unknown;
|
|
2528
|
+
};
|
|
2529
|
+
content: {
|
|
2530
|
+
"application/json": components["schemas"]["SchemaVillageErrorResponse"];
|
|
2531
|
+
};
|
|
2532
|
+
};
|
|
2533
|
+
/** @description Internal Server Error */
|
|
2534
|
+
500: {
|
|
2535
|
+
headers: {
|
|
2536
|
+
[name: string]: unknown;
|
|
2537
|
+
};
|
|
2538
|
+
content: {
|
|
2539
|
+
"application/json": components["schemas"]["SchemaVillageErrorResponse"];
|
|
2540
|
+
};
|
|
2541
|
+
};
|
|
2542
|
+
};
|
|
2543
|
+
};
|
|
2544
|
+
listPullableTranscripts: {
|
|
2545
|
+
parameters: {
|
|
2546
|
+
query?: {
|
|
2547
|
+
page?: number;
|
|
2548
|
+
limit?: number;
|
|
2549
|
+
};
|
|
2550
|
+
header?: never;
|
|
2551
|
+
path?: never;
|
|
2552
|
+
cookie?: never;
|
|
2553
|
+
};
|
|
2554
|
+
requestBody?: never;
|
|
2555
|
+
responses: {
|
|
2556
|
+
/** @description OK */
|
|
2557
|
+
200: {
|
|
2558
|
+
headers: {
|
|
2559
|
+
[name: string]: unknown;
|
|
2560
|
+
};
|
|
2561
|
+
content: {
|
|
2562
|
+
"application/json": components["schemas"]["SchemaPullListResponse"];
|
|
2563
|
+
};
|
|
2564
|
+
};
|
|
2565
|
+
};
|
|
2566
|
+
};
|
|
2567
|
+
pullSkipGate: {
|
|
2568
|
+
parameters: {
|
|
2569
|
+
query?: never;
|
|
2570
|
+
header?: never;
|
|
2571
|
+
path?: never;
|
|
2572
|
+
cookie?: never;
|
|
2573
|
+
};
|
|
2574
|
+
requestBody?: {
|
|
2575
|
+
content: {
|
|
2576
|
+
"application/json": components["schemas"]["SchemaPullSkipGateRequest"];
|
|
2577
|
+
};
|
|
2578
|
+
};
|
|
2579
|
+
responses: {
|
|
2580
|
+
/** @description OK */
|
|
2581
|
+
200: {
|
|
2582
|
+
headers: {
|
|
2583
|
+
[name: string]: unknown;
|
|
2584
|
+
};
|
|
2585
|
+
content: {
|
|
2586
|
+
"application/json": components["schemas"]["SchemaPullSkipGateResponse"];
|
|
2587
|
+
};
|
|
2588
|
+
};
|
|
2589
|
+
};
|
|
2590
|
+
};
|
|
2591
|
+
getPullTranscript: {
|
|
2592
|
+
parameters: {
|
|
2593
|
+
query?: never;
|
|
2594
|
+
header?: never;
|
|
2595
|
+
path: {
|
|
2596
|
+
id: string;
|
|
2597
|
+
};
|
|
2598
|
+
cookie?: never;
|
|
2599
|
+
};
|
|
2600
|
+
requestBody?: never;
|
|
2601
|
+
responses: {
|
|
2602
|
+
/** @description OK */
|
|
2603
|
+
200: {
|
|
2604
|
+
headers: {
|
|
2605
|
+
[name: string]: unknown;
|
|
2606
|
+
};
|
|
2607
|
+
content: {
|
|
2608
|
+
"application/json": components["schemas"]["SchemaPullTranscriptInfo"];
|
|
2609
|
+
};
|
|
2610
|
+
};
|
|
2611
|
+
};
|
|
2612
|
+
};
|
|
2613
|
+
getPullTranscriptAnnotations: {
|
|
2614
|
+
parameters: {
|
|
2615
|
+
query?: never;
|
|
2616
|
+
header?: never;
|
|
2617
|
+
path: {
|
|
2618
|
+
id: string;
|
|
2619
|
+
};
|
|
2620
|
+
cookie?: never;
|
|
2621
|
+
};
|
|
2622
|
+
requestBody?: never;
|
|
2623
|
+
responses: {
|
|
2624
|
+
/** @description OK */
|
|
2625
|
+
200: {
|
|
2626
|
+
headers: {
|
|
2627
|
+
[name: string]: unknown;
|
|
2628
|
+
};
|
|
2629
|
+
content: {
|
|
2630
|
+
"application/json": null | components["schemas"]["SchemaPullAnnotation"][];
|
|
2631
|
+
};
|
|
2632
|
+
};
|
|
2633
|
+
};
|
|
2634
|
+
};
|
|
2635
|
+
getPullTranscriptContent: {
|
|
2636
|
+
parameters: {
|
|
2637
|
+
query?: never;
|
|
2638
|
+
header?: never;
|
|
2639
|
+
path: {
|
|
2640
|
+
id: string;
|
|
2641
|
+
};
|
|
2642
|
+
cookie?: never;
|
|
2643
|
+
};
|
|
2644
|
+
requestBody?: never;
|
|
2645
|
+
responses: {
|
|
2646
|
+
/** @description No Content */
|
|
2647
|
+
204: {
|
|
2648
|
+
headers: {
|
|
2649
|
+
[name: string]: unknown;
|
|
2650
|
+
};
|
|
2651
|
+
content?: never;
|
|
2652
|
+
};
|
|
2653
|
+
};
|
|
2654
|
+
};
|
|
2655
|
+
getSchemaVersion: {
|
|
2656
|
+
parameters: {
|
|
2657
|
+
query?: never;
|
|
2658
|
+
header?: never;
|
|
2659
|
+
path?: never;
|
|
2660
|
+
cookie?: never;
|
|
2661
|
+
};
|
|
2662
|
+
requestBody?: never;
|
|
2663
|
+
responses: {
|
|
2664
|
+
/** @description OK */
|
|
2665
|
+
200: {
|
|
2666
|
+
headers: {
|
|
2667
|
+
[name: string]: unknown;
|
|
2668
|
+
};
|
|
2669
|
+
content: {
|
|
2670
|
+
"application/json": components["schemas"]["SchemaSchemaVersionResponse"];
|
|
2671
|
+
};
|
|
2672
|
+
};
|
|
2673
|
+
};
|
|
2674
|
+
};
|
|
2675
|
+
publishTranscript: {
|
|
2676
|
+
parameters: {
|
|
2677
|
+
query?: never;
|
|
2678
|
+
header?: never;
|
|
2679
|
+
path?: never;
|
|
2680
|
+
cookie?: never;
|
|
2681
|
+
};
|
|
2682
|
+
requestBody: {
|
|
2683
|
+
content: {
|
|
2684
|
+
"multipart/form-data": components["schemas"]["FormDataOpenapiTranscriptPublishMultipartRequest"];
|
|
2685
|
+
};
|
|
2686
|
+
};
|
|
2687
|
+
responses: {
|
|
2688
|
+
/** @description OK */
|
|
2689
|
+
200: {
|
|
2690
|
+
headers: {
|
|
2691
|
+
[name: string]: unknown;
|
|
2692
|
+
};
|
|
2693
|
+
content: {
|
|
2694
|
+
"application/json": components["schemas"]["SchemaAuthoritativePublishResponse"];
|
|
2695
|
+
};
|
|
2696
|
+
};
|
|
2697
|
+
/** @description Created */
|
|
2698
|
+
201: {
|
|
2699
|
+
headers: {
|
|
2700
|
+
[name: string]: unknown;
|
|
2701
|
+
};
|
|
2702
|
+
content: {
|
|
2703
|
+
"application/json": components["schemas"]["SchemaAuthoritativePublishResponse"];
|
|
2704
|
+
};
|
|
2705
|
+
};
|
|
2706
|
+
};
|
|
2707
|
+
};
|
|
2708
|
+
updateTranscript: {
|
|
2709
|
+
parameters: {
|
|
2710
|
+
query?: never;
|
|
2711
|
+
header?: never;
|
|
2712
|
+
path: {
|
|
2713
|
+
/** @description Transcript identifier */
|
|
2714
|
+
id: components["schemas"]["SchemaTranscriptID"];
|
|
2715
|
+
};
|
|
2716
|
+
cookie?: never;
|
|
2717
|
+
};
|
|
2718
|
+
requestBody: {
|
|
2719
|
+
content: {
|
|
2720
|
+
"application/json": components["schemas"]["SchemaOwnerTranscriptUpdateRequest"];
|
|
2721
|
+
};
|
|
2722
|
+
};
|
|
2723
|
+
responses: {
|
|
2724
|
+
/** @description OK */
|
|
2725
|
+
200: {
|
|
2726
|
+
headers: {
|
|
2727
|
+
[name: string]: unknown;
|
|
2728
|
+
};
|
|
2729
|
+
content: {
|
|
2730
|
+
"application/json": components["schemas"]["SchemaOwnerTranscriptUpdateResponse"];
|
|
2731
|
+
};
|
|
2732
|
+
};
|
|
2733
|
+
/** @description Bad Request */
|
|
2734
|
+
400: {
|
|
2735
|
+
headers: {
|
|
2736
|
+
[name: string]: unknown;
|
|
2737
|
+
};
|
|
2738
|
+
content: {
|
|
2739
|
+
"application/json": components["schemas"]["OpenapiTranscriptUpdateErrorResponse"];
|
|
2740
|
+
};
|
|
2741
|
+
};
|
|
2742
|
+
/** @description Unauthorized */
|
|
2743
|
+
401: {
|
|
2744
|
+
headers: {
|
|
2745
|
+
[name: string]: unknown;
|
|
2746
|
+
};
|
|
2747
|
+
content: {
|
|
2748
|
+
"application/json": components["schemas"]["OpenapiTranscriptUpdateErrorResponse"];
|
|
2749
|
+
};
|
|
2750
|
+
};
|
|
2751
|
+
/** @description Forbidden */
|
|
2752
|
+
403: {
|
|
2753
|
+
headers: {
|
|
2754
|
+
[name: string]: unknown;
|
|
2755
|
+
};
|
|
2756
|
+
content: {
|
|
2757
|
+
"application/json": components["schemas"]["OpenapiTranscriptUpdateErrorResponse"];
|
|
2758
|
+
};
|
|
2759
|
+
};
|
|
2760
|
+
/** @description Not Found */
|
|
2761
|
+
404: {
|
|
2762
|
+
headers: {
|
|
2763
|
+
[name: string]: unknown;
|
|
2764
|
+
};
|
|
2765
|
+
content: {
|
|
2766
|
+
"application/json": components["schemas"]["OpenapiTranscriptUpdateErrorResponse"];
|
|
2767
|
+
};
|
|
2768
|
+
};
|
|
2769
|
+
/** @description Internal Server Error */
|
|
2770
|
+
500: {
|
|
2771
|
+
headers: {
|
|
2772
|
+
[name: string]: unknown;
|
|
2773
|
+
};
|
|
2774
|
+
content: {
|
|
2775
|
+
"application/json": components["schemas"]["OpenapiTranscriptUpdateErrorResponse"];
|
|
488
2776
|
};
|
|
489
2777
|
};
|
|
490
2778
|
};
|
|
491
2779
|
};
|
|
492
|
-
|
|
2780
|
+
listTranscriptCollectives: {
|
|
493
2781
|
parameters: {
|
|
494
2782
|
query?: never;
|
|
495
2783
|
header?: never;
|
|
496
|
-
path
|
|
2784
|
+
path: {
|
|
2785
|
+
/** @description Transcript identifier */
|
|
2786
|
+
id: components["schemas"]["SchemaTranscriptID"];
|
|
2787
|
+
};
|
|
497
2788
|
cookie?: never;
|
|
498
2789
|
};
|
|
499
2790
|
requestBody?: never;
|
|
@@ -504,21 +2795,51 @@ export interface operations {
|
|
|
504
2795
|
[name: string]: unknown;
|
|
505
2796
|
};
|
|
506
2797
|
content: {
|
|
507
|
-
"application/json": components["schemas"]["
|
|
2798
|
+
"application/json": components["schemas"]["SchemaVillageTranscriptCollectivesResponse"];
|
|
2799
|
+
};
|
|
2800
|
+
};
|
|
2801
|
+
/** @description Bad Request */
|
|
2802
|
+
400: {
|
|
2803
|
+
headers: {
|
|
2804
|
+
[name: string]: unknown;
|
|
2805
|
+
};
|
|
2806
|
+
content: {
|
|
2807
|
+
"application/json": components["schemas"]["SchemaVillageErrorResponse"];
|
|
2808
|
+
};
|
|
2809
|
+
};
|
|
2810
|
+
/** @description Not Found */
|
|
2811
|
+
404: {
|
|
2812
|
+
headers: {
|
|
2813
|
+
[name: string]: unknown;
|
|
2814
|
+
};
|
|
2815
|
+
content: {
|
|
2816
|
+
"application/json": components["schemas"]["SchemaVillageErrorResponse"];
|
|
2817
|
+
};
|
|
2818
|
+
};
|
|
2819
|
+
/** @description Internal Server Error */
|
|
2820
|
+
500: {
|
|
2821
|
+
headers: {
|
|
2822
|
+
[name: string]: unknown;
|
|
2823
|
+
};
|
|
2824
|
+
content: {
|
|
2825
|
+
"application/json": components["schemas"]["SchemaVillageErrorResponse"];
|
|
508
2826
|
};
|
|
509
2827
|
};
|
|
510
2828
|
};
|
|
511
2829
|
};
|
|
512
|
-
|
|
2830
|
+
shareTranscriptWithGroups: {
|
|
513
2831
|
parameters: {
|
|
514
2832
|
query?: never;
|
|
515
2833
|
header?: never;
|
|
516
|
-
path
|
|
2834
|
+
path: {
|
|
2835
|
+
/** @description Transcript identifier */
|
|
2836
|
+
id: components["schemas"]["SchemaTranscriptID"];
|
|
2837
|
+
};
|
|
517
2838
|
cookie?: never;
|
|
518
2839
|
};
|
|
519
|
-
requestBody
|
|
2840
|
+
requestBody: {
|
|
520
2841
|
content: {
|
|
521
|
-
"application/json": components["schemas"]["
|
|
2842
|
+
"application/json": components["schemas"]["SchemaVillageShareTranscriptRequest"];
|
|
522
2843
|
};
|
|
523
2844
|
};
|
|
524
2845
|
responses: {
|
|
@@ -528,87 +2849,74 @@ export interface operations {
|
|
|
528
2849
|
[name: string]: unknown;
|
|
529
2850
|
};
|
|
530
2851
|
content: {
|
|
531
|
-
"application/json": components["schemas"]["
|
|
2852
|
+
"application/json": null | components["schemas"]["SchemaVillageTranscriptShare"][];
|
|
532
2853
|
};
|
|
533
2854
|
};
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
state?: string;
|
|
2855
|
+
/** @description Bad Request */
|
|
2856
|
+
400: {
|
|
2857
|
+
headers: {
|
|
2858
|
+
[name: string]: unknown;
|
|
2859
|
+
};
|
|
2860
|
+
content: {
|
|
2861
|
+
"application/json": components["schemas"]["SchemaVillageErrorResponse"];
|
|
2862
|
+
};
|
|
543
2863
|
};
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
cookie?: never;
|
|
547
|
-
};
|
|
548
|
-
requestBody?: never;
|
|
549
|
-
responses: {
|
|
550
|
-
/** @description No Content */
|
|
551
|
-
204: {
|
|
2864
|
+
/** @description Unauthorized */
|
|
2865
|
+
401: {
|
|
552
2866
|
headers: {
|
|
553
2867
|
[name: string]: unknown;
|
|
554
2868
|
};
|
|
555
|
-
content
|
|
2869
|
+
content: {
|
|
2870
|
+
"application/json": components["schemas"]["SchemaVillageErrorResponse"];
|
|
2871
|
+
};
|
|
556
2872
|
};
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
2873
|
+
/** @description Forbidden */
|
|
2874
|
+
403: {
|
|
2875
|
+
headers: {
|
|
2876
|
+
[name: string]: unknown;
|
|
2877
|
+
};
|
|
2878
|
+
content: {
|
|
2879
|
+
"application/json": components["schemas"]["SchemaVillageErrorResponse"];
|
|
2880
|
+
};
|
|
564
2881
|
};
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
cookie?: never;
|
|
568
|
-
};
|
|
569
|
-
requestBody?: never;
|
|
570
|
-
responses: {
|
|
571
|
-
/** @description OK */
|
|
572
|
-
200: {
|
|
2882
|
+
/** @description Not Found */
|
|
2883
|
+
404: {
|
|
573
2884
|
headers: {
|
|
574
2885
|
[name: string]: unknown;
|
|
575
2886
|
};
|
|
576
2887
|
content: {
|
|
577
|
-
"application/json": components["schemas"]["
|
|
2888
|
+
"application/json": components["schemas"]["SchemaVillageErrorResponse"];
|
|
578
2889
|
};
|
|
579
2890
|
};
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
};
|
|
589
|
-
requestBody?: {
|
|
590
|
-
content: {
|
|
591
|
-
"application/json": components["schemas"]["SchemaPullSkipGateRequest"];
|
|
2891
|
+
/** @description Conflict */
|
|
2892
|
+
409: {
|
|
2893
|
+
headers: {
|
|
2894
|
+
[name: string]: unknown;
|
|
2895
|
+
};
|
|
2896
|
+
content: {
|
|
2897
|
+
"application/json": components["schemas"]["SchemaVillageErrorResponse"];
|
|
2898
|
+
};
|
|
592
2899
|
};
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
/** @description OK */
|
|
596
|
-
200: {
|
|
2900
|
+
/** @description Internal Server Error */
|
|
2901
|
+
500: {
|
|
597
2902
|
headers: {
|
|
598
2903
|
[name: string]: unknown;
|
|
599
2904
|
};
|
|
600
2905
|
content: {
|
|
601
|
-
"application/json": components["schemas"]["
|
|
2906
|
+
"application/json": components["schemas"]["SchemaVillageErrorResponse"];
|
|
602
2907
|
};
|
|
603
2908
|
};
|
|
604
2909
|
};
|
|
605
2910
|
};
|
|
606
|
-
|
|
2911
|
+
unshareTranscriptFromGroup: {
|
|
607
2912
|
parameters: {
|
|
608
2913
|
query?: never;
|
|
609
2914
|
header?: never;
|
|
610
2915
|
path: {
|
|
611
|
-
|
|
2916
|
+
/** @description Transcript identifier */
|
|
2917
|
+
id: components["schemas"]["SchemaTranscriptID"];
|
|
2918
|
+
/** @description Collective identifier */
|
|
2919
|
+
groupID: components["schemas"]["SchemaVillageUUID"];
|
|
612
2920
|
};
|
|
613
2921
|
cookie?: never;
|
|
614
2922
|
};
|
|
@@ -620,54 +2928,48 @@ export interface operations {
|
|
|
620
2928
|
[name: string]: unknown;
|
|
621
2929
|
};
|
|
622
2930
|
content: {
|
|
623
|
-
"application/json": components["schemas"]["
|
|
2931
|
+
"application/json": components["schemas"]["SchemaVillageStatusResponse"];
|
|
624
2932
|
};
|
|
625
2933
|
};
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
2934
|
+
/** @description Bad Request */
|
|
2935
|
+
400: {
|
|
2936
|
+
headers: {
|
|
2937
|
+
[name: string]: unknown;
|
|
2938
|
+
};
|
|
2939
|
+
content: {
|
|
2940
|
+
"application/json": components["schemas"]["SchemaVillageErrorResponse"];
|
|
2941
|
+
};
|
|
634
2942
|
};
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
requestBody?: never;
|
|
638
|
-
responses: {
|
|
639
|
-
/** @description OK */
|
|
640
|
-
200: {
|
|
2943
|
+
/** @description Unauthorized */
|
|
2944
|
+
401: {
|
|
641
2945
|
headers: {
|
|
642
2946
|
[name: string]: unknown;
|
|
643
2947
|
};
|
|
644
2948
|
content: {
|
|
645
|
-
"application/json":
|
|
2949
|
+
"application/json": components["schemas"]["SchemaVillageErrorResponse"];
|
|
646
2950
|
};
|
|
647
2951
|
};
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
2952
|
+
/** @description Forbidden */
|
|
2953
|
+
403: {
|
|
2954
|
+
headers: {
|
|
2955
|
+
[name: string]: unknown;
|
|
2956
|
+
};
|
|
2957
|
+
content: {
|
|
2958
|
+
"application/json": components["schemas"]["SchemaVillageErrorResponse"];
|
|
2959
|
+
};
|
|
656
2960
|
};
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
requestBody?: never;
|
|
660
|
-
responses: {
|
|
661
|
-
/** @description No Content */
|
|
662
|
-
204: {
|
|
2961
|
+
/** @description Not Found */
|
|
2962
|
+
404: {
|
|
663
2963
|
headers: {
|
|
664
2964
|
[name: string]: unknown;
|
|
665
2965
|
};
|
|
666
|
-
content
|
|
2966
|
+
content: {
|
|
2967
|
+
"application/json": components["schemas"]["SchemaVillageErrorResponse"];
|
|
2968
|
+
};
|
|
667
2969
|
};
|
|
668
2970
|
};
|
|
669
2971
|
};
|
|
670
|
-
|
|
2972
|
+
listMyCollectiveContributions: {
|
|
671
2973
|
parameters: {
|
|
672
2974
|
query?: never;
|
|
673
2975
|
header?: never;
|
|
@@ -682,23 +2984,40 @@ export interface operations {
|
|
|
682
2984
|
[name: string]: unknown;
|
|
683
2985
|
};
|
|
684
2986
|
content: {
|
|
685
|
-
"application/json": components["schemas"]["
|
|
2987
|
+
"application/json": components["schemas"]["SchemaVillageContributedCollectivesResponse"];
|
|
2988
|
+
};
|
|
2989
|
+
};
|
|
2990
|
+
/** @description Unauthorized */
|
|
2991
|
+
401: {
|
|
2992
|
+
headers: {
|
|
2993
|
+
[name: string]: unknown;
|
|
2994
|
+
};
|
|
2995
|
+
content: {
|
|
2996
|
+
"application/json": components["schemas"]["SchemaVillageErrorResponse"];
|
|
2997
|
+
};
|
|
2998
|
+
};
|
|
2999
|
+
/** @description Internal Server Error */
|
|
3000
|
+
500: {
|
|
3001
|
+
headers: {
|
|
3002
|
+
[name: string]: unknown;
|
|
3003
|
+
};
|
|
3004
|
+
content: {
|
|
3005
|
+
"application/json": components["schemas"]["SchemaVillageErrorResponse"];
|
|
686
3006
|
};
|
|
687
3007
|
};
|
|
688
3008
|
};
|
|
689
3009
|
};
|
|
690
|
-
|
|
3010
|
+
listMyCollectiveSubmissions: {
|
|
691
3011
|
parameters: {
|
|
692
3012
|
query?: never;
|
|
693
3013
|
header?: never;
|
|
694
|
-
path
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
requestBody: {
|
|
698
|
-
content: {
|
|
699
|
-
"multipart/form-data": components["schemas"]["FormDataOpenapiTranscriptPublishMultipartRequest"];
|
|
3014
|
+
path: {
|
|
3015
|
+
/** @description Collective identifier */
|
|
3016
|
+
groupId: components["schemas"]["SchemaVillageUUID"];
|
|
700
3017
|
};
|
|
3018
|
+
cookie?: never;
|
|
701
3019
|
};
|
|
3020
|
+
requestBody?: never;
|
|
702
3021
|
responses: {
|
|
703
3022
|
/** @description OK */
|
|
704
3023
|
200: {
|
|
@@ -706,35 +3025,60 @@ export interface operations {
|
|
|
706
3025
|
[name: string]: unknown;
|
|
707
3026
|
};
|
|
708
3027
|
content: {
|
|
709
|
-
"application/json": components["schemas"]["
|
|
3028
|
+
"application/json": null | components["schemas"]["SchemaVillageCollectiveSubmission"][];
|
|
710
3029
|
};
|
|
711
3030
|
};
|
|
712
|
-
/** @description
|
|
713
|
-
|
|
3031
|
+
/** @description Bad Request */
|
|
3032
|
+
400: {
|
|
714
3033
|
headers: {
|
|
715
3034
|
[name: string]: unknown;
|
|
716
3035
|
};
|
|
717
3036
|
content: {
|
|
718
|
-
"application/json": components["schemas"]["
|
|
3037
|
+
"application/json": components["schemas"]["SchemaVillageErrorResponse"];
|
|
3038
|
+
};
|
|
3039
|
+
};
|
|
3040
|
+
/** @description Unauthorized */
|
|
3041
|
+
401: {
|
|
3042
|
+
headers: {
|
|
3043
|
+
[name: string]: unknown;
|
|
3044
|
+
};
|
|
3045
|
+
content: {
|
|
3046
|
+
"application/json": components["schemas"]["SchemaVillageErrorResponse"];
|
|
3047
|
+
};
|
|
3048
|
+
};
|
|
3049
|
+
/** @description Not Found */
|
|
3050
|
+
404: {
|
|
3051
|
+
headers: {
|
|
3052
|
+
[name: string]: unknown;
|
|
3053
|
+
};
|
|
3054
|
+
content: {
|
|
3055
|
+
"application/json": components["schemas"]["SchemaVillageErrorResponse"];
|
|
3056
|
+
};
|
|
3057
|
+
};
|
|
3058
|
+
/** @description Internal Server Error */
|
|
3059
|
+
500: {
|
|
3060
|
+
headers: {
|
|
3061
|
+
[name: string]: unknown;
|
|
3062
|
+
};
|
|
3063
|
+
content: {
|
|
3064
|
+
"application/json": components["schemas"]["SchemaVillageErrorResponse"];
|
|
719
3065
|
};
|
|
720
3066
|
};
|
|
721
3067
|
};
|
|
722
3068
|
};
|
|
723
|
-
|
|
3069
|
+
listShareEventHistory: {
|
|
724
3070
|
parameters: {
|
|
725
3071
|
query?: never;
|
|
726
3072
|
header?: never;
|
|
727
3073
|
path: {
|
|
3074
|
+
/** @description Collective identifier */
|
|
3075
|
+
groupId: components["schemas"]["SchemaVillageUUID"];
|
|
728
3076
|
/** @description Transcript identifier */
|
|
729
|
-
|
|
3077
|
+
transcriptId: components["schemas"]["SchemaTranscriptID"];
|
|
730
3078
|
};
|
|
731
3079
|
cookie?: never;
|
|
732
3080
|
};
|
|
733
|
-
requestBody
|
|
734
|
-
content: {
|
|
735
|
-
"application/json": components["schemas"]["SchemaOwnerTranscriptUpdateRequest"];
|
|
736
|
-
};
|
|
737
|
-
};
|
|
3081
|
+
requestBody?: never;
|
|
738
3082
|
responses: {
|
|
739
3083
|
/** @description OK */
|
|
740
3084
|
200: {
|
|
@@ -742,7 +3086,7 @@ export interface operations {
|
|
|
742
3086
|
[name: string]: unknown;
|
|
743
3087
|
};
|
|
744
3088
|
content: {
|
|
745
|
-
"application/json": components["schemas"]["
|
|
3089
|
+
"application/json": null | components["schemas"]["SchemaVillageShareEvent"][];
|
|
746
3090
|
};
|
|
747
3091
|
};
|
|
748
3092
|
/** @description Bad Request */
|
|
@@ -751,7 +3095,7 @@ export interface operations {
|
|
|
751
3095
|
[name: string]: unknown;
|
|
752
3096
|
};
|
|
753
3097
|
content: {
|
|
754
|
-
"application/json": components["schemas"]["
|
|
3098
|
+
"application/json": components["schemas"]["SchemaVillageErrorResponse"];
|
|
755
3099
|
};
|
|
756
3100
|
};
|
|
757
3101
|
/** @description Unauthorized */
|
|
@@ -760,16 +3104,7 @@ export interface operations {
|
|
|
760
3104
|
[name: string]: unknown;
|
|
761
3105
|
};
|
|
762
3106
|
content: {
|
|
763
|
-
"application/json": components["schemas"]["
|
|
764
|
-
};
|
|
765
|
-
};
|
|
766
|
-
/** @description Forbidden */
|
|
767
|
-
403: {
|
|
768
|
-
headers: {
|
|
769
|
-
[name: string]: unknown;
|
|
770
|
-
};
|
|
771
|
-
content: {
|
|
772
|
-
"application/json": components["schemas"]["OpenapiTranscriptUpdateErrorResponse"];
|
|
3107
|
+
"application/json": components["schemas"]["SchemaVillageErrorResponse"];
|
|
773
3108
|
};
|
|
774
3109
|
};
|
|
775
3110
|
/** @description Not Found */
|
|
@@ -778,7 +3113,7 @@ export interface operations {
|
|
|
778
3113
|
[name: string]: unknown;
|
|
779
3114
|
};
|
|
780
3115
|
content: {
|
|
781
|
-
"application/json": components["schemas"]["
|
|
3116
|
+
"application/json": components["schemas"]["SchemaVillageErrorResponse"];
|
|
782
3117
|
};
|
|
783
3118
|
};
|
|
784
3119
|
/** @description Internal Server Error */
|
|
@@ -787,7 +3122,7 @@ export interface operations {
|
|
|
787
3122
|
[name: string]: unknown;
|
|
788
3123
|
};
|
|
789
3124
|
content: {
|
|
790
|
-
"application/json": components["schemas"]["
|
|
3125
|
+
"application/json": components["schemas"]["SchemaVillageErrorResponse"];
|
|
791
3126
|
};
|
|
792
3127
|
};
|
|
793
3128
|
};
|