Skip to content

Commit

Permalink
Update generated client
Browse files Browse the repository at this point in the history
  • Loading branch information
mittwald-machine committed Apr 3, 2024
1 parent a63206e commit f7002c5
Show file tree
Hide file tree
Showing 12 changed files with 13 additions and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class CheckDomainRegistrabilityRequest
'body' => [
'properties' => [
'domain' => [
'format' => 'hostname',
'format' => 'naked-domain',
'type' => 'string',
],
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class CheckDomainRegistrabilityRequestBody
private static array $schema = [
'properties' => [
'domain' => [
'format' => 'hostname',
'format' => 'naked-domain',
'type' => 'string',
],
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class CheckDomainRegistrabilityV2DeprecatedRequest
'body' => [
'properties' => [
'domain' => [
'format' => 'hostname',
'format' => 'naked-domain',
'type' => 'string',
],
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class CheckDomainRegistrabilityV2DeprecatedRequestBody
private static array $schema = [
'properties' => [
'domain' => [
'format' => 'hostname',
'format' => 'naked-domain',
'type' => 'string',
],
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class CheckDomainTransferabilityRequest
'type' => 'string',
],
'domain' => [
'format' => 'idn-hostname',
'format' => 'naked-domain',
'type' => 'string',
],
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class CheckDomainTransferabilityRequestBody
'type' => 'string',
],
'domain' => [
'format' => 'idn-hostname',
'format' => 'naked-domain',
'type' => 'string',
],
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class DeclareNameserversV2DeprecatedRequest
'properties' => [
'nameservers' => [
'items' => [
'format' => 'hostname',
'format' => 'idn-hostname',
'type' => 'string',
],
'minItems' => 2,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class DeclareNameserversV2DeprecatedRequestBody
'properties' => [
'nameservers' => [
'items' => [
'format' => 'hostname',
'format' => 'idn-hostname',
'type' => 'string',
],
'minItems' => 2,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class GetHandleFieldsV2DeprecatedRequest
'type' => 'object',
'properties' => [
'domainName' => [
'format' => 'hostname',
'format' => 'naked-domain',
'type' => 'string',
],
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class UpdateDomainNameserversRequest
'properties' => [
'nameservers' => [
'items' => [
'format' => 'hostname',
'format' => 'idn-hostname',
'type' => 'string',
],
'minItems' => 2,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class UpdateDomainNameserversRequestBody
'properties' => [
'nameservers' => [
'items' => [
'format' => 'hostname',
'format' => 'idn-hostname',
'type' => 'string',
],
'minItems' => 2,
Expand Down
4 changes: 2 additions & 2 deletions src/Generated/V2/Schemas/Domain/Domain.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ class Domain
'type' => 'boolean',
],
'domain' => [
'format' => 'hostname',
'format' => 'naked-domain',
'type' => 'string',
],
'domainId' => [
Expand All @@ -60,7 +60,7 @@ class Domain
],
'nameservers' => [
'items' => [
'format' => 'hostname',
'format' => 'idn-hostname',
'type' => 'string',
],
'type' => 'array',
Expand Down

0 comments on commit f7002c5

Please sign in to comment.