Skip to content

Commit 7464286

Browse files
chore(api): update composite API spec
1 parent b75f514 commit 7464286

File tree

5 files changed

+14
-14
lines changed

5 files changed

+14
-14
lines changed

.stats.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 1894
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/cloudflare%2Fcloudflare-1d690e35246e392197c60dd7b9c3ece69bb0e84a83bdfa349f809de1524a1458.yml
3-
openapi_spec_hash: 15013e32424c98cb7def6b652c61d05e
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/cloudflare%2Fcloudflare-45cc1044f65226c9103ee86d741e6b648e01975f1f6433f30c005a62f5e2895d.yml
3+
openapi_spec_hash: 54339a8f81a58d4e5de5bbc2fa188bdf
44
config_hash: c3197a7cf9595a0f252f8810e74954ef

src/cloudflare/types/resource_sharing/recipient_create_response.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@ class Resource(BaseModel):
1919
resource_version: int
2020
"""Resource Version."""
2121

22+
terminal: bool
23+
"""Whether the error is terminal or will be continually retried."""
24+
2225

2326
class RecipientCreateResponse(BaseModel):
2427
id: str
@@ -36,7 +39,4 @@ class RecipientCreateResponse(BaseModel):
3639
modified: datetime
3740
"""When the share was modified."""
3841

39-
status_message: str
40-
"""Share Recipient status message."""
41-
4242
resources: Optional[List[Resource]] = None

src/cloudflare/types/resource_sharing/recipient_delete_response.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@ class Resource(BaseModel):
1919
resource_version: int
2020
"""Resource Version."""
2121

22+
terminal: bool
23+
"""Whether the error is terminal or will be continually retried."""
24+
2225

2326
class RecipientDeleteResponse(BaseModel):
2427
id: str
@@ -36,7 +39,4 @@ class RecipientDeleteResponse(BaseModel):
3639
modified: datetime
3740
"""When the share was modified."""
3841

39-
status_message: str
40-
"""Share Recipient status message."""
41-
4242
resources: Optional[List[Resource]] = None

src/cloudflare/types/resource_sharing/recipient_get_response.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@ class Resource(BaseModel):
1919
resource_version: int
2020
"""Resource Version."""
2121

22+
terminal: bool
23+
"""Whether the error is terminal or will be continually retried."""
24+
2225

2326
class RecipientGetResponse(BaseModel):
2427
id: str
@@ -36,7 +39,4 @@ class RecipientGetResponse(BaseModel):
3639
modified: datetime
3740
"""When the share was modified."""
3841

39-
status_message: str
40-
"""Share Recipient status message."""
41-
4242
resources: Optional[List[Resource]] = None

src/cloudflare/types/resource_sharing/recipient_list_response.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@ class Resource(BaseModel):
1919
resource_version: int
2020
"""Resource Version."""
2121

22+
terminal: bool
23+
"""Whether the error is terminal or will be continually retried."""
24+
2225

2326
class RecipientListResponse(BaseModel):
2427
id: str
@@ -36,7 +39,4 @@ class RecipientListResponse(BaseModel):
3639
modified: datetime
3740
"""When the share was modified."""
3841

39-
status_message: str
40-
"""Share Recipient status message."""
41-
4242
resources: Optional[List[Resource]] = None

0 commit comments

Comments
 (0)