@camstack/addon-export-hap 0.1.1 → 0.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -607,6 +607,21 @@ var Fe = 1e4, Ie = 3e3, Le = 2e3, Re = 3e4, F = class {
607
607
  async getMe() {
608
608
  return await this._trpcClient.auth.me.query();
609
609
  }
610
+ async changeOwnPassword(e) {
611
+ return await this._trpcClient.auth.changeOwnPassword.mutate(e);
612
+ }
613
+ async setupOwnTotp() {
614
+ return await this._trpcClient.auth.setupOwnTotp.mutate();
615
+ }
616
+ async confirmOwnTotp(e) {
617
+ return await this._trpcClient.auth.confirmOwnTotp.mutate(e);
618
+ }
619
+ async disableOwnTotp() {
620
+ return await this._trpcClient.auth.disableOwnTotp.mutate();
621
+ }
622
+ async getOwnTotpStatus() {
623
+ return await this._trpcClient.auth.getOwnTotpStatus.query();
624
+ }
610
625
  setToken(e) {
611
626
  this.token = e;
612
627
  }