Skip to content

Commit

Permalink
chore: update api documentation
Browse files Browse the repository at this point in the history
Signed-off-by: Vitor Mattos <vitor@php.rio>
  • Loading branch information
vitormattos authored and backportbot-libresign[bot] committed Nov 19, 2024
1 parent 6c5d6ee commit e634d54
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 0 deletions.
1 change: 1 addition & 0 deletions lib/ResponseDefinitions.php
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,7 @@
* type: 'info',
* message: string,
* }[],
* visibleElements?: LibresignVisibleElement[],
* }
* @psalm-type LibresignFile = array{
* account: array{
Expand Down
6 changes: 6 additions & 0 deletions openapi-full.json
Original file line number Diff line number Diff line change
Expand Up @@ -794,6 +794,12 @@
}
}
}
},
"visibleElements": {
"type": "array",
"items": {
"$ref": "#/components/schemas/VisibleElement"
}
}
}
},
Expand Down
6 changes: 6 additions & 0 deletions openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -698,6 +698,12 @@
}
}
}
},
"visibleElements": {
"type": "array",
"items": {
"$ref": "#/components/schemas/VisibleElement"
}
}
}
},
Expand Down
1 change: 1 addition & 0 deletions src/types/openapi/openapi-full.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1262,6 +1262,7 @@ export type components = {
type: "info";
message: string;
}[];
visibleElements?: components["schemas"]["VisibleElement"][];
};
VisibleElement: {
/** Format: int64 */
Expand Down
1 change: 1 addition & 0 deletions src/types/openapi/openapi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1116,6 +1116,7 @@ export type components = {
type: "info";
message: string;
}[];
visibleElements?: components["schemas"]["VisibleElement"][];
};
VisibleElement: {
/** Format: int64 */
Expand Down

0 comments on commit e634d54

Please sign in to comment.