Skip to content

Commit 8c97227

Browse files
feat(api): OpenAPI spec update via Stainless API (#171)
1 parent 40e2545 commit 8c97227

File tree

156 files changed

+156
-156
lines changed

Some content is hidden

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

156 files changed

+156
-156
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion

src/cloudflare/types/account_get_response.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44

55
__all__ = ["AccountGetResponse"]
66

7-
AccountGetResponse = Union[Optional[object], Optional[str]]
7+
AccountGetResponse = Union[Optional[str], Optional[object]]

src/cloudflare/types/account_update_response.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44

55
__all__ = ["AccountUpdateResponse"]
66

7-
AccountUpdateResponse = Union[Optional[object], Optional[str]]
7+
AccountUpdateResponse = Union[Optional[str], Optional[object]]

src/cloudflare/types/accounts/role_get_response.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44

55
__all__ = ["RoleGetResponse"]
66

7-
RoleGetResponse = Union[Optional[object], Optional[str]]
7+
RoleGetResponse = Union[Optional[str], Optional[object]]

src/cloudflare/types/addressing/address_map_delete_response.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44

55
__all__ = ["AddressMapDeleteResponse"]
66

7-
AddressMapDeleteResponse = Union[object, List[object], str, None]
7+
AddressMapDeleteResponse = Union[List[object], str, object, None]

src/cloudflare/types/addressing/address_maps/account_delete_response.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44

55
__all__ = ["AccountDeleteResponse"]
66

7-
AccountDeleteResponse = Union[object, List[object], str, None]
7+
AccountDeleteResponse = Union[List[object], str, object, None]

src/cloudflare/types/addressing/address_maps/account_update_response.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44

55
__all__ = ["AccountUpdateResponse"]
66

7-
AccountUpdateResponse = Union[object, List[object], str, None]
7+
AccountUpdateResponse = Union[List[object], str, object, None]

src/cloudflare/types/addressing/address_maps/ip_delete_response.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44

55
__all__ = ["IPDeleteResponse"]
66

7-
IPDeleteResponse = Union[object, List[object], str, None]
7+
IPDeleteResponse = Union[List[object], str, object, None]

src/cloudflare/types/addressing/address_maps/ip_update_response.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44

55
__all__ = ["IPUpdateResponse"]
66

7-
IPUpdateResponse = Union[object, List[object], str, None]
7+
IPUpdateResponse = Union[List[object], str, object, None]

src/cloudflare/types/addressing/address_maps/zone_delete_response.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44

55
__all__ = ["ZoneDeleteResponse"]
66

7-
ZoneDeleteResponse = Union[object, List[object], str, None]
7+
ZoneDeleteResponse = Union[List[object], str, object, None]

0 commit comments

Comments
 (0)