From ce3f282de1c7d6f6cadc7caa01d9fbf1e9e318c4 Mon Sep 17 00:00:00 2001 From: andrii-shymkiv Date: Fri, 20 Feb 2026 09:33:10 +0200 Subject: [PATCH 1/3] delta/CANCELLING status --- src/methods/delta/getDeltaOrders.ts | 2 +- src/methods/delta/helpers/types.ts | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) 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 = { From d1b36f7189ae841da9426bd1e9ac449b3228e589 Mon Sep 17 00:00:00 2001 From: andrii-shymkiv Date: Fri, 20 Feb 2026 09:58:27 +0200 Subject: [PATCH 2/3] Release 9.3.3-dev.2 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index aa28ba1c..dedfd747 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@velora-dex/sdk", - "version": "9.3.2", + "version": "9.3.3-dev.2", "main": "dist/index.js", "module": "dist/sdk.esm.js", "typings": "dist/index.d.ts", From 1213372ae4663f9a785f4bd164c8ee98fdb22b3a Mon Sep 17 00:00:00 2001 From: andrii-shymkiv Date: Fri, 20 Feb 2026 14:08:16 +0200 Subject: [PATCH 3/3] Release 9.3.3 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index dedfd747..09b9d1cb 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@velora-dex/sdk", - "version": "9.3.3-dev.2", + "version": "9.3.3", "main": "dist/index.js", "module": "dist/sdk.esm.js", "typings": "dist/index.d.ts",