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 { export interface KanbanType {
id?: string; id?: string;
title?: string; title?: string;
alias?: string;
public?: boolean;
password?: string;
columns?: KanbanColumnType[]; columns?: KanbanColumnType[];
fk_model_id?: string; fk_model_id?: string;
grp_column_id?: string; grp_column_id?: string;
stack_meta?: string | object; meta?: string | object;
} }
export interface FormType { export interface FormType {

11
scripts/sdk/swagger.json

@ -7310,15 +7310,6 @@
"title": { "title": {
"type": "string" "type": "string"
}, },
"alias": {
"type": "string"
},
"public": {
"type": "boolean"
},
"password": {
"type": "string"
},
"columns": { "columns": {
"type": "array", "type": "array",
"items": { "items": {
@ -7331,7 +7322,7 @@
"grp_column_id": { "grp_column_id": {
"type": "string" "type": "string"
}, },
"stack_meta": { "meta": {
"type": [ "type": [
"string", "string",
"object" "object"

Loading…
Cancel
Save