connect-sdk-nodejs 4.7.0 → 4.9.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/payment/definitions/index.d.ts +2 -0
- package/lib/utils/headers.js +1 -1
- package/package.json +1 -1
- package/schemas/hostedcheckout/CreateHostedCheckoutRequest.json +3 -0
- package/schemas/payment/CompletePaymentRequest.json +3 -0
- package/schemas/payment/CreatePaymentRequest.json +3 -0
|
@@ -614,6 +614,7 @@ export interface PaymentReferences {
|
|
|
614
614
|
export interface PaymentStatusOutput extends OrderStatusOutput {
|
|
615
615
|
isAuthorized?: boolean | null;
|
|
616
616
|
isRefundable?: boolean | null;
|
|
617
|
+
isRetriable?: boolean | null;
|
|
617
618
|
threeDSecureStatus?: string | null;
|
|
618
619
|
}
|
|
619
620
|
export interface PersonalInformation {
|
|
@@ -768,6 +769,7 @@ export interface Seller {
|
|
|
768
769
|
geocode?: string | null;
|
|
769
770
|
id?: string | null;
|
|
770
771
|
invoiceNumber?: string | null;
|
|
772
|
+
isForeignRetailer?: boolean | null;
|
|
771
773
|
mcc?: string | null;
|
|
772
774
|
name?: string | null;
|
|
773
775
|
phoneNumber?: 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.9.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.9.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": {
|