-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
v4.0.0: Collection Items, Catalog Sync Loyalty Transactions retrieval…
… & Guzzle's v7 adjustments (#15) ## v4.0.0 New features support: - [Partial Returns](https://docs.talon.one/docs/product/applications/displaying-customer-sessions#returning-individual-cart-items) - [Collection Items](https://docs.talon.one/docs/product/campaigns/managing-collections) - [Catalog Sync](https://docs.talon.one/docs/product/campaigns/managing-collections) - [Effects in getCustomerSession](https://docs.talon.one/integration-api#tag/Customer-sessions/operation/getCustomerSession) - [Loyalty Transactions retrieval](https://docs.talon.one/integration-api#tag/Loyalty/operation/getLoyaltyTransactions) - and more... ###⚠️ Upgrade Guzzle dependency to `^7` Please note that starting version 4.0.0, we have updated the dependency of `guzzlehttp/guzzle` from `>= 5.3` --> `^7`, this is the reason we have also bumped a major version of the library itself. The code is now adjusted to use now guzzle's new functions when building parameters similarly to the development versions [3.5.0](https://packagist.org/packages/talon-one/talon-one-client#v3.5.0.x-dev) and [3.6.0](https://packagist.org/packages/talon-one/talon-one-client#v3.6.0.x-dev). If you have already update the dependency in your code to one of those versions, upgrading to v4.0.0 **should impose no more further changes**. ## Commit Summary * Initial Commit * Fix guzzlehttp dependency and references * Fix minor mistakes in readme examples * Fix async coupons name conflicts * Make it v4.0.0.0
- Loading branch information
Showing
966 changed files
with
94,696 additions
and
13,763 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,30 @@ | ||
{ | ||
"name": "talon-one/talon-one-client", | ||
"type": "library", | ||
"version": "3.4.0", | ||
"description": "The Talon.One API is used to manage applications and campaigns, as well as to integrate with your application. The operations in the _Integration API_ section are used to integrate with our platform, while the other operations are used to manage applications and campaigns.", | ||
"version": "4.0.0", | ||
"description": "Use the Talon.One API to integrate with your application and to manage applications and campaigns: - Use the operations in the [Integration API section](#integration-api) are used to integrate with our platform - Use the operation in the [Management API section](#management-api) to manage applications and campaigns. ## Determining the base URL of the endpoints The API is available at the same hostname as your Campaign Manager deployment. For example, if you are reading this page at `https://mycompany.talon.one/docs/api/`, the URL for the [updateCustomerSession](https://docs.talon.one/integration-api/#operation/updateCustomerSessionV2) endpoint is `https://mycompany.talon.one/v2/customer_sessions/{Id}`", | ||
"keywords": [ | ||
"talon-one", | ||
"openapi-generator", | ||
"sdk", | ||
"rest", | ||
"api" | ||
], | ||
"homepage": "https://developers.talon.one/SDKs/PHP", | ||
"homepage": "https://docs.talon.one/docs/dev/sdks/php", | ||
"license": "MIT", | ||
"authors": [ | ||
{ | ||
"name": "Talon.One Developers", | ||
"email": "[email protected]", | ||
"homepage": "https://developers.talon.one" | ||
"homepage": "https://docs.talon.one" | ||
} | ||
], | ||
"require": { | ||
"php": ">=7.1", | ||
"ext-curl": "*", | ||
"ext-json": "*", | ||
"ext-mbstring": "*", | ||
"guzzlehttp/guzzle": ">= 5.3" | ||
"guzzlehttp/guzzle": "^7" | ||
}, | ||
"require-dev": { | ||
"phpunit/phpunit": "^7.4", | ||
|
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# # AddItemCatalogAction | ||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**sku** | **string** | The unique SKU of the item to add. | | ||
**price** | **float** | Price of the item. | [optional] | ||
**attributes** | [**object**](.md) | The attributes of the item to add. | [optional] | ||
**replaceIfExists** | **bool** | Indicates whether to replace the attributes of the item if the same SKU exists. | [optional] [default to false] | ||
|
||
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.