Skip to content

Commit 4da508f

Browse files
author
cardpay-ci
committed
Published latest changes
1 parent 933ca0c commit 4da508f

58 files changed

Lines changed: 6716 additions & 143 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

LICENSE

Lines changed: 0 additions & 21 deletions
This file was deleted.

README.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
The Unlimit API uses HTTP verbs and a RESTful endpoint structure. Request and response payloads are formatted as JSON.
33

44
- API version: 3.0
5-
- PHP SDK version: 3.56.0
5+
- PHP SDK version: 3.64.18
66

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

@@ -89,13 +89,17 @@ composer install
8989

9090
- [ApiError](lib/model/ApiError.php)
9191
- [ApiTokens](lib/model/ApiTokens.php)
92+
- [AuthDataRequest](lib/model/AuthDataRequest.php)
93+
- [AuthenticationCreateResponse](lib/model/AuthenticationCreateResponse.php)
9294
- [AuthenticationCustomer](lib/model/AuthenticationCustomer.php)
9395
- [AuthenticationData](lib/model/AuthenticationData.php)
96+
- [AuthenticationDataRequest](lib/model/AuthenticationDataRequest.php)
9497
- [AuthenticationDataResponse](lib/model/AuthenticationDataResponse.php)
9598
- [AuthenticationError](lib/model/AuthenticationError.php)
9699
- [BadRequestError](lib/model/BadRequestError.php)
97100
- [BankCardPayoutData](lib/model/BankCardPayoutData.php)
98101
- [BillingAddress](lib/model/BillingAddress.php)
102+
- [BrowserInfo](lib/model/BrowserInfo.php)
99103
- [CardInfoRequest](lib/model/CardInfoRequest.php)
100104
- [CardInfoResponse](lib/model/CardInfoResponse.php)
101105
- [ChangeSubscriptionStatusClaimResponse](lib/model/ChangeSubscriptionStatusClaimResponse.php)
@@ -184,12 +188,14 @@ composer install
184188
- [PixAccountDetailsResponse](lib/model/PixAccountDetailsResponse.php)
185189
- [Plan](lib/model/Plan.php)
186190
- [PlanDataList](lib/model/PlanDataList.php)
191+
- [PlanQuantity](lib/model/PlanQuantity.php)
187192
- [PlanUpdateRequest](lib/model/PlanUpdateRequest.php)
188193
- [PlanUpdateRequestPlanData](lib/model/PlanUpdateRequestPlanData.php)
189194
- [PlanUpdateResponse](lib/model/PlanUpdateResponse.php)
190195
- [RecurringCallback](lib/model/RecurringCallback.php)
191196
- [RecurringCreationRequest](lib/model/RecurringCreationRequest.php)
192197
- [RecurringCustomer](lib/model/RecurringCustomer.php)
198+
- [RecurringData](lib/model/RecurringData.php)
193199
- [RecurringFilterParameters](lib/model/RecurringFilterParameters.php)
194200
- [RecurringGatewayCreationResponse](lib/model/RecurringGatewayCreationResponse.php)
195201
- [RecurringGatewayResponseRecurringData](lib/model/RecurringGatewayResponseRecurringData.php)
@@ -241,6 +247,7 @@ composer install
241247
- [SubscriptionGetResponse](lib/model/SubscriptionGetResponse.php)
242248
- [SubscriptionGetResponsePlan](lib/model/SubscriptionGetResponsePlan.php)
243249
- [SubscriptionList](lib/model/SubscriptionList.php)
250+
- [SubscriptionPendingPlanUpdate](lib/model/SubscriptionPendingPlanUpdate.php)
244251
- [SubscriptionUpdateRequest](lib/model/SubscriptionUpdateRequest.php)
245252
- [SubscriptionUpdateRequestSubscriptionData](lib/model/SubscriptionUpdateRequestSubscriptionData.php)
246253
- [SubscriptionUpdateResponse](lib/model/SubscriptionUpdateResponse.php)
@@ -257,9 +264,11 @@ composer install
257264
- [UpdatedSubscriptionRecurringData](lib/model/UpdatedSubscriptionRecurringData.php)
258265
- [PaymentConfirm3dsRequest](lib/model/PaymentConfirm3dsRequest.php)
259266
- [PaymentExecuteRequest](lib/model/PaymentExecuteRequest.php)
267+
- [PaymentIncrementRequest](lib/model/PaymentIncrementRequest.php)
260268
- [PaymentUpdateRequest](lib/model/PaymentUpdateRequest.php)
261269
- [RecurringConfirm3dsRequest](lib/model/RecurringConfirm3dsRequest.php)
262270
- [RecurringExecuteRequest](lib/model/RecurringExecuteRequest.php)
271+
- [RecurringIncrementRequest](lib/model/RecurringIncrementRequest.php)
263272
- [RecurringUpdateRequest](lib/model/RecurringUpdateRequest.php)
264273

265274

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cardpay/php-sdk-v3",
3-
"version": "3.56.0",
3+
"version": "3.64.18",
44
"description": "PHP SDK for Unlimit API v3",
55
"keywords": [
66
"unlimit",

lib/Configuration.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ class Configuration
5959
*
6060
* @var string
6161
*/
62-
protected $userAgent = 'CardpaySdk/3.56.0/PHP';
62+
protected $userAgent = 'CardpaySdk/3.64.18/PHP';
6363

6464
/**
6565
* Debug switch (default set to false)
@@ -371,7 +371,7 @@ public static function toDebugReport()
371371
$report .= ' OS: ' . php_uname() . PHP_EOL;
372372
$report .= ' PHP Version: ' . PHP_VERSION . PHP_EOL;
373373
$report .= ' OpenAPI Spec Version: 3.0' . PHP_EOL;
374-
$report .= ' SDK Package Version: 3.56.0' . PHP_EOL;
374+
$report .= ' SDK Package Version: 3.64.18' . PHP_EOL;
375375
$report .= ' Temp Folder Path: ' . self::getDefaultConfiguration()->getTempFolderPath() . PHP_EOL;
376376

377377
return $report;

0 commit comments

Comments
 (0)