action vercel_delete_alias { label: "Delete an Alias" description: "Delete an Alias with the specified ID." provider: vercel method: DELETE path: "/v2/aliases/{aliasId}" encoding: json input: { type: "object" properties: { aliasId: { description: "The ID or alias that will be removed" type: "object" } teamId: { type: "string" } } required: ["aliasId"] additionalProperties: false } output: { type: "object" required: ["status"] properties: { status: { type: "string" enum: ["SUCCESS"] } } } }