@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.
- package/assets/icon.svg +1 -0
- package/dist/@mf-types.zip +0 -0
- package/dist/_stub.js +1 -1
- package/dist/{_virtual_mf-localSharedImportMap___mfe_internal__addon_export_hap_page-Cq9F5QFd.mjs → _virtual_mf-localSharedImportMap___mfe_internal__addon_export_hap_page-DtbdD5CL.mjs} +6 -6
- package/dist/{dist-C_kcZj9a.mjs → dist-B4EgL9KT.mjs} +324 -250
- package/dist/{dist-C_M8X1vZ.mjs → dist-DvB1ylHP.mjs} +15 -0
- package/dist/{dist-Bna6cbWX.mjs → dist-v8qx0EEt.mjs} +397 -397
- package/dist/export-hap.addon.js +14048 -13
- package/dist/export-hap.addon.js.map +1 -1
- package/dist/export-hap.addon.mjs +14089 -54
- package/dist/export-hap.addon.mjs.map +1 -1
- package/dist/{hostInit-CPk5kMR8.mjs → hostInit-CWjIaYbZ.mjs} +6 -6
- package/dist/remoteEntry.js +1 -1
- package/package.json +6 -3
|
@@ -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
|
}
|