Skip to content

Commit 6a4b6ff

Browse files
committed
chore: downgrade OpenAPI generator version and update SDK
- Downgrade OpenAPI generator from version 7.12.0 to 6.0.1 - Remove non-nullable checks in model setter methods - Update generator version references across multiple files - Modify API request methods to use config host instead of operation host - Add new Apple Pay domain response model classes
1 parent 54add7e commit 6a4b6ff

File tree

104 files changed

+2440
-12594
lines changed

Some content is hidden

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

104 files changed

+2440
-12594
lines changed

.gitattributes

+22-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,25 @@ test/ export-ignore
22
.openapi-generator/ export-ignore
33
.openapi-generator-ignore export-ignore
44
node_modules/ export-ignore
5-
.yarn/ export-ignore
5+
.yarn/ export-ignore
6+
# Development files
7+
.husky/ export-ignore
8+
.github/ export-ignore
9+
.php-cs-fixer.php export-ignore
10+
.php-cs-fixer.cache export-ignore
11+
.phpunit.result.cache export-ignore
12+
.php-version export-ignore
13+
phpunit.xml export-ignore
14+
commitlint.config.js export-ignore
15+
openapitools.json export-ignore
16+
package.json export-ignore
17+
yarn.lock export-ignore
18+
.yarnrc.yml export-ignore
19+
test.php export-ignore
20+
# Documentation and configuration
21+
CHANGELOG.md export-ignore
22+
openapi.json export-ignore
23+
# IDE and system files
24+
.DS_Store export-ignore
25+
.idea/ export-ignore
26+
.vscode/ export-ignore

.openapi-generator/FILES

+6
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,12 @@ lib/HeaderSelector.php
99
lib/Model/ActivateSubscriptionRequest.php
1010
lib/Model/Address.php
1111
lib/Model/ApplePayDomainRegister200Response.php
12+
lib/Model/ApplePayDomainRegister400Response.php
13+
lib/Model/ApplePayDomainRegister401Response.php
14+
lib/Model/ApplePayDomainRegister404Response.php
15+
lib/Model/ApplePayDomainRegister422Response.php
16+
lib/Model/ApplePayDomainRegister500Response.php
17+
lib/Model/ApplePayDomainRegister503Response.php
1218
lib/Model/BizumValidatePhone200Response.php
1319
lib/Model/CancelPaymentRequest.php
1420
lib/Model/CancelSubscriptionRequest.php

.openapi-generator/VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
7.12.0
1+
6.0.1

config.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"packageName": "MONEI-PHP-SDK",
3-
"artifactVersion": "2.6.8",
3+
"artifactVersion": "2.6.9",
44
"gitHost": "github.com",
55
"gitUserId": "monei",
66
"gitRepoId": "monei-php-sdk"

lib/Api/ApplePayDomainApi.php

+79-187
Large diffs are not rendered by default.

lib/Api/BizumApi.php

+79-187
Large diffs are not rendered by default.

lib/Api/PaymentMethodsApi.php

+87-195
Large diffs are not rendered by default.

lib/Api/PaymentsApi.php

+769-1,820
Large diffs are not rendered by default.

lib/Api/SubscriptionsApi.php

+684-1,628
Large diffs are not rendered by default.

lib/ApiException.php

+4-4
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
*
1818
* The version of the OpenAPI document: 1.5.4
1919
* Generated by: https://openapi-generator.tech
20-
* Generator version: 7.12.0
20+
* OpenAPI Generator version: 6.0.1
2121
*/
2222

2323
/**
@@ -50,7 +50,7 @@ class ApiException extends Exception
5050
/**
5151
* The HTTP header of the server response.
5252
*
53-
* @var string[][]|null
53+
* @var string[]|null
5454
*/
5555
protected $responseHeaders;
5656

@@ -66,7 +66,7 @@ class ApiException extends Exception
6666
*
6767
* @param string $message Error message
6868
* @param int $code HTTP status code
69-
* @param string[][]|null $responseHeaders HTTP response header
69+
* @param string[]|null $responseHeaders HTTP response header
7070
* @param \stdClass|string|null $responseBody HTTP decoded body of the server response either as \stdClass or string
7171
*/
7272
public function __construct($message = "", $code = 0, $responseHeaders = [], $responseBody = null)
@@ -79,7 +79,7 @@ public function __construct($message = "", $code = 0, $responseHeaders = [], $re
7979
/**
8080
* Gets the HTTP response header
8181
*
82-
* @return string[][]|null HTTP response header
82+
* @return string[]|null HTTP response header
8383
*/
8484
public function getResponseHeaders()
8585
{

lib/Configuration.php

+15-26
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
*
1818
* The version of the OpenAPI document: 1.5.4
1919
* Generated by: https://openapi-generator.tech
20-
* Generator version: 7.12.0
20+
* OpenAPI Generator version: 6.0.1
2121
*/
2222

2323
/**
@@ -210,7 +210,7 @@ public function getAccessToken()
210210
/**
211211
* Sets boolean format for query string.
212212
*
213-
* @param string $booleanFormat Boolean format for query string
213+
* @param string $booleanFormatForQueryString Boolean format for query string
214214
*
215215
* @return $this
216216
*/
@@ -480,31 +480,32 @@ public function getHostSettings()
480480
}
481481

482482
/**
483-
* Returns URL based on host settings, index and variables
484-
*
485-
* @param array $hostSettings array of host settings, generated from getHostSettings() or equivalent from the API clients
486-
* @param int $hostIndex index of the host settings
487-
* @param array|null $variables hash of variable and the corresponding value (optional)
488-
* @return string URL based on host settings
489-
*/
490-
public static function getHostString(array $hostSettings, $hostIndex, ?array $variables = null)
483+
* Returns URL based on the index and variables
484+
*
485+
* @param int $index index of the host settings
486+
* @param array|null $variables hash of variable and the corresponding value (optional)
487+
* @return string URL based on host settings
488+
*/
489+
public function getHostFromSettings($index, $variables = null)
491490
{
492491
if (null === $variables) {
493492
$variables = [];
494493
}
495494

495+
$hosts = $this->getHostSettings();
496+
496497
// check array index out of bound
497-
if ($hostIndex < 0 || $hostIndex >= count($hostSettings)) {
498-
throw new \InvalidArgumentException("Invalid index $hostIndex when selecting the host. Must be less than ".count($hostSettings));
498+
if ($index < 0 || $index >= sizeof($hosts)) {
499+
throw new \InvalidArgumentException("Invalid index $index when selecting the host. Must be less than ".sizeof($hosts));
499500
}
500501

501-
$host = $hostSettings[$hostIndex];
502+
$host = $hosts[$index];
502503
$url = $host["url"];
503504

504505
// go through variable and assign a value
505506
foreach ($host["variables"] ?? [] as $name => $variable) {
506507
if (array_key_exists($name, $variables)) { // check to see if it's in the variables provided by the user
507-
if (!isset($variable['enum_values']) || in_array($variables[$name], $variable["enum_values"], true)) { // check to see if the value is in the enum
508+
if (in_array($variables[$name], $variable["enum_values"], true)) { // check to see if the value is in the enum
508509
$url = str_replace("{".$name."}", $variables[$name], $url);
509510
} else {
510511
throw new \InvalidArgumentException("The variable `$name` in the host URL has invalid value ".$variables[$name].". Must be ".join(',', $variable["enum_values"]).".");
@@ -517,16 +518,4 @@ public static function getHostString(array $hostSettings, $hostIndex, ?array $va
517518

518519
return $url;
519520
}
520-
521-
/**
522-
* Returns URL based on the index and variables
523-
*
524-
* @param int $index index of the host settings
525-
* @param array|null $variables hash of variable and the corresponding value (optional)
526-
* @return string URL based on host settings
527-
*/
528-
public function getHostFromSettings($index, $variables = null)
529-
{
530-
return self::getHostString($this->getHostSettings(), $index, $variables);
531-
}
532521
}

0 commit comments

Comments
 (0)