Skip to content

Commit

Permalink
chore: update
Browse files Browse the repository at this point in the history
  • Loading branch information
Sentio Bot committed Dec 11, 2024
1 parent 9c9f9b0 commit cbe8861
Show file tree
Hide file tree
Showing 10 changed files with 151 additions and 0 deletions.
29 changes: 29 additions & 0 deletions doc/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4888,6 +4888,9 @@
},
"lineConfig" : {
"$ref" : "#/components/schemas/web_service.ChartConfig.LineConfig"
},
"xAxis" : {
"$ref" : "#/components/schemas/web_service.ChartConfig.XAxisConfig"
}
}
};
Expand Down Expand Up @@ -5174,6 +5177,29 @@
"type" : "string",
"default" : "NumberFormatter",
"enum" : [ "NumberFormatter", "DateFormatter", "StringFormatter" ]
};
defs["web_service.ChartConfig.XAxisConfig"] = {
"type" : "object",
"properties" : {
"type" : {
"type" : "string"
},
"min" : {
"type" : "string"
},
"max" : {
"type" : "string"
},
"scale" : {
"type" : "boolean"
},
"name" : {
"type" : "string"
},
"column" : {
"type" : "string"
}
}
};
defs["web_service.ChartConfig.YAxisConfig"] = {
"type" : "object",
Expand All @@ -5189,6 +5215,9 @@
},
"stacked" : {
"type" : "string"
},
"column" : {
"type" : "string"
}
}
};
Expand Down
29 changes: 29 additions & 0 deletions openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -6844,6 +6844,9 @@
},
"lineConfig": {
"$ref": "#/definitions/web_service.ChartConfig.LineConfig"
},
"xAxis": {
"$ref": "#/definitions/web_service.ChartConfig.XAxisConfig"
}
}
},
Expand Down Expand Up @@ -7168,6 +7171,29 @@
],
"default": "NumberFormatter"
},
"web_service.ChartConfig.XAxisConfig": {
"type": "object",
"properties": {
"type": {
"type": "string"
},
"min": {
"type": "string"
},
"max": {
"type": "string"
},
"scale": {
"type": "boolean"
},
"name": {
"type": "string"
},
"column": {
"type": "string"
}
}
},
"web_service.ChartConfig.YAxisConfig": {
"type": "object",
"properties": {
Expand All @@ -7182,6 +7208,9 @@
},
"stacked": {
"type": "string"
},
"column": {
"type": "string"
}
}
},
Expand Down
3 changes: 3 additions & 0 deletions src/models/ObjectSerializer.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions src/models/WebServiceChartConfig.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

71 changes: 71 additions & 0 deletions src/models/WebServiceChartConfigXAxisConfig.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions src/models/WebServiceChartConfigYAxisConfig.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions src/models/all.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions src/types/ObjectParamAPI.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions src/types/ObservableAPI.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions src/types/PromiseAPI.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit cbe8861

Please sign in to comment.