Browse Source

refactor(sdk): regenerate Api.ts

pull/5317/head
Wing-Kam Wong 2 years ago
parent
commit
ca55d3a8f8
  1. 4
      packages/nocodb-sdk/src/lib/Api.ts

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

@ -690,7 +690,7 @@ export interface FilterReqType {
/** Foreign Key to Column */ /** Foreign Key to Column */
fk_column_id?: IdType; fk_column_id?: IdType;
/** Belong to which filter ID */ /** Belong to which filter ID */
fk_parent_id?: IdType; fk_parent_id?: StringOrNullType;
/** Is this filter grouped? */ /** Is this filter grouped? */
is_group?: BoolType; is_group?: BoolType;
/** Logical Operator */ /** Logical Operator */
@ -1147,6 +1147,8 @@ export interface HookReqType {
title: string; title: string;
/** Hook Type */ /** Hook Type */
type?: string | null; type?: string | null;
/** Is this hook assoicated with some filters */
condition?: BoolType;
} }
/** /**

Loading…
Cancel
Save