Skip to content

Commit

Permalink
fix: update OpenAPI styles
Browse files Browse the repository at this point in the history
Signed-off-by: Cleopatra Enjeck M <patrathewhiz@gmail.com>
  • Loading branch information
enjeck committed Aug 5, 2024
1 parent b5eae54 commit cf59585
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 @@ -2823,7 +2823,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 @@ -2946,7 +2946,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 @@ -3059,7 +3059,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 @@ -5458,7 +5458,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 cf59585

Please sign in to comment.