feat(APIApplicationCommand): add version field (#193)

ref: https://github.com/discord/discord-api-docs/pull/3524
This commit is contained in:
Vlad Frangu
2021-09-07 12:56:34 +03:00
committed by GitHub
parent e628f0f6f0
commit ecbed18042
4 changed files with 16 additions and 0 deletions

View File

@@ -59,6 +59,10 @@ export interface APIApplicationCommand {
* If missing, this property should be assumed as `true`
*/
default_permission?: boolean;
/**
* Autoincrementing version identifier updated during substantial record changes
*/
version: Snowflake;
}
/**

View File

@@ -59,6 +59,10 @@ export interface APIApplicationCommand {
* If missing, this property should be assumed as `true`
*/
default_permission?: boolean;
/**
* Autoincrementing version identifier updated during substantial record changes
*/
version: Snowflake;
}
/**

View File

@@ -59,6 +59,10 @@ export interface APIApplicationCommand {
* If missing, this property should be assumed as `true`
*/
default_permission?: boolean;
/**
* Autoincrementing version identifier updated during substantial record changes
*/
version: Snowflake;
}
/**

View File

@@ -59,6 +59,10 @@ export interface APIApplicationCommand {
* If missing, this property should be assumed as `true`
*/
default_permission?: boolean;
/**
* Autoincrementing version identifier updated during substantial record changes
*/
version: Snowflake;
}
/**