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 9, 2024
1 parent e6d07af commit 0b25634
Show file tree
Hide file tree
Showing 7 changed files with 629 additions and 0 deletions.
409 changes: 409 additions & 0 deletions doc/index.html

Large diffs are not rendered by default.

25 changes: 25 additions & 0 deletions openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -1298,6 +1298,31 @@
]
}
},
"/api/v1/project/{projectId}": {
"get": {
"summary": "Get project details",
"operationId": "GetProjectById",
"responses": {
"200": {
"description": "A successful response.",
"schema": {
"$ref": "#/definitions/common.ProjectInfo"
}
}
},
"parameters": [
{
"name": "projectId",
"in": "path",
"required": true,
"type": "string"
}
],
"tags": [
"Web"
]
}
},
"/api/v1/projects": {
"get": {
"summary": "Get project list",
Expand Down
53 changes: 53 additions & 0 deletions src/WebApi.md

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

67 changes: 67 additions & 0 deletions src/apis/WebApi.ts

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

26 changes: 26 additions & 0 deletions src/types/ObjectParamAPI.ts

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

31 changes: 31 additions & 0 deletions src/types/ObservableAPI.ts

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

18 changes: 18 additions & 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 0b25634

Please sign in to comment.