action vercel_delete_edge_config { label: "Delete an Edge Config" description: "Delete an Edge Config by id." provider: vercel method: DELETE path: "/edge-config/{edgeConfigId}" encoding: json input: { type: "object" properties: { edgeConfigId: { type: "string" } teamId: { type: "string" } } required: ["edgeConfigId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }