Skip to content

Commit c98aba5

Browse files
Release 5.1.0
1 parent 0577ddd commit c98aba5

File tree

638 files changed

+2371
-840
lines changed

Some content is hidden

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

638 files changed

+2371
-840
lines changed

README.md

Lines changed: 24 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -105,24 +105,39 @@ Web Api client: [*link*](https://checkout.postfinance.ch//api/client)<br>
105105
&nbsp;&nbsp;&nbsp;&nbsp;Deactivate an account
106106
<br><br>
107107
- <strong>AnalyticsQueriesService</strong><br>
108-
&nbsp;&nbsp;* <code>deleteAnalyticsQueriesQueryToken</code>
109-
&nbsp;&nbsp;&nbsp;&nbsp;<strong>DELETE</strong> /analytics/queries/{queryToken}
110-
&nbsp;&nbsp;&nbsp;&nbsp;Cancel a query execution
108+
&nbsp;&nbsp;* <code>deleteAnalyticsQueriesQueryExternalIdQueryExternalId</code>
109+
&nbsp;&nbsp;&nbsp;&nbsp;<strong>DELETE</strong> /analytics/queries/queryExternalId/{queryExternalId}
110+
&nbsp;&nbsp;&nbsp;&nbsp;Cancel a query execution, identifying it by its external id.
111+
<br><br>
112+
- <strong>AnalyticsQueriesService</strong><br>
113+
&nbsp;&nbsp;* <code>deleteAnalyticsQueriesQueryTokenQueryToken</code>
114+
&nbsp;&nbsp;&nbsp;&nbsp;<strong>DELETE</strong> /analytics/queries/queryToken/{queryToken}
115+
&nbsp;&nbsp;&nbsp;&nbsp;Cancel a query execution, identifying it by its query token.
111116
<br><br>
112117
- <strong>AnalyticsQueriesService</strong><br>
113118
&nbsp;&nbsp;* <code>getAnalyticsQueries</code>
114119
&nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /analytics/queries
115120
&nbsp;&nbsp;&nbsp;&nbsp;Get portion of query executions for account
116121
<br><br>
117122
- <strong>AnalyticsQueriesService</strong><br>
118-
&nbsp;&nbsp;* <code>getAnalyticsQueriesQueryToken</code>
119-
&nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /analytics/queries/{queryToken}
120-
&nbsp;&nbsp;&nbsp;&nbsp;Retrieve a query execution information
123+
&nbsp;&nbsp;* <code>getAnalyticsQueriesQueryExternalIdQueryExternalId</code>
124+
&nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /analytics/queries/queryExternalId/{queryExternalId}
125+
&nbsp;&nbsp;&nbsp;&nbsp;Retrieve a query execution information by its external id
126+
<br><br>
127+
- <strong>AnalyticsQueriesService</strong><br>
128+
&nbsp;&nbsp;* <code>getAnalyticsQueriesQueryExternalIdQueryExternalIdResult</code>
129+
&nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /analytics/queries/queryExternalId/{queryExternalId}/result
130+
&nbsp;&nbsp;&nbsp;&nbsp;Generate a temporary URL to download the query result. It retrieves the query by its external id
131+
<br><br>
132+
- <strong>AnalyticsQueriesService</strong><br>
133+
&nbsp;&nbsp;* <code>getAnalyticsQueriesQueryTokenQueryToken</code>
134+
&nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /analytics/queries/queryToken/{queryToken}
135+
&nbsp;&nbsp;&nbsp;&nbsp;Retrieve a query execution information by its query token
121136
<br><br>
122137
- <strong>AnalyticsQueriesService</strong><br>
123-
&nbsp;&nbsp;* <code>getAnalyticsQueriesQueryTokenResult</code>
124-
&nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /analytics/queries/{queryToken}/result
125-
&nbsp;&nbsp;&nbsp;&nbsp;Generate a temporary URL to download the query result
138+
&nbsp;&nbsp;* <code>getAnalyticsQueriesQueryTokenQueryTokenResult</code>
139+
&nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /analytics/queries/queryToken/{queryToken}/result
140+
&nbsp;&nbsp;&nbsp;&nbsp;Generate a temporary URL to download the query result. It retrieves the query by its query token
126141
<br><br>
127142
- <strong>AnalyticsQueriesService</strong><br>
128143
&nbsp;&nbsp;* <code>postAnalyticsQueriesSubmit</code>

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "postfinancecheckout/sdk",
3-
"version": "5.0.0",
3+
"version": "5.1.0",
44
"description": "PostFinance Checkout SDK for PHP",
55
"keywords": [
66
"postfinancecheckout",

lib/ApiException.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
* @license Apache-2.0
3535
* The Apache License, Version 2.0
3636
* See the full license at https://www.apache.org/licenses/LICENSE-2.0.txt
37-
* @version 5.0.0
37+
* @version 5.1.0
3838
*/
3939
class ApiException extends Exception
4040
{

lib/Auth/AuthenticationInterface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
* @license Apache-2.0
3434
* The Apache License, Version 2.0
3535
* See the full license at https://www.apache.org/licenses/LICENSE-2.0.txt
36-
* @version 5.0.0
36+
* @version 5.1.0
3737
*/
3838
interface AuthenticationInterface
3939
{

lib/Auth/HttpBearerAuth.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
* @license Apache-2.0
3636
* The Apache License, Version 2.0
3737
* See the full license at https://www.apache.org/licenses/LICENSE-2.0.txt
38-
* @version 5.0.0
38+
* @version 5.1.0
3939
*/
4040
class HttpBearerAuth implements AuthenticationInterface
4141
{

lib/Configuration.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
* @license Apache-2.0
3333
* The Apache License, Version 2.0
3434
* See the full license at https://www.apache.org/licenses/LICENSE-2.0.txt
35-
* @version 5.0.0
35+
* @version 5.1.0
3636
*/
3737
class Configuration
3838
{
@@ -139,7 +139,7 @@ public function __construct(int $userId, string $authenticationKey)
139139
$this->userId = $userId;
140140
$this->authenticationKey = $authenticationKey;
141141
$this->defaultHeaders = [
142-
'x-meta-sdk-version' => "5.0.0",
142+
'x-meta-sdk-version' => "5.1.0",
143143
'x-meta-sdk-language' => 'php',
144144
'x-meta-sdk-provider' => "postfinancecheckout",
145145
'x-meta-sdk-language-version' => phpversion()
@@ -429,7 +429,7 @@ public static function toDebugReport(): string
429429
$report .= ' OS: ' . php_uname() . PHP_EOL;
430430
$report .= ' PHP Version: ' . PHP_VERSION . PHP_EOL;
431431
$report .= ' OpenAPI Spec Version: 2.0' . PHP_EOL;
432-
$report .= ' SDK Package Version: 5.0.0' . PHP_EOL;
432+
$report .= ' SDK Package Version: 5.1.0' . PHP_EOL;
433433
$report .= ' Temp Folder Path: ' . self::getDefaultConfiguration()->getTempFolderPath() . PHP_EOL;
434434

435435
return $report;

lib/HeaderSelector.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
* @license Apache-2.0
3333
* The Apache License, Version 2.0
3434
* See the full license at https://www.apache.org/licenses/LICENSE-2.0.txt
35-
* @version 5.0.0
35+
* @version 5.1.0
3636
*/
3737
class HeaderSelector
3838
{

lib/Model/AbstractAccountUpdate.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
* @license Apache-2.0
3636
* The Apache License, Version 2.0
3737
* See the full license at https://www.apache.org/licenses/LICENSE-2.0.txt
38-
* @version 5.0.0
38+
* @version 5.1.0
3939
* @implements \ArrayAccess<string, mixed>
4040
*/
4141
class AbstractAccountUpdate implements ModelInterface, ArrayAccess, \JsonSerializable

lib/Model/AbstractApplicationUserUpdate.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
* @license Apache-2.0
3636
* The Apache License, Version 2.0
3737
* See the full license at https://www.apache.org/licenses/LICENSE-2.0.txt
38-
* @version 5.0.0
38+
* @version 5.1.0
3939
* @implements \ArrayAccess<string, mixed>
4040
*/
4141
class AbstractApplicationUserUpdate implements ModelInterface, ArrayAccess, \JsonSerializable

lib/Model/AbstractCustomerActive.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
* @license Apache-2.0
3636
* The Apache License, Version 2.0
3737
* See the full license at https://www.apache.org/licenses/LICENSE-2.0.txt
38-
* @version 5.0.0
38+
* @version 5.1.0
3939
* @implements \ArrayAccess<string, mixed>
4040
*/
4141
class AbstractCustomerActive implements ModelInterface, ArrayAccess, \JsonSerializable

0 commit comments

Comments
 (0)