This commit is contained in:
Hayden 2023-02-15 08:53:49 -09:00
parent 22bee7b406
commit 2885e91cf7
No known key found for this signature in database
GPG key ID: 17CF79474E257545
4 changed files with 9 additions and 0 deletions

View file

@ -2425,6 +2425,9 @@ const docTemplate = `{
"v1.ApiSummary": {
"type": "object",
"properties": {
"allowRegistration": {
"type": "boolean"
},
"build": {
"$ref": "#/definitions/v1.Build"
},

View file

@ -2417,6 +2417,9 @@
"v1.ApiSummary": {
"type": "object",
"properties": {
"allowRegistration": {
"type": "boolean"
},
"build": {
"$ref": "#/definitions/v1.Build"
},

View file

@ -564,6 +564,8 @@ definitions:
type: object
v1.ApiSummary:
properties:
allowRegistration:
type: boolean
build:
$ref: '#/definitions/v1.Build'
demo:

View file

@ -335,6 +335,7 @@ export interface ActionAmountResult {
}
export interface ApiSummary {
allowRegistration: boolean;
build: Build;
demo: boolean;
health: boolean;