Skip to content

Commit 5f7c350

Browse files
release: v0.1.26
1 parent cf43686 commit 5f7c350

12 files changed

Lines changed: 226 additions & 11 deletions

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,5 +84,5 @@
8484
"/tests"
8585
]
8686
},
87-
"version": "0.1.25"
87+
"version": "0.1.26"
8888
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "roxyapi-sdk-php-tooling",
33
"private": true,
4-
"version": "0.1.25",
4+
"version": "0.1.26",
55
"description": "Codegen tooling for the roxyapi/sdk Composer package. Not published.",
66
"type": "module",
77
"scripts": {

specs/openapi.json

Lines changed: 111 additions & 1 deletion
Large diffs are not rendered by default.

src/Generated/Requests/CalculateCentersRequest.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ public function __construct(
3636
public readonly mixed $timezone,
3737
public readonly ?float $latitude = null,
3838
public readonly ?float $longitude = null,
39+
public readonly ?string $nodeType = null,
3940
public readonly ?string $lang = null,
4041
) {
4142
}
@@ -58,6 +59,9 @@ protected function defaultBody(): array
5859
if ($this->longitude !== null) {
5960
$body['longitude'] = $this->longitude;
6061
}
62+
if ($this->nodeType !== null) {
63+
$body['nodeType'] = $this->nodeType;
64+
}
6165
$body['time'] = $this->time;
6266
$body['timezone'] = $this->timezone;
6367

src/Generated/Requests/CalculateChannelsRequest.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ public function __construct(
3636
public readonly mixed $timezone,
3737
public readonly ?float $latitude = null,
3838
public readonly ?float $longitude = null,
39+
public readonly ?string $nodeType = null,
3940
public readonly ?string $lang = null,
4041
) {
4142
}
@@ -58,6 +59,9 @@ protected function defaultBody(): array
5859
if ($this->longitude !== null) {
5960
$body['longitude'] = $this->longitude;
6061
}
62+
if ($this->nodeType !== null) {
63+
$body['nodeType'] = $this->nodeType;
64+
}
6165
$body['time'] = $this->time;
6266
$body['timezone'] = $this->timezone;
6367

src/Generated/Requests/CalculateGatesRequest.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ public function __construct(
3636
public readonly mixed $timezone,
3737
public readonly ?float $latitude = null,
3838
public readonly ?float $longitude = null,
39+
public readonly ?string $nodeType = null,
3940
public readonly ?string $lang = null,
4041
) {
4142
}
@@ -58,6 +59,9 @@ protected function defaultBody(): array
5859
if ($this->longitude !== null) {
5960
$body['longitude'] = $this->longitude;
6061
}
62+
if ($this->nodeType !== null) {
63+
$body['nodeType'] = $this->nodeType;
64+
}
6165
$body['time'] = $this->time;
6266
$body['timezone'] = $this->timezone;
6367

src/Generated/Requests/CalculateProfileRequest.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ public function __construct(
3636
public readonly mixed $timezone,
3737
public readonly ?float $latitude = null,
3838
public readonly ?float $longitude = null,
39+
public readonly ?string $nodeType = null,
3940
public readonly ?string $lang = null,
4041
) {
4142
}
@@ -58,6 +59,9 @@ protected function defaultBody(): array
5859
if ($this->longitude !== null) {
5960
$body['longitude'] = $this->longitude;
6061
}
62+
if ($this->nodeType !== null) {
63+
$body['nodeType'] = $this->nodeType;
64+
}
6165
$body['time'] = $this->time;
6266
$body['timezone'] = $this->timezone;
6367

src/Generated/Requests/CalculateTypeRequest.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ public function __construct(
3636
public readonly mixed $timezone,
3737
public readonly ?float $latitude = null,
3838
public readonly ?float $longitude = null,
39+
public readonly ?string $nodeType = null,
3940
public readonly ?string $lang = null,
4041
) {
4142
}
@@ -58,6 +59,9 @@ protected function defaultBody(): array
5859
if ($this->longitude !== null) {
5960
$body['longitude'] = $this->longitude;
6061
}
62+
if ($this->nodeType !== null) {
63+
$body['nodeType'] = $this->nodeType;
64+
}
6165
$body['time'] = $this->time;
6266
$body['timezone'] = $this->timezone;
6367

src/Generated/Requests/CalculateVariablesRequest.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ public function __construct(
4141
public readonly mixed $timezone,
4242
public readonly ?float $latitude = null,
4343
public readonly ?float $longitude = null,
44+
public readonly ?string $nodeType = null,
4445
public readonly ?string $lang = null,
4546
) {
4647
}
@@ -63,6 +64,9 @@ protected function defaultBody(): array
6364
if ($this->longitude !== null) {
6465
$body['longitude'] = $this->longitude;
6566
}
67+
if ($this->nodeType !== null) {
68+
$body['nodeType'] = $this->nodeType;
69+
}
6670
$body['time'] = $this->time;
6771
$body['timezone'] = $this->timezone;
6872

src/Generated/Requests/GenerateBodygraphRequest.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ public function __construct(
3838
public readonly mixed $timezone,
3939
public readonly ?float $latitude = null,
4040
public readonly ?float $longitude = null,
41+
public readonly ?string $nodeType = null,
4142
public readonly ?string $lang = null,
4243
) {
4344
}
@@ -60,6 +61,9 @@ protected function defaultBody(): array
6061
if ($this->longitude !== null) {
6162
$body['longitude'] = $this->longitude;
6263
}
64+
if ($this->nodeType !== null) {
65+
$body['nodeType'] = $this->nodeType;
66+
}
6367
$body['time'] = $this->time;
6468
$body['timezone'] = $this->timezone;
6569

0 commit comments

Comments
 (0)