diff --git a/specs/openapi.json b/specs/openapi.json index 1af92f0..5917f75 100644 --- a/specs/openapi.json +++ b/specs/openapi.json @@ -30296,12 +30296,23 @@ "InviteChannelRecipientResponse": { "type": "object", "properties": { + "id": { + "$ref": "#/components/schemas/SnowflakeType" + }, "username": { "type": "string" + }, + "avatar": { + "type": [ + "string", + "null" + ] } }, "required": [ - "username" + "id", + "username", + "avatar" ] }, "InviteChannelResponse": { diff --git a/specs/openapi_preview.json b/specs/openapi_preview.json index 62282d5..9425d1c 100644 --- a/specs/openapi_preview.json +++ b/specs/openapi_preview.json @@ -30315,12 +30315,23 @@ "InviteChannelRecipientResponse": { "type": "object", "properties": { + "id": { + "$ref": "#/components/schemas/SnowflakeType" + }, "username": { "type": "string" + }, + "avatar": { + "type": [ + "string", + "null" + ] } }, "required": [ - "username" + "id", + "username", + "avatar" ] }, "InviteChannelResponse": {