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": { "v1.ApiSummary": {
"type": "object", "type": "object",
"properties": { "properties": {
"allowRegistration": {
"type": "boolean"
},
"build": { "build": {
"$ref": "#/definitions/v1.Build" "$ref": "#/definitions/v1.Build"
}, },

View file

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

View file

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

View file

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