Skip to content

Commit 439dd2b

Browse files
committed
chore: build library from latest spec [skip ci]
1 parent e4a7b4f commit 439dd2b

1 file changed

Lines changed: 10 additions & 2 deletions

File tree

src/schema.ts

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -762,6 +762,10 @@ export interface components {
762762
/** @enum {string} */
763763
type: "NotOwner";
764764
}
765+
| {
766+
/** @enum {string} */
767+
type: "IsElevated";
768+
}
765769
| {
766770
/** @enum {string} */
767771
type: "DatabaseError";
@@ -2002,6 +2006,8 @@ export interface components {
20022006
};
20032007
/** @description Role */
20042008
Role: {
2009+
/** @description Unique Id */
2010+
_id: string;
20052011
/** @description Role name */
20062012
name: string;
20072013
/** @description Permissions available to this role */
@@ -4600,7 +4606,8 @@ export interface operations {
46004606
/** Report a piece of content to the moderation team. */
46014607
report_content_report_content: {
46024608
responses: {
4603-
200: unknown;
4609+
/** Success */
4610+
204: never;
46044611
/** An error occurred. */
46054612
default: {
46064613
content: {
@@ -5075,7 +5082,8 @@ export interface operations {
50755082
/** Accept/acknowledge changes to platform policy. */
50765083
acknowledge_policy_changes_acknowledge_policy_changes: {
50775084
responses: {
5078-
200: unknown;
5085+
/** Success */
5086+
204: never;
50795087
/** An error occurred. */
50805088
default: {
50815089
content: {

0 commit comments

Comments
 (0)