From 1f7abe0ac1eaff787550286c39b81a70ed753c4a Mon Sep 17 00:00:00 2001 From: "fern-api[bot]" <115122769+fern-api[bot]@users.noreply.github.com> Date: Tue, 8 Oct 2024 00:07:45 +0000 Subject: [PATCH] fix(openapi): change FilteredMeta type to array and remove updated_at fields --- openapi.json | 22 ++++++++++------------ 1 file changed, 10 insertions(+), 12 deletions(-) diff --git a/openapi.json b/openapi.json index 4708072..ea9ada5 100644 --- a/openapi.json +++ b/openapi.json @@ -2769,13 +2769,16 @@ ] }, "FilteredMeta": { - "type": "string", - "enum": [ - "body", - "headers", - "path", - "query" - ] + "type": "array", + "items": { + "type": "string", + "enum": [ + "body", + "headers", + "path", + "query" + ] + } }, "TransformationFailedMeta": { "type": "object", @@ -2819,10 +2822,6 @@ ], "nullable": true }, - "updated_at": { - "type": "string", - "format": "date-time" - }, "created_at": { "type": "string", "format": "date-time" @@ -2834,7 +2833,6 @@ "webhook_id", "cause", "request_id", - "updated_at", "created_at" ], "additionalProperties": false