Skip to content

Commit

Permalink
gen swagger: workflow detail add sql version id result
Browse files Browse the repository at this point in the history
  • Loading branch information
iwanghc committed Oct 11, 2024
1 parent 4e10b5d commit b5ee123
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 6 deletions.
16 changes: 14 additions & 2 deletions sqle/docs/docs.go
Original file line number Diff line number Diff line change
Expand Up @@ -18252,6 +18252,17 @@ var doc = `{
}
}
},
"v2.SqlVersion": {
"type": "object",
"properties": {
"sql_version_id": {
"type": "integer"
},
"sql_version_name": {
"type": "string"
}
}
},
"v2.TableMetas": {
"type": "object",
"properties": {
Expand Down Expand Up @@ -18403,8 +18414,9 @@ var doc = `{
"$ref": "#/definitions/v2.WorkflowRecordResV2"
}
},
"sql_version_name": {
"type": "string"
"sql_version": {
"type": "object",
"$ref": "#/definitions/v2.SqlVersion"
},
"workflow_id": {
"type": "string"
Expand Down
16 changes: 14 additions & 2 deletions sqle/docs/swagger.json
Original file line number Diff line number Diff line change
Expand Up @@ -18236,6 +18236,17 @@
}
}
},
"v2.SqlVersion": {
"type": "object",
"properties": {
"sql_version_id": {
"type": "integer"
},
"sql_version_name": {
"type": "string"
}
}
},
"v2.TableMetas": {
"type": "object",
"properties": {
Expand Down Expand Up @@ -18387,8 +18398,9 @@
"$ref": "#/definitions/v2.WorkflowRecordResV2"
}
},
"sql_version_name": {
"type": "string"
"sql_version": {
"type": "object",
"$ref": "#/definitions/v2.SqlVersion"
},
"workflow_id": {
"type": "string"
Expand Down
12 changes: 10 additions & 2 deletions sqle/docs/swagger.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5332,6 +5332,13 @@ definitions:
- manual_audited
type: string
type: object
v2.SqlVersion:
properties:
sql_version_id:
type: integer
sql_version_name:
type: string
type: object
v2.TableMetas:
properties:
err_message:
Expand Down Expand Up @@ -5435,8 +5442,9 @@ definitions:
items:
$ref: '#/definitions/v2.WorkflowRecordResV2'
type: array
sql_version_name:
type: string
sql_version:
$ref: '#/definitions/v2.SqlVersion'
type: object
workflow_id:
type: string
workflow_name:
Expand Down

0 comments on commit b5ee123

Please sign in to comment.