@ray-js/lock-sdk 1.1.3-beta.9 → 1.2.0-beta.1
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/lib/api/ble.d.ts +57 -0
- package/lib/api/ble.js +46 -0
- package/lib/api/fit.d.ts +203 -0
- package/lib/api/fit.js +158 -0
- package/lib/api/index.d.ts +1 -1
- package/lib/api/index.js +10 -0
- package/lib/api/linkage.js +6 -0
- package/lib/api/lock.d.ts +4 -2
- package/lib/api/lock.js +24 -0
- package/lib/api/log.d.ts +49 -22
- package/lib/api/log.js +21 -0
- package/lib/api/request.d.ts +5 -2
- package/lib/api/request.js +34 -2
- package/lib/api/screen.d.ts +110 -0
- package/lib/api/screen.js +52 -0
- package/lib/api/setting.js +2 -0
- package/lib/api/temp.d.ts +24 -3
- package/lib/api/temp.js +27 -0
- package/lib/api/user.d.ts +35 -1
- package/lib/api/user.js +24 -0
- package/lib/api/video.d.ts +27 -0
- package/lib/api/video.js +21 -0
- package/lib/api/voice-file.d.ts +14 -0
- package/lib/api/voice-file.js +18 -0
- package/lib/bootstrap/bootstrap-lock-instance.d.ts +7 -0
- package/lib/bootstrap/bootstrap-lock-instance.js +16 -0
- package/lib/bootstrap/bootstrap.d.ts +4 -0
- package/lib/bootstrap/bootstrap.js +53 -0
- package/lib/bootstrap/lock-instance-runtime-ref.d.ts +3 -0
- package/lib/bootstrap/lock-instance-runtime-ref.js +7 -0
- package/lib/bootstrap/primary-instance.d.ts +6 -0
- package/lib/bootstrap/primary-instance.js +24 -0
- package/lib/bootstrap/resolve-runtime-from-export-this.d.ts +5 -0
- package/lib/bootstrap/resolve-runtime-from-export-this.js +29 -0
- package/lib/bootstrap/top-level-runtime.d.ts +2 -0
- package/lib/bootstrap/top-level-runtime.js +9 -0
- package/lib/config/dp-code/index.d.ts +100 -67
- package/lib/config/dp-code/index.js +33 -1
- package/lib/config/dp-map/ble-check-code.d.ts +41 -0
- package/lib/config/dp-map/ble-check-code.js +55 -0
- package/lib/config/dp-map/ble-key-fit.d.ts +328 -0
- package/lib/config/dp-map/ble-key-fit.js +33 -0
- package/lib/config/dp-map/ble-sync.d.ts +2 -2
- package/lib/config/dp-map/ble-sync.js +2 -2
- package/lib/config/dp-map/ble-unlock-check.d.ts +42 -0
- package/lib/config/dp-map/ble-unlock-check.js +59 -0
- package/lib/config/dp-map/ble-voice-data.d.ts +16 -0
- package/lib/config/dp-map/ble-voice-data.js +7 -0
- package/lib/config/dp-map/bluetooth-unlock.d.ts +10 -0
- package/lib/config/dp-map/bluetooth-unlock.js +16 -0
- package/lib/config/dp-map/registry.d.ts +1137 -0
- package/lib/config/dp-map/registry.js +110 -0
- package/lib/config/dp-map/sync-method-fit.d.ts +3 -0
- package/lib/config/dp-map/sync-method-fit.js +36 -0
- package/lib/config/dp-map/temp-pwd-fit.d.ts +441 -0
- package/lib/config/dp-map/temp-pwd-fit.js +73 -0
- package/lib/config/dp-map/unlock-method-fit.d.ts +302 -0
- package/lib/config/dp-map/unlock-method-fit.js +62 -0
- package/lib/config/dp-map/unlock-method.d.ts +345 -1
- package/lib/config/dp-map/unlock-method.js +37 -1
- package/lib/constant.d.ts +5 -0
- package/lib/constant.js +6 -0
- package/lib/entries/ble/bootstrap/bootstrap-lock-instance.d.ts +7 -0
- package/lib/entries/ble/bootstrap/bootstrap-lock-instance.js +12 -0
- package/lib/entries/ble/bootstrap/bootstrap.d.ts +4 -0
- package/lib/entries/ble/bootstrap/bootstrap.js +53 -0
- package/lib/entries/ble/bootstrap/lock-instance-runtime-ref.d.ts +3 -0
- package/lib/entries/ble/bootstrap/lock-instance-runtime-ref.js +7 -0
- package/lib/entries/ble/bootstrap/primary-instance.d.ts +6 -0
- package/lib/entries/ble/bootstrap/primary-instance.js +24 -0
- package/lib/entries/ble/bootstrap/resolve-runtime-from-export-this.d.ts +5 -0
- package/lib/entries/ble/bootstrap/resolve-runtime-from-export-this.js +29 -0
- package/lib/entries/ble/bootstrap/top-level-runtime.d.ts +2 -0
- package/lib/entries/ble/bootstrap/top-level-runtime.js +9 -0
- package/lib/entries/ble/build-instance.d.ts +9 -0
- package/lib/entries/ble/build-instance.js +50 -0
- package/lib/entries/ble/exports/capability.d.ts +6 -0
- package/lib/entries/ble/exports/capability.js +17 -0
- package/lib/entries/ble/exports/config.d.ts +3 -0
- package/lib/entries/ble/exports/config.js +5 -0
- package/lib/entries/ble/exports/dp.d.ts +9 -0
- package/lib/entries/ble/exports/dp.js +13 -0
- package/lib/entries/ble/exports/index.d.ts +16 -0
- package/lib/entries/ble/exports/index.js +16 -0
- package/lib/entries/ble/exports/linkage.d.ts +5 -0
- package/lib/entries/ble/exports/linkage.js +15 -0
- package/lib/entries/ble/exports/log.d.ts +9 -0
- package/lib/entries/ble/exports/log.js +21 -0
- package/lib/entries/ble/exports/media.d.ts +4 -0
- package/lib/entries/ble/exports/media.js +12 -0
- package/lib/entries/ble/exports/misc.d.ts +19 -0
- package/lib/entries/ble/exports/misc.js +30 -0
- package/lib/entries/ble/exports/offline-dps.d.ts +8 -0
- package/lib/entries/ble/exports/offline-dps.js +24 -0
- package/lib/entries/ble/exports/open/do-open-close-action.d.ts +2 -0
- package/lib/entries/ble/exports/open/do-open-close-action.js +36 -0
- package/lib/entries/ble/exports/open/index.d.ts +18 -0
- package/lib/entries/ble/exports/open/index.js +45 -0
- package/lib/entries/ble/exports/signal.d.ts +6 -0
- package/lib/entries/ble/exports/signal.js +14 -0
- package/lib/entries/ble/exports/sleep.d.ts +13 -0
- package/lib/entries/ble/exports/sleep.js +31 -0
- package/lib/entries/ble/exports/state.d.ts +6 -0
- package/lib/entries/ble/exports/state.js +19 -0
- package/lib/entries/ble/exports/temporary.d.ts +31 -0
- package/lib/entries/ble/exports/temporary.js +91 -0
- package/lib/entries/ble/exports/unlock/sync.d.ts +1 -0
- package/lib/entries/ble/exports/unlock/sync.js +5 -0
- package/lib/entries/ble/exports/unlock-method.d.ts +19 -0
- package/lib/entries/ble/exports/unlock-method.js +58 -0
- package/lib/entries/ble/exports/user/index.d.ts +23 -0
- package/lib/entries/ble/exports/user/index.js +22 -0
- package/lib/entries/ble/exports/user/sync.d.ts +1 -0
- package/lib/entries/ble/exports/user/sync.js +5 -0
- package/lib/entries/ble/index.d.ts +8 -0
- package/lib/entries/ble/index.js +39 -0
- package/lib/entries/fit/bootstrap/bootstrap-lock-instance.d.ts +7 -0
- package/lib/entries/fit/bootstrap/bootstrap-lock-instance.js +12 -0
- package/lib/entries/fit/bootstrap/bootstrap.d.ts +4 -0
- package/lib/entries/fit/bootstrap/bootstrap.js +69 -0
- package/lib/entries/fit/bootstrap/lock-instance-runtime-ref.d.ts +3 -0
- package/lib/entries/fit/bootstrap/lock-instance-runtime-ref.js +7 -0
- package/lib/entries/fit/bootstrap/primary-instance.d.ts +6 -0
- package/lib/entries/fit/bootstrap/primary-instance.js +24 -0
- package/lib/entries/fit/bootstrap/resolve-runtime-from-export-this.d.ts +5 -0
- package/lib/entries/fit/bootstrap/resolve-runtime-from-export-this.js +29 -0
- package/lib/entries/fit/bootstrap/top-level-runtime.d.ts +2 -0
- package/lib/entries/fit/bootstrap/top-level-runtime.js +9 -0
- package/lib/entries/fit/build-instance.d.ts +9 -0
- package/lib/entries/fit/build-instance.js +57 -0
- package/lib/entries/fit/exports/binding.d.ts +8 -0
- package/lib/entries/fit/exports/binding.js +15 -0
- package/lib/entries/fit/exports/device.d.ts +26 -0
- package/lib/entries/fit/exports/device.js +64 -0
- package/lib/entries/fit/exports/index.d.ts +3 -0
- package/lib/entries/fit/exports/index.js +3 -0
- package/lib/entries/fit/exports/temp.d.ts +19 -0
- package/lib/entries/fit/exports/temp.js +18 -0
- package/lib/entries/fit/index.d.ts +8 -0
- package/lib/entries/fit/index.js +36 -0
- package/lib/entries/main/bootstrap/bootstrap-lock-instance.d.ts +7 -0
- package/lib/entries/main/bootstrap/bootstrap-lock-instance.js +12 -0
- package/lib/entries/main/bootstrap/bootstrap.d.ts +4 -0
- package/lib/entries/main/bootstrap/bootstrap.js +69 -0
- package/lib/entries/main/bootstrap/lock-instance-runtime-ref.d.ts +3 -0
- package/lib/entries/main/bootstrap/lock-instance-runtime-ref.js +7 -0
- package/lib/entries/main/bootstrap/primary-instance.d.ts +6 -0
- package/lib/entries/main/bootstrap/primary-instance.js +24 -0
- package/lib/entries/main/bootstrap/resolve-runtime-from-export-this.d.ts +5 -0
- package/lib/entries/main/bootstrap/resolve-runtime-from-export-this.js +29 -0
- package/lib/entries/main/bootstrap/top-level-runtime.d.ts +2 -0
- package/lib/entries/main/bootstrap/top-level-runtime.js +9 -0
- package/lib/entries/main/build-instance.d.ts +7 -0
- package/lib/entries/main/build-instance.js +49 -0
- package/lib/entries/main/exports/accessory-binding.d.ts +1 -0
- package/lib/entries/main/exports/accessory-binding.js +1 -0
- package/lib/entries/main/exports/capability.d.ts +6 -0
- package/lib/entries/main/exports/capability.js +17 -0
- package/lib/entries/main/exports/config.d.ts +3 -0
- package/lib/entries/main/exports/config.js +5 -0
- package/lib/entries/main/exports/dp.d.ts +11 -0
- package/lib/entries/main/exports/dp.js +13 -0
- package/lib/entries/main/exports/fit.d.ts +8 -0
- package/lib/entries/main/exports/fit.js +14 -0
- package/lib/entries/main/exports/index.d.ts +20 -0
- package/lib/entries/main/exports/index.js +20 -0
- package/lib/entries/main/exports/linkage.d.ts +5 -0
- package/lib/entries/main/exports/linkage.js +15 -0
- package/lib/entries/main/exports/log.d.ts +10 -0
- package/lib/entries/main/exports/log.js +24 -0
- package/lib/entries/main/exports/media.d.ts +6 -0
- package/lib/entries/main/exports/media.js +18 -0
- package/lib/entries/main/exports/misc.d.ts +18 -0
- package/lib/entries/main/exports/misc.js +30 -0
- package/lib/entries/main/exports/offline-dps.d.ts +8 -0
- package/lib/entries/main/exports/offline-dps.js +28 -0
- package/lib/entries/main/exports/open/do-open-close-action.d.ts +2 -0
- package/lib/entries/main/exports/open/do-open-close-action.js +68 -0
- package/lib/entries/main/exports/open/index.d.ts +16 -0
- package/lib/entries/main/exports/open/index.js +44 -0
- package/lib/entries/main/exports/open.d.ts +16 -0
- package/lib/entries/main/exports/open.js +44 -0
- package/lib/entries/main/exports/screen/bind.d.ts +4 -0
- package/lib/entries/main/exports/screen/bind.js +8 -0
- package/lib/entries/main/exports/screen/list.d.ts +5 -0
- package/lib/entries/main/exports/screen/list.js +13 -0
- package/lib/entries/main/exports/signal.d.ts +6 -0
- package/lib/entries/main/exports/signal.js +14 -0
- package/lib/entries/main/exports/sleep.d.ts +15 -0
- package/lib/entries/main/exports/sleep.js +31 -0
- package/lib/entries/main/exports/state.d.ts +6 -0
- package/lib/entries/main/exports/state.js +19 -0
- package/lib/entries/main/exports/temporary.d.ts +32 -0
- package/lib/entries/main/exports/temporary.js +86 -0
- package/lib/entries/main/exports/unlock/sync.d.ts +1 -0
- package/lib/entries/main/exports/unlock/sync.js +5 -0
- package/lib/entries/main/exports/unlock-method.d.ts +19 -0
- package/lib/entries/main/exports/unlock-method.js +58 -0
- package/lib/entries/main/exports/user/index.d.ts +33 -0
- package/lib/entries/main/exports/user/index.js +35 -0
- package/lib/entries/main/exports/user/sync.d.ts +1 -0
- package/lib/entries/main/exports/user/sync.js +5 -0
- package/lib/entries/main/exports/voice-file.d.ts +7 -0
- package/lib/entries/main/exports/voice-file.js +17 -0
- package/lib/entries/main/exports/yu-channel.d.ts +5 -0
- package/lib/entries/main/exports/yu-channel.js +17 -0
- package/lib/entries/main/index.d.ts +8 -0
- package/lib/entries/main/index.js +36 -0
- package/lib/entries/screen/bootstrap/bootstrap-lock-instance.d.ts +7 -0
- package/lib/entries/screen/bootstrap/bootstrap-lock-instance.js +12 -0
- package/lib/entries/screen/bootstrap/bootstrap.d.ts +4 -0
- package/lib/entries/screen/bootstrap/bootstrap.js +69 -0
- package/lib/entries/screen/bootstrap/lock-instance-runtime-ref.d.ts +3 -0
- package/lib/entries/screen/bootstrap/lock-instance-runtime-ref.js +7 -0
- package/lib/entries/screen/bootstrap/primary-instance.d.ts +6 -0
- package/lib/entries/screen/bootstrap/primary-instance.js +24 -0
- package/lib/entries/screen/bootstrap/resolve-runtime-from-export-this.d.ts +5 -0
- package/lib/entries/screen/bootstrap/resolve-runtime-from-export-this.js +29 -0
- package/lib/entries/screen/bootstrap/top-level-runtime.d.ts +2 -0
- package/lib/entries/screen/bootstrap/top-level-runtime.js +9 -0
- package/lib/entries/screen/build-instance.d.ts +9 -0
- package/lib/entries/screen/build-instance.js +57 -0
- package/lib/entries/screen/exports/binding.d.ts +6 -0
- package/lib/entries/screen/exports/binding.js +15 -0
- package/lib/entries/screen/exports/device.d.ts +16 -0
- package/lib/entries/screen/exports/device.js +41 -0
- package/lib/entries/screen/exports/event.d.ts +3 -0
- package/lib/entries/screen/exports/event.js +5 -0
- package/lib/entries/screen/exports/index.d.ts +4 -0
- package/lib/entries/screen/exports/index.js +4 -0
- package/lib/entries/screen/exports/user.d.ts +2 -0
- package/lib/entries/screen/exports/user.js +8 -0
- package/lib/entries/screen/index.d.ts +8 -0
- package/lib/entries/screen/index.js +36 -0
- package/lib/feature/dp/get-dp-value.d.ts +3 -0
- package/lib/feature/dp/get-dp-value.js +3 -0
- package/lib/feature/dp/has-dp.d.ts +2 -0
- package/lib/feature/dp/has-dp.js +1 -0
- package/lib/feature/dp/publish-dps.d.ts +7 -0
- package/lib/feature/dp/publish-dps.js +155 -0
- package/lib/feature/fit/bind-fit-to-lock.d.ts +6 -0
- package/lib/feature/fit/bind-fit-to-lock.js +222 -0
- package/lib/feature/fit/bind-lock-to-fit.d.ts +4 -0
- package/lib/feature/fit/bind-lock-to-fit.js +167 -0
- package/lib/feature/fit/ble-key.d.ts +16 -0
- package/lib/feature/fit/ble-key.js +99 -0
- package/lib/feature/fit/list.d.ts +3 -0
- package/lib/feature/fit/list.js +28 -0
- package/lib/feature/fit/method/add-flow.d.ts +7 -0
- package/lib/feature/fit/method/add-flow.js +380 -0
- package/lib/feature/fit/method/add-method-events.d.ts +5 -0
- package/lib/feature/fit/method/add-method-events.js +11 -0
- package/lib/feature/fit/method/add-password.d.ts +3 -0
- package/lib/feature/fit/method/add-password.js +99 -0
- package/lib/feature/fit/method/internal/base.d.ts +19 -0
- package/lib/feature/fit/method/internal/base.js +134 -0
- package/lib/feature/fit/method/list.d.ts +3 -0
- package/lib/feature/fit/method/list.js +64 -0
- package/lib/feature/fit/method/types.d.ts +68 -0
- package/lib/feature/fit/method/types.js +1 -0
- package/lib/feature/fit/method/update-remove.d.ts +4 -0
- package/lib/feature/fit/method/update-remove.js +159 -0
- package/lib/feature/fit/password-list.d.ts +24 -0
- package/lib/feature/fit/password-list.js +31 -0
- package/lib/feature/fit/resolve-slave-id.d.ts +2 -0
- package/lib/feature/fit/resolve-slave-id.js +38 -0
- package/lib/feature/fit/setting.d.ts +2 -0
- package/lib/feature/fit/setting.js +27 -0
- package/lib/feature/fit/shared.d.ts +27 -0
- package/lib/feature/fit/shared.js +118 -0
- package/lib/feature/fit/sync.d.ts +4 -0
- package/lib/feature/fit/sync.js +85 -0
- package/lib/feature/fit/temp-password.d.ts +27 -0
- package/lib/feature/fit/temp-password.js +428 -0
- package/lib/feature/fit/users.d.ts +12 -0
- package/lib/feature/fit/users.js +25 -0
- package/lib/feature/linkage/linkage.d.ts +10 -0
- package/lib/{linkage.js → feature/linkage/linkage.js} +30 -30
- package/lib/feature/log/log.d.ts +63 -0
- package/lib/feature/log/log.js +438 -0
- package/lib/feature/media/media.d.ts +31 -0
- package/lib/feature/media/media.js +66 -0
- package/lib/feature/media/rotate.d.ts +6 -0
- package/lib/feature/media/rotate.js +6 -0
- package/lib/feature/misc/ble-control.d.ts +2 -0
- package/lib/feature/misc/ble-control.js +38 -0
- package/lib/feature/misc/capability.d.ts +8 -0
- package/lib/{capability.js → feature/misc/capability.js} +39 -29
- package/lib/feature/misc/connect-device.d.ts +2 -0
- package/lib/feature/misc/connect-device.js +206 -0
- package/lib/feature/misc/dp-period.d.ts +18 -0
- package/lib/feature/misc/dp-period.js +75 -0
- package/lib/feature/misc/is-use-near-channel-for-runtime.d.ts +2 -0
- package/lib/feature/misc/is-use-near-channel-for-runtime.js +17 -0
- package/lib/feature/misc/open-scene.d.ts +3 -0
- package/lib/feature/misc/open-scene.js +63 -0
- package/lib/feature/misc/signal.d.ts +12 -0
- package/lib/feature/misc/signal.js +36 -0
- package/lib/feature/misc/sleep.d.ts +14 -0
- package/lib/feature/misc/sleep.js +66 -0
- package/lib/feature/misc/types.d.ts +7 -0
- package/lib/feature/misc/types.js +1 -0
- package/lib/feature/misc/update-config.d.ts +4 -0
- package/lib/feature/misc/update-config.js +9 -0
- package/lib/feature/misc/validate-pwd.d.ts +2 -0
- package/lib/feature/misc/validate-pwd.js +10 -0
- package/lib/feature/misc/yu-channel.d.ts +6 -0
- package/lib/feature/misc/yu-channel.js +26 -0
- package/lib/feature/offline-dps/index.d.ts +10 -0
- package/lib/feature/offline-dps/index.js +133 -0
- package/lib/feature/password/ble-temp-payload.d.ts +3 -0
- package/lib/{sync → feature/password}/ble-temp-payload.js +10 -10
- package/lib/feature/password/sync-temp.d.ts +4 -0
- package/lib/feature/password/sync-temp.js +91 -0
- package/lib/feature/password/temporary/custom-dp-ble.d.ts +6 -0
- package/lib/feature/password/temporary/custom-dp-ble.js +263 -0
- package/lib/feature/password/temporary/custom-dp-create-shared.d.ts +34 -0
- package/lib/feature/password/temporary/custom-dp-create-shared.js +64 -0
- package/lib/feature/password/temporary/custom-dp.d.ts +6 -0
- package/lib/feature/password/temporary/custom-dp.js +241 -0
- package/lib/feature/password/temporary/freeze-ble-key.d.ts +4 -0
- package/lib/feature/password/temporary/freeze-ble-key.js +7 -0
- package/lib/feature/password/temporary/freeze-rename.d.ts +5 -0
- package/lib/feature/password/temporary/freeze-rename.js +72 -0
- package/lib/feature/password/temporary/internal/change-password-phase.d.ts +2 -0
- package/lib/feature/password/temporary/internal/change-password-phase.js +48 -0
- package/lib/feature/password/temporary/internal/constants.d.ts +12 -0
- package/lib/feature/password/temporary/internal/constants.js +21 -0
- package/lib/feature/password/temporary/internal/password-helpers.d.ts +4 -0
- package/lib/feature/password/temporary/internal/password-helpers.js +18 -0
- package/lib/feature/password/temporary/internal/password-type-map.d.ts +2 -0
- package/lib/feature/password/temporary/internal/password-type-map.js +7 -0
- package/lib/feature/password/temporary/lists.d.ts +16 -0
- package/lib/feature/password/temporary/lists.js +157 -0
- package/lib/feature/password/temporary/offline-create.d.ts +7 -0
- package/lib/feature/password/temporary/offline-create.js +192 -0
- package/lib/feature/password/temporary/types.d.ts +107 -0
- package/lib/feature/password/temporary/types.js +1 -0
- package/lib/feature/password/temporary/wifi-offline.d.ts +5 -0
- package/lib/feature/password/temporary/wifi-offline.js +85 -0
- package/lib/feature/password/temporary/wifi-online.d.ts +28 -0
- package/lib/feature/password/temporary/wifi-online.js +153 -0
- package/lib/feature/screen/bind.d.ts +4 -0
- package/lib/feature/screen/bind.js +181 -0
- package/lib/feature/screen/error.d.ts +1 -0
- package/lib/feature/screen/error.js +34 -0
- package/lib/feature/screen/event.d.ts +3 -0
- package/lib/feature/screen/event.js +19 -0
- package/lib/feature/screen/list.d.ts +13 -0
- package/lib/feature/screen/list.js +56 -0
- package/lib/feature/service/goto-service.d.ts +5 -0
- package/lib/feature/service/goto-service.js +16 -0
- package/lib/feature/state/clear.d.ts +2 -0
- package/lib/feature/state/clear.js +17 -0
- package/lib/feature/state/device-status-events.d.ts +5 -0
- package/lib/feature/state/device-status-events.js +11 -0
- package/lib/feature/state/device-status.d.ts +5 -0
- package/lib/feature/state/device-status.js +130 -0
- package/lib/feature/state/dp-change.d.ts +3 -0
- package/lib/feature/state/dp-change.js +44 -0
- package/lib/feature/state/init-state.d.ts +2 -0
- package/lib/feature/state/init-state.js +167 -0
- package/lib/feature/state/internal/read-is-sleep.d.ts +2 -0
- package/lib/feature/state/internal/read-is-sleep.js +9 -0
- package/lib/feature/state/internal/share-thread-local.d.ts +2 -0
- package/lib/feature/state/internal/share-thread-local.js +4 -0
- package/lib/feature/state/platform-routing.d.ts +3 -0
- package/lib/feature/state/platform-routing.js +155 -0
- package/lib/feature/state/remote-permissions.d.ts +4 -0
- package/lib/feature/state/remote-permissions.js +30 -0
- package/lib/feature/state/sync/offline-dps.d.ts +2 -0
- package/lib/feature/state/sync/offline-dps.js +71 -0
- package/lib/feature/state/sync/remote-serect-key.d.ts +3 -0
- package/lib/feature/state/sync/remote-serect-key.js +74 -0
- package/lib/feature/state/sync/t0.d.ts +3 -0
- package/lib/feature/state/sync/t0.js +64 -0
- package/lib/feature/unlock/door/check-remote.d.ts +2 -0
- package/lib/feature/unlock/door/check-remote.js +40 -0
- package/lib/feature/unlock/door/check-user-valid.d.ts +2 -0
- package/lib/feature/unlock/door/check-user-valid.js +21 -0
- package/lib/feature/unlock/door/door-action.d.ts +2 -0
- package/lib/feature/unlock/door/door-action.js +32 -0
- package/lib/feature/unlock/door/door-ble-only.d.ts +2 -0
- package/lib/feature/unlock/door/door-ble-only.js +102 -0
- package/lib/feature/unlock/door/door-matter-lan.d.ts +2 -0
- package/lib/feature/unlock/door/door-matter-lan.js +15 -0
- package/lib/feature/unlock/door/door-near-dual-mode.d.ts +2 -0
- package/lib/feature/unlock/door/door-near-dual-mode.js +39 -0
- package/lib/feature/unlock/door/door-remote-cloud.d.ts +2 -0
- package/lib/feature/unlock/door/door-remote-cloud.js +69 -0
- package/lib/feature/unlock/door/door-report.d.ts +11 -0
- package/lib/feature/unlock/door/door-report.js +96 -0
- package/lib/feature/unlock/door/internal/report-error.d.ts +2 -0
- package/lib/feature/unlock/door/internal/report-error.js +46 -0
- package/lib/feature/unlock/door/open-close-path.d.ts +3 -0
- package/lib/feature/unlock/door/open-close-path.js +30 -0
- package/lib/feature/unlock/door/remote-permission.d.ts +5 -0
- package/lib/feature/unlock/door/remote-permission.js +67 -0
- package/lib/feature/unlock/door/remove-share-user-once.d.ts +2 -0
- package/lib/feature/unlock/door/remove-share-user-once.js +21 -0
- package/lib/feature/unlock/door/types.d.ts +4 -0
- package/lib/feature/unlock/door/types.js +1 -0
- package/lib/feature/unlock/door/voice-unlock-pwd.d.ts +4 -0
- package/lib/feature/unlock/door/voice-unlock-pwd.js +25 -0
- package/lib/feature/unlock/door/wifi-pro-confirm.d.ts +2 -0
- package/lib/feature/unlock/door/wifi-pro-confirm.js +69 -0
- package/lib/feature/unlock/method/add-flow.d.ts +7 -0
- package/lib/feature/unlock/method/add-flow.js +403 -0
- package/lib/feature/unlock/method/add-method-events.d.ts +5 -0
- package/lib/feature/unlock/method/add-method-events.js +11 -0
- package/lib/feature/unlock/method/add-password.d.ts +3 -0
- package/lib/feature/unlock/method/add-password.js +99 -0
- package/lib/feature/unlock/method/bind-unbind.d.ts +8 -0
- package/lib/feature/unlock/method/bind-unbind.js +113 -0
- package/lib/feature/unlock/method/detail.d.ts +3 -0
- package/lib/feature/unlock/method/detail.js +35 -0
- package/lib/feature/unlock/method/guide.d.ts +3 -0
- package/lib/feature/unlock/method/guide.js +48 -0
- package/lib/feature/unlock/method/internal/base.d.ts +109 -0
- package/lib/feature/unlock/method/internal/base.js +89 -0
- package/lib/feature/unlock/method/internal/errors.d.ts +5 -0
- package/lib/feature/unlock/method/internal/errors.js +13 -0
- package/lib/feature/unlock/method/internal/special-check.d.ts +13 -0
- package/lib/feature/unlock/method/internal/special-check.js +38 -0
- package/lib/feature/unlock/method/types.d.ts +70 -0
- package/lib/feature/unlock/method/types.js +1 -0
- package/lib/feature/unlock/method/update-remove.d.ts +4 -0
- package/lib/feature/unlock/method/update-remove.js +138 -0
- package/lib/feature/unlock/method/verify-code.d.ts +3 -0
- package/lib/feature/unlock/method/verify-code.js +7 -0
- package/lib/feature/unlock/sync/unlock-method.d.ts +3 -0
- package/lib/feature/unlock/sync/unlock-method.js +79 -0
- package/lib/feature/user/current-user.d.ts +3 -0
- package/lib/feature/user/current-user.js +33 -0
- package/lib/feature/user/delete-user-dp.d.ts +3 -0
- package/lib/{utils/user.js → feature/user/delete-user-dp.js} +13 -13
- package/lib/feature/user/share-user.d.ts +29 -0
- package/lib/feature/user/share-user.js +228 -0
- package/lib/feature/user/sync-user.d.ts +2 -0
- package/lib/feature/user/sync-user.js +151 -0
- package/lib/feature/user/user.d.ts +37 -0
- package/lib/feature/user/user.js +484 -0
- package/lib/feature/utils/index.d.ts +12 -0
- package/lib/feature/utils/index.js +165 -0
- package/lib/feature/voice-file/voice-file.d.ts +27 -0
- package/lib/feature/voice-file/voice-file.js +203 -0
- package/lib/fit.d.ts +4 -0
- package/lib/fit.js +3 -0
- package/lib/index.d.ts +2 -21
- package/lib/index.js +1 -74
- package/lib/interface.d.ts +50 -3
- package/lib/{utils → platform}/device.d.ts +48 -0
- package/lib/{utils → platform}/device.js +153 -2
- package/lib/platform/index.d.ts +2 -0
- package/lib/platform/index.js +2 -0
- package/lib/{utils → platform}/ipc.d.ts +3 -0
- package/lib/{utils → platform}/ipc.js +11 -0
- package/lib/platform/transport/index.d.ts +1 -0
- package/lib/platform/transport/index.js +1 -0
- package/lib/runtime/LockDeviceRuntime.d.ts +12 -0
- package/lib/runtime/LockDeviceRuntime.js +34 -0
- package/lib/runtime/device-status/compute-device-status.d.ts +25 -0
- package/lib/runtime/device-status/compute-device-status.js +94 -0
- package/lib/runtime/index.d.ts +5 -0
- package/lib/runtime/index.js +3 -0
- package/lib/runtime/lock-config.d.ts +28 -0
- package/lib/runtime/lock-config.js +37 -0
- package/lib/runtime/registry.d.ts +7 -0
- package/lib/runtime/registry.js +28 -0
- package/lib/runtime/runtime-state-types.d.ts +20 -0
- package/lib/runtime/runtime-state-types.js +1 -0
- package/lib/screen.d.ts +4 -0
- package/lib/screen.js +3 -0
- package/lib/utils/constant.d.ts +3 -0
- package/lib/utils/constant.js +3 -0
- package/lib/utils/errors.js +39 -4
- package/lib/utils/event.js +2 -1
- package/lib/utils/index.d.ts +22 -13
- package/lib/utils/index.js +39 -118
- package/lib/utils/sdk-log.d.ts +28 -0
- package/lib/utils/sdk-log.js +128 -0
- package/package.json +26 -7
- package/lib/capability.d.ts +0 -4
- package/lib/config/index.d.ts +0 -28
- package/lib/config/index.js +0 -41
- package/lib/event.d.ts +0 -2
- package/lib/event.js +0 -2
- package/lib/linkage.d.ts +0 -8
- package/lib/log.d.ts +0 -41
- package/lib/log.js +0 -311
- package/lib/media.d.ts +0 -14
- package/lib/media.js +0 -27
- package/lib/offline-dps.d.ts +0 -9
- package/lib/offline-dps.js +0 -76
- package/lib/open/ble-dedicated-dp.d.ts +0 -4
- package/lib/open/ble-dedicated-dp.js +0 -148
- package/lib/open/ble-remote-no-dp-key.d.ts +0 -4
- package/lib/open/ble-remote-no-dp-key.js +0 -69
- package/lib/open/report-status.d.ts +0 -1
- package/lib/open/report-status.js +0 -23
- package/lib/open.d.ts +0 -22
- package/lib/open.js +0 -262
- package/lib/other.d.ts +0 -31
- package/lib/other.js +0 -291
- package/lib/signal.d.ts +0 -14
- package/lib/signal.js +0 -31
- package/lib/sleep.d.ts +0 -19
- package/lib/sleep.js +0 -79
- package/lib/state.d.ts +0 -16
- package/lib/state.js +0 -351
- package/lib/sync/ble-temp-payload.d.ts +0 -2
- package/lib/sync/offline-dps.d.ts +0 -1
- package/lib/sync/offline-dps.js +0 -29
- package/lib/sync/remote-serect-key.d.ts +0 -2
- package/lib/sync/remote-serect-key.js +0 -43
- package/lib/sync/t0.d.ts +0 -2
- package/lib/sync/t0.js +0 -26
- package/lib/sync/temp.d.ts +0 -3
- package/lib/sync/temp.js +0 -70
- package/lib/sync/unlock-method.d.ts +0 -2
- package/lib/sync/unlock-method.js +0 -42
- package/lib/sync/user.d.ts +0 -2
- package/lib/sync/user.js +0 -68
- package/lib/temporary.d.ts +0 -171
- package/lib/temporary.js +0 -698
- package/lib/unlock-method.d.ts +0 -90
- package/lib/unlock-method.js +0 -701
- package/lib/user.d.ts +0 -30
- package/lib/user.js +0 -298
- package/lib/utils/publishDps.d.ts +0 -6
- package/lib/utils/publishDps.js +0 -78
- package/lib/utils/user.d.ts +0 -2
- /package/lib/{parse/index.d.ts → utils/parse.d.ts} +0 -0
- /package/lib/{parse/index.js → utils/parse.js} +0 -0
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { resolveRuntimeFromExportThis } from "../bootstrap/resolve-runtime-from-export-this";
|
|
2
|
+
import { getMediaUrlForRuntime, isSupportMediaForRuntime, openLocalAlbumForRuntime, getMediaInfoForRuntime, } from "../../../feature/media/media";
|
|
3
|
+
import { getMediaRotateForRuntime } from "../../../feature/media/rotate";
|
|
4
|
+
export async function getMediaUrl(params) {
|
|
5
|
+
return getMediaUrlForRuntime(resolveRuntimeFromExportThis(this), params);
|
|
6
|
+
}
|
|
7
|
+
export function isSupportMedia() {
|
|
8
|
+
return isSupportMediaForRuntime(resolveRuntimeFromExportThis(this));
|
|
9
|
+
}
|
|
10
|
+
export function getMediaRotate() {
|
|
11
|
+
return getMediaRotateForRuntime(resolveRuntimeFromExportThis(this));
|
|
12
|
+
}
|
|
13
|
+
export function getMediaInfo() {
|
|
14
|
+
return getMediaInfoForRuntime(resolveRuntimeFromExportThis(this));
|
|
15
|
+
}
|
|
16
|
+
export function openLocalAlbum(params) {
|
|
17
|
+
return openLocalAlbumForRuntime(resolveRuntimeFromExportThis(this), params);
|
|
18
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { GotoServiceParams } from "../../../feature/service/goto-service";
|
|
2
|
+
import type { OpenSceneOptions } from "../../../feature/misc/types";
|
|
3
|
+
export { parseDpPeriodTime } from "../../../feature/misc/dp-period";
|
|
4
|
+
export { formatDpPeriodTime } from "../../../feature/misc/dp-period";
|
|
5
|
+
export declare function openScene(options?: OpenSceneOptions): Promise<void>;
|
|
6
|
+
export declare function isSupportBleControl(): boolean;
|
|
7
|
+
export declare function getDpPeriodTime(dpCode: string): import("../../../feature/misc/dp-period").GetDpPeriodTimeResult;
|
|
8
|
+
export interface UpdateDpPeriodTimeParams {
|
|
9
|
+
start: number;
|
|
10
|
+
end: number;
|
|
11
|
+
}
|
|
12
|
+
export interface UpdateDpPeriodTimeOption {
|
|
13
|
+
offlineDp?: boolean;
|
|
14
|
+
}
|
|
15
|
+
export declare function updateDpPeriodTime(dpCode: string, data: UpdateDpPeriodTimeParams, option?: UpdateDpPeriodTimeOption): Promise<void>;
|
|
16
|
+
export declare function connectDevice(): Promise<true>;
|
|
17
|
+
export declare function gotoService(params?: GotoServiceParams): Promise<unknown>;
|
|
18
|
+
export declare function validatePwdComplexity(password: string): Promise<boolean>;
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { resolveRuntimeFromExportThis } from "../bootstrap/resolve-runtime-from-export-this";
|
|
2
|
+
import { openSceneForRuntime } from "../../../feature/misc/open-scene";
|
|
3
|
+
import { isSupportBleControlForRuntime } from "../../../feature/misc/ble-control";
|
|
4
|
+
import { getDpPeriodTimeForRuntime, updateDpPeriodTimeForRuntime, } from "../../../feature/misc/dp-period";
|
|
5
|
+
import { connectDeviceForRuntime } from "../../../feature/misc/connect-device";
|
|
6
|
+
import { validatePwdComplexityForRuntime } from "../../../feature/misc/validate-pwd";
|
|
7
|
+
import { gotoServiceForRuntime, } from "../../../feature/service/goto-service";
|
|
8
|
+
export { parseDpPeriodTime } from "../../../feature/misc/dp-period";
|
|
9
|
+
export { formatDpPeriodTime } from "../../../feature/misc/dp-period";
|
|
10
|
+
export async function openScene(options) {
|
|
11
|
+
return openSceneForRuntime(resolveRuntimeFromExportThis(this), options);
|
|
12
|
+
}
|
|
13
|
+
export function isSupportBleControl() {
|
|
14
|
+
return isSupportBleControlForRuntime(resolveRuntimeFromExportThis(this));
|
|
15
|
+
}
|
|
16
|
+
export function getDpPeriodTime(dpCode) {
|
|
17
|
+
return getDpPeriodTimeForRuntime(resolveRuntimeFromExportThis(this), dpCode);
|
|
18
|
+
}
|
|
19
|
+
export function updateDpPeriodTime(dpCode, data, option) {
|
|
20
|
+
return updateDpPeriodTimeForRuntime(resolveRuntimeFromExportThis(this), dpCode, data, option);
|
|
21
|
+
}
|
|
22
|
+
export async function connectDevice() {
|
|
23
|
+
return connectDeviceForRuntime(resolveRuntimeFromExportThis(this));
|
|
24
|
+
}
|
|
25
|
+
export async function gotoService(params) {
|
|
26
|
+
return gotoServiceForRuntime(resolveRuntimeFromExportThis(this), params);
|
|
27
|
+
}
|
|
28
|
+
export async function validatePwdComplexity(password) {
|
|
29
|
+
return validatePwdComplexityForRuntime(resolveRuntimeFromExportThis(this), password);
|
|
30
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import type { DpValue, OfflineDps } from "../../../interface";
|
|
2
|
+
export declare function onOfflineDpsUpdate(callback: (dps: OfflineDps) => void): void;
|
|
3
|
+
export declare function offOfflineDpsUpdate(callback: (dps: OfflineDps) => void): void;
|
|
4
|
+
export declare function publishOfflineDps(dps: Record<string, DpValue>): Promise<void>;
|
|
5
|
+
export declare function getOfflineDps(isForce?: boolean): Promise<OfflineDps>;
|
|
6
|
+
export declare function getOfflineDpCache(code: string): import("../../../interface").OfflineDpInfo | undefined;
|
|
7
|
+
export declare function checkOfflineDpUpdate(dps: Record<string, DpValue>, isForce?: boolean): Promise<void>;
|
|
8
|
+
export declare function isOfflineDpSyncing(code: string): boolean;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { resolveRuntimeFromExportThis } from "../bootstrap/resolve-runtime-from-export-this";
|
|
2
|
+
import { checkOfflineDpUpdateForRuntime, publishOfflineDpsForRuntime, getOfflineDpsForRuntime, getOfflineDpCacheForRuntime, onOfflineDpsUpdateForRuntime, offOfflineDpsUpdateForRuntime, } from "../../../feature/offline-dps";
|
|
3
|
+
export function onOfflineDpsUpdate(callback) {
|
|
4
|
+
onOfflineDpsUpdateForRuntime(resolveRuntimeFromExportThis(this), callback);
|
|
5
|
+
}
|
|
6
|
+
export function offOfflineDpsUpdate(callback) {
|
|
7
|
+
offOfflineDpsUpdateForRuntime(resolveRuntimeFromExportThis(this), callback);
|
|
8
|
+
}
|
|
9
|
+
export async function publishOfflineDps(dps) {
|
|
10
|
+
return publishOfflineDpsForRuntime(resolveRuntimeFromExportThis(this), dps);
|
|
11
|
+
}
|
|
12
|
+
export async function getOfflineDps(isForce) {
|
|
13
|
+
return getOfflineDpsForRuntime(resolveRuntimeFromExportThis(this), isForce);
|
|
14
|
+
}
|
|
15
|
+
export function getOfflineDpCache(code) {
|
|
16
|
+
return getOfflineDpCacheForRuntime(resolveRuntimeFromExportThis(this), code);
|
|
17
|
+
}
|
|
18
|
+
export async function checkOfflineDpUpdate(dps, isForce) {
|
|
19
|
+
return checkOfflineDpUpdateForRuntime(resolveRuntimeFromExportThis(this), dps, isForce);
|
|
20
|
+
}
|
|
21
|
+
export function isOfflineDpSyncing(code) {
|
|
22
|
+
const rt = resolveRuntimeFromExportThis(this);
|
|
23
|
+
if (!rt.config.supportOfflineDps) {
|
|
24
|
+
return false;
|
|
25
|
+
}
|
|
26
|
+
const cache = getOfflineDpCacheForRuntime(rt, code);
|
|
27
|
+
return !!(cache && cache.pushStatus === false);
|
|
28
|
+
}
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
import { parallelOnlyForRuntime } from "../../../../feature/utils";
|
|
2
|
+
import { checkRemoteEnabledForRuntime } from "../../../../feature/unlock/door/check-remote";
|
|
3
|
+
import { getCurrentUserForRuntime } from "../../../../feature/user/current-user";
|
|
4
|
+
import { resolveOpenClosePath } from "../../../../feature/unlock/door/open-close-path";
|
|
5
|
+
import { executeOpenCloseMatterLan } from "../../../../feature/unlock/door/door-matter-lan";
|
|
6
|
+
import { executeOpenCloseNearDualMode } from "../../../../feature/unlock/door/door-near-dual-mode";
|
|
7
|
+
import { executeOpenCloseBleOnly } from "../../../../feature/unlock/door/door-ble-only";
|
|
8
|
+
import { executeOpenCloseRemoteCloud } from "../../../../feature/unlock/door/door-remote-cloud";
|
|
9
|
+
import { checkCurrentUserValid } from "../../../../feature/unlock/door/check-user-valid";
|
|
10
|
+
import { sdkLog } from "../../../../utils/sdk-log";
|
|
11
|
+
export const doOpenCloseAction = parallelOnlyForRuntime(async function doOpenCloseAction(rt, isOpen, timeout) {
|
|
12
|
+
const startedAt = Date.now();
|
|
13
|
+
let path;
|
|
14
|
+
sdkLog("info", "unlock", "start", {
|
|
15
|
+
devId: rt.devId,
|
|
16
|
+
data: {
|
|
17
|
+
isOpen,
|
|
18
|
+
timeout,
|
|
19
|
+
statusType: rt.deviceStatus.type,
|
|
20
|
+
onlineTypes: rt.deviceStatus.onlineTypes,
|
|
21
|
+
},
|
|
22
|
+
});
|
|
23
|
+
try {
|
|
24
|
+
await checkRemoteEnabledForRuntime(rt);
|
|
25
|
+
path = resolveOpenClosePath(rt);
|
|
26
|
+
sdkLog("debug", "unlock", "routeSelected", {
|
|
27
|
+
devId: rt.devId,
|
|
28
|
+
data: { route: path },
|
|
29
|
+
});
|
|
30
|
+
const currentUser = await getCurrentUserForRuntime(rt);
|
|
31
|
+
await checkCurrentUserValid(rt);
|
|
32
|
+
const memberId = currentUser.lockUserId !== 0
|
|
33
|
+
? currentUser.lockUserId
|
|
34
|
+
: currentUser.userId;
|
|
35
|
+
switch (path) {
|
|
36
|
+
case "matter_lan":
|
|
37
|
+
await executeOpenCloseMatterLan(rt, isOpen);
|
|
38
|
+
break;
|
|
39
|
+
case "near_dual_mode":
|
|
40
|
+
await executeOpenCloseNearDualMode(rt, isOpen, timeout, memberId);
|
|
41
|
+
break;
|
|
42
|
+
case "ble_only":
|
|
43
|
+
await executeOpenCloseBleOnly(rt, isOpen, timeout, memberId);
|
|
44
|
+
break;
|
|
45
|
+
case "remote_cloud":
|
|
46
|
+
await executeOpenCloseRemoteCloud(rt, isOpen, timeout, memberId);
|
|
47
|
+
break;
|
|
48
|
+
default: {
|
|
49
|
+
const _exhaustive = path;
|
|
50
|
+
return _exhaustive;
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
sdkLog("info", "unlock", "success", {
|
|
54
|
+
devId: rt.devId,
|
|
55
|
+
duration: Date.now() - startedAt,
|
|
56
|
+
data: { isOpen, route: path },
|
|
57
|
+
});
|
|
58
|
+
}
|
|
59
|
+
catch (error) {
|
|
60
|
+
sdkLog("error", "unlock", "fail", {
|
|
61
|
+
devId: rt.devId,
|
|
62
|
+
duration: Date.now() - startedAt,
|
|
63
|
+
data: { isOpen, route: path },
|
|
64
|
+
error,
|
|
65
|
+
});
|
|
66
|
+
throw error;
|
|
67
|
+
}
|
|
68
|
+
});
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getRemotePermissionList } from "../../../../feature/unlock/door/remote-permission";
|
|
2
|
+
import { type OpenDoorCallOptions } from "../../../../feature/unlock/door/types";
|
|
3
|
+
import { RemotePermissionType } from "../../../../constant";
|
|
4
|
+
export declare function checkRemoteEnabled(): Promise<void>;
|
|
5
|
+
export declare function openDoor(option?: OpenDoorCallOptions): Promise<void>;
|
|
6
|
+
export declare function closeDoor(option?: OpenDoorCallOptions): Promise<void>;
|
|
7
|
+
export declare function remoteEnabled(state: boolean): Promise<void>;
|
|
8
|
+
export declare function getRemoteEnabled(): boolean;
|
|
9
|
+
export { getRemotePermissionList };
|
|
10
|
+
export declare function getRemotePermission(): RemotePermissionType;
|
|
11
|
+
export declare function updateRemotePermission(permission: RemotePermissionType): Promise<void>;
|
|
12
|
+
export declare function agreeOpenDoor(option?: OpenDoorCallOptions): Promise<void>;
|
|
13
|
+
export declare function rejectOpenDoor(option?: OpenDoorCallOptions): Promise<void>;
|
|
14
|
+
export declare function getVoiceUnlockPwdEnabled(): Promise<boolean>;
|
|
15
|
+
export declare function voiceUnlockPwdDisabled(): Promise<boolean>;
|
|
16
|
+
export declare function updateVoiceUnlockPwd(password: string): Promise<boolean>;
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
import { resolveRuntimeFromExportThis } from "../../bootstrap/resolve-runtime-from-export-this";
|
|
2
|
+
import { checkRemoteEnabledForRuntime } from "../../../../feature/unlock/door/check-remote";
|
|
3
|
+
import { doOpenCloseAction } from "./do-open-close-action";
|
|
4
|
+
import { handleOpenDoorForRuntime } from "../../../../feature/unlock/door/wifi-pro-confirm";
|
|
5
|
+
import { getRemotePermissionList, remoteEnabledForRuntime, updateRemotePermissionForRuntime, } from "../../../../feature/unlock/door/remote-permission";
|
|
6
|
+
import { getVoiceUnlockPwdEnabledForRuntime, voiceUnlockPwdDisabledForRuntime, updateVoiceUnlockPwdForRuntime, } from "../../../../feature/unlock/door/voice-unlock-pwd";
|
|
7
|
+
import { OPEN_CLOSE_ACTION_DEFAULT_TIMEOUT_MS, } from "../../../../feature/unlock/door/types";
|
|
8
|
+
export async function checkRemoteEnabled() {
|
|
9
|
+
await checkRemoteEnabledForRuntime(resolveRuntimeFromExportThis(this));
|
|
10
|
+
}
|
|
11
|
+
export function openDoor(option) {
|
|
12
|
+
return doOpenCloseAction(resolveRuntimeFromExportThis(this), true, option?.timeout ?? OPEN_CLOSE_ACTION_DEFAULT_TIMEOUT_MS);
|
|
13
|
+
}
|
|
14
|
+
export function closeDoor(option) {
|
|
15
|
+
return doOpenCloseAction(resolveRuntimeFromExportThis(this), false, option?.timeout ?? OPEN_CLOSE_ACTION_DEFAULT_TIMEOUT_MS);
|
|
16
|
+
}
|
|
17
|
+
export async function remoteEnabled(state) {
|
|
18
|
+
await remoteEnabledForRuntime(resolveRuntimeFromExportThis(this), state);
|
|
19
|
+
}
|
|
20
|
+
export function getRemoteEnabled() {
|
|
21
|
+
return resolveRuntimeFromExportThis(this).config.remoteOpenEnabled;
|
|
22
|
+
}
|
|
23
|
+
export { getRemotePermissionList };
|
|
24
|
+
export function getRemotePermission() {
|
|
25
|
+
return resolveRuntimeFromExportThis(this).config.remoteOpenPermission;
|
|
26
|
+
}
|
|
27
|
+
export async function updateRemotePermission(permission) {
|
|
28
|
+
await updateRemotePermissionForRuntime(resolveRuntimeFromExportThis(this), permission);
|
|
29
|
+
}
|
|
30
|
+
export function agreeOpenDoor(option) {
|
|
31
|
+
return handleOpenDoorForRuntime(resolveRuntimeFromExportThis(this), true, option?.timeout ?? OPEN_CLOSE_ACTION_DEFAULT_TIMEOUT_MS);
|
|
32
|
+
}
|
|
33
|
+
export function rejectOpenDoor(option) {
|
|
34
|
+
return handleOpenDoorForRuntime(resolveRuntimeFromExportThis(this), false, option?.timeout ?? OPEN_CLOSE_ACTION_DEFAULT_TIMEOUT_MS);
|
|
35
|
+
}
|
|
36
|
+
export async function getVoiceUnlockPwdEnabled() {
|
|
37
|
+
return getVoiceUnlockPwdEnabledForRuntime(resolveRuntimeFromExportThis(this));
|
|
38
|
+
}
|
|
39
|
+
export async function voiceUnlockPwdDisabled() {
|
|
40
|
+
return voiceUnlockPwdDisabledForRuntime(resolveRuntimeFromExportThis(this));
|
|
41
|
+
}
|
|
42
|
+
export async function updateVoiceUnlockPwd(password) {
|
|
43
|
+
return updateVoiceUnlockPwdForRuntime(resolveRuntimeFromExportThis(this), password);
|
|
44
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getRemotePermissionList } from "../../../feature/unlock/door/remote-permission";
|
|
2
|
+
import { type OpenDoorCallOptions } from "../../../feature/unlock/door/types";
|
|
3
|
+
import { RemotePermissionType } from "packages/lock-sdk/src/constant";
|
|
4
|
+
export declare function checkRemoteEnabled(): Promise<void>;
|
|
5
|
+
export declare function openDoor(option?: OpenDoorCallOptions): Promise<void>;
|
|
6
|
+
export declare function closeDoor(option?: OpenDoorCallOptions): Promise<void>;
|
|
7
|
+
export declare function remoteEnabled(state: boolean): Promise<void>;
|
|
8
|
+
export declare function getRemoteEnabled(): boolean;
|
|
9
|
+
export { getRemotePermissionList };
|
|
10
|
+
export declare function getRemotePermission(): RemotePermissionType;
|
|
11
|
+
export declare function updateRemotePermission(permission: RemotePermissionType): Promise<void>;
|
|
12
|
+
export declare function agreeOpenDoor(option?: OpenDoorCallOptions): Promise<void>;
|
|
13
|
+
export declare function rejectOpenDoor(option?: OpenDoorCallOptions): Promise<void>;
|
|
14
|
+
export declare function getVoiceUnlockPwdEnabled(): Promise<boolean>;
|
|
15
|
+
export declare function voiceUnlockPwdDisabled(): Promise<boolean>;
|
|
16
|
+
export declare function updateVoiceUnlockPwd(password: string): Promise<boolean>;
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
import { resolveRuntimeFromExportThis } from "../bootstrap/resolve-runtime-from-export-this";
|
|
2
|
+
import { checkRemoteEnabledForRuntime } from "../../../feature/unlock/door/check-remote";
|
|
3
|
+
import { doOpenCloseActionForRuntime } from "../../../feature/unlock/door/door-action";
|
|
4
|
+
import { handleOpenDoorForRuntime } from "../../../feature/unlock/door/wifi-pro-confirm";
|
|
5
|
+
import { getRemotePermissionList, remoteEnabledForRuntime, updateRemotePermissionForRuntime, } from "../../../feature/unlock/door/remote-permission";
|
|
6
|
+
import { getVoiceUnlockPwdEnabledForRuntime, voiceUnlockPwdDisabledForRuntime, updateVoiceUnlockPwdForRuntime, } from "../../../feature/unlock/door/voice-unlock-pwd";
|
|
7
|
+
import { OPEN_CLOSE_ACTION_DEFAULT_TIMEOUT_MS, } from "../../../feature/unlock/door/types";
|
|
8
|
+
export async function checkRemoteEnabled() {
|
|
9
|
+
await checkRemoteEnabledForRuntime(resolveRuntimeFromExportThis(this));
|
|
10
|
+
}
|
|
11
|
+
export function openDoor(option) {
|
|
12
|
+
return doOpenCloseActionForRuntime(resolveRuntimeFromExportThis(this), true, option?.timeout ?? OPEN_CLOSE_ACTION_DEFAULT_TIMEOUT_MS);
|
|
13
|
+
}
|
|
14
|
+
export function closeDoor(option) {
|
|
15
|
+
return doOpenCloseActionForRuntime(resolveRuntimeFromExportThis(this), false, option?.timeout ?? OPEN_CLOSE_ACTION_DEFAULT_TIMEOUT_MS);
|
|
16
|
+
}
|
|
17
|
+
export async function remoteEnabled(state) {
|
|
18
|
+
await remoteEnabledForRuntime(resolveRuntimeFromExportThis(this), state);
|
|
19
|
+
}
|
|
20
|
+
export function getRemoteEnabled() {
|
|
21
|
+
return resolveRuntimeFromExportThis(this).config.remoteOpenEnabled;
|
|
22
|
+
}
|
|
23
|
+
export { getRemotePermissionList };
|
|
24
|
+
export function getRemotePermission() {
|
|
25
|
+
return resolveRuntimeFromExportThis(this).config.remoteOpenPermission;
|
|
26
|
+
}
|
|
27
|
+
export async function updateRemotePermission(permission) {
|
|
28
|
+
await updateRemotePermissionForRuntime(resolveRuntimeFromExportThis(this), permission);
|
|
29
|
+
}
|
|
30
|
+
export function agreeOpenDoor(option) {
|
|
31
|
+
return handleOpenDoorForRuntime(resolveRuntimeFromExportThis(this), true, option?.timeout ?? OPEN_CLOSE_ACTION_DEFAULT_TIMEOUT_MS);
|
|
32
|
+
}
|
|
33
|
+
export function rejectOpenDoor(option) {
|
|
34
|
+
return handleOpenDoorForRuntime(resolveRuntimeFromExportThis(this), false, option?.timeout ?? OPEN_CLOSE_ACTION_DEFAULT_TIMEOUT_MS);
|
|
35
|
+
}
|
|
36
|
+
export async function getVoiceUnlockPwdEnabled() {
|
|
37
|
+
return getVoiceUnlockPwdEnabledForRuntime(resolveRuntimeFromExportThis(this));
|
|
38
|
+
}
|
|
39
|
+
export async function voiceUnlockPwdDisabled() {
|
|
40
|
+
return voiceUnlockPwdDisabledForRuntime(resolveRuntimeFromExportThis(this));
|
|
41
|
+
}
|
|
42
|
+
export async function updateVoiceUnlockPwd(password) {
|
|
43
|
+
return updateVoiceUnlockPwdForRuntime(resolveRuntimeFromExportThis(this), password);
|
|
44
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import type { BindingResult, UnbindingResult } from "../../../../api/screen";
|
|
2
|
+
export type { BindingResult, UnbindingResult };
|
|
3
|
+
export declare function bindLockToScreen(lockDevId: string): Promise<BindingResult>;
|
|
4
|
+
export declare function unbindLockFromScreen(relationId: string): Promise<UnbindingResult>;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { bindLockForRuntime, unbindLockForRuntime, } from "../../../../feature/screen/bind";
|
|
2
|
+
import { resolveRuntimeFromExportThis } from "../../bootstrap/resolve-runtime-from-export-this";
|
|
3
|
+
export function bindLockToScreen(lockDevId) {
|
|
4
|
+
return bindLockForRuntime(resolveRuntimeFromExportThis(this), lockDevId);
|
|
5
|
+
}
|
|
6
|
+
export function unbindLockFromScreen(relationId) {
|
|
7
|
+
return unbindLockForRuntime(resolveRuntimeFromExportThis(this), relationId);
|
|
8
|
+
}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import type { BindableLockListResult as ScreenBindableLockListResult, BindableLockItem as ScreenBindableLockItem, BoundLockListResult as ScreenBoundLockListResult, BoundLockItem as ScreenBoundLockItem, ScreenEventItem, ScreenEventListParams, ScreenEventListResult, ScreenEventLogType, ScreenEventType } from "../../../../api/screen";
|
|
2
|
+
export type { ScreenEventItem, ScreenEventListParams, ScreenEventListResult, ScreenEventLogType, ScreenEventType, ScreenBindableLockItem, ScreenBoundLockItem, ScreenBoundLockListResult, ScreenBindableLockListResult, };
|
|
3
|
+
export declare function getScreenEventList(params?: ScreenEventListParams): Promise<ScreenEventListResult>;
|
|
4
|
+
export declare function getScreenBoundLockList(): Promise<ScreenBoundLockListResult>;
|
|
5
|
+
export declare function getScreenBindableLockList(): Promise<ScreenBindableLockListResult>;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { getEventListForRuntime } from "../../../../feature/screen/event";
|
|
2
|
+
import { resolveRuntimeFromExportThis } from "../../bootstrap/resolve-runtime-from-export-this";
|
|
3
|
+
import { getBoundLockListForRuntime } from "../../../../feature/screen/list";
|
|
4
|
+
import { getBindableLockListForRuntime } from "../../../../feature/screen/list";
|
|
5
|
+
export function getScreenEventList(params) {
|
|
6
|
+
return getEventListForRuntime(resolveRuntimeFromExportThis(this), params);
|
|
7
|
+
}
|
|
8
|
+
export function getScreenBoundLockList() {
|
|
9
|
+
return getBoundLockListForRuntime(resolveRuntimeFromExportThis(this));
|
|
10
|
+
}
|
|
11
|
+
export function getScreenBindableLockList() {
|
|
12
|
+
return getBindableLockListForRuntime(resolveRuntimeFromExportThis(this));
|
|
13
|
+
}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import type { WiFiSignalChangeListener } from "../../../feature/misc/signal";
|
|
2
|
+
export type { WiFiSignalChangeListener } from "../../../feature/misc/signal";
|
|
3
|
+
export declare function getWiFiSignal(): Promise<void>;
|
|
4
|
+
export declare function getCurrentWiFiSignal(): number | "unknown";
|
|
5
|
+
export declare function onWiFiSignalChange(cb: WiFiSignalChangeListener): void;
|
|
6
|
+
export declare function offWiFiSignalChange(cb: WiFiSignalChangeListener): void;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { resolveRuntimeFromExportThis } from "../bootstrap/resolve-runtime-from-export-this";
|
|
2
|
+
import { getWiFiSignalForRuntime, getCurrentWiFiSignalForRuntime, onWiFiSignalChangeForRuntime, offWiFiSignalChangeForRuntime, } from "../../../feature/misc/signal";
|
|
3
|
+
export function getWiFiSignal() {
|
|
4
|
+
return getWiFiSignalForRuntime(resolveRuntimeFromExportThis(this));
|
|
5
|
+
}
|
|
6
|
+
export function getCurrentWiFiSignal() {
|
|
7
|
+
return getCurrentWiFiSignalForRuntime(resolveRuntimeFromExportThis(this));
|
|
8
|
+
}
|
|
9
|
+
export function onWiFiSignalChange(cb) {
|
|
10
|
+
onWiFiSignalChangeForRuntime(resolveRuntimeFromExportThis(this), cb);
|
|
11
|
+
}
|
|
12
|
+
export function offWiFiSignalChange(cb) {
|
|
13
|
+
offWiFiSignalChangeForRuntime(resolveRuntimeFromExportThis(this), cb);
|
|
14
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import type { SleepStatusListener } from "../../../feature/misc/sleep";
|
|
2
|
+
export declare function isSleep(): boolean;
|
|
3
|
+
export declare function hasSleepAbility(): boolean;
|
|
4
|
+
export declare function isEnabledSleep(): boolean;
|
|
5
|
+
export declare function enableSleep(): Promise<void>;
|
|
6
|
+
export declare function disableSleep(): Promise<void>;
|
|
7
|
+
export declare function getSleepPeriod(): import("../../../feature/misc/dp-period").GetDpPeriodTimeResult;
|
|
8
|
+
interface UpdateSleepPeriodParams {
|
|
9
|
+
start: number;
|
|
10
|
+
end: number;
|
|
11
|
+
}
|
|
12
|
+
export declare function updateSleepPeriod(params: UpdateSleepPeriodParams): Promise<void>;
|
|
13
|
+
export declare function onSleepStatusChange(callback: SleepStatusListener): void;
|
|
14
|
+
export declare function offSleepStatusChange(callback: SleepStatusListener): void;
|
|
15
|
+
export {};
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import dpCodes from "../../../config/dp-code";
|
|
2
|
+
import { resolveRuntimeFromExportThis } from "../bootstrap/resolve-runtime-from-export-this";
|
|
3
|
+
import { getDpPeriodTimeForRuntime, updateDpPeriodTimeForRuntime, } from "../../../feature/misc/dp-period";
|
|
4
|
+
import { isSleepForRuntime, hasSleepAbilityForRuntime, getSwitchStatusForRuntime, setSleepStatusForRuntime, onSleepStatusChangeForRuntime, offSleepStatusChangeForRuntime, } from "../../../feature/misc/sleep";
|
|
5
|
+
export function isSleep() {
|
|
6
|
+
return isSleepForRuntime(resolveRuntimeFromExportThis(this));
|
|
7
|
+
}
|
|
8
|
+
export function hasSleepAbility() {
|
|
9
|
+
return hasSleepAbilityForRuntime(resolveRuntimeFromExportThis(this));
|
|
10
|
+
}
|
|
11
|
+
export function isEnabledSleep() {
|
|
12
|
+
return getSwitchStatusForRuntime(resolveRuntimeFromExportThis(this));
|
|
13
|
+
}
|
|
14
|
+
export async function enableSleep() {
|
|
15
|
+
return setSleepStatusForRuntime(resolveRuntimeFromExportThis(this), true);
|
|
16
|
+
}
|
|
17
|
+
export async function disableSleep() {
|
|
18
|
+
return setSleepStatusForRuntime(resolveRuntimeFromExportThis(this), false);
|
|
19
|
+
}
|
|
20
|
+
export function getSleepPeriod() {
|
|
21
|
+
return getDpPeriodTimeForRuntime(resolveRuntimeFromExportThis(this), dpCodes.dormantTimeSet);
|
|
22
|
+
}
|
|
23
|
+
export function updateSleepPeriod(params) {
|
|
24
|
+
return updateDpPeriodTimeForRuntime(resolveRuntimeFromExportThis(this), dpCodes.dormantTimeSet, params, { offlineDp: true });
|
|
25
|
+
}
|
|
26
|
+
export function onSleepStatusChange(callback) {
|
|
27
|
+
onSleepStatusChangeForRuntime(resolveRuntimeFromExportThis(this), callback);
|
|
28
|
+
}
|
|
29
|
+
export function offSleepStatusChange(callback) {
|
|
30
|
+
offSleepStatusChangeForRuntime(resolveRuntimeFromExportThis(this), callback);
|
|
31
|
+
}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { type DeviceStatus } from "../../../interface";
|
|
2
|
+
export declare function getCurrentUser(isForce?: boolean): Promise<import("../../../interface").CurrentUser>;
|
|
3
|
+
export declare function getCurrentUserSync(): import("../../../interface").CurrentUser | null;
|
|
4
|
+
export declare function getDeviceStatus(): DeviceStatus;
|
|
5
|
+
export declare function onDeviceStatusChange(callback: (status: DeviceStatus) => void): void;
|
|
6
|
+
export declare function offDeviceStatusChange(callback: (status: DeviceStatus) => void): void;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { resolveRuntimeFromExportThis } from "../bootstrap/resolve-runtime-from-export-this";
|
|
2
|
+
import { getCurrentUserForRuntime } from "../../../feature/user/current-user";
|
|
3
|
+
import { getDeviceStatusForRuntime } from "../../../feature/state/device-status";
|
|
4
|
+
import { onDeviceStatusChangeForRuntime, offDeviceStatusChangeForRuntime, } from "../../../feature/state/device-status-events";
|
|
5
|
+
export async function getCurrentUser(isForce) {
|
|
6
|
+
return getCurrentUserForRuntime(resolveRuntimeFromExportThis(this), isForce);
|
|
7
|
+
}
|
|
8
|
+
export function getCurrentUserSync() {
|
|
9
|
+
return resolveRuntimeFromExportThis(this).cache.currentUser;
|
|
10
|
+
}
|
|
11
|
+
export function getDeviceStatus() {
|
|
12
|
+
return getDeviceStatusForRuntime(resolveRuntimeFromExportThis(this));
|
|
13
|
+
}
|
|
14
|
+
export function onDeviceStatusChange(callback) {
|
|
15
|
+
onDeviceStatusChangeForRuntime(resolveRuntimeFromExportThis(this), callback);
|
|
16
|
+
}
|
|
17
|
+
export function offDeviceStatusChange(callback) {
|
|
18
|
+
offDeviceStatusChangeForRuntime(resolveRuntimeFromExportThis(this), callback);
|
|
19
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import type { CreateClearParams, CreateCustomParams, CreateLimitParams, CreateOfflineParams, CreateOnceParams, CreateOnlineUnlimitedParams, FreezeParams, GetInvalidListParams, OfflinePasswordType, RemoveCustomProps, RenameParams, UpdateTempPasswordParams } from "../../../feature/password/temporary/types";
|
|
2
|
+
import type { TempPasswordResult } from "../../../interface";
|
|
3
|
+
export type { EffectivePasswrodItem, InvalidPasswordItem, OfflinePasswordItem, OfflinePasswordType, OfflineTempResult, OfflineTempType, OnlinePasswordItem, } from "../../../feature/password/temporary/types";
|
|
4
|
+
export declare function createTempCustom(params: CreateCustomParams): Promise<TempPasswordResult>;
|
|
5
|
+
export declare function removeTempCustom(params: RemoveCustomProps): Promise<boolean>;
|
|
6
|
+
export declare function updateTempCustom(params: UpdateTempPasswordParams): Promise<boolean>;
|
|
7
|
+
export declare function getTempEffectiveList(): Promise<import("../../../feature/password/temporary/types").EffectivePasswrodItem[]>;
|
|
8
|
+
export declare function getTempInvalidList(params?: GetInvalidListParams): Promise<{
|
|
9
|
+
list: import("../../../feature/password/temporary/types").InvalidPasswordItem[];
|
|
10
|
+
hasMore: boolean;
|
|
11
|
+
total: number;
|
|
12
|
+
}>;
|
|
13
|
+
export declare function clearTempInvalidList(): Promise<boolean>;
|
|
14
|
+
export declare function freezeTemp(params: FreezeParams): Promise<boolean>;
|
|
15
|
+
export declare function unfreezeTemp(params: FreezeParams): Promise<boolean>;
|
|
16
|
+
export declare function renameTemp(params: RenameParams): Promise<void>;
|
|
17
|
+
export declare function saveTempOnlineUnlimited(params: CreateOnlineUnlimitedParams): Promise<{
|
|
18
|
+
type: "custom";
|
|
19
|
+
name: string;
|
|
20
|
+
pwdId: string;
|
|
21
|
+
effectiveConfig: import("../../../interface").EffectiveConfig;
|
|
22
|
+
}>;
|
|
23
|
+
export declare function removeTempOnlineUnlimited(id: string): Promise<void>;
|
|
24
|
+
export declare function getTempOnlineUnlimitedList(): Promise<import("../../../feature/password/temporary/wifi-online").OnlinePasswordItem[]>;
|
|
25
|
+
export declare function createTempOffline(params: CreateOfflineParams): Promise<import("../../../feature/password/temporary/types").OfflineTempResult>;
|
|
26
|
+
export declare function getTempOfflineEffectiveList(pwdTypeCode: OfflinePasswordType): Promise<import("../../../api/temp").EffectivePasswrodItem[]>;
|
|
27
|
+
export declare function getTempOfflineInvalidList(pwdTypeCode: OfflinePasswordType): Promise<import("../../../api/temp").EffectivePasswrodItem[]>;
|
|
28
|
+
export declare function createTempLimit(params: CreateLimitParams): Promise<TempPasswordResult>;
|
|
29
|
+
export declare function createTempOnce(params: CreateOnceParams): Promise<TempPasswordResult>;
|
|
30
|
+
export declare function createTempDynamic(): Promise<TempPasswordResult>;
|
|
31
|
+
export declare function createTempClear(params: CreateClearParams): Promise<TempPasswordResult>;
|
|
32
|
+
export declare function getTempLimitListForClear(): Promise<import("../../../feature/password/temporary/lists").LimitTempItem[]>;
|
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
import { resolveRuntimeFromExportThis } from "../bootstrap/resolve-runtime-from-export-this";
|
|
2
|
+
import { createTempCustomForRuntime, removeTempCustomForRuntime, updateTempCustomForRuntime, } from "../../../feature/password/temporary/custom-dp";
|
|
3
|
+
import { createTempCustomForRuntime as createTempCustomForRuntimeBle, updateTempCustomForRuntime as updateTempCustomForRuntimeBle, removeTempCustomForRuntime as removeTempCustomForRuntimeBle, } from "../../../feature/password/temporary/custom-dp-ble";
|
|
4
|
+
import { createTempClearForRuntime, createTempDynamicForRuntime, createTempLimitForRuntime, createTempOnceForRuntime, } from "../../../feature/password/temporary/offline-create";
|
|
5
|
+
import { clearTempInvalidListForRuntime, getTempEffectiveListForRuntime, getTempInvalidListForRuntime, getTempLimitListForClearForRuntime, } from "../../../feature/password/temporary/lists";
|
|
6
|
+
import { freezeTempForRuntime, renameTempForRuntime, unfreezeTempForRuntime, } from "../../../feature/password/temporary/freeze-rename";
|
|
7
|
+
import { getTempOnlineUnlimitedListForRuntime, removeTempOnlineUnlimitedForRuntime, saveTempOnlineUnlimitedForRuntime, } from "../../../feature/password/temporary/wifi-online";
|
|
8
|
+
import { createTempOfflineForRuntime, getTempOfflineEffectiveListForRuntime, getTempOfflineInvalidListForRuntime, } from "../../../feature/password/temporary/wifi-offline";
|
|
9
|
+
import { isBlePureDeviceForRuntime } from "../../../feature/misc/capability";
|
|
10
|
+
export function createTempCustom(params) {
|
|
11
|
+
const rt = resolveRuntimeFromExportThis(this);
|
|
12
|
+
const isBlePureDevice = isBlePureDeviceForRuntime(rt);
|
|
13
|
+
if (isBlePureDevice) {
|
|
14
|
+
return createTempCustomForRuntimeBle(rt, params);
|
|
15
|
+
}
|
|
16
|
+
return createTempCustomForRuntime(rt, params);
|
|
17
|
+
}
|
|
18
|
+
export function removeTempCustom(params) {
|
|
19
|
+
const rt = resolveRuntimeFromExportThis(this);
|
|
20
|
+
const isBlePureDevice = isBlePureDeviceForRuntime(rt);
|
|
21
|
+
if (isBlePureDevice) {
|
|
22
|
+
return removeTempCustomForRuntimeBle(rt, params);
|
|
23
|
+
}
|
|
24
|
+
return removeTempCustomForRuntime(rt, params);
|
|
25
|
+
}
|
|
26
|
+
export function updateTempCustom(params) {
|
|
27
|
+
const rt = resolveRuntimeFromExportThis(this);
|
|
28
|
+
const isBlePureDevice = isBlePureDeviceForRuntime(rt);
|
|
29
|
+
if (isBlePureDevice) {
|
|
30
|
+
return updateTempCustomForRuntimeBle(rt, params);
|
|
31
|
+
}
|
|
32
|
+
return updateTempCustomForRuntime(rt, params);
|
|
33
|
+
}
|
|
34
|
+
export function getTempEffectiveList() {
|
|
35
|
+
return getTempEffectiveListForRuntime(resolveRuntimeFromExportThis(this));
|
|
36
|
+
}
|
|
37
|
+
export function getTempInvalidList(params) {
|
|
38
|
+
return getTempInvalidListForRuntime(resolveRuntimeFromExportThis(this), params);
|
|
39
|
+
}
|
|
40
|
+
export function clearTempInvalidList() {
|
|
41
|
+
return clearTempInvalidListForRuntime(resolveRuntimeFromExportThis(this));
|
|
42
|
+
}
|
|
43
|
+
export function freezeTemp(params) {
|
|
44
|
+
const rt = resolveRuntimeFromExportThis(this);
|
|
45
|
+
return freezeTempForRuntime(rt, params);
|
|
46
|
+
}
|
|
47
|
+
export function unfreezeTemp(params) {
|
|
48
|
+
const rt = resolveRuntimeFromExportThis(this);
|
|
49
|
+
return unfreezeTempForRuntime(rt, params);
|
|
50
|
+
}
|
|
51
|
+
export function renameTemp(params) {
|
|
52
|
+
return renameTempForRuntime(resolveRuntimeFromExportThis(this), params);
|
|
53
|
+
}
|
|
54
|
+
export function saveTempOnlineUnlimited(params) {
|
|
55
|
+
return saveTempOnlineUnlimitedForRuntime(resolveRuntimeFromExportThis(this), params);
|
|
56
|
+
}
|
|
57
|
+
export function removeTempOnlineUnlimited(id) {
|
|
58
|
+
return removeTempOnlineUnlimitedForRuntime(resolveRuntimeFromExportThis(this), id);
|
|
59
|
+
}
|
|
60
|
+
export function getTempOnlineUnlimitedList() {
|
|
61
|
+
return getTempOnlineUnlimitedListForRuntime(resolveRuntimeFromExportThis(this));
|
|
62
|
+
}
|
|
63
|
+
export function createTempOffline(params) {
|
|
64
|
+
return createTempOfflineForRuntime(resolveRuntimeFromExportThis(this), params);
|
|
65
|
+
}
|
|
66
|
+
export function getTempOfflineEffectiveList(pwdTypeCode) {
|
|
67
|
+
return getTempOfflineEffectiveListForRuntime(resolveRuntimeFromExportThis(this), pwdTypeCode);
|
|
68
|
+
}
|
|
69
|
+
export function getTempOfflineInvalidList(pwdTypeCode) {
|
|
70
|
+
return getTempOfflineInvalidListForRuntime(resolveRuntimeFromExportThis(this), pwdTypeCode);
|
|
71
|
+
}
|
|
72
|
+
export function createTempLimit(params) {
|
|
73
|
+
return createTempLimitForRuntime(resolveRuntimeFromExportThis(this), params);
|
|
74
|
+
}
|
|
75
|
+
export function createTempOnce(params) {
|
|
76
|
+
return createTempOnceForRuntime(resolveRuntimeFromExportThis(this), params);
|
|
77
|
+
}
|
|
78
|
+
export function createTempDynamic() {
|
|
79
|
+
return createTempDynamicForRuntime(resolveRuntimeFromExportThis(this));
|
|
80
|
+
}
|
|
81
|
+
export function createTempClear(params) {
|
|
82
|
+
return createTempClearForRuntime(resolveRuntimeFromExportThis(this), params);
|
|
83
|
+
}
|
|
84
|
+
export function getTempLimitListForClear() {
|
|
85
|
+
return getTempLimitListForClearForRuntime(resolveRuntimeFromExportThis(this));
|
|
86
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function syncUnlockMethod(): Promise<void>;
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { resolveRuntimeFromExportThis } from "../../bootstrap/resolve-runtime-from-export-this";
|
|
2
|
+
import { syncUnlockMethodWithRuntime } from "../../../../feature/unlock/sync/unlock-method";
|
|
3
|
+
export async function syncUnlockMethod() {
|
|
4
|
+
return syncUnlockMethodWithRuntime(resolveRuntimeFromExportThis(this));
|
|
5
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import type { AddPasswordParams, AddUnlockMethodBaseParams, AddUnlockMethodEvent, AddUnlockMethodListener, BindUnlockMethodFromLogParams, BindUnlockMethodParams, CancelAddUnlockMethodParams, SendVerifyCodeParams, SpecialUnlockMethodInfo, StartAddUnlockMethodParams, updateUnlockMethodParams } from "../../../feature/unlock/method/types";
|
|
2
|
+
import type { UnlockMethodType } from "../../../interface";
|
|
3
|
+
export type { AddPasswordParams, AddUnlockMethodBaseParams, AddUnlockMethodEvent, AddUnlockMethodListener, SpecialUnlockMethodInfo, updateUnlockMethodParams, };
|
|
4
|
+
export declare function getUnlockMethodDetail(id: number): Promise<import("../../../interface").UnlockMethodDetail>;
|
|
5
|
+
export declare function checkSpecialSupportPhone(): boolean;
|
|
6
|
+
export declare function addPassword(params: AddPasswordParams): Promise<import("../../../api/lock").CreateUnlockMethodResult>;
|
|
7
|
+
export declare function startAddUnlockMethod(params: StartAddUnlockMethodParams): Promise<import("../../../feature/unlock/method/add-flow").StartAddUnlockMethodResult>;
|
|
8
|
+
export declare function cancelAddUnlockMethod(params: CancelAddUnlockMethodParams): Promise<void>;
|
|
9
|
+
export declare function updateUnlockMethod(params: updateUnlockMethodParams): Promise<void>;
|
|
10
|
+
export declare function deleteUnlockMethod(id: number): Promise<void>;
|
|
11
|
+
export declare function checkUnBindUnlockMethods(): Promise<boolean>;
|
|
12
|
+
export declare function getUnbindUnlockMethods(): Promise<import("../../../interface").UnBindUnlockMethodGroup[]>;
|
|
13
|
+
export declare function bindUnlockMethod(params: BindUnlockMethodParams): Promise<boolean>;
|
|
14
|
+
export declare function unbindUnlockMethod(id: number): Promise<void>;
|
|
15
|
+
export declare function bindUnlockMethodFromLog(params: BindUnlockMethodFromLogParams): Promise<boolean>;
|
|
16
|
+
export declare function sendVerifyCode(params: SendVerifyCodeParams): Promise<void>;
|
|
17
|
+
export declare function onAddUnlockMethod(listener: AddUnlockMethodListener): void;
|
|
18
|
+
export declare function offAddUnlockMethod(listener: AddUnlockMethodListener): void;
|
|
19
|
+
export declare function getUnlockGuide(type: UnlockMethodType): Promise<import("../../../interface").UnlockGuide | null>;
|