Skip to content

Commit 68dca3f

Browse files
authored
Release 2.9.0 (square#60)
1 parent 967811c commit 68dca3f

Some content is hidden

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

45 files changed

+2317
-32
lines changed

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ before_install:
1414
- composer config -g repositories.packagist composer https://packagist.jp
1515
- composer install -vvv
1616
install:
17-
- openssl aes-256-cbc -K $encrypted_c2c0feadb429_key -iv $encrypted_c2c0feadb429_iv -in ./travis-ci/accounts.enc -out ./travis-ci/accounts.json -d
17+
- openssl aes-256-cbc -K $encrypted_afef0992877c_key -iv $encrypted_afef0992877c_iv -in ./travis-ci/accounts.enc -out ./travis-ci/accounts.json -d
1818
script:
1919
- vendor/bin/phpunit test

CHANGES.md

+20
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,25 @@
11
# Change Log
22

3+
## Version 2.9.0 (2018-06-28)
4+
5+
We have added search functionality to the Connect v2 Customer API.
6+
7+
### New features and Improvements: Customer API (Connect v2)
8+
9+
* `SearchCustomers` endpoint — retrieves groups of customer profiles
10+
based on a related characteristic. For example, retrieving all customers
11+
created in the past 24 hours.
12+
* `creation_source` field is now available on `Customer` entities. The creation
13+
source exposes the process that created a customer profile. For example, if
14+
a customer is created using the API, the creation source will be
15+
`THIRD_PARTY`.
16+
* **Instant Profiles** are now exposed in the following endpoints:
17+
`RetrieveCustomer`, `SearchCustomers`, `UpdateCustomer`, `DeleteCustomer`.
18+
19+
### Fixes: Inventory SDK (Connect v1)
20+
21+
* Fix SDK request property `adjustment_type` in V1 Adjust Inventory.
22+
323
## Version 2.8.0 (2018-05-24)
424

525
We have added sorting functionality to the Connect v2 Customer API, updated

README.md

+10
Original file line numberDiff line numberDiff line change
@@ -143,6 +143,7 @@ Class | Method | HTTP request | Description
143143
*CustomersApi* | [**deleteCustomerCard**](docs/Api/CustomersApi.md#deletecustomercard) | **DELETE** /v2/customers/{customer_id}/cards/{card_id} | DeleteCustomerCard
144144
*CustomersApi* | [**listCustomers**](docs/Api/CustomersApi.md#listcustomers) | **GET** /v2/customers | ListCustomers
145145
*CustomersApi* | [**retrieveCustomer**](docs/Api/CustomersApi.md#retrievecustomer) | **GET** /v2/customers/{customer_id} | RetrieveCustomer
146+
*CustomersApi* | [**searchCustomers**](docs/Api/CustomersApi.md#searchcustomers) | **POST** /v2/customers/search | SearchCustomers
146147
*CustomersApi* | [**updateCustomer**](docs/Api/CustomersApi.md#updatecustomer) | **PUT** /v2/customers/{customer_id} | UpdateCustomer
147148
*LocationsApi* | [**listLocations**](docs/Api/LocationsApi.md#listlocations) | **GET** /v2/locations | ListLocations
148149
*OrdersApi* | [**batchRetrieveOrders**](docs/Api/OrdersApi.md#batchretrieveorders) | **POST** /v2/locations/{location_id}/orders/batch-retrieve | BatchRetrieveOrders
@@ -295,8 +296,14 @@ Class | Method | HTTP request | Description
295296
- [CreateRefundResponse](docs/Model/CreateRefundResponse.md)
296297
- [Currency](docs/Model/Currency.md)
297298
- [Customer](docs/Model/Customer.md)
299+
- [CustomerCreationSource](docs/Model/CustomerCreationSource.md)
300+
- [CustomerCreationSourceFilter](docs/Model/CustomerCreationSourceFilter.md)
301+
- [CustomerFilter](docs/Model/CustomerFilter.md)
298302
- [CustomerGroupInfo](docs/Model/CustomerGroupInfo.md)
303+
- [CustomerInclusionExclusion](docs/Model/CustomerInclusionExclusion.md)
299304
- [CustomerPreferences](docs/Model/CustomerPreferences.md)
305+
- [CustomerQuery](docs/Model/CustomerQuery.md)
306+
- [CustomerSort](docs/Model/CustomerSort.md)
300307
- [CustomerSortField](docs/Model/CustomerSortField.md)
301308
- [DeleteCatalogObjectRequest](docs/Model/DeleteCatalogObjectRequest.md)
302309
- [DeleteCatalogObjectResponse](docs/Model/DeleteCatalogObjectResponse.md)
@@ -350,6 +357,8 @@ Class | Method | HTTP request | Description
350357
- [RetrieveTransactionResponse](docs/Model/RetrieveTransactionResponse.md)
351358
- [SearchCatalogObjectsRequest](docs/Model/SearchCatalogObjectsRequest.md)
352359
- [SearchCatalogObjectsResponse](docs/Model/SearchCatalogObjectsResponse.md)
360+
- [SearchCustomersRequest](docs/Model/SearchCustomersRequest.md)
361+
- [SearchCustomersResponse](docs/Model/SearchCustomersResponse.md)
353362
- [SortOrder](docs/Model/SortOrder.md)
354363
- [TaxCalculationPhase](docs/Model/TaxCalculationPhase.md)
355364
- [TaxInclusionType](docs/Model/TaxInclusionType.md)
@@ -359,6 +368,7 @@ Class | Method | HTTP request | Description
359368
- [TenderCardDetailsStatus](docs/Model/TenderCardDetailsStatus.md)
360369
- [TenderCashDetails](docs/Model/TenderCashDetails.md)
361370
- [TenderType](docs/Model/TenderType.md)
371+
- [TimeRange](docs/Model/TimeRange.md)
362372
- [Transaction](docs/Model/Transaction.md)
363373
- [TransactionProduct](docs/Model/TransactionProduct.md)
364374
- [UpdateCustomerRequest](docs/Model/UpdateCustomerRequest.md)

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "square/connect",
3-
"version": "2.8.0",
3+
"version": "2.9.0",
44
"description": "PHP client library for the Square Connect v2 API",
55
"keywords": [
66
"swagger",

docs/Api/CustomersApi.md

+53-4
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ Method | HTTP request | Description
1010
[**deleteCustomerCard**](CustomersApi.md#deleteCustomerCard) | **DELETE** /v2/customers/{customer_id}/cards/{card_id} | DeleteCustomerCard
1111
[**listCustomers**](CustomersApi.md#listCustomers) | **GET** /v2/customers | ListCustomers
1212
[**retrieveCustomer**](CustomersApi.md#retrieveCustomer) | **GET** /v2/customers/{customer_id} | RetrieveCustomer
13+
[**searchCustomers**](CustomersApi.md#searchCustomers) | **POST** /v2/customers/search | SearchCustomers
1314
[**updateCustomer**](CustomersApi.md#updateCustomer) | **PUT** /v2/customers/{customer_id} | UpdateCustomer
1415

1516

@@ -226,8 +227,8 @@ SquareConnect\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACC
226227

227228
$api_instance = new SquareConnect\Api\CustomersApi();
228229
$cursor = "cursor_example"; // string | A pagination cursor returned by a previous call to this endpoint. Provide this to retrieve the next set of results for your original query. See [Paginating results](#paginatingresults) for more information.
229-
$sort_field = "sort_field_example"; // string | Indicates how Customers should be sorted. Default: `DEFAULT`.
230-
$sort_order = "sort_order_example"; // string | Indicates whether Customers should be sorted in ascending (`ASC`) or descending (`DESC`) order. Default: `ASC`.
230+
$sort_field = "sort_field_example"; // string | Indicates how Customers should be sorted. Default: `DEFAULT`. See [CustomerSortField](#type-customersortfield) for possible values.
231+
$sort_order = "sort_order_example"; // string | Indicates whether Customers should be sorted in ascending (`ASC`) or descending (`DESC`) order. Default: `ASC`. See [SortOrder](#type-sortorder) for possible values.
231232

232233
try {
233234
$result = $api_instance->listCustomers($cursor, $sort_field, $sort_order);
@@ -243,8 +244,8 @@ try {
243244
Name | Type | Description | Notes
244245
------------- | ------------- | ------------- | -------------
245246
**cursor** | **string**| A pagination cursor returned by a previous call to this endpoint. Provide this to retrieve the next set of results for your original query. See [Paginating results](#paginatingresults) for more information. | [optional]
246-
**sort_field** | **string**| Indicates how Customers should be sorted. Default: `DEFAULT`. | [optional]
247-
**sort_order** | **string**| Indicates whether Customers should be sorted in ascending (`ASC`) or descending (`DESC`) order. Default: `ASC`. | [optional]
247+
**sort_field** | **string**| Indicates how Customers should be sorted. Default: `DEFAULT`. See [CustomerSortField](#type-customersortfield) for possible values. | [optional]
248+
**sort_order** | **string**| Indicates whether Customers should be sorted in ascending (`ASC`) or descending (`DESC`) order. Default: `ASC`. See [SortOrder](#type-sortorder) for possible values. | [optional]
248249

249250
### Return type
250251

@@ -309,6 +310,54 @@ Name | Type | Description | Notes
309310

310311
[[Back to top]](#) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to README]](../../README.md)
311312

313+
# **searchCustomers**
314+
> \SquareConnect\Model\SearchCustomersResponse searchCustomers($body)
315+
316+
SearchCustomers
317+
318+
Searches a business's customers.
319+
320+
### Example
321+
```php
322+
<?php
323+
require_once(__DIR__ . '/vendor/autoload.php');
324+
325+
// Configure OAuth2 access token for authorization: oauth2
326+
SquareConnect\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');
327+
328+
$api_instance = new SquareConnect\Api\CustomersApi();
329+
$body = new \SquareConnect\Model\SearchCustomersRequest(); // \SquareConnect\Model\SearchCustomersRequest | An object containing the fields to POST for the request. See the corresponding object definition for field details.
330+
331+
try {
332+
$result = $api_instance->searchCustomers($body);
333+
print_r($result);
334+
} catch (Exception $e) {
335+
echo 'Exception when calling CustomersApi->searchCustomers: ', $e->getMessage(), PHP_EOL;
336+
}
337+
?>
338+
```
339+
340+
### Parameters
341+
342+
Name | Type | Description | Notes
343+
------------- | ------------- | ------------- | -------------
344+
**body** | [**\SquareConnect\Model\SearchCustomersRequest**](../Model/SearchCustomersRequest.md)| An object containing the fields to POST for the request. See the corresponding object definition for field details. |
345+
346+
### Return type
347+
348+
[**\SquareConnect\Model\SearchCustomersResponse**](../Model/SearchCustomersResponse.md)
349+
350+
### Authorization
351+
352+
[oauth2](../../README.md#oauth2)
353+
354+
### HTTP request headers
355+
356+
- **Content-Type**: application/json
357+
- **Accept**: application/json
358+
359+
[[Back to top]](#) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to README]](../../README.md)
360+
312361
# **updateCustomer**
313362
> \SquareConnect\Model\UpdateCustomerResponse updateCustomer($customer_id, $body)
314363

docs/Model/Customer.md

+1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ Name | Getter | Setter | Type | Description | Notes
1818
**note** | getNote() | setNote($value) | **string** | A note to associate with the customer. | [optional]
1919
**preferences** | getPreferences() | setPreferences($value) | [**\SquareConnect\Model\CustomerPreferences**](CustomerPreferences.md) | The customer&#39;s preferences. | [optional]
2020
**groups** | getGroups() | setGroups($value) | [**\SquareConnect\Model\CustomerGroupInfo[]**](CustomerGroupInfo.md) | The groups the customer belongs to. | [optional]
21+
**creation_source** | getCreationSource() | setCreationSource($value) | **string** | A creation source represents the method used to create the customer profile. | [optional]
2122

2223
Note: All properties are protected and only accessed via getters and setters.
2324

docs/Model/CustomerCreationSource.md

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# CustomerCreationSource
2+
3+
## Properties
4+
Name | Getter | Setter | Type | Description | Notes
5+
------------ | ------------- | ------------- | ------------- | ------------- | -------------
6+
7+
Note: All properties are protected and only accessed via getters and setters.
8+
9+
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
10+
+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# CustomerCreationSourceFilter
2+
3+
## Properties
4+
Name | Getter | Setter | Type | Description | Notes
5+
------------ | ------------- | ------------- | ------------- | ------------- | -------------
6+
**values** | getValues() | setValues($value) | **string[]** | The list of creation sources used as filtering criteria. | [optional]
7+
**rule** | getRule() | setRule($value) | **string** | Indicates whether a customer profile matching the filter criteria should be included in the result or excluded from the result. Default: &#x60;INCLUDE&#x60;. See [CustomerInclusionExclusion](#type-customerinclusionexclusion) for possible values. | [optional]
8+
9+
Note: All properties are protected and only accessed via getters and setters.
10+
11+
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
12+

docs/Model/CustomerFilter.md

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# CustomerFilter
2+
3+
## Properties
4+
Name | Getter | Setter | Type | Description | Notes
5+
------------ | ------------- | ------------- | ------------- | ------------- | -------------
6+
**creation_source** | getCreationSource() | setCreationSource($value) | [**\SquareConnect\Model\CustomerCreationSourceFilter**](CustomerCreationSourceFilter.md) | A filter to select customers based on their creation source. | [optional]
7+
**created_at** | getCreatedAt() | setCreatedAt($value) | [**\SquareConnect\Model\TimeRange**](TimeRange.md) | A filter to select customers based on when they were created. | [optional]
8+
**updated_at** | getUpdatedAt() | setUpdatedAt($value) | [**\SquareConnect\Model\TimeRange**](TimeRange.md) | A filter to select customers based on when they were updated. | [optional]
9+
10+
Note: All properties are protected and only accessed via getters and setters.
11+
12+
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
13+
+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# CustomerInclusionExclusion
2+
3+
## Properties
4+
Name | Getter | Setter | Type | Description | Notes
5+
------------ | ------------- | ------------- | ------------- | ------------- | -------------
6+
7+
Note: All properties are protected and only accessed via getters and setters.
8+
9+
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
10+

docs/Model/CustomerQuery.md

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# CustomerQuery
2+
3+
## Properties
4+
Name | Getter | Setter | Type | Description | Notes
5+
------------ | ------------- | ------------- | ------------- | ------------- | -------------
6+
**filter** | getFilter() | setFilter($value) | [**\SquareConnect\Model\CustomerFilter**](CustomerFilter.md) | A list of filter criteria. | [optional]
7+
**sort** | getSort() | setSort($value) | [**\SquareConnect\Model\CustomerSort**](CustomerSort.md) | Sort criteria for query results. The default sort behavior is to order customers alphabetically by &#x60;given_name&#x60; and &#x60;last_name&#x60;. | [optional]
8+
9+
Note: All properties are protected and only accessed via getters and setters.
10+
11+
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
12+

docs/Model/CustomerSort.md

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# CustomerSort
2+
3+
## Properties
4+
Name | Getter | Setter | Type | Description | Notes
5+
------------ | ------------- | ------------- | ------------- | ------------- | -------------
6+
**field** | getField() | setField($value) | **string** | The field to sort the results on. It could be the total money spent at the merchant, the date of the first visit (etc). Default value: &#x60;DEFAULT&#x60;. | [optional]
7+
**order** | getOrder() | setOrder($value) | **string** | Indicates the order in which results should be displayed based on the value of the sort field. String comparisons use standard alphabetic comparison to determine order. Strings representing numbers are sorted as strings. Default value: &#x60;ASC&#x60;. | [optional]
8+
9+
Note: All properties are protected and only accessed via getters and setters.
10+
11+
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
12+

docs/Model/ListCustomersRequest.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
Name | Getter | Setter | Type | Description | Notes
55
------------ | ------------- | ------------- | ------------- | ------------- | -------------
66
**cursor** | getCursor() | setCursor($value) | **string** | A pagination cursor returned by a previous call to this endpoint. Provide this to retrieve the next set of results for your original query. See [Paginating results](#paginatingresults) for more information. | [optional]
7-
**sort_field** | getSortField() | setSortField($value) | **string** | Indicates how Customers should be sorted. Default: &#x60;DEFAULT&#x60;. | [optional]
8-
**sort_order** | getSortOrder() | setSortOrder($value) | **string** | Indicates whether Customers should be sorted in ascending (&#x60;ASC&#x60;) or descending (&#x60;DESC&#x60;) order. Default: &#x60;ASC&#x60;. | [optional]
7+
**sort_field** | getSortField() | setSortField($value) | **string** | Indicates how Customers should be sorted. Default: &#x60;DEFAULT&#x60;. See [CustomerSortField](#type-customersortfield) for possible values. | [optional]
8+
**sort_order** | getSortOrder() | setSortOrder($value) | **string** | Indicates whether Customers should be sorted in ascending (&#x60;ASC&#x60;) or descending (&#x60;DESC&#x60;) order. Default: &#x60;ASC&#x60;. See [SortOrder](#type-sortorder) for possible values. | [optional]
99

1010
Note: All properties are protected and only accessed via getters and setters.
1111

docs/Model/OrderLineItem.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
Name | Getter | Setter | Type | Description | Notes
55
------------ | ------------- | ------------- | ------------- | ------------- | -------------
66
**name** | getName() | setName($value) | **string** | The name of the line item. | [optional]
7-
**quantity** | getQuantity() | setQuantity($value) | **string** | The quantity purchased, as a string representation of a number. |
7+
**quantity** | getQuantity() | setQuantity($value) | **string** | The quantity purchased, as a string representation of a number. This string must have a positive integer value. |
88
**note** | getNote() | setNote($value) | **string** | The note of the line item. | [optional]
99
**catalog_object_id** | getCatalogObjectId() | setCatalogObjectId($value) | **string** | The [CatalogItemVariation](#type-catalogitemvariation) id applied to this line item. | [optional]
1010
**variation_name** | getVariationName() | setVariationName($value) | **string** | The name of the variation applied to this line item. | [optional]

docs/Model/SearchCustomersRequest.md

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# SearchCustomersRequest
2+
3+
## Properties
4+
Name | Getter | Setter | Type | Description | Notes
5+
------------ | ------------- | ------------- | ------------- | ------------- | -------------
6+
**cursor** | getCursor() | setCursor($value) | **string** | Include the pagination cursor in subsequent calls to this endpoint to retrieve the next set of results associated with the original query. See [Paginating results](#paginatingresults) for more information. | [optional]
7+
**limit** | getLimit() | setLimit($value) | **int** | A limit on the number of results to be returned in a single page. The limit is advisory - the implementation may return more or fewer results. If the supplied limit is negative, zero, or is higher than the maximum limit of 1,000, it will be ignored. | [optional]
8+
**query** | getQuery() | setQuery($value) | [**\SquareConnect\Model\CustomerQuery**](CustomerQuery.md) | Query customers based on the given conditions and sort order. Calling SearchCustomers without an explicit query parameter will return all customers ordered alphabetically based on &#x60;given_name&#x60; and &#x60;family_name&#x60;. | [optional]
9+
10+
Note: All properties are protected and only accessed via getters and setters.
11+
12+
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
13+

docs/Model/SearchCustomersResponse.md

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# SearchCustomersResponse
2+
3+
## Properties
4+
Name | Getter | Setter | Type | Description | Notes
5+
------------ | ------------- | ------------- | ------------- | ------------- | -------------
6+
**errors** | getErrors() | setErrors($value) | [**\SquareConnect\Model\Error[]**](Error.md) | Any errors that occurred during the request. | [optional]
7+
**customers** | getCustomers() | setCustomers($value) | [**\SquareConnect\Model\Customer[]**](Customer.md) | An array of &#x60;Customer&#x60; objects that match a query. | [optional]
8+
**cursor** | getCursor() | setCursor($value) | **string** | A pagination cursor that can be used during subsequent calls to SearchCustomers to retrieve the next set of results associated with the original query. Pagination cursors are only present when a request succeeds and additional results are available. See [Paginating results](#paginatingresults) for more information. | [optional]
9+
10+
Note: All properties are protected and only accessed via getters and setters.
11+
12+
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
13+

0 commit comments

Comments
 (0)