diff --git a/packages/nocodb-sdk/src/lib/Api.ts b/packages/nocodb-sdk/src/lib/Api.ts index 1ae3998710..67da1f45b2 100644 --- a/packages/nocodb-sdk/src/lib/Api.ts +++ b/packages/nocodb-sdk/src/lib/Api.ts @@ -378,13 +378,10 @@ export interface KanbanColumnType { export interface KanbanType { id?: string; title?: string; - alias?: string; - public?: boolean; - password?: string; columns?: KanbanColumnType[]; fk_model_id?: string; grp_column_id?: string; - stack_meta?: string | object; + meta?: string | object; } export interface FormType { diff --git a/scripts/sdk/swagger.json b/scripts/sdk/swagger.json index 99d5711895..54db4f530c 100644 --- a/scripts/sdk/swagger.json +++ b/scripts/sdk/swagger.json @@ -7310,15 +7310,6 @@ "title": { "type": "string" }, - "alias": { - "type": "string" - }, - "public": { - "type": "boolean" - }, - "password": { - "type": "string" - }, "columns": { "type": "array", "items": { @@ -7331,7 +7322,7 @@ "grp_column_id": { "type": "string" }, - "stack_meta": { + "meta": { "type": [ "string", "object"