Exclude more internal schemas
This commit is contained in:
parent
dbd93bdd7c
commit
339b947a8d
@ -61,110 +61,209 @@
|
|||||||
"read_states"
|
"read_states"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"DiagnosticsChannel.Response": {
|
"ConnectedAccountCommonOAuthTokenResponse": {
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"properties": {
|
"properties": {
|
||||||
"statusCode": {
|
"access_token": {
|
||||||
"type": "integer"
|
|
||||||
},
|
|
||||||
"statusText": {
|
|
||||||
"type": "string"
|
"type": "string"
|
||||||
},
|
},
|
||||||
"headers": {
|
"token_type": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"scope": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"refresh_token": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"expires_in": {
|
||||||
|
"type": "integer"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"required": [
|
||||||
|
"access_token",
|
||||||
|
"scope",
|
||||||
|
"token_type"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"ApplicationAuthorizeSchema": {
|
||||||
|
"type": "object",
|
||||||
|
"properties": {
|
||||||
|
"authorize": {
|
||||||
|
"type": "boolean"
|
||||||
|
},
|
||||||
|
"guild_id": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"permissions": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"captcha_key": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"code": {
|
||||||
|
"type": "string"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"required": [
|
||||||
|
"authorize",
|
||||||
|
"guild_id",
|
||||||
|
"permissions"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"ApplicationCreateSchema": {
|
||||||
|
"type": "object",
|
||||||
|
"properties": {
|
||||||
|
"name": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"team_id": {
|
||||||
|
"type": [
|
||||||
|
"string",
|
||||||
|
"integer"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"required": [
|
||||||
|
"name"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"ApplicationModifySchema": {
|
||||||
|
"type": "object",
|
||||||
|
"properties": {
|
||||||
|
"description": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"icon": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"interactions_endpoint_url": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"max_participants": {
|
||||||
|
"type": "integer",
|
||||||
|
"nullable": true
|
||||||
|
},
|
||||||
|
"name": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"privacy_policy_url": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"role_connections_verification_url": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"tags": {
|
||||||
"type": "array",
|
"type": "array",
|
||||||
"items": {
|
"items": {
|
||||||
"type": "object",
|
"type": "string"
|
||||||
"additionalProperties": false,
|
}
|
||||||
"patternProperties": {
|
},
|
||||||
"^[0-9]+$": {
|
"terms_of_service_url": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"bot_public": {
|
||||||
|
"type": "boolean"
|
||||||
|
},
|
||||||
|
"bot_require_code_grant": {
|
||||||
|
"type": "boolean"
|
||||||
|
},
|
||||||
|
"flags": {
|
||||||
"type": "integer"
|
"type": "integer"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
"required": [
|
"BackupCodesChallengeSchema": {
|
||||||
"headers",
|
|
||||||
"statusCode",
|
|
||||||
"statusText"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"Headers": {
|
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"properties": {
|
"properties": {
|
||||||
"append": {
|
"password": {
|
||||||
"type": "object",
|
"type": "string"
|
||||||
"additionalProperties": false
|
|
||||||
},
|
|
||||||
"delete": {
|
|
||||||
"type": "object",
|
|
||||||
"additionalProperties": false
|
|
||||||
},
|
|
||||||
"get": {
|
|
||||||
"type": "object",
|
|
||||||
"additionalProperties": false
|
|
||||||
},
|
|
||||||
"has": {
|
|
||||||
"type": "object",
|
|
||||||
"additionalProperties": false
|
|
||||||
},
|
|
||||||
"set": {
|
|
||||||
"type": "object",
|
|
||||||
"additionalProperties": false
|
|
||||||
},
|
|
||||||
"getSetCookie": {
|
|
||||||
"type": "object",
|
|
||||||
"additionalProperties": false
|
|
||||||
},
|
|
||||||
"forEach": {
|
|
||||||
"description": "Performs the specified action for each element in an array.",
|
|
||||||
"type": "object",
|
|
||||||
"additionalProperties": false
|
|
||||||
},
|
|
||||||
"keys": {
|
|
||||||
"description": "Returns an array consisting of the keys of the object",
|
|
||||||
"type": "object",
|
|
||||||
"additionalProperties": false
|
|
||||||
},
|
|
||||||
"values": {
|
|
||||||
"type": "object",
|
|
||||||
"additionalProperties": false
|
|
||||||
},
|
|
||||||
"entries": {
|
|
||||||
"description": "Returns an array consisting of the key value pairs of the object",
|
|
||||||
"type": "object",
|
|
||||||
"additionalProperties": false
|
|
||||||
},
|
|
||||||
"__@iterator": {
|
|
||||||
"type": "object",
|
|
||||||
"additionalProperties": false
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"required": [
|
"required": [
|
||||||
"__@iterator",
|
"password"
|
||||||
"append",
|
|
||||||
"delete",
|
|
||||||
"entries",
|
|
||||||
"forEach",
|
|
||||||
"get",
|
|
||||||
"getSetCookie",
|
|
||||||
"has",
|
|
||||||
"keys",
|
|
||||||
"set",
|
|
||||||
"values"
|
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"ResponseType": {
|
"BanCreateSchema": {
|
||||||
"enum": [
|
"type": "object",
|
||||||
"basic",
|
"properties": {
|
||||||
"cors",
|
"delete_message_seconds": {
|
||||||
"default",
|
|
||||||
"error",
|
|
||||||
"opaque",
|
|
||||||
"opaqueredirect"
|
|
||||||
],
|
|
||||||
"type": "string"
|
"type": "string"
|
||||||
},
|
},
|
||||||
|
"delete_message_days": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"reason": {
|
||||||
|
"type": "string"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"BanModeratorSchema": {
|
||||||
|
"type": "object",
|
||||||
|
"properties": {
|
||||||
|
"id": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"user_id": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"guild_id": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"executor_id": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"reason": {
|
||||||
|
"type": "string"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"required": [
|
||||||
|
"executor_id",
|
||||||
|
"guild_id",
|
||||||
|
"id",
|
||||||
|
"user_id"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"BanRegistrySchema": {
|
||||||
|
"type": "object",
|
||||||
|
"properties": {
|
||||||
|
"id": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"user_id": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"guild_id": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"executor_id": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"ip": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"reason": {
|
||||||
|
"type": "string"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"required": [
|
||||||
|
"executor_id",
|
||||||
|
"guild_id",
|
||||||
|
"id",
|
||||||
|
"user_id"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"BotModifySchema": {
|
||||||
|
"type": "object",
|
||||||
|
"properties": {
|
||||||
|
"avatar": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"username": {
|
||||||
|
"type": "string"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"ChannelPermissionOverwriteType": {
|
"ChannelPermissionOverwriteType": {
|
||||||
"enum": [
|
"enum": [
|
||||||
0,
|
0,
|
||||||
@ -4729,372 +4828,6 @@
|
|||||||
"webauthn"
|
"webauthn"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"_Response": {
|
|
||||||
"type": "object",
|
|
||||||
"properties": {
|
|
||||||
"headers": {
|
|
||||||
"$ref": "#/components/schemas/Headers"
|
|
||||||
},
|
|
||||||
"ok": {
|
|
||||||
"type": "boolean"
|
|
||||||
},
|
|
||||||
"status": {
|
|
||||||
"type": "integer"
|
|
||||||
},
|
|
||||||
"statusText": {
|
|
||||||
"type": "string"
|
|
||||||
},
|
|
||||||
"type": {
|
|
||||||
"$ref": "#/components/schemas/ResponseType"
|
|
||||||
},
|
|
||||||
"url": {
|
|
||||||
"type": "string"
|
|
||||||
},
|
|
||||||
"redirected": {
|
|
||||||
"type": "boolean"
|
|
||||||
},
|
|
||||||
"body": {
|
|
||||||
"anyOf": [
|
|
||||||
{
|
|
||||||
"$ref": "#/components/schemas/ReadableStream<any>"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "null"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"bodyUsed": {
|
|
||||||
"type": "boolean"
|
|
||||||
},
|
|
||||||
"arrayBuffer": {
|
|
||||||
"type": "object",
|
|
||||||
"additionalProperties": false
|
|
||||||
},
|
|
||||||
"blob": {
|
|
||||||
"type": "object",
|
|
||||||
"additionalProperties": false
|
|
||||||
},
|
|
||||||
"formData": {
|
|
||||||
"type": "object",
|
|
||||||
"additionalProperties": false
|
|
||||||
},
|
|
||||||
"json": {
|
|
||||||
"type": "object",
|
|
||||||
"additionalProperties": false
|
|
||||||
},
|
|
||||||
"text": {
|
|
||||||
"type": "object",
|
|
||||||
"additionalProperties": false
|
|
||||||
},
|
|
||||||
"clone": {
|
|
||||||
"type": "object",
|
|
||||||
"additionalProperties": false
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"required": [
|
|
||||||
"arrayBuffer",
|
|
||||||
"blob",
|
|
||||||
"body",
|
|
||||||
"bodyUsed",
|
|
||||||
"clone",
|
|
||||||
"formData",
|
|
||||||
"headers",
|
|
||||||
"json",
|
|
||||||
"ok",
|
|
||||||
"redirected",
|
|
||||||
"status",
|
|
||||||
"statusText",
|
|
||||||
"text",
|
|
||||||
"type",
|
|
||||||
"url"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"global.Response": {
|
|
||||||
"type": "object",
|
|
||||||
"properties": {
|
|
||||||
"headers": {
|
|
||||||
"$ref": "#/components/schemas/Headers"
|
|
||||||
},
|
|
||||||
"ok": {
|
|
||||||
"type": "boolean"
|
|
||||||
},
|
|
||||||
"status": {
|
|
||||||
"type": "integer"
|
|
||||||
},
|
|
||||||
"statusText": {
|
|
||||||
"type": "string"
|
|
||||||
},
|
|
||||||
"type": {
|
|
||||||
"$ref": "#/components/schemas/ResponseType"
|
|
||||||
},
|
|
||||||
"url": {
|
|
||||||
"type": "string"
|
|
||||||
},
|
|
||||||
"redirected": {
|
|
||||||
"type": "boolean"
|
|
||||||
},
|
|
||||||
"body": {
|
|
||||||
"anyOf": [
|
|
||||||
{
|
|
||||||
"$ref": "#/components/schemas/ReadableStream<any>"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "null"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"bodyUsed": {
|
|
||||||
"type": "boolean"
|
|
||||||
},
|
|
||||||
"arrayBuffer": {
|
|
||||||
"type": "object",
|
|
||||||
"additionalProperties": false
|
|
||||||
},
|
|
||||||
"blob": {
|
|
||||||
"type": "object",
|
|
||||||
"additionalProperties": false
|
|
||||||
},
|
|
||||||
"formData": {
|
|
||||||
"type": "object",
|
|
||||||
"additionalProperties": false
|
|
||||||
},
|
|
||||||
"json": {
|
|
||||||
"type": "object",
|
|
||||||
"additionalProperties": false
|
|
||||||
},
|
|
||||||
"text": {
|
|
||||||
"type": "object",
|
|
||||||
"additionalProperties": false
|
|
||||||
},
|
|
||||||
"clone": {
|
|
||||||
"type": "object",
|
|
||||||
"additionalProperties": false
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"required": [
|
|
||||||
"arrayBuffer",
|
|
||||||
"blob",
|
|
||||||
"body",
|
|
||||||
"bodyUsed",
|
|
||||||
"clone",
|
|
||||||
"formData",
|
|
||||||
"headers",
|
|
||||||
"json",
|
|
||||||
"ok",
|
|
||||||
"redirected",
|
|
||||||
"status",
|
|
||||||
"statusText",
|
|
||||||
"text",
|
|
||||||
"type",
|
|
||||||
"url"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"ConnectedAccountCommonOAuthTokenResponse": {
|
|
||||||
"type": "object",
|
|
||||||
"properties": {
|
|
||||||
"access_token": {
|
|
||||||
"type": "string"
|
|
||||||
},
|
|
||||||
"token_type": {
|
|
||||||
"type": "string"
|
|
||||||
},
|
|
||||||
"scope": {
|
|
||||||
"type": "string"
|
|
||||||
},
|
|
||||||
"refresh_token": {
|
|
||||||
"type": "string"
|
|
||||||
},
|
|
||||||
"expires_in": {
|
|
||||||
"type": "integer"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"required": [
|
|
||||||
"access_token",
|
|
||||||
"scope",
|
|
||||||
"token_type"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"ExpressResponse": {
|
|
||||||
"type": "object"
|
|
||||||
},
|
|
||||||
"ApplicationAuthorizeSchema": {
|
|
||||||
"type": "object",
|
|
||||||
"properties": {
|
|
||||||
"authorize": {
|
|
||||||
"type": "boolean"
|
|
||||||
},
|
|
||||||
"guild_id": {
|
|
||||||
"type": "string"
|
|
||||||
},
|
|
||||||
"permissions": {
|
|
||||||
"type": "string"
|
|
||||||
},
|
|
||||||
"captcha_key": {
|
|
||||||
"type": "string"
|
|
||||||
},
|
|
||||||
"code": {
|
|
||||||
"type": "string"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"required": [
|
|
||||||
"authorize",
|
|
||||||
"guild_id",
|
|
||||||
"permissions"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"ApplicationCreateSchema": {
|
|
||||||
"type": "object",
|
|
||||||
"properties": {
|
|
||||||
"name": {
|
|
||||||
"type": "string"
|
|
||||||
},
|
|
||||||
"team_id": {
|
|
||||||
"type": [
|
|
||||||
"string",
|
|
||||||
"integer"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"required": [
|
|
||||||
"name"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"ApplicationModifySchema": {
|
|
||||||
"type": "object",
|
|
||||||
"properties": {
|
|
||||||
"description": {
|
|
||||||
"type": "string"
|
|
||||||
},
|
|
||||||
"icon": {
|
|
||||||
"type": "string"
|
|
||||||
},
|
|
||||||
"interactions_endpoint_url": {
|
|
||||||
"type": "string"
|
|
||||||
},
|
|
||||||
"max_participants": {
|
|
||||||
"type": "integer",
|
|
||||||
"nullable": true
|
|
||||||
},
|
|
||||||
"name": {
|
|
||||||
"type": "string"
|
|
||||||
},
|
|
||||||
"privacy_policy_url": {
|
|
||||||
"type": "string"
|
|
||||||
},
|
|
||||||
"role_connections_verification_url": {
|
|
||||||
"type": "string"
|
|
||||||
},
|
|
||||||
"tags": {
|
|
||||||
"type": "array",
|
|
||||||
"items": {
|
|
||||||
"type": "string"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"terms_of_service_url": {
|
|
||||||
"type": "string"
|
|
||||||
},
|
|
||||||
"bot_public": {
|
|
||||||
"type": "boolean"
|
|
||||||
},
|
|
||||||
"bot_require_code_grant": {
|
|
||||||
"type": "boolean"
|
|
||||||
},
|
|
||||||
"flags": {
|
|
||||||
"type": "integer"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"BackupCodesChallengeSchema": {
|
|
||||||
"type": "object",
|
|
||||||
"properties": {
|
|
||||||
"password": {
|
|
||||||
"type": "string"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"required": [
|
|
||||||
"password"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"BanCreateSchema": {
|
|
||||||
"type": "object",
|
|
||||||
"properties": {
|
|
||||||
"delete_message_seconds": {
|
|
||||||
"type": "string"
|
|
||||||
},
|
|
||||||
"delete_message_days": {
|
|
||||||
"type": "string"
|
|
||||||
},
|
|
||||||
"reason": {
|
|
||||||
"type": "string"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"BanModeratorSchema": {
|
|
||||||
"type": "object",
|
|
||||||
"properties": {
|
|
||||||
"id": {
|
|
||||||
"type": "string"
|
|
||||||
},
|
|
||||||
"user_id": {
|
|
||||||
"type": "string"
|
|
||||||
},
|
|
||||||
"guild_id": {
|
|
||||||
"type": "string"
|
|
||||||
},
|
|
||||||
"executor_id": {
|
|
||||||
"type": "string"
|
|
||||||
},
|
|
||||||
"reason": {
|
|
||||||
"type": "string"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"required": [
|
|
||||||
"executor_id",
|
|
||||||
"guild_id",
|
|
||||||
"id",
|
|
||||||
"user_id"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"BanRegistrySchema": {
|
|
||||||
"type": "object",
|
|
||||||
"properties": {
|
|
||||||
"id": {
|
|
||||||
"type": "string"
|
|
||||||
},
|
|
||||||
"user_id": {
|
|
||||||
"type": "string"
|
|
||||||
},
|
|
||||||
"guild_id": {
|
|
||||||
"type": "string"
|
|
||||||
},
|
|
||||||
"executor_id": {
|
|
||||||
"type": "string"
|
|
||||||
},
|
|
||||||
"ip": {
|
|
||||||
"type": "string"
|
|
||||||
},
|
|
||||||
"reason": {
|
|
||||||
"type": "string"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"required": [
|
|
||||||
"executor_id",
|
|
||||||
"guild_id",
|
|
||||||
"id",
|
|
||||||
"user_id"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"BotModifySchema": {
|
|
||||||
"type": "object",
|
|
||||||
"properties": {
|
|
||||||
"avatar": {
|
|
||||||
"type": "string"
|
|
||||||
},
|
|
||||||
"username": {
|
|
||||||
"type": "string"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"ChannelPermissionOverwriteSchema": {
|
"ChannelPermissionOverwriteSchema": {
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"properties": {
|
"properties": {
|
||||||
@ -6184,7 +5917,6 @@
|
|||||||
"properties": {
|
"properties": {
|
||||||
"username": {
|
"username": {
|
||||||
"minLength": 2,
|
"minLength": 2,
|
||||||
"maxLength": 32,
|
|
||||||
"type": "string"
|
"type": "string"
|
||||||
},
|
},
|
||||||
"password": {
|
"password": {
|
||||||
@ -6600,8 +6332,7 @@
|
|||||||
"type": "object",
|
"type": "object",
|
||||||
"properties": {
|
"properties": {
|
||||||
"username": {
|
"username": {
|
||||||
"minLength": 1,
|
"minLength": 2,
|
||||||
"maxLength": 100,
|
|
||||||
"type": "string"
|
"type": "string"
|
||||||
},
|
},
|
||||||
"avatar": {
|
"avatar": {
|
||||||
|
69365
assets/schemas.json
69365
assets/schemas.json
File diff suppressed because it is too large
Load Diff
@ -41,11 +41,16 @@ const Excluded = [
|
|||||||
"EntitySchema",
|
"EntitySchema",
|
||||||
"ServerResponse",
|
"ServerResponse",
|
||||||
"Http2ServerResponse",
|
"Http2ServerResponse",
|
||||||
|
"ExpressResponse",
|
||||||
"global.Express.Response",
|
"global.Express.Response",
|
||||||
|
"global.Response",
|
||||||
"Response",
|
"Response",
|
||||||
"e.Response",
|
"e.Response",
|
||||||
"request.Response",
|
"request.Response",
|
||||||
"supertest.Response",
|
"supertest.Response",
|
||||||
|
"DiagnosticsChannel.Response",
|
||||||
|
"_Response",
|
||||||
|
"ReadableStream<any>",
|
||||||
|
|
||||||
// TODO: Figure out how to exclude schemas from node_modules?
|
// TODO: Figure out how to exclude schemas from node_modules?
|
||||||
"SomeJSONSchema",
|
"SomeJSONSchema",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user