connect-sdk-nodejs 4.16.0 → 4.17.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/model/domain/definitions/index.d.ts +1 -1
- package/lib/model/domain/payment/definitions/index.d.ts +1 -4
- package/lib/model/domain/product/definitions/index.d.ts +1 -0
- package/lib/utils/headers.js +1 -1
- package/package.json +1 -1
- package/schemas/hostedcheckout/CreateHostedCheckoutRequest.json +0 -3
- package/schemas/payment/CreatePaymentRequest.json +0 -3
|
@@ -111,7 +111,6 @@ export interface CardFraudResults extends FraudResults {
|
|
|
111
111
|
avsResult?: string | null;
|
|
112
112
|
cvvResult?: string | null;
|
|
113
113
|
fraugster?: FraugsterResults | null;
|
|
114
|
-
microsoftFraudProtection?: MicrosoftFraudResults | null;
|
|
115
114
|
retailDecisions?: FraudResultsRetailDecisions | null;
|
|
116
115
|
}
|
|
117
116
|
export interface CardWithoutCvv extends CardEssentials {
|
|
@@ -209,6 +208,7 @@ export interface FraudFieldsShippingDetails {
|
|
|
209
208
|
export interface FraudResults {
|
|
210
209
|
fraudServiceResult?: string | null;
|
|
211
210
|
inAuth?: InAuth | null;
|
|
211
|
+
microsoftFraudProtection?: MicrosoftFraudResults | null;
|
|
212
212
|
}
|
|
213
213
|
export interface FraudResultsRetailDecisions {
|
|
214
214
|
fraudCode?: string | null;
|
|
@@ -313,6 +313,7 @@ export interface EInvoicePaymentMethodSpecificInput extends AbstractEInvoicePaym
|
|
|
313
313
|
export interface EInvoicePaymentMethodSpecificInputBase extends AbstractEInvoicePaymentMethodSpecificInput {
|
|
314
314
|
}
|
|
315
315
|
export interface EInvoicePaymentMethodSpecificOutput extends AbstractPaymentMethodSpecificOutput {
|
|
316
|
+
fraudResults?: FraudResults | null;
|
|
316
317
|
paymentProduct9000SpecificOutput?: EInvoicePaymentProduct9000SpecificOutput | null;
|
|
317
318
|
}
|
|
318
319
|
export interface EInvoicePaymentProduct9000SpecificInput {
|
|
@@ -802,10 +803,6 @@ export interface SchemeTokenData {
|
|
|
802
803
|
tokenExpiryDate?: string | null;
|
|
803
804
|
}
|
|
804
805
|
export interface SdkDataInput {
|
|
805
|
-
/**
|
|
806
|
-
* @deprecated No replacement
|
|
807
|
-
*/
|
|
808
|
-
deviceInfo?: string | null;
|
|
809
806
|
deviceRenderOptions?: DeviceRenderOptions | null;
|
|
810
807
|
sdkAppId?: string | null;
|
|
811
808
|
sdkEncryptedData?: string | null;
|
|
@@ -63,6 +63,7 @@ export interface PaymentProduct {
|
|
|
63
63
|
fields?: PaymentProductField[] | null;
|
|
64
64
|
fieldsWarning?: string | null;
|
|
65
65
|
id?: number | null;
|
|
66
|
+
isAuthenticationSupported?: boolean | null;
|
|
66
67
|
isJavaScriptRequired?: boolean | null;
|
|
67
68
|
maxAmount?: number | null;
|
|
68
69
|
minAmount?: number | null;
|
package/lib/utils/headers.js
CHANGED
|
@@ -9,7 +9,7 @@ exports.date = date;
|
|
|
9
9
|
function serverMetaInfo(sdkContext) {
|
|
10
10
|
const info = {
|
|
11
11
|
sdkCreator: "Ingenico",
|
|
12
|
-
sdkIdentifier: "NodejsServerSDK/v4.
|
|
12
|
+
sdkIdentifier: "NodejsServerSDK/v4.17.0",
|
|
13
13
|
platformIdentifier: process.env["OS"] + " Node.js/" + process.versions.node
|
|
14
14
|
};
|
|
15
15
|
if (sdkContext.getIntegrator() !== null) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "connect-sdk-nodejs",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.17.0",
|
|
4
4
|
"description": "SDK to communicate with the Ingenico ePayments platform using the Ingenico Connect Server API",
|
|
5
5
|
"homepage": "https://github.com/Ingenico-ePayments/connect-sdk-nodejs#readme",
|
|
6
6
|
"bugs": {
|