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

Loading…
Cancel
Save