Browse Source

refactor(nc-gui): remove unused properties & rename stack_meta to meta

pull/3818/head
Wing-Kam Wong 2 years ago
parent
commit
4e44668200
  1. 5
      packages/nocodb-sdk/src/lib/Api.ts
  2. 11
      scripts/sdk/swagger.json

5
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 {

11
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"

Loading…
Cancel
Save