Skip to content

Commit a084a12

Browse files
chore(api): update composite API spec
1 parent 98062f3 commit a084a12

3 files changed

Lines changed: 19 additions & 1 deletion

File tree

.stats.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 2228
22
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/cloudflare%2Fcloudflare-a6c352830d1270d0abb5bb983058ea21815e1bb7d2e163965335dcb0e706f057.yml
3-
openapi_spec_hash: 318e54e5c7666a55fb803495fa7e383c
3+
openapi_spec_hash: 275833b1cb003b3174b6e01526ccb7a6
44
config_hash: a0d2c4abe971a3caafcc4324d98d7106

src/cloudflare/types/intel/indicator_feed_get_response.py

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -134,6 +134,18 @@ class IndicatorFeedGetResponse(BaseModel):
134134
etc.) without reading loader logs.
135135
"""
136136

137+
latest_upload_error: Optional[str] = None
138+
"""Human-readable error message describing why the latest upload failed.
139+
140+
Populated only when `latest_upload_status` is `Error`. Returns one of a small
141+
fixed set of category-level messages (invalid domain / IP / URL entries,
142+
malformed row or header, invalid valid_until timestamp, etc.) or the generic
143+
`Upload failed` for unknown or infrastructure-level errors. Never echoes raw
144+
error text from the underlying loader. Intel accounts receive the verbatim
145+
loader/API error text (including specific offending values) instead of these
146+
category-level messages.
147+
"""
148+
137149
latest_upload_status: Optional[Literal["Mirroring", "Unifying", "Loading", "Provisioning", "Complete", "Error"]] = (
138150
None
139151
)

src/cloudflare/types/workflows/instance_get_response.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,12 @@ class StepUnionMember0Config(BaseModel):
6464
timeout: Union[str, float]
6565
"""Specifies the timeout duration."""
6666

67+
sensitive: Optional[Literal["output"]] = None
68+
"""
69+
When set to 'output', step output is redacted from log and step output
70+
responses.
71+
"""
72+
6773

6874
class StepUnionMember0(BaseModel):
6975
attempts: List[StepUnionMember0Attempt]

0 commit comments

Comments
 (0)