connect-sdk-nodejs 4.11.0 → 4.12.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.
|
@@ -2,6 +2,7 @@ import { AbstractPaymentMethodSpecificInput, KeyValuePair, PaymentProductFilter
|
|
|
2
2
|
import { GPayThreeDSecure, Payment, PaymentCreationReferences } from "../../payment/definitions";
|
|
3
3
|
export interface CreatedPaymentOutput {
|
|
4
4
|
displayedData?: DisplayedData | null;
|
|
5
|
+
isCheckedRememberMe?: boolean | null;
|
|
5
6
|
payment?: Payment | null;
|
|
6
7
|
paymentCreationReferences?: PaymentCreationReferences | null;
|
|
7
8
|
/**
|
|
@@ -541,6 +541,7 @@ export interface PaymentAccountOnFile {
|
|
|
541
541
|
numberOfCardOnFileCreationAttemptsLast24Hours?: number | null;
|
|
542
542
|
}
|
|
543
543
|
export interface PaymentCreationOutput extends PaymentCreationReferences {
|
|
544
|
+
isCheckedRememberMe?: boolean | null;
|
|
544
545
|
isNewToken?: boolean | null;
|
|
545
546
|
token?: string | null;
|
|
546
547
|
tokenizationSucceeded?: boolean | null;
|
|
@@ -609,6 +610,7 @@ export interface PaymentReferences {
|
|
|
609
610
|
merchantReference?: string | null;
|
|
610
611
|
paymentReference?: string | null;
|
|
611
612
|
providerId?: string | null;
|
|
613
|
+
providerMerchantId?: string | null;
|
|
612
614
|
providerReference?: string | null;
|
|
613
615
|
referenceOrigPayment?: string | null;
|
|
614
616
|
}
|
|
@@ -616,6 +618,7 @@ export interface PaymentStatusOutput extends OrderStatusOutput {
|
|
|
616
618
|
isAuthorized?: boolean | null;
|
|
617
619
|
isRefundable?: boolean | null;
|
|
618
620
|
isRetriable?: boolean | null;
|
|
621
|
+
providerRawOutput?: KeyValuePair[] | null;
|
|
619
622
|
threeDSecureStatus?: string | null;
|
|
620
623
|
}
|
|
621
624
|
export interface PersonalInformation {
|
|
@@ -747,6 +750,7 @@ export interface RefundPaymentProduct840SpecificOutput {
|
|
|
747
750
|
customerAccount?: RefundPaymentProduct840CustomerAccount | null;
|
|
748
751
|
}
|
|
749
752
|
export interface SchemeTokenData {
|
|
753
|
+
cardholderName?: string | null;
|
|
750
754
|
cryptogram?: string | null;
|
|
751
755
|
eci?: string | null;
|
|
752
756
|
networkToken?: string | 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.12.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.12.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": {
|