This commit is contained in:
Ricardo Ambrogi
2019-07-08 10:09:05 +00:00
parent 22be7f5e8b
commit 8059bb7cb5
9 changed files with 24 additions and 24 deletions

4
dist/es5/main.js vendored

File diff suppressed because one or more lines are too long

View File

@@ -89,7 +89,7 @@ export interface CardAcquisitionResponse {
export interface CardAcquisitionTransaction {
AllowedPaymentBrand?: string[];
AllowedLoyaltyBrand?: string[];
ForceEntryMode?: ForceEntryModeType[][];
ForceEntryMode?: ForceEntryModeType[];
LoyaltyHandling?: LoyaltyHandlingType;
CustomerLanguage?: string;
ForceCustomerSelectionFlag?: boolean;
@@ -124,7 +124,7 @@ export interface CardReaderAPDUResponse {
CardStatusWords: any;
}
export interface CardReaderInitRequest {
ForceEntryMode?: ForceEntryModeType[][];
ForceEntryMode?: ForceEntryModeType[];
DisplayOutput?: DisplayOutput;
WarmResetFlag?: boolean;
LeaveCardFlag?: boolean;
@@ -999,7 +999,7 @@ export interface TransactionConditions {
AllowedPaymentBrand?: string[];
AcquirerID?: string[];
AllowedLoyaltyBrand?: string[];
ForceEntryMode?: ForceEntryModeType[][];
ForceEntryMode?: ForceEntryModeType[];
DebitPreferredFlag?: boolean;
LoyaltyHandling?: LoyaltyHandlingType;
CustomerLanguage?: string;

View File

@@ -429,7 +429,7 @@ export interface CheckData {
checkNumber?: string;
country?: string;
trackData?: TrackData;
type?: CheckTypeCodeType;
typeCode?: CheckTypeCodeType;
}
export declare enum CheckTypeCodeType {
Company = "Company",
@@ -686,7 +686,7 @@ export interface Instalment {
cumulativeAmount?: number;
firstAmount?: number;
firstPaymentDate?: string;
instalment?: InstalmentType[];
instalmentType?: InstalmentType[];
period?: number;
periodUnit?: PeriodUnitType;
planId?: string;
@@ -1210,7 +1210,7 @@ export interface PaymentResult {
capturedSignature?: CapturedSignature;
currencyConversion?: CurrencyConversion[];
customerLanguage?: string;
instalment?: Instalment;
instalmentType?: Instalment;
merchantOverrideFlag?: boolean;
onlineFlag?: boolean;
paymentAcquirerData?: PaymentAcquirerData;

View File

@@ -2533,7 +2533,7 @@ var typeMap = {
{ json: "CheckNumber", js: "checkNumber", typ: u(undefined, "") },
{ json: "Country", js: "country", typ: u(undefined, "") },
{ json: "TrackData", js: "trackData", typ: u(undefined, r("TrackData")) },
{ json: "Type", js: "type", typ: u(undefined, r("CheckTypeCodeType")) },
{ json: "TypeCode", js: "typeCode", typ: u(undefined, r("CheckTypeCodeType")) },
], "any"),
"MobileData": o([
{ json: "Geolocation", js: "geolocation", typ: u(undefined, r("Geolocation")) },
@@ -2671,7 +2671,7 @@ var typeMap = {
"PaymentData": o([
{ json: "CardAcquisitionReference", js: "cardAcquisitionReference", typ: u(undefined, r("TransactionIdentification")) },
{ json: "CustomerOrder", js: "customerOrder", typ: u(undefined, r("CustomerOrder")) },
{ json: "Instalment", js: "instalment", typ: u(undefined, r("Instalment")) },
{ json: "InstalmentType", js: "instalmentType", typ: u(undefined, r("Instalment")) },
{ json: "PaymentInstrumentData", js: "paymentInstrumentData", typ: u(undefined, r("PaymentInstrumentData")) },
{ json: "PaymentType", js: "paymentType", typ: u(undefined, r("PaymentType")) },
{ json: "RequestedValidityDate", js: "requestedValidityDate", typ: u(undefined, "") },
@@ -2682,7 +2682,7 @@ var typeMap = {
{ json: "CumulativeAmount", js: "cumulativeAmount", typ: u(undefined, 3.14) },
{ json: "FirstAmount", js: "firstAmount", typ: u(undefined, 3.14) },
{ json: "FirstPaymentDate", js: "firstPaymentDate", typ: u(undefined, "") },
{ json: "Instalment", js: "instalment", typ: u(undefined, a(r("InstalmentType"))) },
{ json: "InstalmentType", js: "instalmentType", typ: u(undefined, a(r("InstalmentType"))) },
{ json: "Period", js: "period", typ: u(undefined, 3.14) },
{ json: "PeriodUnit", js: "periodUnit", typ: u(undefined, r("PeriodUnitType")) },
{ json: "PlanID", js: "planId", typ: u(undefined, "") },
@@ -3040,7 +3040,7 @@ var typeMap = {
{ json: "CapturedSignature", js: "capturedSignature", typ: u(undefined, r("CapturedSignature")) },
{ json: "CurrencyConversion", js: "currencyConversion", typ: u(undefined, a(r("CurrencyConversion"))) },
{ json: "CustomerLanguage", js: "customerLanguage", typ: u(undefined, "") },
{ json: "Instalment", js: "instalment", typ: u(undefined, r("Instalment")) },
{ json: "InstalmentType", js: "instalmentType", typ: u(undefined, r("Instalment")) },
{ json: "MerchantOverrideFlag", js: "merchantOverrideFlag", typ: u(undefined, true) },
{ json: "OnlineFlag", js: "onlineFlag", typ: u(undefined, true) },
{ json: "PaymentAcquirerData", js: "paymentAcquirerData", typ: u(undefined, r("PaymentAcquirerData")) },

File diff suppressed because one or more lines are too long

View File

@@ -89,7 +89,7 @@ export interface CardAcquisitionResponse {
export interface CardAcquisitionTransaction {
AllowedPaymentBrand?: string[];
AllowedLoyaltyBrand?: string[];
ForceEntryMode?: ForceEntryModeType[][];
ForceEntryMode?: ForceEntryModeType[];
LoyaltyHandling?: LoyaltyHandlingType;
CustomerLanguage?: string;
ForceCustomerSelectionFlag?: boolean;
@@ -124,7 +124,7 @@ export interface CardReaderAPDUResponse {
CardStatusWords: any;
}
export interface CardReaderInitRequest {
ForceEntryMode?: ForceEntryModeType[][];
ForceEntryMode?: ForceEntryModeType[];
DisplayOutput?: DisplayOutput;
WarmResetFlag?: boolean;
LeaveCardFlag?: boolean;
@@ -999,7 +999,7 @@ export interface TransactionConditions {
AllowedPaymentBrand?: string[];
AcquirerID?: string[];
AllowedLoyaltyBrand?: string[];
ForceEntryMode?: ForceEntryModeType[][];
ForceEntryMode?: ForceEntryModeType[];
DebitPreferredFlag?: boolean;
LoyaltyHandling?: LoyaltyHandlingType;
CustomerLanguage?: string;

View File

@@ -429,7 +429,7 @@ export interface CheckData {
checkNumber?: string;
country?: string;
trackData?: TrackData;
type?: CheckTypeCodeType;
typeCode?: CheckTypeCodeType;
}
export declare enum CheckTypeCodeType {
Company = "Company",
@@ -686,7 +686,7 @@ export interface Instalment {
cumulativeAmount?: number;
firstAmount?: number;
firstPaymentDate?: string;
instalment?: InstalmentType[];
instalmentType?: InstalmentType[];
period?: number;
periodUnit?: PeriodUnitType;
planId?: string;
@@ -1210,7 +1210,7 @@ export interface PaymentResult {
capturedSignature?: CapturedSignature;
currencyConversion?: CurrencyConversion[];
customerLanguage?: string;
instalment?: Instalment;
instalmentType?: Instalment;
merchantOverrideFlag?: boolean;
onlineFlag?: boolean;
paymentAcquirerData?: PaymentAcquirerData;

View File

@@ -2535,7 +2535,7 @@ var typeMap = {
{ json: "CheckNumber", js: "checkNumber", typ: u(undefined, "") },
{ json: "Country", js: "country", typ: u(undefined, "") },
{ json: "TrackData", js: "trackData", typ: u(undefined, r("TrackData")) },
{ json: "Type", js: "type", typ: u(undefined, r("CheckTypeCodeType")) },
{ json: "TypeCode", js: "typeCode", typ: u(undefined, r("CheckTypeCodeType")) },
], "any"),
"MobileData": o([
{ json: "Geolocation", js: "geolocation", typ: u(undefined, r("Geolocation")) },
@@ -2673,7 +2673,7 @@ var typeMap = {
"PaymentData": o([
{ json: "CardAcquisitionReference", js: "cardAcquisitionReference", typ: u(undefined, r("TransactionIdentification")) },
{ json: "CustomerOrder", js: "customerOrder", typ: u(undefined, r("CustomerOrder")) },
{ json: "Instalment", js: "instalment", typ: u(undefined, r("Instalment")) },
{ json: "InstalmentType", js: "instalmentType", typ: u(undefined, r("Instalment")) },
{ json: "PaymentInstrumentData", js: "paymentInstrumentData", typ: u(undefined, r("PaymentInstrumentData")) },
{ json: "PaymentType", js: "paymentType", typ: u(undefined, r("PaymentType")) },
{ json: "RequestedValidityDate", js: "requestedValidityDate", typ: u(undefined, "") },
@@ -2684,7 +2684,7 @@ var typeMap = {
{ json: "CumulativeAmount", js: "cumulativeAmount", typ: u(undefined, 3.14) },
{ json: "FirstAmount", js: "firstAmount", typ: u(undefined, 3.14) },
{ json: "FirstPaymentDate", js: "firstPaymentDate", typ: u(undefined, "") },
{ json: "Instalment", js: "instalment", typ: u(undefined, a(r("InstalmentType"))) },
{ json: "InstalmentType", js: "instalmentType", typ: u(undefined, a(r("InstalmentType"))) },
{ json: "Period", js: "period", typ: u(undefined, 3.14) },
{ json: "PeriodUnit", js: "periodUnit", typ: u(undefined, r("PeriodUnitType")) },
{ json: "PlanID", js: "planId", typ: u(undefined, "") },
@@ -3042,7 +3042,7 @@ var typeMap = {
{ json: "CapturedSignature", js: "capturedSignature", typ: u(undefined, r("CapturedSignature")) },
{ json: "CurrencyConversion", js: "currencyConversion", typ: u(undefined, a(r("CurrencyConversion"))) },
{ json: "CustomerLanguage", js: "customerLanguage", typ: u(undefined, "") },
{ json: "Instalment", js: "instalment", typ: u(undefined, r("Instalment")) },
{ json: "InstalmentType", js: "instalmentType", typ: u(undefined, r("Instalment")) },
{ json: "MerchantOverrideFlag", js: "merchantOverrideFlag", typ: u(undefined, true) },
{ json: "OnlineFlag", js: "onlineFlag", typ: u(undefined, true) },
{ json: "PaymentAcquirerData", js: "paymentAcquirerData", typ: u(undefined, r("PaymentAcquirerData")) },

File diff suppressed because one or more lines are too long