Skip to content

Commit f9131a2

Browse files
authored
Fix GET /profile/login and GET /account/login response objects (#370)
Closes linode/linode-cli#215 The CLI wasn't rendering these responses correctly since these models were not defined correctly.
1 parent 9525603 commit f9131a2

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

openapi.yaml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -934,6 +934,12 @@ paths:
934934
type: array
935935
items:
936936
$ref: '#/components/schemas/Login'
937+
page:
938+
$ref: '#/components/schemas/PaginationEnvelope/properties/page'
939+
pages:
940+
$ref: '#/components/schemas/PaginationEnvelope/properties/pages'
941+
results:
942+
$ref: '#/components/schemas/PaginationEnvelope/properties/results'
937943
default:
938944
$ref: '#/components/responses/ErrorResponse'
939945
x-code-samples:
@@ -12771,6 +12777,12 @@ paths:
1277112777
type: array
1277212778
items:
1277312779
$ref: '#/components/schemas/Login'
12780+
page:
12781+
$ref: '#/components/schemas/PaginationEnvelope/properties/page'
12782+
pages:
12783+
$ref: '#/components/schemas/PaginationEnvelope/properties/pages'
12784+
results:
12785+
$ref: '#/components/schemas/PaginationEnvelope/properties/results'
1277412786
default:
1277512787
$ref: '#/components/responses/ErrorResponse'
1277612788
x-code-samples:

0 commit comments

Comments
 (0)