Skip to content

Commit 47c765c

Browse files
stainless-app[bot]stainless-bot
authored andcommittedNov 22, 2024·
feat(api): api update (#3665)
1 parent 5ac7491 commit 47c765c

File tree

3 files changed

+4
-4
lines changed

3 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

‎workers/scriptdeployment.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ func (r *ScriptDeploymentService) Get(ctx context.Context, scriptName string, qu
8383
}
8484

8585
type Deployment struct {
86-
// Human-readable message about the deployment.
86+
// Human-readable message about the deployment. Truncated to 100 bytes.
8787
WorkersMessage string `json:"workers/message"`
8888
JSON deploymentJSON `json:"-"`
8989
}
@@ -104,7 +104,7 @@ func (r deploymentJSON) RawJSON() string {
104104
}
105105

106106
type DeploymentParam struct {
107-
// Human-readable message about the deployment.
107+
// Human-readable message about the deployment. Truncated to 100 bytes.
108108
WorkersMessage param.Field[string] `json:"workers/message"`
109109
}
110110

‎workers/scriptversion.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ func (r ScriptVersionNewParamsMetadata) MarshalJSON() (data []byte, err error) {
253253
}
254254

255255
type ScriptVersionNewParamsMetadataAnnotations struct {
256-
// Human-readable message about the version.
256+
// Human-readable message about the version. Truncated to 100 bytes.
257257
WorkersMessage param.Field[string] `json:"workers/message"`
258258
// User-provided identifier for the version.
259259
WorkersTag param.Field[string] `json:"workers/tag"`

0 commit comments

Comments
 (0)
Please sign in to comment.