action webflow_post_transitions { label: "post_transitions" provider: webflow method: POST path: "/transitions" encoding: json input: { type: "object" properties: { "Content-Type": { type: "string" } description: { type: "string" } inputJsonSchema: { type: "object" } name: { type: "string" } outputJsonSchema: { type: "object" } parameters: { type: "object" } timeoutInSeconds: { type: "integer" } transitionType: { type: "string" enum: ["docker", "manual"] } } required: ["Content-Type", "transitionType"] additionalProperties: false } output: { type: "object" required: ["createdBy", "createdTime", "description", "name", "parameters", "timeoutInSeconds", "transitionId", "transitionType", "updatedBy", "updatedTime"] properties: { assets: { type: "object" properties: { jsRemoteComponent: { type: "string" } } } createdBy: { type: "string" } createdTime: { type: "string" } description: { type: "string" } inputJsonSchema: { type: "object" } name: { type: "string" } outputJsonSchema: { type: "object" } parameters: { type: "object" } timeoutInSeconds: { type: "integer" } transitionId: { type: "object" } transitionType: { type: "string" enum: ["docker", "manual"] } updatedBy: { type: "string" } updatedTime: { type: "string" } } additionalProperties: false } }