action vercel_get_edge_config_items { label: "Get Edge Config items" description: "Returns all items of an Edge Config." provider: vercel method: GET path: "/edge-config/{edgeConfigId}/items" encoding: json input: { type: "object" properties: { edgeConfigId: { type: "string" } teamId: { type: "string" } } required: ["edgeConfigId"] additionalProperties: false } output: { type: "object" description: "The EdgeConfig." required: ["createdAt", "edgeConfigId", "key", "updatedAt", "value"] properties: { createdAt: { type: "number" } edgeConfigId: { type: "string" } key: { type: "string" } updatedAt: { type: "number" } value: { type: "null" } } } }