Skip to content

Commit

Permalink
Published latest changes
Browse files Browse the repository at this point in the history
  • Loading branch information
cardpay-ci committed Jul 30, 2024
1 parent e6ef202 commit 1f3b5b5
Show file tree
Hide file tree
Showing 15 changed files with 1,807 additions and 94 deletions.
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
The Unlimit API uses HTTP verbs and a RESTful endpoint structure. Request and response payloads are formatted as JSON.

- API version: 3.0
- PHP SDK version: 3.73.6
- PHP SDK version: 3.80.7

For more information, please visit [https://integration.cardpay.com](https://integration.cardpay.com)

Expand Down Expand Up @@ -87,6 +87,7 @@ composer install

## Documentation for models

- [AccountDetailsRequest](lib/model/AccountDetailsRequest.php)
- [ApiError](lib/model/ApiError.php)
- [ApiTokens](lib/model/ApiTokens.php)
- [AuthDataRequest](lib/model/AuthDataRequest.php)
Expand All @@ -96,6 +97,8 @@ composer install
- [AuthenticationDataRequest](lib/model/AuthenticationDataRequest.php)
- [AuthenticationDataResponse](lib/model/AuthenticationDataResponse.php)
- [AuthenticationError](lib/model/AuthenticationError.php)
- [AuthenticationPatchRequest](lib/model/AuthenticationPatchRequest.php)
- [AuthenticationUpdateResponse](lib/model/AuthenticationUpdateResponse.php)
- [BadRequestError](lib/model/BadRequestError.php)
- [BankCardPayoutData](lib/model/BankCardPayoutData.php)
- [BillingAddress](lib/model/BillingAddress.php)
Expand Down Expand Up @@ -135,6 +138,7 @@ composer install
- [InvoiceRequest](lib/model/InvoiceRequest.php)
- [Item](lib/model/Item.php)
- [LimitInfoResponse](lib/model/LimitInfoResponse.php)
- [MapOfstringAndstring](lib/model/MapOfstringAndstring.php)
- [MobileTokenRequest](lib/model/MobileTokenRequest.php)
- [MobileTokenResponse](lib/model/MobileTokenResponse.php)
- [NextSubscriptionPayment](lib/model/NextSubscriptionPayment.php)
Expand Down Expand Up @@ -184,7 +188,6 @@ composer install
- [PayoutUpdateRequest](lib/model/PayoutUpdateRequest.php)
- [PayoutUpdateResponse](lib/model/PayoutUpdateResponse.php)
- [PayoutsList](lib/model/PayoutsList.php)
- [PixAccountDetailsRequest](lib/model/PixAccountDetailsRequest.php)
- [PixAccountDetailsResponse](lib/model/PixAccountDetailsResponse.php)
- [Plan](lib/model/Plan.php)
- [PlanDataList](lib/model/PlanDataList.php)
Expand Down Expand Up @@ -262,6 +265,7 @@ composer install
- [UpdatedPlanData](lib/model/UpdatedPlanData.php)
- [UpdatedSubscriptionData](lib/model/UpdatedSubscriptionData.php)
- [UpdatedSubscriptionRecurringData](lib/model/UpdatedSubscriptionRecurringData.php)
- [AuthenticationConfirm3dsRequest](lib/model/AuthenticationConfirm3dsRequest.php)
- [PaymentConfirm3dsRequest](lib/model/PaymentConfirm3dsRequest.php)
- [PaymentExecuteRequest](lib/model/PaymentExecuteRequest.php)
- [PaymentIncrementRequest](lib/model/PaymentIncrementRequest.php)
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cardpay/php-sdk-v3",
"version": "3.73.6",
"version": "3.80.7",
"description": "PHP SDK for Unlimit API v3",
"keywords": [
"unlimit",
Expand Down
4 changes: 2 additions & 2 deletions lib/Configuration.php
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ class Configuration
*
* @var string
*/
protected $userAgent = 'CardpaySdk/3.73.6/PHP';
protected $userAgent = 'CardpaySdk/3.80.7/PHP';

/**
* Debug switch (default set to false)
Expand Down Expand Up @@ -371,7 +371,7 @@ public static function toDebugReport()
$report .= ' OS: ' . php_uname() . PHP_EOL;
$report .= ' PHP Version: ' . PHP_VERSION . PHP_EOL;
$report .= ' OpenAPI Spec Version: 3.0' . PHP_EOL;
$report .= ' SDK Package Version: 3.73.6' . PHP_EOL;
$report .= ' SDK Package Version: 3.80.7' . PHP_EOL;
$report .= ' Temp Folder Path: ' . self::getDefaultConfiguration()->getTempFolderPath() . PHP_EOL;

return $report;
Expand Down
Loading

0 comments on commit 1f3b5b5

Please sign in to comment.