diff --git a/specs/openapi.json b/specs/openapi.json index 2e9df69..566bafb 100644 --- a/specs/openapi.json +++ b/specs/openapi.json @@ -11515,6 +11515,19 @@ "secret": { "type": "string", "maxLength": 250 + }, + "flags": { + "oneOf": [ + { + "type": "null" + }, + { + "type": "integer", + "enum": [ + 1 + ] + } + ] } }, "required": [ @@ -11606,6 +11619,19 @@ "maxLength": 1024 }, "maxProperties": 25 + }, + "flags": { + "oneOf": [ + { + "type": "null" + }, + { + "type": "integer", + "enum": [ + 1 + ] + } + ] } } } @@ -11746,6 +11772,19 @@ "$ref": "#/components/schemas/LobbyMemberRequest" }, "maxItems": 25 + }, + "flags": { + "oneOf": [ + { + "type": "null" + }, + { + "type": "integer", + "enum": [ + 1 + ] + } + ] } } } @@ -28800,11 +28839,15 @@ "$ref": "#/components/schemas/GuildChannelResponse" } ] + }, + "flags": { + "$ref": "#/components/schemas/UInt32Type" } }, "required": [ "id", - "application_id" + "application_id", + "flags" ] }, "MLSpamRuleResponse": { diff --git a/specs/openapi_preview.json b/specs/openapi_preview.json index 0a5340b..584d9c7 100644 --- a/specs/openapi_preview.json +++ b/specs/openapi_preview.json @@ -11515,6 +11515,19 @@ "secret": { "type": "string", "maxLength": 250 + }, + "flags": { + "oneOf": [ + { + "type": "null" + }, + { + "type": "integer", + "enum": [ + 1 + ] + } + ] } }, "required": [ @@ -11606,6 +11619,19 @@ "maxLength": 1024 }, "maxProperties": 25 + }, + "flags": { + "oneOf": [ + { + "type": "null" + }, + { + "type": "integer", + "enum": [ + 1 + ] + } + ] } } } @@ -11746,6 +11772,19 @@ "$ref": "#/components/schemas/LobbyMemberRequest" }, "maxItems": 25 + }, + "flags": { + "oneOf": [ + { + "type": "null" + }, + { + "type": "integer", + "enum": [ + 1 + ] + } + ] } } } @@ -28885,11 +28924,15 @@ "$ref": "#/components/schemas/GuildChannelResponse" } ] + }, + "flags": { + "$ref": "#/components/schemas/UInt32Type" } }, "required": [ "id", - "application_id" + "application_id", + "flags" ] }, "MLSpamRuleResponse": {