mirror of
https://github.com/danielsogl/awesome-cordova-plugins.git
synced 2025-04-06 06:59:10 +08:00
commit
81a10280cc
102
src/@ionic-native/plugins/biocatch/index.ts
Normal file
102
src/@ionic-native/plugins/biocatch/index.ts
Normal file
@ -0,0 +1,102 @@
|
|||||||
|
import { Injectable } from '@angular/core';
|
||||||
|
import { Cordova, IonicNativePlugin, Plugin } from '@ionic-native/core';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @name BioCatch
|
||||||
|
* @description
|
||||||
|
* BioCatch SDK Cordova support
|
||||||
|
*
|
||||||
|
* @usage
|
||||||
|
* ```typescript
|
||||||
|
* import { BioCatch } from '@ionic-native/biocatch';
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* constructor(private biocatch: BioCatch) { }
|
||||||
|
*
|
||||||
|
* ...
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* this.biocatch.start('customer-session-1', 'http://example.com', 'some-public-key')
|
||||||
|
* .then((res: any) => console.log(res))
|
||||||
|
* .catch((error: any) => console.error(error));
|
||||||
|
*
|
||||||
|
* ```
|
||||||
|
*/
|
||||||
|
@Plugin({
|
||||||
|
pluginName: 'BioCatch',
|
||||||
|
plugin: 'cordova-plugin-biocatch',
|
||||||
|
pluginRef: 'BioCatch',
|
||||||
|
repo: 'https://bitbucket.org/whisprnd/biocatch-cordova-plugin',
|
||||||
|
platforms: ['iOS'],
|
||||||
|
})
|
||||||
|
@Injectable()
|
||||||
|
export class BioCatch extends IonicNativePlugin {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Start a session
|
||||||
|
* @param customerSessionID {String} Customer session id
|
||||||
|
* @param wupUrl {String} WUP server URL
|
||||||
|
* @param publicKey {String} Public Key
|
||||||
|
* @return {Promise<void>} Returns a promise
|
||||||
|
*/
|
||||||
|
@Cordova()
|
||||||
|
start(customerSessionID: string | null, wupUrl: string, publicKey: string | null): Promise<void> {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Pause the session
|
||||||
|
* @return {Promise<void>} Returns a promise
|
||||||
|
*/
|
||||||
|
@Cordova()
|
||||||
|
pause(): Promise<void> {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Resume the session
|
||||||
|
* @return {Promise<void>} Returns a promise
|
||||||
|
*/
|
||||||
|
@Cordova()
|
||||||
|
resume(): Promise<void> {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Stop the session
|
||||||
|
* @return {Promise<void>} Returns a promise
|
||||||
|
*/
|
||||||
|
@Cordova()
|
||||||
|
stop(): Promise<void> {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Reset the session
|
||||||
|
* @return {Promise<void>} Returns a promise
|
||||||
|
*/
|
||||||
|
@Cordova()
|
||||||
|
resetSession(): Promise<void> {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Change the session context
|
||||||
|
* @param contextName {String} Context name
|
||||||
|
* @return {Promise<void>} Returns a promise
|
||||||
|
*/
|
||||||
|
@Cordova()
|
||||||
|
changeContext(contextName: string): Promise<void> {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Update the customer session ID
|
||||||
|
* @param customerSessionID {String}
|
||||||
|
* @return {Promise<void>} Returns a promise
|
||||||
|
*/
|
||||||
|
@Cordova()
|
||||||
|
updateCustomerSessionID(customerSessionID: string | null): Promise<void> {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user