action truora_delete_custom_type { label: "Delete Custom Type" description: "Allows deleting a custom type. Person, vehicle, and company types cannot be deleted" provider: truora method: DELETE path: "/v1/config" encoding: json input: { type: "object" properties: { country: { type: "string" enum: ["BR", "CL", "CO", "CR", "EC", "MX", "PE", "ALL"] } type: { type: "string" } } required: ["type"] additionalProperties: false } output: { type: "object" additionalProperties: true } }