Skip to content

Commit 677bc09

Browse files
feat(api): api update
1 parent 0562d99 commit 677bc09

File tree

8 files changed

+15
-15
lines changed

8 files changed

+15
-15
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: 1742
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/cloudflare%2Fcloudflare-f2419bf55089756d40e11f34634bca196aee06ef175c811006639626968ee64d.yml
3-
openapi_spec_hash: f106aded23a1fb2992b64a92f18198a8
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/cloudflare%2Fcloudflare-5ad399170cb0b132651bbd1c714eb1b2a88ddbb9bfd1d4eb931c97c1a69ac27f.yml
3+
openapi_spec_hash: da07b2caa9c0ead591c4a6859b48beb1
44
config_hash: cb36b26a5fcc81fa60c65016b1e74f0a

src/cloudflare/resources/workflows/instances/instances.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -147,9 +147,9 @@ def list(
147147
List of workflow instances
148148
149149
Args:
150-
date_end: In ISO 8601 with no timezone offsets and in UTC.
150+
date_end: Accepts ISO 8601 with no timezone offsets and in UTC.
151151
152-
date_start: In ISO 8601 with no timezone offsets and in UTC.
152+
date_start: Accepts ISO 8601 with no timezone offsets and in UTC.
153153
154154
extra_headers: Send extra headers
155155
@@ -370,9 +370,9 @@ def list(
370370
List of workflow instances
371371
372372
Args:
373-
date_end: In ISO 8601 with no timezone offsets and in UTC.
373+
date_end: Accepts ISO 8601 with no timezone offsets and in UTC.
374374
375-
date_start: In ISO 8601 with no timezone offsets and in UTC.
375+
date_start: Accepts ISO 8601 with no timezone offsets and in UTC.
376376
377377
extra_headers: Send extra headers
378378

src/cloudflare/resources/workflows/instances/status.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ def edit(
6363
Change status of instance
6464
6565
Args:
66-
status: Possible actions to apply to instance.
66+
status: Apply action to instance.
6767
6868
extra_headers: Send extra headers
6969
@@ -131,7 +131,7 @@ async def edit(
131131
Change status of instance
132132
133133
Args:
134-
status: Possible actions to apply to instance.
134+
status: Apply action to instance.
135135
136136
extra_headers: Send extra headers
137137

src/cloudflare/resources/workflows/workflows.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ def list(
139139
List all Workflows
140140
141141
Args:
142-
search: Filter workflows by name.
142+
search: Allows filtering workflows` name.
143143
144144
extra_headers: Send extra headers
145145
@@ -349,7 +349,7 @@ def list(
349349
List all Workflows
350350
351351
Args:
352-
search: Filter workflows by name.
352+
search: Allows filtering workflows` name.
353353
354354
extra_headers: Send extra headers
355355

src/cloudflare/types/workflows/instance_list_params.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ class InstanceListParams(TypedDict, total=False):
1515
account_id: Required[str]
1616

1717
date_end: Annotated[Union[str, datetime], PropertyInfo(format="iso8601")]
18-
"""In ISO 8601 with no timezone offsets and in UTC."""
18+
"""Accepts ISO 8601 with no timezone offsets and in UTC."""
1919

2020
date_start: Annotated[Union[str, datetime], PropertyInfo(format="iso8601")]
21-
"""In ISO 8601 with no timezone offsets and in UTC."""
21+
"""Accepts ISO 8601 with no timezone offsets and in UTC."""
2222

2323
page: float
2424

src/cloudflare/types/workflows/instances/status_edit_params.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ class StatusEditParams(TypedDict, total=False):
1313
workflow_name: Required[str]
1414

1515
status: Required[Literal["resume", "pause", "terminate"]]
16-
"""Possible actions to apply to instance."""
16+
"""Apply action to instance."""

src/cloudflare/types/workflows/instances/status_edit_response.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ class StatusEditResponse(BaseModel):
1212
status: Literal["queued", "running", "paused", "errored", "terminated", "complete", "waitingForPause", "waiting"]
1313

1414
timestamp: datetime
15-
"""In ISO 8601 with no timezone offsets and in UTC."""
15+
"""Accepts ISO 8601 with no timezone offsets and in UTC."""

src/cloudflare/types/workflows/workflow_list_params.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ class WorkflowListParams(TypedDict, total=False):
1515
per_page: float
1616

1717
search: str
18-
"""Filter workflows by name."""
18+
"""Allows filtering workflows` name."""

0 commit comments

Comments
 (0)