action vercel_create_edge_config { label: "Create an Edge Config" description: "Creates an Edge Config." provider: vercel method: POST path: "/edge-config" encoding: json input: { type: "object" properties: { items: { type: "object" } slug: { type: "string" } teamId: { type: "string" } } required: ["slug"] additionalProperties: false } output: { type: "object" description: "An Edge Config" required: ["itemCount", "sizeInBytes"] properties: { blocking: { type: "boolean" } completedAt: { type: "number" } conclusion: { type: "string" enum: ["canceled", "failed", "neutral", "succeeded", "skipped", "stale"] } createdAt: { type: "number" } deploymentId: { type: "string" } detailsUrl: { type: "string" } externalId: { type: "string" } id: { type: "string" } integrationId: { type: "string" } itemCount: { type: "number" } name: { type: "string" } output: { type: "object" properties: { metrics: { type: "object" required: ["CLS", "FCP", "LCP", "TBT"] properties: { CLS: { type: "object" required: ["source", "value"] properties: { previousValue: { type: "number" } source: { type: "string" enum: ["web-vitals"] } value: { type: ["number", "null"] } } } FCP: { type: "object" required: ["source", "value"] properties: { previousValue: { type: "number" } source: { type: "string" enum: ["web-vitals"] } value: { type: ["number", "null"] } } } LCP: { type: "object" required: ["source", "value"] properties: { previousValue: { type: "number" } source: { type: "string" enum: ["web-vitals"] } value: { type: ["number", "null"] } } } TBT: { type: "object" required: ["source", "value"] properties: { previousValue: { type: "number" } source: { type: "string" enum: ["web-vitals"] } value: { type: ["number", "null"] } } } virtualExperienceScore: { type: "object" required: ["source", "value"] properties: { previousValue: { type: "number" } source: { type: "string" enum: ["web-vitals"] } value: { type: ["number", "null"] } } } } } } } path: { type: "string" } rerequestable: { type: "boolean" } sizeInBytes: { type: "number" } startedAt: { type: "number" } status: { type: "string" enum: ["registered", "running", "completed"] } updatedAt: { type: "number" } } } }