Skip to content

Commit 546cb1c

Browse files
stainless-app[bot]stainless-bot
authored andcommitted
feat(api): api update (#2206)
1 parent 291389c commit 546cb1c

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.stats.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
configured_endpoints: 1451
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/cloudflare%2Fcloudflare-fd93545b8e1dc65050c8398d3b7b60fbfecb16998bd6df403eb558e051297765.yml
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/cloudflare%2Fcloudflare-a02ba2b0fe51558afee8cb212cbae6586f4ac2e7c20f46cbac6aeaf91a51f23e.yml

src/cloudflare/types/workers/scripts/deployment.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@
1111

1212
class Deployment(BaseModel):
1313
workers_message: Optional[str] = FieldInfo(alias="workers/message", default=None)
14-
"""Human-readable message about the deployment."""
14+
"""Human-readable message about the deployment. Truncated to 100 bytes."""

src/cloudflare/types/workers/scripts/deployment_param.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@
1111

1212
class DeploymentParam(TypedDict, total=False):
1313
workers_message: Annotated[str, PropertyInfo(alias="workers/message")]
14-
"""Human-readable message about the deployment."""
14+
"""Human-readable message about the deployment. Truncated to 100 bytes."""

src/cloudflare/types/workers/scripts/version_create_params.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ class VersionCreateParams(TypedDict, total=False):
2828

2929
class MetadataAnnotations(TypedDict, total=False):
3030
workers_message: Annotated[str, PropertyInfo(alias="workers/message")]
31-
"""Human-readable message about the version."""
31+
"""Human-readable message about the version. Truncated to 100 bytes."""
3232

3333
workers_tag: Annotated[str, PropertyInfo(alias="workers/tag")]
3434
"""User-provided identifier for the version."""

0 commit comments

Comments
 (0)