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

Commit

Permalink
Merge pull request #44 from PaylineByMonext/feature/upgradeV4.59
Browse files Browse the repository at this point in the history
UPGRADE PAYLINE 4.59
  • Loading branch information
CharlelieBouvier authored Aug 20, 2019
2 parents 2d0e1a7 + 7fa569d commit 22d0fb0
Show file tree
Hide file tree
Showing 15 changed files with 4,405 additions and 140 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ phpunit.xml
/.settings/
/.buildpath
/.project
/.idea
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
* 4.59 (2019-07-28)
* wsdl upgrade
* new threeDSInfo parameter for manageWebWallet and doWebPayment
* new browser in threeDSInfo
* new sdk in threeDSInfo
* new streetNumber, addressCreateDate and email in address
* new resultContainer and authenticationResult in Authentication3DSecure
* new buyerExtended, merchantAuthentication and loyaltyMemberType in buyer
* new discountAmount, otaPackageType, otaDestinationCountry, bookingReference, orderDetail, orderExtended and orderOTA in order
* new seller and sellerType in OrderDetail
* new cumulatedAmount in payment
* new billingBank in recurring

* 4.54 & 4.55 (2018-06-27)
* new asynchronousRetryTimeout parameter for doAuthorization and doWebPayment (4.55)
* new miscData parameter for isRegistered (4.54)
Expand Down
8 changes: 7 additions & 1 deletion src/Payline/Address.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,10 @@ class Address
public $phoneType;

public $phone;
}

public $streetNumber;

public $addressCreateDate;

public $email;
}
6 changes: 5 additions & 1 deletion src/Payline/Authentication3DSecure.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,8 @@ class Authentication3DSecure
public $PaResStatus;

public $VeResStatus;
}

public $resultContainer;

public $authenticationResult;
}
29 changes: 29 additions & 0 deletions src/Payline/Browser.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
<?php
/*
* This file is part of the Payline package.
*
* (c) Monext <http://www.monext.net>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Payline;
class Browser {
public $acceptHeader;

public $javaEnabled;

public $javascriptEnabled;

public $language;

public $colorDepth;

public $screenHeight;

public $screenWidth;

public $timeZoneOffset;

public $userAgent;
}
8 changes: 7 additions & 1 deletion src/Payline/Buyer.php
Original file line number Diff line number Diff line change
Expand Up @@ -67,4 +67,10 @@ class Buyer
public $isRooted;

public $hasTimezoneMismatch;
}

public $buyerExtended;

public $merchantAuthentication;

public $loyaltyMemberType;
}
16 changes: 16 additions & 0 deletions src/Payline/MerchantAuthentication.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<?php

/*
* This file is part of the Payline package.
*
* (c) Monext <http://www.monext.net>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Payline;
class MerchantAuthentication {
public $method;

public $date;
}
16 changes: 15 additions & 1 deletion src/Payline/Order.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,18 @@ class Order
public $deliveryExpectedDelay;

public $deliveryCharge;
}

public $discountAmount;

public $otaPackageType;

public $otaDestinationCountry;

public $bookingReference;

public $orderDetail;

public $orderExtended;

public $orderOTA;
}
6 changes: 5 additions & 1 deletion src/Payline/OrderDetail.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,8 @@ class OrderDetail
public $additionalData;

public $taxRate;
}

public $seller;

public $sellerType;
}
Loading

0 comments on commit 22d0fb0

Please sign in to comment.