Browse Source

feat(nocodb-sdk): add KanbanType to ViewType.view

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

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

@ -136,7 +136,7 @@ export interface ViewType {
show_system_fields?: boolean; show_system_fields?: boolean;
lock_type?: 'collaborative' | 'locked' | 'personal'; lock_type?: 'collaborative' | 'locked' | 'personal';
type?: number; type?: number;
view?: FormType | GridType | GalleryType; view?: FormType | GridType | GalleryType | KanbanType;
} }
export interface TableInfoType { export interface TableInfoType {

3
scripts/sdk/swagger.json

@ -6297,6 +6297,9 @@
}, },
{ {
"$ref": "#/components/schemas/Gallery" "$ref": "#/components/schemas/Gallery"
},
{
"$ref": "#/components/schemas/Kanban"
} }
] ]
} }

Loading…
Cancel
Save