Browse Source

fix(nocodb-sdk): missing fields / types

pull/3818/head
Wing-Kam Wong 2 years ago
parent
commit
acd0972575
  1. 3
      packages/nocodb-sdk/src/lib/Api.ts
  2. 8
      scripts/sdk/swagger.json

3
packages/nocodb-sdk/src/lib/Api.ts

@ -379,9 +379,10 @@ export interface KanbanColumnType {
export interface KanbanType {
id?: string;
title?: string;
alias?: string;
columns?: KanbanColumnType[];
fk_model_id?: string;
grp_column_id?: string;
grp_column_id?: string | null;
meta?: string | object;
}

8
scripts/sdk/swagger.json

@ -7319,6 +7319,9 @@
"title": {
"type": "string"
},
"alias": {
"type": "string"
},
"columns": {
"type": "array",
"items": {
@ -7329,7 +7332,10 @@
"type": "string"
},
"grp_column_id": {
"type": "string"
"type": [
"string",
"null"
]
},
"meta": {
"type": [

Loading…
Cancel
Save