From 6673dd4415fa15a4e2e8625ceda375e00b0ce2b7 Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Thu, 12 Sep 2024 12:15:42 +0200 Subject: [PATCH] build(openapi): ts types Signed-off-by: Arthur Schiwon --- src/types/openapi/openapi.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/types/openapi/openapi.ts b/src/types/openapi/openapi.ts index 9961e45a6..5e1f859bf 100644 --- a/src/types/openapi/openapi.ts +++ b/src/types/openapi/openapi.ts @@ -2807,7 +2807,7 @@ export interface operations { readonly "application/json": { /** @description Data as key - value store */ readonly data: string | { - readonly [key: string]: Record | undefined; + readonly [key: string]: Record; }; }; }; @@ -2920,7 +2920,7 @@ export interface operations { readonly "application/json": { /** @description Data as key - value store */ readonly data: string | { - readonly [key: string]: Record | undefined; + readonly [key: string]: Record; }; }; }; @@ -3033,7 +3033,7 @@ export interface operations { readonly viewId?: number | null; /** @description Data as key - value store */ readonly data: string | { - readonly [key: string]: Record | undefined; + readonly [key: string]: Record; }; }; }; @@ -5432,7 +5432,7 @@ export interface operations { readonly "application/json": { /** @description An array containing the column identifiers and their values */ readonly data: string | { - readonly [key: string]: Record | undefined; + readonly [key: string]: Record; }; }; };