Skip to content

Commit

Permalink
build(openapi): ts types
Browse files Browse the repository at this point in the history
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
  • Loading branch information
blizzz committed Sep 12, 2024
1 parent 05461b8 commit 6673dd4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/types/openapi/openapi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2807,7 +2807,7 @@ export interface operations {
readonly "application/json": {
/** @description Data as key - value store */
readonly data: string | {
readonly [key: string]: Record<string, never> | undefined;
readonly [key: string]: Record<string, never>;
};
};
};
Expand Down Expand Up @@ -2920,7 +2920,7 @@ export interface operations {
readonly "application/json": {
/** @description Data as key - value store */
readonly data: string | {
readonly [key: string]: Record<string, never> | undefined;
readonly [key: string]: Record<string, never>;
};
};
};
Expand Down Expand Up @@ -3033,7 +3033,7 @@ export interface operations {
readonly viewId?: number | null;
/** @description Data as key - value store */
readonly data: string | {
readonly [key: string]: Record<string, never> | undefined;
readonly [key: string]: Record<string, never>;
};
};
};
Expand Down Expand Up @@ -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<string, never> | undefined;
readonly [key: string]: Record<string, never>;
};
};
};
Expand Down

0 comments on commit 6673dd4

Please sign in to comment.