Skip to content

Commit

Permalink
feat(api): api update (#2206)
Browse files Browse the repository at this point in the history
stainless-app[bot] authored and stainless-bot committed Nov 22, 2024
1 parent 291389c commit 546cb1c
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .stats.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
configured_endpoints: 1451
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/cloudflare%2Fcloudflare-fd93545b8e1dc65050c8398d3b7b60fbfecb16998bd6df403eb558e051297765.yml
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/cloudflare%2Fcloudflare-a02ba2b0fe51558afee8cb212cbae6586f4ac2e7c20f46cbac6aeaf91a51f23e.yml
2 changes: 1 addition & 1 deletion src/cloudflare/types/workers/scripts/deployment.py
Original file line number Diff line number Diff line change
@@ -11,4 +11,4 @@

class Deployment(BaseModel):
workers_message: Optional[str] = FieldInfo(alias="workers/message", default=None)
"""Human-readable message about the deployment."""
"""Human-readable message about the deployment. Truncated to 100 bytes."""
2 changes: 1 addition & 1 deletion src/cloudflare/types/workers/scripts/deployment_param.py
Original file line number Diff line number Diff line change
@@ -11,4 +11,4 @@

class DeploymentParam(TypedDict, total=False):
workers_message: Annotated[str, PropertyInfo(alias="workers/message")]
"""Human-readable message about the deployment."""
"""Human-readable message about the deployment. Truncated to 100 bytes."""
Original file line number Diff line number Diff line change
@@ -28,7 +28,7 @@ class VersionCreateParams(TypedDict, total=False):

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

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

0 comments on commit 546cb1c

Please sign in to comment.