From 08098688d42534925641a9aeca553476d97daad9 Mon Sep 17 00:00:00 2001 From: Andrew Nguonly Date: Fri, 3 Jan 2025 10:36:38 -0800 Subject: [PATCH] docs: Update docs for `POST /v1/projects/{project_id}/revisions` endpoint (#2926) --- docs/docs/cloud/reference/api/openapi_control_plane.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/docs/cloud/reference/api/openapi_control_plane.json b/docs/docs/cloud/reference/api/openapi_control_plane.json index 13acedaf3..80e57c53f 100644 --- a/docs/docs/cloud/reference/api/openapi_control_plane.json +++ b/docs/docs/cloud/reference/api/openapi_control_plane.json @@ -386,16 +386,16 @@ }, "env_vars": { "type": "array", - "description": "List of environment variables or secrets.\n\nThe complete list of environment variables and secrets must ALWAYS be specified in every request to `POST /{version}/projects/{project_id}/revisions`.", + "description": "List of environment variables or secrets.\n\nIf this field is omitted or set to `null`, the previous revision's `env_vars` value is used.", "items": { "$ref": "#/components/schemas/EnvVar" }, "default": "null" }, "shareable": { - "type": "boolean", - "description": "Boolean flag to configure if a deployment is shareable through LangGraph Studio.\n\nThis field does not apply to BYOC deployments.", - "default": false + "type": ["boolean", "null"], + "description": "Boolean flag to configure if a deployment is shareable through LangGraph Studio.\n\nIf this field is omitted or set to `null`, the previous revision's `shareable` value is used. This field does not apply to BYOC deployments.", + "default": "null" }, "container_spec": { "description": "If this field is omitted or set to `null`, the previous revision's `container_spec` value is used.",