diff --git a/lib/ResponseDefinitions.php b/lib/ResponseDefinitions.php index 6677c1468f..2b0756e76e 100644 --- a/lib/ResponseDefinitions.php +++ b/lib/ResponseDefinitions.php @@ -153,6 +153,7 @@ * type: 'info', * message: string, * }[], + * visibleElements?: LibresignVisibleElement[], * } * @psalm-type LibresignFile = array{ * account: array{ diff --git a/openapi-full.json b/openapi-full.json index 8badd571ae..8479e0bb33 100644 --- a/openapi-full.json +++ b/openapi-full.json @@ -794,6 +794,12 @@ } } } + }, + "visibleElements": { + "type": "array", + "items": { + "$ref": "#/components/schemas/VisibleElement" + } } } }, diff --git a/openapi.json b/openapi.json index 0f582fc3b0..5e52209878 100644 --- a/openapi.json +++ b/openapi.json @@ -698,6 +698,12 @@ } } } + }, + "visibleElements": { + "type": "array", + "items": { + "$ref": "#/components/schemas/VisibleElement" + } } } }, diff --git a/src/types/openapi/openapi-full.ts b/src/types/openapi/openapi-full.ts index febe0d49d5..bec8581075 100644 --- a/src/types/openapi/openapi-full.ts +++ b/src/types/openapi/openapi-full.ts @@ -1262,6 +1262,7 @@ export type components = { type: "info"; message: string; }[]; + visibleElements?: components["schemas"]["VisibleElement"][]; }; VisibleElement: { /** Format: int64 */ diff --git a/src/types/openapi/openapi.ts b/src/types/openapi/openapi.ts index 0822e40042..04c7b08487 100644 --- a/src/types/openapi/openapi.ts +++ b/src/types/openapi/openapi.ts @@ -1116,6 +1116,7 @@ export type components = { type: "info"; message: string; }[]; + visibleElements?: components["schemas"]["VisibleElement"][]; }; VisibleElement: { /** Format: int64 */