Skip to content
This repository has been archived by the owner on Mar 19, 2024. It is now read-only.

Commit

Permalink
Release 4.17.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
IngenicoEPayments committed Dec 12, 2023
1 parent 8ccd10a commit de0bc7c
Show file tree
Hide file tree
Showing 8 changed files with 6 additions and 14 deletions.
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "connect-sdk-nodejs",
"version": "4.16.0",
"version": "4.17.0",
"description": "SDK to communicate with the Ingenico ePayments platform using the Ingenico Connect Server API",
"homepage": "https://github.com/Ingenico-ePayments/connect-sdk-nodejs#readme",
"bugs": {
Expand Down
3 changes: 0 additions & 3 deletions schemas/hostedcheckout/CreateHostedCheckoutRequest.json
Original file line number Diff line number Diff line change
Expand Up @@ -1657,9 +1657,6 @@
"SdkDataInput" : {
"type" : "object",
"properties" : {
"deviceInfo" : {
"type" : "string"
},
"deviceRenderOptions" : {
"$ref" : "#/definitions/DeviceRenderOptions"
},
Expand Down
3 changes: 0 additions & 3 deletions schemas/payment/CreatePaymentRequest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2001,9 +2001,6 @@
"SdkDataInput" : {
"type" : "object",
"properties" : {
"deviceInfo" : {
"type" : "string"
},
"deviceRenderOptions" : {
"$ref" : "#/definitions/DeviceRenderOptions"
},
Expand Down
2 changes: 1 addition & 1 deletion src/model/domain/definitions/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,6 @@ export interface CardFraudResults extends FraudResults {
avsResult?: string | null;
cvvResult?: string | null;
fraugster?: FraugsterResults | null;
microsoftFraudProtection?: MicrosoftFraudResults | null;
retailDecisions?: FraudResultsRetailDecisions | null;
}

Expand Down Expand Up @@ -234,6 +233,7 @@ export interface FraudFieldsShippingDetails {
export interface FraudResults {
fraudServiceResult?: string | null;
inAuth?: InAuth | null;
microsoftFraudProtection?: MicrosoftFraudResults | null;
}

export interface FraudResultsRetailDecisions {
Expand Down
5 changes: 1 addition & 4 deletions src/model/domain/payment/definitions/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -395,6 +395,7 @@ export interface EInvoicePaymentMethodSpecificInput extends AbstractEInvoicePaym
export interface EInvoicePaymentMethodSpecificInputBase extends AbstractEInvoicePaymentMethodSpecificInput {}

export interface EInvoicePaymentMethodSpecificOutput extends AbstractPaymentMethodSpecificOutput {
fraudResults?: FraudResults | null;
paymentProduct9000SpecificOutput?: EInvoicePaymentProduct9000SpecificOutput | null;
}

Expand Down Expand Up @@ -963,10 +964,6 @@ export interface SchemeTokenData {
}

export interface SdkDataInput {
/**
* @deprecated No replacement
*/
deviceInfo?: string | null;
deviceRenderOptions?: DeviceRenderOptions | null;
sdkAppId?: string | null;
sdkEncryptedData?: string | null;
Expand Down
1 change: 1 addition & 0 deletions src/model/domain/product/definitions/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@ export interface PaymentProduct {
fields?: PaymentProductField[] | null;
fieldsWarning?: string | null;
id?: number | null;
isAuthenticationSupported?: boolean | null;
isJavaScriptRequired?: boolean | null;
maxAmount?: number | null;
minAmount?: number | null;
Expand Down
2 changes: 1 addition & 1 deletion src/utils/headers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ interface ServerMetaInfo {
export function serverMetaInfo(sdkContext: SdkContext): Header {
const info: ServerMetaInfo = {
sdkCreator: "Ingenico",
sdkIdentifier: "NodejsServerSDK/v4.16.0",
sdkIdentifier: "NodejsServerSDK/v4.17.0",
platformIdentifier: process.env["OS"] + " Node.js/" + process.versions.node
};
if (sdkContext.getIntegrator() !== null) {
Expand Down

0 comments on commit de0bc7c

Please sign in to comment.