refactor(paytabs): run prettier
This commit is contained in:
parent
f64b67310a
commit
83cb98f115
@ -280,19 +280,19 @@ export enum TokeniseType {
|
|||||||
/**
|
/**
|
||||||
* none: tokenise is off
|
* none: tokenise is off
|
||||||
*/
|
*/
|
||||||
none = "none",
|
none = 'none',
|
||||||
/**
|
/**
|
||||||
* merchantMandatory: tokenise is forced
|
* merchantMandatory: tokenise is forced
|
||||||
*/
|
*/
|
||||||
merchantMandatory = "merchantMandatory",
|
merchantMandatory = 'merchantMandatory',
|
||||||
/**
|
/**
|
||||||
* userMandatory: tokenise is forced as per user approval
|
* userMandatory: tokenise is forced as per user approval
|
||||||
*/
|
*/
|
||||||
userMandatory = "userMandatory",
|
userMandatory = 'userMandatory',
|
||||||
/**
|
/**
|
||||||
* userOptinoal: tokenise if optional as per user approval
|
* userOptinoal: tokenise if optional as per user approval
|
||||||
*/
|
*/
|
||||||
userOptinoal = "userOptinoal",
|
userOptinoal = 'userOptinoal',
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -302,27 +302,27 @@ export enum TokeniseFromat {
|
|||||||
/**
|
/**
|
||||||
* none: no format
|
* none: no format
|
||||||
*/
|
*/
|
||||||
none = "1",
|
none = '1',
|
||||||
/**
|
/**
|
||||||
* hex32: Hex with 32 length
|
* hex32: Hex with 32 length
|
||||||
*/
|
*/
|
||||||
hex32 = "2",
|
hex32 = '2',
|
||||||
/**
|
/**
|
||||||
* alphaNum20: alpha numeric 20 length
|
* alphaNum20: alpha numeric 20 length
|
||||||
*/
|
*/
|
||||||
alphaNum20 = "3",
|
alphaNum20 = '3',
|
||||||
/**
|
/**
|
||||||
* digit22: digits with 22 length
|
* digit22: digits with 22 length
|
||||||
*/
|
*/
|
||||||
digit22 = "3",
|
digit22 = '3',
|
||||||
/**
|
/**
|
||||||
* digit16: digits with 16 length
|
* digit16: digits with 16 length
|
||||||
*/
|
*/
|
||||||
digit16 = "5",
|
digit16 = '5',
|
||||||
/**
|
/**
|
||||||
* alphaNum32: alpha numeric 32 length
|
* alphaNum32: alpha numeric 32 length
|
||||||
*/
|
*/
|
||||||
alphaNum32 = "6"
|
alphaNum32 = '6',
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -332,11 +332,11 @@ export enum TransactionType {
|
|||||||
/**
|
/**
|
||||||
* sale
|
* sale
|
||||||
*/
|
*/
|
||||||
sale = "sale",
|
sale = 'sale',
|
||||||
/**
|
/**
|
||||||
* authorize / capture option
|
* authorize / capture option
|
||||||
*/
|
*/
|
||||||
authorize = "auth"
|
authorize = 'auth',
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -346,11 +346,11 @@ export enum TransactionClass {
|
|||||||
/**
|
/**
|
||||||
* ecom: default transaction
|
* ecom: default transaction
|
||||||
*/
|
*/
|
||||||
ecom = "ecom",
|
ecom = 'ecom',
|
||||||
/**
|
/**
|
||||||
* recurring: recurring transaction
|
* recurring: recurring transaction
|
||||||
*/
|
*/
|
||||||
recurring = "recur"
|
recurring = 'recur',
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -360,35 +360,35 @@ export enum AlternativePaymentMethod {
|
|||||||
/**
|
/**
|
||||||
* unionpay: for supporting payment with unionpay
|
* unionpay: for supporting payment with unionpay
|
||||||
*/
|
*/
|
||||||
unionPay = "unionpay",
|
unionPay = 'unionpay',
|
||||||
/**
|
/**
|
||||||
* stcpay: for supporting payment with stcpay
|
* stcpay: for supporting payment with stcpay
|
||||||
*/
|
*/
|
||||||
stcPay = "stcpay",
|
stcPay = 'stcpay',
|
||||||
/**
|
/**
|
||||||
* valu: for supporting payment with valu
|
* valu: for supporting payment with valu
|
||||||
*/
|
*/
|
||||||
valu = "valu",
|
valu = 'valu',
|
||||||
/**
|
/**
|
||||||
* meezaqr: for supporting payment with meezaqr
|
* meezaqr: for supporting payment with meezaqr
|
||||||
*/
|
*/
|
||||||
meezaQR = "meezaqr",
|
meezaQR = 'meezaqr',
|
||||||
/**
|
/**
|
||||||
* omannet: for supporting payment with omannet
|
* omannet: for supporting payment with omannet
|
||||||
*/
|
*/
|
||||||
omannet = "omannet",
|
omannet = 'omannet',
|
||||||
/**
|
/**
|
||||||
* knetcredit: for supporting payment with knetcredit
|
* knetcredit: for supporting payment with knetcredit
|
||||||
*/
|
*/
|
||||||
knetCredit = "knetcredit",
|
knetCredit = 'knetcredit',
|
||||||
/**
|
/**
|
||||||
* knetdebit: for supporting payment with knetdebit
|
* knetdebit: for supporting payment with knetdebit
|
||||||
*/
|
*/
|
||||||
knetDebit = "knetdebit",
|
knetDebit = 'knetdebit',
|
||||||
/**
|
/**
|
||||||
* fawry: for supporting payment with fawry
|
* fawry: for supporting payment with fawry
|
||||||
*/
|
*/
|
||||||
fawry = "fawry"
|
fawry = 'fawry',
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -449,7 +449,6 @@ export enum AlternativePaymentMethod {
|
|||||||
repo: 'https://github.com/paytabscom/paytabs-cordova',
|
repo: 'https://github.com/paytabscom/paytabs-cordova',
|
||||||
platforms: ['Android', 'iOS'],
|
platforms: ['Android', 'iOS'],
|
||||||
})
|
})
|
||||||
|
|
||||||
@Injectable()
|
@Injectable()
|
||||||
export class PayTabs extends IonicNativePlugin {
|
export class PayTabs extends IonicNativePlugin {
|
||||||
/**
|
/**
|
||||||
|
Loading…
x
Reference in New Issue
Block a user