Browse Source

chore(sdk): regenerate Api.ts

pull/5222/head
Wing-Kam Wong 2 years ago
parent
commit
d055541226
  1. 10
      packages/nocodb-sdk/src/lib/Api.ts

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

@ -262,19 +262,19 @@ export interface BaseListType {
*/ */
export interface ViewType { export interface ViewType {
/** Unique ID for View */ /** Unique ID for View */
id: IdType; id?: IdType;
/** Unique Base ID */ /** Unique Base ID */
base_id: IdType; base_id?: IdType;
/** Unique Project ID */ /** Unique Project ID */
project_id: IdType; project_id?: IdType;
/** Unique Model ID */ /** Unique Model ID */
fk_model_id: IdType; fk_model_id: IdType;
/** View Title */ /** View Title */
title: string; title: string;
/** View Type */ /** View Type */
type?: number; type: number;
/** If this view is shown? */ /** If this view is shown? */
show?: BoolType; show: BoolType;
/** The rder of the list of views */ /** The rder of the list of views */
order?: number; order?: number;
/** UUID of the view */ /** UUID of the view */

Loading…
Cancel
Save