diff --git a/specs/openapi.json b/specs/openapi.json index 71801e0..c03b1f1 100644 --- a/specs/openapi.json +++ b/specs/openapi.json @@ -27156,6 +27156,16 @@ "target_message_id": { "$ref": "#/components/schemas/SnowflakeType" }, + "liveliness": { + "oneOf": [ + { + "type": "null" + }, + { + "$ref": "#/components/schemas/GuildLivelinessResponse" + } + ] + }, "uses": { "type": "integer", "format": "int32" @@ -27337,6 +27347,28 @@ } } }, + "GuildLivelinessResponse": { + "type": "object", + "properties": { + "msg_activity_bins": { + "type": "array", + "items": { + "type": "integer", + "format": "int32" + } + }, + "last_updated_ts": { + "type": [ + "string", + "null" + ], + "format": "date-time" + } + }, + "required": [ + "msg_activity_bins" + ] + }, "GuildMFALevel": { "type": "integer", "oneOf": [ diff --git a/specs/openapi_preview.json b/specs/openapi_preview.json index db5d544..ce096c7 100644 --- a/specs/openapi_preview.json +++ b/specs/openapi_preview.json @@ -27175,6 +27175,16 @@ "target_message_id": { "$ref": "#/components/schemas/SnowflakeType" }, + "liveliness": { + "oneOf": [ + { + "type": "null" + }, + { + "$ref": "#/components/schemas/GuildLivelinessResponse" + } + ] + }, "uses": { "type": "integer", "format": "int32" @@ -27356,6 +27366,28 @@ } } }, + "GuildLivelinessResponse": { + "type": "object", + "properties": { + "msg_activity_bins": { + "type": "array", + "items": { + "type": "integer", + "format": "int32" + } + }, + "last_updated_ts": { + "type": [ + "string", + "null" + ], + "format": "date-time" + } + }, + "required": [ + "msg_activity_bins" + ] + }, "GuildMFALevel": { "type": "integer", "oneOf": [