Revert "chore(package): bump dependencies and lint rules"

This reverts commit 21ad4734fa.
This commit is contained in:
Daniel
2018-03-16 22:04:01 +01:00
parent 21ad4734fa
commit 6c938bfdb7
178 changed files with 4221 additions and 10592 deletions
+32 -44
View File
@@ -1,5 +1,5 @@
import { Injectable } from '@angular/core';
import { Cordova, IonicNativePlugin, Plugin } from '@ionic-native/core';
import { Plugin, Cordova, IonicNativePlugin } from '@ionic-native/core';
export interface StripeCardTokenParams {
/**
@@ -80,28 +80,28 @@ export interface StripeBankAccountParams {
}
export interface StripeCardTokenRes {
/**
* Card Object.
*/
card: {
brand: string;
exp_month: number;
exp_year: number;
funding: string;
last4: string;
};
/**
* Token Request Date Time.
*/
created: string;
/**
* Card Token.
*/
id: string;
/**
* Source Type (card or account).
*/
type: string;
/**
* Card Object.
*/
card: {
brand: string,
exp_month: number,
exp_year: number,
funding: string,
last4: string
};
/**
* Token Request Date Time.
*/
created: string;
/**
* Card Token.
*/
id: string;
/**
* Source Type (card or account).
*/
type: string;
}
/**
@@ -144,15 +144,14 @@ export interface StripeCardTokenRes {
})
@Injectable()
export class Stripe extends IonicNativePlugin {
/**
* Set publishable key
* @param publishableKey {string} Publishable key
* @return {Promise<void>}
*/
@Cordova()
setPublishableKey(publishableKey: string): Promise<void> {
return;
}
setPublishableKey(publishableKey: string): Promise<void> { return; }
/**
* Create Credit Card Token
@@ -160,9 +159,7 @@ export class Stripe extends IonicNativePlugin {
* @return {Promise<StripeCardTokenRes>} returns a promise that resolves with the token object, or rejects with an error
*/
@Cordova()
createCardToken(params: StripeCardTokenParams): Promise<StripeCardTokenRes> {
return;
}
createCardToken(params: StripeCardTokenParams): Promise<StripeCardTokenRes> { return; }
/**
* Create a bank account token
@@ -170,9 +167,7 @@ export class Stripe extends IonicNativePlugin {
* @return {Promise<string>} returns a promise that resolves with the token, or rejects with an error
*/
@Cordova()
createBankAccountToken(params: StripeBankAccountParams): Promise<string> {
return;
}
createBankAccountToken(params: StripeBankAccountParams): Promise<string> { return; }
/**
* Validates a credit card number
@@ -180,9 +175,7 @@ export class Stripe extends IonicNativePlugin {
* @return {Promise<any>} returns a promise that resolves if the number is valid, and rejects if it's invalid
*/
@Cordova()
validateCardNumber(cardNumber: string): Promise<any> {
return;
}
validateCardNumber(cardNumber: string): Promise<any> { return; }
/**
* Validates a CVC number
@@ -190,9 +183,7 @@ export class Stripe extends IonicNativePlugin {
* @return {Promise<any>} returns a promise that resolves if the number is valid, and rejects if it's invalid
*/
@Cordova()
validateCVC(cvc: string): Promise<any> {
return;
}
validateCVC(cvc: string): Promise<any> { return; }
/**
* Validates an expiry date
@@ -201,9 +192,7 @@ export class Stripe extends IonicNativePlugin {
* @return {Promise<any>} returns a promise that resolves if the date is valid, and rejects if it's invalid
*/
@Cordova()
validateExpiryDate(expMonth: string, expYear: string): Promise<any> {
return;
}
validateExpiryDate(expMonth: string, expYear: string): Promise<any> { return; }
/**
* Get a card type from card number
@@ -211,7 +200,6 @@ export class Stripe extends IonicNativePlugin {
* @return {Promise<string>} returns a promise that resolves with the credit card type
*/
@Cordova()
getCardType(cardNumber: string): Promise<string> {
return;
}
getCardType(cardNumber: string): Promise<string> { return; }
}