Skip to content

Commit

Permalink
Merge pull request #1 from Parana-Games/omer/not-equal-query-comperator
Browse files Browse the repository at this point in the history
Omer/not equal query comperator
  • Loading branch information
OmerHadad-Parana authored Sep 26, 2024
2 parents 30b0f26 + 1eb0937 commit 60a1779
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@parana-games/tinymo",
"version": "2.0.8",
"version": "2.0.9",
"description": "simple DynamoDB DocumentClient wrapper",
"types": "./dist-types/index.d.ts",
"main": "./dist/index.js",
Expand Down
2 changes: 1 addition & 1 deletion src/query.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { QueryCommand, QueryCommandInput } from '@aws-sdk/lib-dynamodb';
import { ConditionExpression } from './condition';
import { Search } from './search';

export type KeyComparator = '=' | '<' | '>' | '<=' | '>=';
export type KeyComparator = '=' | '<>' | '<' | '>' | '<=' | '>=';

export class Query extends Search {
private keyCondition = new ConditionExpression();
Expand Down

0 comments on commit 60a1779

Please sign in to comment.