action vercel_get_edge_configs { label: "Get Edge Configs" description: "Returns all Edge Configs." provider: vercel method: GET path: "/edge-config" encoding: json input: { type: "object" properties: { teamId: { type: "string" } } additionalProperties: false } output: { type: "object" description: "List of all edge configs." required: ["itemCount", "sizeInBytes"] properties: { createdAt: { type: ["number", "null"] } creator: { type: "string" } domain: { type: "string" } id: { type: "string" } itemCount: { type: "number" } name: { type: "string" } recordType: { type: "string" enum: ["A", "AAAA", "ALIAS", "CAA", "CNAME", "MX", "SRV", "TXT", "NS"] } sizeInBytes: { type: "number" } ttl: { type: "number" } type: { type: "string" enum: ["record", "record-sys"] } value: { type: "string" } } } }