Browse Source

feat(nocodb-sdk): add comparison_sub_op

pull/5185/head
Wing-Kam Wong 2 years ago
parent
commit
c82a4f63d0
  1. 1
      packages/nocodb-sdk/src/lib/Api.ts
  2. 5
      scripts/sdk/swagger.json

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

@ -191,6 +191,7 @@ export interface FilterType {
fk_column_id?: string; fk_column_id?: string;
logical_op?: string; logical_op?: string;
comparison_op?: string; comparison_op?: string;
comparison_sub_op?: string;
value?: string | number | boolean | null; value?: string | number | boolean | null;
is_group?: boolean; is_group?: boolean;
children?: FilterType[]; children?: FilterType[];

5
scripts/sdk/swagger.json

@ -1914,6 +1914,7 @@
"fk_column_id": "string", "fk_column_id": "string",
"logical_op": "string", "logical_op": "string",
"comparison_op": "string", "comparison_op": "string",
"comparison_sub_op": "string",
"value": "string", "value": "string",
"is_group": true, "is_group": true,
"children": [ "children": [
@ -7784,6 +7785,7 @@
"fk_column_id": "string", "fk_column_id": "string",
"logical_op": "string", "logical_op": "string",
"comparison_op": "string", "comparison_op": "string",
"comparison_sub_op": "string",
"value": "string", "value": "string",
"is_group": true, "is_group": true,
"children": [ "children": [
@ -7994,6 +7996,9 @@
"comparison_op": { "comparison_op": {
"type": "string" "type": "string"
}, },
"comparison_sub_op": {
"type": "string"
},
"value": { "value": {
"type": [ "type": [
"string", "string",

Loading…
Cancel
Save