refactor: rewrite OAuth and Requester (#90)

* chore: update type declarations

* dev: refactor oauth & requester

* chore: tidy things up

* chore: remove unneeded check
This commit is contained in:
LuanRT
2022-07-04 16:34:02 -03:00
committed by GitHub
parent d7d6a4e019
commit 84d5edb6f0
21 changed files with 394 additions and 479 deletions

View File

@@ -0,0 +1,11 @@
'use strict';
class RemoveBannerForLiveChatCommand {
type = 'RemoveBannerForLiveChatCommand';
constructor(data) {
this.target_action_id = data.targetActionId;
}
}
module.exports = RemoveBannerForLiveChatCommand;