From d05554122657951fc09c715a1c346a17c0647134 Mon Sep 17 00:00:00 2001 From: Wing-Kam Wong Date: Thu, 2 Mar 2023 18:54:39 +0800 Subject: [PATCH] chore(sdk): regenerate Api.ts --- packages/nocodb-sdk/src/lib/Api.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/packages/nocodb-sdk/src/lib/Api.ts b/packages/nocodb-sdk/src/lib/Api.ts index 84060ed90d..87d3ad363c 100644 --- a/packages/nocodb-sdk/src/lib/Api.ts +++ b/packages/nocodb-sdk/src/lib/Api.ts @@ -262,19 +262,19 @@ export interface BaseListType { */ export interface ViewType { /** Unique ID for View */ - id: IdType; + id?: IdType; /** Unique Base ID */ - base_id: IdType; + base_id?: IdType; /** Unique Project ID */ - project_id: IdType; + project_id?: IdType; /** Unique Model ID */ fk_model_id: IdType; /** View Title */ title: string; /** View Type */ - type?: number; + type: number; /** If this view is shown? */ - show?: BoolType; + show: BoolType; /** The rder of the list of views */ order?: number; /** UUID of the view */