main - Automated spec update (125258)
made at remote:2025-06-25T03:00:41 taken at now:2025-06-25T03:10:01 made by remote Nelly (automation bot) <>
This commit is contained in:
		
							parent
							
								
									3cea5f0050
								
							
						
					
					
						commit
						6757777240
					
				
					 2 changed files with 348 additions and 6 deletions
				
			
		|  | @ -2047,6 +2047,112 @@ | ||||||
|         ] |         ] | ||||||
|       } |       } | ||||||
|     }, |     }, | ||||||
|  |     "/channels/{channel_id}/messages/pins": { | ||||||
|  |       "parameters": [ | ||||||
|  |         { | ||||||
|  |           "name": "channel_id", | ||||||
|  |           "in": "path", | ||||||
|  |           "schema": { | ||||||
|  |             "$ref": "#/components/schemas/SnowflakeType" | ||||||
|  |           }, | ||||||
|  |           "required": true | ||||||
|  |         } | ||||||
|  |       ], | ||||||
|  |       "get": { | ||||||
|  |         "operationId": "list_pins", | ||||||
|  |         "parameters": [ | ||||||
|  |           { | ||||||
|  |             "name": "before", | ||||||
|  |             "in": "query", | ||||||
|  |             "schema": { | ||||||
|  |               "type": "string", | ||||||
|  |               "format": "date-time" | ||||||
|  |             } | ||||||
|  |           }, | ||||||
|  |           { | ||||||
|  |             "name": "limit", | ||||||
|  |             "in": "query", | ||||||
|  |             "schema": { | ||||||
|  |               "type": "integer", | ||||||
|  |               "minimum": 1, | ||||||
|  |               "maximum": 50 | ||||||
|  |             } | ||||||
|  |           } | ||||||
|  |         ], | ||||||
|  |         "responses": { | ||||||
|  |           "200": { | ||||||
|  |             "description": "200 response for list_pins", | ||||||
|  |             "content": { | ||||||
|  |               "application/json": { | ||||||
|  |                 "schema": { | ||||||
|  |                   "$ref": "#/components/schemas/PinnedMessagesResponse" | ||||||
|  |                 } | ||||||
|  |               } | ||||||
|  |             } | ||||||
|  |           }, | ||||||
|  |           "4XX": { | ||||||
|  |             "$ref": "#/components/responses/ClientErrorResponse" | ||||||
|  |           } | ||||||
|  |         }, | ||||||
|  |         "security": [ | ||||||
|  |           { | ||||||
|  |             "BotToken": [] | ||||||
|  |           } | ||||||
|  |         ] | ||||||
|  |       } | ||||||
|  |     }, | ||||||
|  |     "/channels/{channel_id}/messages/pins/{message_id}": { | ||||||
|  |       "parameters": [ | ||||||
|  |         { | ||||||
|  |           "name": "channel_id", | ||||||
|  |           "in": "path", | ||||||
|  |           "schema": { | ||||||
|  |             "$ref": "#/components/schemas/SnowflakeType" | ||||||
|  |           }, | ||||||
|  |           "required": true | ||||||
|  |         }, | ||||||
|  |         { | ||||||
|  |           "name": "message_id", | ||||||
|  |           "in": "path", | ||||||
|  |           "schema": { | ||||||
|  |             "$ref": "#/components/schemas/SnowflakeType" | ||||||
|  |           }, | ||||||
|  |           "required": true | ||||||
|  |         } | ||||||
|  |       ], | ||||||
|  |       "put": { | ||||||
|  |         "operationId": "create_pin", | ||||||
|  |         "responses": { | ||||||
|  |           "204": { | ||||||
|  |             "description": "204 response for create_pin" | ||||||
|  |           }, | ||||||
|  |           "4XX": { | ||||||
|  |             "$ref": "#/components/responses/ClientErrorResponse" | ||||||
|  |           } | ||||||
|  |         }, | ||||||
|  |         "security": [ | ||||||
|  |           { | ||||||
|  |             "BotToken": [] | ||||||
|  |           } | ||||||
|  |         ] | ||||||
|  |       }, | ||||||
|  |       "delete": { | ||||||
|  |         "operationId": "delete_pin", | ||||||
|  |         "responses": { | ||||||
|  |           "204": { | ||||||
|  |             "description": "204 response for delete_pin" | ||||||
|  |           }, | ||||||
|  |           "4XX": { | ||||||
|  |             "$ref": "#/components/responses/ClientErrorResponse" | ||||||
|  |           } | ||||||
|  |         }, | ||||||
|  |         "security": [ | ||||||
|  |           { | ||||||
|  |             "BotToken": [] | ||||||
|  |           } | ||||||
|  |         ] | ||||||
|  |       } | ||||||
|  |     }, | ||||||
|     "/channels/{channel_id}/messages/{message_id}": { |     "/channels/{channel_id}/messages/{message_id}": { | ||||||
|       "parameters": [ |       "parameters": [ | ||||||
|         { |         { | ||||||
|  | @ -27495,6 +27601,42 @@ | ||||||
|           "type" |           "type" | ||||||
|         ] |         ] | ||||||
|       }, |       }, | ||||||
|  |       "PinnedMessageResponse": { | ||||||
|  |         "type": "object", | ||||||
|  |         "properties": { | ||||||
|  |           "pinned_at": { | ||||||
|  |             "type": "string", | ||||||
|  |             "format": "date-time" | ||||||
|  |           }, | ||||||
|  |           "message": { | ||||||
|  |             "$ref": "#/components/schemas/MessageResponse" | ||||||
|  |           } | ||||||
|  |         }, | ||||||
|  |         "required": [ | ||||||
|  |           "pinned_at", | ||||||
|  |           "message" | ||||||
|  |         ] | ||||||
|  |       }, | ||||||
|  |       "PinnedMessagesResponse": { | ||||||
|  |         "type": "object", | ||||||
|  |         "properties": { | ||||||
|  |           "items": { | ||||||
|  |             "type": [ | ||||||
|  |               "array", | ||||||
|  |               "null" | ||||||
|  |             ], | ||||||
|  |             "items": { | ||||||
|  |               "$ref": "#/components/schemas/PinnedMessageResponse" | ||||||
|  |             } | ||||||
|  |           }, | ||||||
|  |           "has_more": { | ||||||
|  |             "type": "boolean" | ||||||
|  |           } | ||||||
|  |         }, | ||||||
|  |         "required": [ | ||||||
|  |           "has_more" | ||||||
|  |         ] | ||||||
|  |       }, | ||||||
|       "PollAnswerCreateRequest": { |       "PollAnswerCreateRequest": { | ||||||
|         "type": "object", |         "type": "object", | ||||||
|         "properties": { |         "properties": { | ||||||
|  | @ -32303,7 +32445,7 @@ | ||||||
|               } |               } | ||||||
|             ] |             ] | ||||||
|           }, |           }, | ||||||
|           "clan": { |           "primary_guild": { | ||||||
|             "oneOf": [ |             "oneOf": [ | ||||||
|               { |               { | ||||||
|                 "type": "null" |                 "type": "null" | ||||||
|  | @ -32354,7 +32496,36 @@ | ||||||
|       }, |       }, | ||||||
|       "UserPrimaryGuildResponse": { |       "UserPrimaryGuildResponse": { | ||||||
|         "type": "object", |         "type": "object", | ||||||
|         "properties": {} |         "properties": { | ||||||
|  |           "identity_guild_id": { | ||||||
|  |             "oneOf": [ | ||||||
|  |               { | ||||||
|  |                 "type": "null" | ||||||
|  |               }, | ||||||
|  |               { | ||||||
|  |                 "$ref": "#/components/schemas/SnowflakeType" | ||||||
|  |               } | ||||||
|  |             ] | ||||||
|  |           }, | ||||||
|  |           "identity_enabled": { | ||||||
|  |             "type": [ | ||||||
|  |               "boolean", | ||||||
|  |               "null" | ||||||
|  |             ] | ||||||
|  |           }, | ||||||
|  |           "tag": { | ||||||
|  |             "type": [ | ||||||
|  |               "string", | ||||||
|  |               "null" | ||||||
|  |             ] | ||||||
|  |           }, | ||||||
|  |           "badge": { | ||||||
|  |             "type": [ | ||||||
|  |               "string", | ||||||
|  |               "null" | ||||||
|  |             ] | ||||||
|  |           } | ||||||
|  |         } | ||||||
|       }, |       }, | ||||||
|       "UserResponse": { |       "UserResponse": { | ||||||
|         "type": "object", |         "type": "object", | ||||||
|  | @ -32432,7 +32603,7 @@ | ||||||
|               } |               } | ||||||
|             ] |             ] | ||||||
|           }, |           }, | ||||||
|           "clan": { |           "primary_guild": { | ||||||
|             "oneOf": [ |             "oneOf": [ | ||||||
|               { |               { | ||||||
|                 "type": "null" |                 "type": "null" | ||||||
|  |  | ||||||
|  | @ -2047,6 +2047,112 @@ | ||||||
|         ] |         ] | ||||||
|       } |       } | ||||||
|     }, |     }, | ||||||
|  |     "/channels/{channel_id}/messages/pins": { | ||||||
|  |       "parameters": [ | ||||||
|  |         { | ||||||
|  |           "name": "channel_id", | ||||||
|  |           "in": "path", | ||||||
|  |           "schema": { | ||||||
|  |             "$ref": "#/components/schemas/SnowflakeType" | ||||||
|  |           }, | ||||||
|  |           "required": true | ||||||
|  |         } | ||||||
|  |       ], | ||||||
|  |       "get": { | ||||||
|  |         "operationId": "list_pins", | ||||||
|  |         "parameters": [ | ||||||
|  |           { | ||||||
|  |             "name": "before", | ||||||
|  |             "in": "query", | ||||||
|  |             "schema": { | ||||||
|  |               "type": "string", | ||||||
|  |               "format": "date-time" | ||||||
|  |             } | ||||||
|  |           }, | ||||||
|  |           { | ||||||
|  |             "name": "limit", | ||||||
|  |             "in": "query", | ||||||
|  |             "schema": { | ||||||
|  |               "type": "integer", | ||||||
|  |               "minimum": 1, | ||||||
|  |               "maximum": 50 | ||||||
|  |             } | ||||||
|  |           } | ||||||
|  |         ], | ||||||
|  |         "responses": { | ||||||
|  |           "200": { | ||||||
|  |             "description": "200 response for list_pins", | ||||||
|  |             "content": { | ||||||
|  |               "application/json": { | ||||||
|  |                 "schema": { | ||||||
|  |                   "$ref": "#/components/schemas/PinnedMessagesResponse" | ||||||
|  |                 } | ||||||
|  |               } | ||||||
|  |             } | ||||||
|  |           }, | ||||||
|  |           "4XX": { | ||||||
|  |             "$ref": "#/components/responses/ClientErrorResponse" | ||||||
|  |           } | ||||||
|  |         }, | ||||||
|  |         "security": [ | ||||||
|  |           { | ||||||
|  |             "BotToken": [] | ||||||
|  |           } | ||||||
|  |         ] | ||||||
|  |       } | ||||||
|  |     }, | ||||||
|  |     "/channels/{channel_id}/messages/pins/{message_id}": { | ||||||
|  |       "parameters": [ | ||||||
|  |         { | ||||||
|  |           "name": "channel_id", | ||||||
|  |           "in": "path", | ||||||
|  |           "schema": { | ||||||
|  |             "$ref": "#/components/schemas/SnowflakeType" | ||||||
|  |           }, | ||||||
|  |           "required": true | ||||||
|  |         }, | ||||||
|  |         { | ||||||
|  |           "name": "message_id", | ||||||
|  |           "in": "path", | ||||||
|  |           "schema": { | ||||||
|  |             "$ref": "#/components/schemas/SnowflakeType" | ||||||
|  |           }, | ||||||
|  |           "required": true | ||||||
|  |         } | ||||||
|  |       ], | ||||||
|  |       "put": { | ||||||
|  |         "operationId": "create_pin", | ||||||
|  |         "responses": { | ||||||
|  |           "204": { | ||||||
|  |             "description": "204 response for create_pin" | ||||||
|  |           }, | ||||||
|  |           "4XX": { | ||||||
|  |             "$ref": "#/components/responses/ClientErrorResponse" | ||||||
|  |           } | ||||||
|  |         }, | ||||||
|  |         "security": [ | ||||||
|  |           { | ||||||
|  |             "BotToken": [] | ||||||
|  |           } | ||||||
|  |         ] | ||||||
|  |       }, | ||||||
|  |       "delete": { | ||||||
|  |         "operationId": "delete_pin", | ||||||
|  |         "responses": { | ||||||
|  |           "204": { | ||||||
|  |             "description": "204 response for delete_pin" | ||||||
|  |           }, | ||||||
|  |           "4XX": { | ||||||
|  |             "$ref": "#/components/responses/ClientErrorResponse" | ||||||
|  |           } | ||||||
|  |         }, | ||||||
|  |         "security": [ | ||||||
|  |           { | ||||||
|  |             "BotToken": [] | ||||||
|  |           } | ||||||
|  |         ] | ||||||
|  |       } | ||||||
|  |     }, | ||||||
|     "/channels/{channel_id}/messages/{message_id}": { |     "/channels/{channel_id}/messages/{message_id}": { | ||||||
|       "parameters": [ |       "parameters": [ | ||||||
|         { |         { | ||||||
|  | @ -27580,6 +27686,42 @@ | ||||||
|           "type" |           "type" | ||||||
|         ] |         ] | ||||||
|       }, |       }, | ||||||
|  |       "PinnedMessageResponse": { | ||||||
|  |         "type": "object", | ||||||
|  |         "properties": { | ||||||
|  |           "pinned_at": { | ||||||
|  |             "type": "string", | ||||||
|  |             "format": "date-time" | ||||||
|  |           }, | ||||||
|  |           "message": { | ||||||
|  |             "$ref": "#/components/schemas/MessageResponse" | ||||||
|  |           } | ||||||
|  |         }, | ||||||
|  |         "required": [ | ||||||
|  |           "pinned_at", | ||||||
|  |           "message" | ||||||
|  |         ] | ||||||
|  |       }, | ||||||
|  |       "PinnedMessagesResponse": { | ||||||
|  |         "type": "object", | ||||||
|  |         "properties": { | ||||||
|  |           "items": { | ||||||
|  |             "type": [ | ||||||
|  |               "array", | ||||||
|  |               "null" | ||||||
|  |             ], | ||||||
|  |             "items": { | ||||||
|  |               "$ref": "#/components/schemas/PinnedMessageResponse" | ||||||
|  |             } | ||||||
|  |           }, | ||||||
|  |           "has_more": { | ||||||
|  |             "type": "boolean" | ||||||
|  |           } | ||||||
|  |         }, | ||||||
|  |         "required": [ | ||||||
|  |           "has_more" | ||||||
|  |         ] | ||||||
|  |       }, | ||||||
|       "PollAnswerCreateRequest": { |       "PollAnswerCreateRequest": { | ||||||
|         "type": "object", |         "type": "object", | ||||||
|         "properties": { |         "properties": { | ||||||
|  | @ -32736,7 +32878,7 @@ | ||||||
|               } |               } | ||||||
|             ] |             ] | ||||||
|           }, |           }, | ||||||
|           "clan": { |           "primary_guild": { | ||||||
|             "oneOf": [ |             "oneOf": [ | ||||||
|               { |               { | ||||||
|                 "type": "null" |                 "type": "null" | ||||||
|  | @ -32787,7 +32929,36 @@ | ||||||
|       }, |       }, | ||||||
|       "UserPrimaryGuildResponse": { |       "UserPrimaryGuildResponse": { | ||||||
|         "type": "object", |         "type": "object", | ||||||
|         "properties": {} |         "properties": { | ||||||
|  |           "identity_guild_id": { | ||||||
|  |             "oneOf": [ | ||||||
|  |               { | ||||||
|  |                 "type": "null" | ||||||
|  |               }, | ||||||
|  |               { | ||||||
|  |                 "$ref": "#/components/schemas/SnowflakeType" | ||||||
|  |               } | ||||||
|  |             ] | ||||||
|  |           }, | ||||||
|  |           "identity_enabled": { | ||||||
|  |             "type": [ | ||||||
|  |               "boolean", | ||||||
|  |               "null" | ||||||
|  |             ] | ||||||
|  |           }, | ||||||
|  |           "tag": { | ||||||
|  |             "type": [ | ||||||
|  |               "string", | ||||||
|  |               "null" | ||||||
|  |             ] | ||||||
|  |           }, | ||||||
|  |           "badge": { | ||||||
|  |             "type": [ | ||||||
|  |               "string", | ||||||
|  |               "null" | ||||||
|  |             ] | ||||||
|  |           } | ||||||
|  |         } | ||||||
|       }, |       }, | ||||||
|       "UserResponse": { |       "UserResponse": { | ||||||
|         "type": "object", |         "type": "object", | ||||||
|  | @ -32865,7 +33036,7 @@ | ||||||
|               } |               } | ||||||
|             ] |             ] | ||||||
|           }, |           }, | ||||||
|           "clan": { |           "primary_guild": { | ||||||
|             "oneOf": [ |             "oneOf": [ | ||||||
|               { |               { | ||||||
|                 "type": "null" |                 "type": "null" | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue