Skip to content

Commit

Permalink
feat: added support for !=
Browse files Browse the repository at this point in the history
  • Loading branch information
nikkothari22 committed Feb 9, 2023
1 parent 0c496ff commit 9aa9dad
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "frappe-js-sdk",
"version": "1.1.16",
"version": "1.1.17",
"description": "TypeScript/JavaScript client for Frappe Framework REST API",
"main": "lib/index.js",
"types": "lib/index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion src/db/types.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
type FilterOperator = '=' | '>' | '<' | '>=' | '<=' | '<>' | 'in' | 'like' | 'between';
type FilterOperator = '=' | '>' | '<' | '>=' | '<=' | '<>' | 'in' | 'like' | 'between' | '!=';
type Value = string | number | boolean | Date | null;
export type Filter = [string, FilterOperator, Value | Value[]];

Expand Down

0 comments on commit 9aa9dad

Please sign in to comment.