Skip to content

Commit

Permalink
docs: update swagger
Browse files Browse the repository at this point in the history
  • Loading branch information
winfredLIN committed May 7, 2024
1 parent 71dd18d commit 445ed6b
Show file tree
Hide file tree
Showing 3 changed files with 80 additions and 0 deletions.
30 changes: 30 additions & 0 deletions sqle/docs/docs.go
Original file line number Diff line number Diff line change
Expand Up @@ -13720,6 +13720,32 @@ var doc = `{
}
}
},
"v2.ExecResultCount": {
"type": "object",
"properties": {
"doing_count": {
"type": "integer"
},
"failed_count": {
"type": "integer"
},
"initialized_count": {
"type": "integer"
},
"manually_executed_count": {
"type": "integer"
},
"succeeded_count": {
"type": "integer"
},
"terminate_failed_count": {
"type": "integer"
},
"terminate_succeeded_count": {
"type": "integer"
}
}
},
"v2.FileOverview": {
"type": "object",
"properties": {
Expand All @@ -13730,6 +13756,10 @@ var doc = `{
"exec_order": {
"type": "integer"
},
"exec_result_count": {
"type": "object",
"$ref": "#/definitions/v2.ExecResultCount"
},
"exec_status": {
"type": "string"
},
Expand Down
30 changes: 30 additions & 0 deletions sqle/docs/swagger.json
Original file line number Diff line number Diff line change
Expand Up @@ -13704,6 +13704,32 @@
}
}
},
"v2.ExecResultCount": {
"type": "object",
"properties": {
"doing_count": {
"type": "integer"
},
"failed_count": {
"type": "integer"
},
"initialized_count": {
"type": "integer"
},
"manually_executed_count": {
"type": "integer"
},
"succeeded_count": {
"type": "integer"
},
"terminate_failed_count": {
"type": "integer"
},
"terminate_succeeded_count": {
"type": "integer"
}
}
},
"v2.FileOverview": {
"type": "object",
"properties": {
Expand All @@ -13714,6 +13740,10 @@
"exec_order": {
"type": "integer"
},
"exec_result_count": {
"type": "object",
"$ref": "#/definitions/v2.ExecResultCount"
},
"exec_status": {
"type": "string"
},
Expand Down
20 changes: 20 additions & 0 deletions sqle/docs/swagger.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3751,13 +3751,33 @@ definitions:
logo_url:
type: string
type: object
v2.ExecResultCount:
properties:
doing_count:
type: integer
failed_count:
type: integer
initialized_count:
type: integer
manually_executed_count:
type: integer
succeeded_count:
type: integer
terminate_failed_count:
type: integer
terminate_succeeded_count:
type: integer
type: object
v2.FileOverview:
properties:
audit_result_count:
$ref: '#/definitions/v2.AuditResultCount'
type: object
exec_order:
type: integer
exec_result_count:
$ref: '#/definitions/v2.ExecResultCount'
type: object
exec_status:
type: string
file_id:
Expand Down

0 comments on commit 445ed6b

Please sign in to comment.