@hanwha-ss1/plugin 0.2.1 → 0.2.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/README.md +3 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -11,7 +11,7 @@ npx cap sync
|
|
|
11
11
|
```javascript
|
|
12
12
|
import { HanwhaPlugin } from "@hanwha-ss1/plugin"
|
|
13
13
|
|
|
14
|
-
// 앱 실행
|
|
14
|
+
// 앱 실행 (Only: Android)
|
|
15
15
|
await HanwhaPlugin.executeApp({
|
|
16
16
|
package: "패키지명"
|
|
17
17
|
})
|
|
@@ -25,10 +25,8 @@ await HanwhaPlugin.addContact({
|
|
|
25
25
|
ext: "내선"
|
|
26
26
|
})
|
|
27
27
|
|
|
28
|
-
//
|
|
29
|
-
await HanwhaPlugin.
|
|
30
|
-
disabled: "true"
|
|
31
|
-
})
|
|
28
|
+
// 생체인증
|
|
29
|
+
await HanwhaPlugin.auth()
|
|
32
30
|
```
|
|
33
31
|
|
|
34
32
|
## API
|