mirror of
https://github.com/discord/discord-api-spec.git
synced 2024-12-22 00:21:23 -05:00
Automated spec update (65409)
This commit is contained in:
parent
2d4026cf12
commit
f318438087
2 changed files with 312 additions and 0 deletions
|
@ -2923,6 +2923,50 @@
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"/applications/{application_id}/activity-instance/{instance_id}": {
|
||||||
|
"parameters": [
|
||||||
|
{
|
||||||
|
"name": "application_id",
|
||||||
|
"in": "path",
|
||||||
|
"schema": {
|
||||||
|
"$ref": "#/components/schemas/SnowflakeType"
|
||||||
|
},
|
||||||
|
"required": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "instance_id",
|
||||||
|
"in": "path",
|
||||||
|
"schema": {
|
||||||
|
"type": "string",
|
||||||
|
"maxLength": 152133
|
||||||
|
},
|
||||||
|
"required": true
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"get": {
|
||||||
|
"operationId": "applications_get_activity_instance",
|
||||||
|
"responses": {
|
||||||
|
"200": {
|
||||||
|
"description": "200 response for applications_get_activity_instance",
|
||||||
|
"content": {
|
||||||
|
"application/json": {
|
||||||
|
"schema": {
|
||||||
|
"$ref": "#/components/schemas/EmbeddedActivityInstance"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"4XX": {
|
||||||
|
"$ref": "#/components/responses/ClientErrorResponse"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"security": [
|
||||||
|
{
|
||||||
|
"BotToken": []
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
"/applications/{application_id}/entitlements/{entitlement_id}": {
|
"/applications/{application_id}/entitlements/{entitlement_id}": {
|
||||||
"parameters": [
|
"parameters": [
|
||||||
{
|
{
|
||||||
|
@ -9483,6 +9527,21 @@
|
||||||
"attachment"
|
"attachment"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
"ActivityLocationKinds": {
|
||||||
|
"type": "string",
|
||||||
|
"oneOf": [
|
||||||
|
{
|
||||||
|
"title": "GUILD_CHANNEL",
|
||||||
|
"description": "guild channel",
|
||||||
|
"const": "gc"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"title": "PRIVATE_CHANNEL",
|
||||||
|
"description": "private channel",
|
||||||
|
"const": "pc"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
"AfkTimeouts": {
|
"AfkTimeouts": {
|
||||||
"type": "integer",
|
"type": "integer",
|
||||||
"oneOf": [
|
"oneOf": [
|
||||||
|
@ -16202,6 +16261,45 @@
|
||||||
"scopes"
|
"scopes"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
"EmbeddedActivityInstance": {
|
||||||
|
"type": "object",
|
||||||
|
"properties": {
|
||||||
|
"application_id": {
|
||||||
|
"$ref": "#/components/schemas/SnowflakeType"
|
||||||
|
},
|
||||||
|
"instance_id": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"launch_id": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"location": {
|
||||||
|
"oneOf": [
|
||||||
|
{
|
||||||
|
"$ref": "#/components/schemas/GuildChannelLocation"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"$ref": "#/components/schemas/PrivateChannelLocation"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "null"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"users": {
|
||||||
|
"type": "array",
|
||||||
|
"items": {
|
||||||
|
"$ref": "#/components/schemas/SnowflakeType"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"required": [
|
||||||
|
"application_id",
|
||||||
|
"instance_id",
|
||||||
|
"launch_id",
|
||||||
|
"users"
|
||||||
|
]
|
||||||
|
},
|
||||||
"Emoji": {
|
"Emoji": {
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"properties": {
|
"properties": {
|
||||||
|
@ -17928,6 +18026,37 @@
|
||||||
"user"
|
"user"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
"GuildChannelLocation": {
|
||||||
|
"type": "object",
|
||||||
|
"properties": {
|
||||||
|
"id": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"kind": {
|
||||||
|
"type": "string",
|
||||||
|
"enum": [
|
||||||
|
"gc"
|
||||||
|
],
|
||||||
|
"allOf": [
|
||||||
|
{
|
||||||
|
"$ref": "#/components/schemas/ActivityLocationKinds"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"channel_id": {
|
||||||
|
"$ref": "#/components/schemas/SnowflakeType"
|
||||||
|
},
|
||||||
|
"guild_id": {
|
||||||
|
"$ref": "#/components/schemas/SnowflakeType"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"required": [
|
||||||
|
"id",
|
||||||
|
"kind",
|
||||||
|
"channel_id",
|
||||||
|
"guild_id"
|
||||||
|
]
|
||||||
|
},
|
||||||
"GuildChannelResponse": {
|
"GuildChannelResponse": {
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"properties": {
|
"properties": {
|
||||||
|
@ -26344,6 +26473,33 @@
|
||||||
"explicit_content_filter"
|
"explicit_content_filter"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
"PrivateChannelLocation": {
|
||||||
|
"type": "object",
|
||||||
|
"properties": {
|
||||||
|
"id": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"kind": {
|
||||||
|
"type": "string",
|
||||||
|
"enum": [
|
||||||
|
"pc"
|
||||||
|
],
|
||||||
|
"allOf": [
|
||||||
|
{
|
||||||
|
"$ref": "#/components/schemas/ActivityLocationKinds"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"channel_id": {
|
||||||
|
"$ref": "#/components/schemas/SnowflakeType"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"required": [
|
||||||
|
"id",
|
||||||
|
"kind",
|
||||||
|
"channel_id"
|
||||||
|
]
|
||||||
|
},
|
||||||
"PrivateChannelRequestPartial": {
|
"PrivateChannelRequestPartial": {
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"properties": {
|
"properties": {
|
||||||
|
|
|
@ -2923,6 +2923,50 @@
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"/applications/{application_id}/activity-instance/{instance_id}": {
|
||||||
|
"parameters": [
|
||||||
|
{
|
||||||
|
"name": "application_id",
|
||||||
|
"in": "path",
|
||||||
|
"schema": {
|
||||||
|
"$ref": "#/components/schemas/SnowflakeType"
|
||||||
|
},
|
||||||
|
"required": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "instance_id",
|
||||||
|
"in": "path",
|
||||||
|
"schema": {
|
||||||
|
"type": "string",
|
||||||
|
"maxLength": 152133
|
||||||
|
},
|
||||||
|
"required": true
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"get": {
|
||||||
|
"operationId": "applications_get_activity_instance",
|
||||||
|
"responses": {
|
||||||
|
"200": {
|
||||||
|
"description": "200 response for applications_get_activity_instance",
|
||||||
|
"content": {
|
||||||
|
"application/json": {
|
||||||
|
"schema": {
|
||||||
|
"$ref": "#/components/schemas/EmbeddedActivityInstance"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"4XX": {
|
||||||
|
"$ref": "#/components/responses/ClientErrorResponse"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"security": [
|
||||||
|
{
|
||||||
|
"BotToken": []
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
"/applications/{application_id}/entitlements/{entitlement_id}": {
|
"/applications/{application_id}/entitlements/{entitlement_id}": {
|
||||||
"parameters": [
|
"parameters": [
|
||||||
{
|
{
|
||||||
|
@ -9483,6 +9527,21 @@
|
||||||
"attachment"
|
"attachment"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
"ActivityLocationKinds": {
|
||||||
|
"type": "string",
|
||||||
|
"oneOf": [
|
||||||
|
{
|
||||||
|
"title": "GUILD_CHANNEL",
|
||||||
|
"description": "guild channel",
|
||||||
|
"const": "gc"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"title": "PRIVATE_CHANNEL",
|
||||||
|
"description": "private channel",
|
||||||
|
"const": "pc"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
"AfkTimeouts": {
|
"AfkTimeouts": {
|
||||||
"type": "integer",
|
"type": "integer",
|
||||||
"oneOf": [
|
"oneOf": [
|
||||||
|
@ -16253,6 +16312,45 @@
|
||||||
"scopes"
|
"scopes"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
"EmbeddedActivityInstance": {
|
||||||
|
"type": "object",
|
||||||
|
"properties": {
|
||||||
|
"application_id": {
|
||||||
|
"$ref": "#/components/schemas/SnowflakeType"
|
||||||
|
},
|
||||||
|
"instance_id": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"launch_id": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"location": {
|
||||||
|
"oneOf": [
|
||||||
|
{
|
||||||
|
"$ref": "#/components/schemas/GuildChannelLocation"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"$ref": "#/components/schemas/PrivateChannelLocation"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "null"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"users": {
|
||||||
|
"type": "array",
|
||||||
|
"items": {
|
||||||
|
"$ref": "#/components/schemas/SnowflakeType"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"required": [
|
||||||
|
"application_id",
|
||||||
|
"instance_id",
|
||||||
|
"launch_id",
|
||||||
|
"users"
|
||||||
|
]
|
||||||
|
},
|
||||||
"Emoji": {
|
"Emoji": {
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"properties": {
|
"properties": {
|
||||||
|
@ -18009,6 +18107,37 @@
|
||||||
"user"
|
"user"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
"GuildChannelLocation": {
|
||||||
|
"type": "object",
|
||||||
|
"properties": {
|
||||||
|
"id": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"kind": {
|
||||||
|
"type": "string",
|
||||||
|
"enum": [
|
||||||
|
"gc"
|
||||||
|
],
|
||||||
|
"allOf": [
|
||||||
|
{
|
||||||
|
"$ref": "#/components/schemas/ActivityLocationKinds"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"channel_id": {
|
||||||
|
"$ref": "#/components/schemas/SnowflakeType"
|
||||||
|
},
|
||||||
|
"guild_id": {
|
||||||
|
"$ref": "#/components/schemas/SnowflakeType"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"required": [
|
||||||
|
"id",
|
||||||
|
"kind",
|
||||||
|
"channel_id",
|
||||||
|
"guild_id"
|
||||||
|
]
|
||||||
|
},
|
||||||
"GuildChannelResponse": {
|
"GuildChannelResponse": {
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"properties": {
|
"properties": {
|
||||||
|
@ -26456,6 +26585,33 @@
|
||||||
"explicit_content_filter"
|
"explicit_content_filter"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
"PrivateChannelLocation": {
|
||||||
|
"type": "object",
|
||||||
|
"properties": {
|
||||||
|
"id": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"kind": {
|
||||||
|
"type": "string",
|
||||||
|
"enum": [
|
||||||
|
"pc"
|
||||||
|
],
|
||||||
|
"allOf": [
|
||||||
|
{
|
||||||
|
"$ref": "#/components/schemas/ActivityLocationKinds"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"channel_id": {
|
||||||
|
"$ref": "#/components/schemas/SnowflakeType"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"required": [
|
||||||
|
"id",
|
||||||
|
"kind",
|
||||||
|
"channel_id"
|
||||||
|
]
|
||||||
|
},
|
||||||
"PrivateChannelRequestPartial": {
|
"PrivateChannelRequestPartial": {
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"properties": {
|
"properties": {
|
||||||
|
|
Loading…
Reference in a new issue