Skip to content

Commit

Permalink
Merge pull request #1271 from nextcloud/automated/noid/main-fix-npm-a…
Browse files Browse the repository at this point in the history
…udit

[main] Fix npm audit
  • Loading branch information
enjeck authored Aug 5, 2024
2 parents 73edbfe + cf59585 commit 0e9d4a9
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 11 deletions.
15 changes: 8 additions & 7 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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 0e9d4a9

Please sign in to comment.