Skip to content

Commit 9ecce32

Browse files
authored
Merge pull request #74 from hotdata-dev/openapi-update-26305572304
chore: regenerate client from updated OpenAPI spec
2 parents 6ec0c8c + c7f3915 commit 9ecce32

6 files changed

Lines changed: 6 additions & 3 deletions

docs/ConnectionTypeDetail.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# ConnectionTypeDetail
22

3+
Detailed configuration and authentication schema for a single connection type.
34

45
## Properties
56

docs/ConnectionTypeSummary.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# ConnectionTypeSummary
22

3+
Summary entry for the connection-type list endpoint.
34

45
## Properties
56

docs/ListConnectionTypesResponse.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# ListConnectionTypesResponse
22

3+
Envelope for the connection-types list response.
34

45
## Properties
56

hotdata/models/connection_type_detail.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525

2626
class ConnectionTypeDetail(BaseModel):
2727
"""
28-
ConnectionTypeDetail
28+
Detailed configuration and authentication schema for a single connection type.
2929
""" # noqa: E501
3030
auth: Optional[Any] = None
3131
config_schema: Optional[Any] = None

hotdata/models/connection_type_summary.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525

2626
class ConnectionTypeSummary(BaseModel):
2727
"""
28-
ConnectionTypeSummary
28+
Summary entry for the connection-type list endpoint.
2929
""" # noqa: E501
3030
label: StrictStr
3131
name: StrictStr

hotdata/models/list_connection_types_response.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626

2727
class ListConnectionTypesResponse(BaseModel):
2828
"""
29-
ListConnectionTypesResponse
29+
Envelope for the connection-types list response.
3030
""" # noqa: E501
3131
connection_types: List[ConnectionTypeSummary]
3232
__properties: ClassVar[List[str]] = ["connection_types"]

0 commit comments

Comments
 (0)