mirror of
https://github.com/hay-kot/homebox.git
synced 2025-08-04 08:40:28 +00:00
code gen
This commit is contained in:
parent
22bee7b406
commit
2885e91cf7
4 changed files with 9 additions and 0 deletions
|
@ -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"
|
||||||
},
|
},
|
||||||
|
|
|
@ -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"
|
||||||
},
|
},
|
||||||
|
|
|
@ -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:
|
||||||
|
|
|
@ -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;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue