mirror of
https://github.com/danielsogl/awesome-cordova-plugins.git
synced 2025-01-31 10:36:14 +08:00
Removed clover-go - niche
This commit is contained in:
parent
5b9c6f376a
commit
6e6e3e5a10
@ -1,144 +0,0 @@
|
||||
import { Injectable } from '@angular/core';
|
||||
import {
|
||||
Plugin,
|
||||
Cordova,
|
||||
CordovaProperty,
|
||||
CordovaInstance,
|
||||
InstanceProperty,
|
||||
IonicNativePlugin,
|
||||
} from '@ionic-native/core';
|
||||
import { Observable } from 'rxjs';
|
||||
|
||||
export interface Response {
|
||||
type?: string;
|
||||
message?: string;
|
||||
reason?: string;
|
||||
}
|
||||
export interface InitResponse extends Response {
|
||||
merchantName?: string;
|
||||
}
|
||||
export interface SaleResponse extends Response {
|
||||
paymentId?: string;
|
||||
transactionType?: string;
|
||||
entryType?: string;
|
||||
cardFirst6?: string;
|
||||
cardLast4?: string;
|
||||
}
|
||||
export interface VoidPaymentResponse extends Response {
|
||||
paymentId?: string;
|
||||
}
|
||||
|
||||
/**
|
||||
* @name Clover Go
|
||||
* @description
|
||||
* This plugin connect to Clover Go payment device and process payments.
|
||||
*
|
||||
* @usage
|
||||
* ```typescript
|
||||
* import { CloverGo } from '@ionic-native/clover-go/ngx';
|
||||
*
|
||||
*
|
||||
* constructor(private cloverGo: CloverGo) { }
|
||||
*
|
||||
* ...
|
||||
*
|
||||
*
|
||||
* this.cloverGo.init(configuration)
|
||||
* .then((res: any) => console.log(res))
|
||||
* .catch((error: any) => console.error(error));
|
||||
*
|
||||
* this.cloverGo.connect()
|
||||
* .then((res: any) => console.log(res))
|
||||
* .catch((error: any) => console.error(error));
|
||||
*
|
||||
* this.cloverGo.disconnect()
|
||||
* .then((res: any) => console.log(res))
|
||||
* .catch((error: any) => console.error(error));
|
||||
*
|
||||
* this.cloverGo.sale(saleInfo)
|
||||
* .then((res: any) => console.log(res))
|
||||
* .catch((error: any) => console.error(error));
|
||||
*
|
||||
* this.cloverGo.sign(signInfo)
|
||||
* .then((res: any) => console.log(res))
|
||||
* .catch((error: any) => console.error(error));
|
||||
*
|
||||
* this.cloverGo.voidPayment(paymentInfo)
|
||||
* .then((res: any) => console.log(res))
|
||||
* .catch((error: any) => console.error(error));
|
||||
*
|
||||
* ```
|
||||
*/
|
||||
@Plugin({
|
||||
pluginName: 'CloverGo',
|
||||
plugin: 'cordova-plugin-clovergo',
|
||||
pluginRef: 'clovergo',
|
||||
repo: 'https://github.com/hotwax/cordova-plugin-clovergo',
|
||||
install: 'ionic plugin add cordova-plugin-clovergo',
|
||||
platforms: ['Android'],
|
||||
})
|
||||
@Injectable()
|
||||
export class CloverGo extends IonicNativePlugin {
|
||||
/**
|
||||
* This function initialises Clover Go SDK
|
||||
* @param configuration {object}
|
||||
* @return {Promise<InitResponse>}
|
||||
*/
|
||||
@Cordova()
|
||||
init(configuration: object): Promise<InitResponse> {
|
||||
return;
|
||||
}
|
||||
|
||||
/**
|
||||
* This function connects to available clover go device
|
||||
*
|
||||
* @return {Promise<Response>}
|
||||
*/
|
||||
@Cordova()
|
||||
connect(): Promise<Response> {
|
||||
return;
|
||||
}
|
||||
|
||||
/**
|
||||
* This function disconnects to available clover go device
|
||||
*
|
||||
* @return {Promise<Response>}
|
||||
*/
|
||||
@Cordova()
|
||||
disconnect(): Promise<Response> {
|
||||
return;
|
||||
}
|
||||
|
||||
/**
|
||||
* This function initiate sale for Clover Go device
|
||||
* @param saleInfo {object}
|
||||
* @return {Promise<SaleResponse>}
|
||||
*/
|
||||
@Cordova()
|
||||
sale(saleInfo: object): Promise<SaleResponse> {
|
||||
return;
|
||||
}
|
||||
|
||||
/**
|
||||
* This method is used to pass signature as two
|
||||
* dimensional number array that represents points
|
||||
* of signature on screen.
|
||||
* The list is passed as signature in SignInfo object.
|
||||
* @param signInfo {object}
|
||||
* @return {Promise<SaleResponse>}
|
||||
*/
|
||||
@Cordova()
|
||||
sign(signInfo: object): Promise<SaleResponse> {
|
||||
return;
|
||||
}
|
||||
|
||||
/**
|
||||
* This function void any payment done through the device
|
||||
* @param saleInfo {object}
|
||||
* @return {Promise<VoidPaymentResponse>}
|
||||
*/
|
||||
@Cordova()
|
||||
voidPayment(paymentInfo: object): Promise<VoidPaymentResponse> {
|
||||
return;
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user