main - Automated spec update (34785)
made at remote:2024-03-15T19:50:04 taken at now:2024-03-15T20:10:02 made by remote Nelly (automation bot) <>
This commit is contained in:
		
							parent
							
								
									30008f4220
								
							
						
					
					
						commit
						17007d7a2f
					
				
					 2 changed files with 178 additions and 0 deletions
				
			
		|  | @ -5658,6 +5658,72 @@ | |||
|         ] | ||||
|       } | ||||
|     }, | ||||
|     "/guilds/{guild_id}/bulk-ban": { | ||||
|       "parameters": [ | ||||
|         { | ||||
|           "name": "guild_id", | ||||
|           "in": "path", | ||||
|           "schema": { | ||||
|             "$ref": "#/components/schemas/SnowflakeType" | ||||
|           }, | ||||
|           "required": true | ||||
|         } | ||||
|       ], | ||||
|       "post": { | ||||
|         "operationId": "bulk_ban_users_from_guild", | ||||
|         "requestBody": { | ||||
|           "content": { | ||||
|             "application/json": { | ||||
|               "schema": { | ||||
|                 "type": "object", | ||||
|                 "properties": { | ||||
|                   "user_ids": { | ||||
|                     "type": "array", | ||||
|                     "items": { | ||||
|                       "$ref": "#/components/schemas/SnowflakeType" | ||||
|                     }, | ||||
|                     "maxItems": 200, | ||||
|                     "uniqueItems": true | ||||
|                   }, | ||||
|                   "delete_message_seconds": { | ||||
|                     "type": [ | ||||
|                       "integer", | ||||
|                       "null" | ||||
|                     ], | ||||
|                     "minimum": 0, | ||||
|                     "maximum": 604800 | ||||
|                   } | ||||
|                 }, | ||||
|                 "required": [ | ||||
|                   "user_ids" | ||||
|                 ] | ||||
|               } | ||||
|             } | ||||
|           }, | ||||
|           "required": true | ||||
|         }, | ||||
|         "responses": { | ||||
|           "200": { | ||||
|             "description": "200 response for bulk_ban_users_from_guild", | ||||
|             "content": { | ||||
|               "application/json": { | ||||
|                 "schema": { | ||||
|                   "$ref": "#/components/schemas/BulkBanUsersResponse" | ||||
|                 } | ||||
|               } | ||||
|             } | ||||
|           }, | ||||
|           "4XX": { | ||||
|             "$ref": "#/components/responses/ClientErrorResponse" | ||||
|           } | ||||
|         }, | ||||
|         "security": [ | ||||
|           { | ||||
|             "BotToken": [] | ||||
|           } | ||||
|         ] | ||||
|       } | ||||
|     }, | ||||
|     "/guilds/{guild_id}/stickers": { | ||||
|       "parameters": [ | ||||
|         { | ||||
|  | @ -12602,6 +12668,29 @@ | |||
|           "username" | ||||
|         ] | ||||
|       }, | ||||
|       "BulkBanUsersResponse": { | ||||
|         "type": "object", | ||||
|         "properties": { | ||||
|           "banned_users": { | ||||
|             "type": [ | ||||
|               "array", | ||||
|               "null" | ||||
|             ], | ||||
|             "items": { | ||||
|               "$ref": "#/components/schemas/SnowflakeType" | ||||
|             } | ||||
|           }, | ||||
|           "failed_users": { | ||||
|             "type": [ | ||||
|               "array", | ||||
|               "null" | ||||
|             ], | ||||
|             "items": { | ||||
|               "$ref": "#/components/schemas/SnowflakeType" | ||||
|             } | ||||
|           } | ||||
|         } | ||||
|       }, | ||||
|       "Button": { | ||||
|         "type": "object", | ||||
|         "properties": { | ||||
|  |  | |||
|  | @ -5658,6 +5658,72 @@ | |||
|         ] | ||||
|       } | ||||
|     }, | ||||
|     "/guilds/{guild_id}/bulk-ban": { | ||||
|       "parameters": [ | ||||
|         { | ||||
|           "name": "guild_id", | ||||
|           "in": "path", | ||||
|           "schema": { | ||||
|             "$ref": "#/components/schemas/SnowflakeType" | ||||
|           }, | ||||
|           "required": true | ||||
|         } | ||||
|       ], | ||||
|       "post": { | ||||
|         "operationId": "bulk_ban_users_from_guild", | ||||
|         "requestBody": { | ||||
|           "content": { | ||||
|             "application/json": { | ||||
|               "schema": { | ||||
|                 "type": "object", | ||||
|                 "properties": { | ||||
|                   "user_ids": { | ||||
|                     "type": "array", | ||||
|                     "items": { | ||||
|                       "$ref": "#/components/schemas/SnowflakeType" | ||||
|                     }, | ||||
|                     "maxItems": 200, | ||||
|                     "uniqueItems": true | ||||
|                   }, | ||||
|                   "delete_message_seconds": { | ||||
|                     "type": [ | ||||
|                       "integer", | ||||
|                       "null" | ||||
|                     ], | ||||
|                     "minimum": 0, | ||||
|                     "maximum": 604800 | ||||
|                   } | ||||
|                 }, | ||||
|                 "required": [ | ||||
|                   "user_ids" | ||||
|                 ] | ||||
|               } | ||||
|             } | ||||
|           }, | ||||
|           "required": true | ||||
|         }, | ||||
|         "responses": { | ||||
|           "200": { | ||||
|             "description": "200 response for bulk_ban_users_from_guild", | ||||
|             "content": { | ||||
|               "application/json": { | ||||
|                 "schema": { | ||||
|                   "$ref": "#/components/schemas/BulkBanUsersResponse" | ||||
|                 } | ||||
|               } | ||||
|             } | ||||
|           }, | ||||
|           "4XX": { | ||||
|             "$ref": "#/components/responses/ClientErrorResponse" | ||||
|           } | ||||
|         }, | ||||
|         "security": [ | ||||
|           { | ||||
|             "BotToken": [] | ||||
|           } | ||||
|         ] | ||||
|       } | ||||
|     }, | ||||
|     "/guilds/{guild_id}/stickers": { | ||||
|       "parameters": [ | ||||
|         { | ||||
|  | @ -12602,6 +12668,29 @@ | |||
|           "username" | ||||
|         ] | ||||
|       }, | ||||
|       "BulkBanUsersResponse": { | ||||
|         "type": "object", | ||||
|         "properties": { | ||||
|           "banned_users": { | ||||
|             "type": [ | ||||
|               "array", | ||||
|               "null" | ||||
|             ], | ||||
|             "items": { | ||||
|               "$ref": "#/components/schemas/SnowflakeType" | ||||
|             } | ||||
|           }, | ||||
|           "failed_users": { | ||||
|             "type": [ | ||||
|               "array", | ||||
|               "null" | ||||
|             ], | ||||
|             "items": { | ||||
|               "$ref": "#/components/schemas/SnowflakeType" | ||||
|             } | ||||
|           } | ||||
|         } | ||||
|       }, | ||||
|       "Button": { | ||||
|         "type": "object", | ||||
|         "properties": { | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue