diff --git a/package.json b/package.json index aa28ba1c..09b9d1cb 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@velora-dex/sdk", - "version": "9.3.2", + "version": "9.3.3", "main": "dist/index.js", "module": "dist/sdk.esm.js", "typings": "dist/index.d.ts", diff --git a/src/methods/delta/getDeltaOrders.ts b/src/methods/delta/getDeltaOrders.ts index 498bfbad..3c9c4146 100644 --- a/src/methods/delta/getDeltaOrders.ts +++ b/src/methods/delta/getDeltaOrders.ts @@ -42,7 +42,7 @@ type OrdersFilter = { * - **INSUFFICIENT_BALANCE** — returned as SUSPENDED from API * - **INSUFFICIENT_ALLOWANCE** — returned as SUSPENDED from API * - **INVALIDATED** — returned as FAILED from API - * - **ACTIVE** — All orders with NOT_STARTED, RUNNING, EXECUTING or SUSPENDED statuses. + * - **ACTIVE** — All orders with NOT_STARTED, RUNNING, EXECUTING, CANCELLING or SUSPENDED statuses. * - **INACTIVE** — All orders with EXECUTED, FAILED, EXPIRED, CANCELLED or INVALIDATED statuses. */ status?: DeltaOrderFilterByStatus[]; diff --git a/src/methods/delta/helpers/types.ts b/src/methods/delta/helpers/types.ts index ec44de92..1feeffbd 100644 --- a/src/methods/delta/helpers/types.ts +++ b/src/methods/delta/helpers/types.ts @@ -61,6 +61,7 @@ export type DeltaAuctionStatus = | 'FAILED' | 'EXPIRED' | 'CANCELLED' + | 'CANCELLING' | 'SUSPENDED'; type DeltaAuctionTransaction = {