Skip to content

Commit 50b5f4b

Browse files
authored
Merge pull request #92 from nash-io/ts/fix-updatedaccount-orders
Ts/fix updatedaccount orders
2 parents fc51cd3 + 0bd6a0f commit 50b5f4b

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

33
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
44

5+
<a name="6.3.11"></a>
6+
## [6.3.11](https://github.com/nash-io/api-client-typescript/compare/v6.3.9...v6.3.11) (2021-10-12)
7+
8+
9+
510
<a name="6.3.9"></a>
611
## [6.3.9](https://github.com/nash-io/api-client-typescript/compare/v6.3.7...v6.3.9) (2021-10-11)
712

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@neon-exchange/api-client-typescript",
3-
"version": "6.3.9",
3+
"version": "6.3.11",
44
"description": "Official TypeScript client for interacting with the Nash exchange",
55
"main": "build/main/index.js",
66
"typings": "build/main/index.d.ts",

src/client/client.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,7 @@ import { UPDATED_ACCOUNT_ORDERS } from '../subscriptions/updatedAccountOrders'
9696
import { NEW_TRADES } from '../subscriptions/newTrades'
9797
import { UPDATED_CANDLES } from '../subscriptions/updatedCandles'
9898
import { UPDATED_ACCOUNT_BALANCE } from '../subscriptions/updatedAccountBalance'
99+
import { UPDATED_TICKERS } from '../subscriptions/updatedTickers'
99100

100101
import {
101102
DH_FIIL_POOL,
@@ -739,7 +740,8 @@ export class Client {
739740
AbsintheSocket.observe(
740741
this.getAbsintheSocket(),
741742
AbsintheSocket.send(this.getAbsintheSocket(), {
742-
'@icebob/node-memwatch': '^2.1.0'
743+
operation: gqlToString(UPDATED_TICKERS),
744+
variables: {}
743745
}),
744746
handlers
745747
)

0 commit comments

Comments
 (0)