fix(RESTPostAPIBaseApplicationCommandsJSONBody): omit version field (#195)

Co-authored-by: Keenser1 <36800359+Keenser1@users.noreply.github.com>
This commit is contained in:
Khasms
2021-09-07 21:16:01 +03:00
committed by GitHub
co-authored by Keenser1
parent 21e1148f2d
commit 43cc755e33
4 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -27,7 +27,7 @@ export type RESTGetAPIApplicationCommandResult = APIApplicationCommand;
type RESTPostAPIBaseApplicationCommandsJSONBody = Omit<
APIApplicationCommand,
'id' | 'application_id' | 'description' | 'type'
'id' | 'application_id' | 'description' | 'type' | 'version'
>;
/**
+1 -1
View File
@@ -27,7 +27,7 @@ export type RESTGetAPIApplicationCommandResult = APIApplicationCommand;
type RESTPostAPIBaseApplicationCommandsJSONBody = Omit<
APIApplicationCommand,
'id' | 'application_id' | 'description' | 'type'
'id' | 'application_id' | 'description' | 'type' | 'version'
>;
/**
+1 -1
View File
@@ -27,7 +27,7 @@ export type RESTGetAPIApplicationCommandResult = APIApplicationCommand;
type RESTPostAPIBaseApplicationCommandsJSONBody = Omit<
APIApplicationCommand,
'id' | 'application_id' | 'description' | 'type'
'id' | 'application_id' | 'description' | 'type' | 'version'
>;
/**
+1 -1
View File
@@ -27,7 +27,7 @@ export type RESTGetAPIApplicationCommandResult = APIApplicationCommand;
type RESTPostAPIBaseApplicationCommandsJSONBody = Omit<
APIApplicationCommand,
'id' | 'application_id' | 'description' | 'type'
'id' | 'application_id' | 'description' | 'type' | 'version'
>;
/**