feat(sdk): add column get api

This commit is contained in:
Wing-Kam Wong
2023-01-16 14:23:48 +08:00
parent a09068ecd6
commit 0d84737517
2 changed files with 33 additions and 12 deletions

View File

@@ -1972,8 +1972,7 @@
"project_id": {
"type": "string"
},
"meta": {
}
"meta": {}
}
}
}
@@ -2105,7 +2104,7 @@
]
},
"delete": {
"summary": "",
"summary": "Column Delete",
"operationId": "db-table-column-delete",
"responses": {
"200": {
@@ -2115,6 +2114,18 @@
"tags": [
"DB table column"
]
},
"get": {
"summary": "Column Get",
"operationId": "db-table-column-get",
"responses": {
"200": {
"description": "OK"
}
},
"tags": [
"DB Table Column"
]
}
},
"/api/v1/db/meta/columns/{columnId}/primary": {
@@ -2194,8 +2205,7 @@
"order": {
"type": "number"
},
"meta": {
},
"meta": {},
"title": {
"type": "string"
},
@@ -7492,8 +7502,7 @@
"number"
]
},
"meta": {
}
"meta": {}
},
"required": [
"table_name",
@@ -7591,8 +7600,7 @@
"uuid": {
"type": "string"
},
"meta": {
},
"meta": {},
"show_system_fields": {
"type": "boolean"
},
@@ -7835,8 +7843,7 @@
"$ref": "#/components/schemas/Column"
}
},
"meta": {
}
"meta": {}
},
"required": [
"table_name",
@@ -10042,4 +10049,4 @@
}
}
}
}
}