diff --git a/package.json b/package.json index f61dcd9..0d95237 100644 --- a/package.json +++ b/package.json @@ -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", diff --git a/src/query.ts b/src/query.ts index 828f783..8c1e186 100644 --- a/src/query.ts +++ b/src/query.ts @@ -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();