@xapy/orderbook 0.1.24 → 0.1.26
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -1
- package/dist/exchanges/binance/index.d.cts +1 -1
- package/dist/exchanges/binance/index.d.ts +1 -1
- package/dist/exchanges/bingx/index.d.cts +1 -1
- package/dist/exchanges/bingx/index.d.ts +1 -1
- package/dist/exchanges/bitget/index.d.cts +1 -1
- package/dist/exchanges/bitget/index.d.ts +1 -1
- package/dist/exchanges/bybit/index.d.cts +1 -1
- package/dist/exchanges/bybit/index.d.ts +1 -1
- package/dist/exchanges/coinex/index.d.cts +1 -1
- package/dist/exchanges/coinex/index.d.ts +1 -1
- package/dist/exchanges/deribit/index.d.cts +1 -1
- package/dist/exchanges/deribit/index.d.ts +1 -1
- package/dist/exchanges/{huobi → edgex}/index.cjs +181 -122
- package/dist/exchanges/edgex/index.cjs.map +1 -0
- package/dist/exchanges/edgex/index.d.cts +62 -0
- package/dist/exchanges/edgex/index.d.ts +62 -0
- package/dist/exchanges/{huobi → edgex}/index.js +177 -120
- package/dist/exchanges/edgex/index.js.map +1 -0
- package/dist/exchanges/gate/index.d.cts +1 -1
- package/dist/exchanges/gate/index.d.ts +1 -1
- package/dist/exchanges/grvt/index.d.cts +1 -1
- package/dist/exchanges/grvt/index.d.ts +1 -1
- package/dist/exchanges/hyperliquid/index.d.cts +1 -1
- package/dist/exchanges/hyperliquid/index.d.ts +1 -1
- package/dist/exchanges/kucoin/index.d.cts +1 -1
- package/dist/exchanges/kucoin/index.d.ts +1 -1
- package/dist/exchanges/lighter/index.cjs +664 -0
- package/dist/exchanges/lighter/index.cjs.map +1 -0
- package/dist/exchanges/lighter/index.d.cts +58 -0
- package/dist/exchanges/lighter/index.d.ts +58 -0
- package/dist/exchanges/lighter/index.js +658 -0
- package/dist/exchanges/lighter/index.js.map +1 -0
- package/dist/exchanges/okx/index.d.cts +1 -1
- package/dist/exchanges/okx/index.d.ts +1 -1
- package/dist/index.cjs +519 -171
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +4 -3
- package/dist/index.d.ts +4 -3
- package/dist/index.js +518 -171
- package/dist/index.js.map +1 -1
- package/dist/{stream-Con47OAp.d.cts → stream-YYPvjMV4.d.cts} +1 -1
- package/dist/{stream-Con47OAp.d.ts → stream-YYPvjMV4.d.ts} +1 -1
- package/package.json +24 -12
- package/dist/exchanges/huobi/index.cjs.map +0 -1
- package/dist/exchanges/huobi/index.d.cts +0 -37
- package/dist/exchanges/huobi/index.d.ts +0 -37
- package/dist/exchanges/huobi/index.js.map +0 -1
package/dist/index.d.cts
CHANGED
|
@@ -1,10 +1,9 @@
|
|
|
1
|
-
import { B as BookEvent, O as OrderbookLevel, M as Market } from './stream-
|
|
2
|
-
export { C as ClientOptions, E as ExchangeName, a as Orderbook, b as OrderbookOptions, c as OrderbookStream, S as Side, d as StreamEvents } from './stream-
|
|
1
|
+
import { B as BookEvent, O as OrderbookLevel, M as Market } from './stream-YYPvjMV4.cjs';
|
|
2
|
+
export { C as ClientOptions, E as ExchangeName, a as Orderbook, b as OrderbookOptions, c as OrderbookStream, S as Side, d as StreamEvents } from './stream-YYPvjMV4.cjs';
|
|
3
3
|
export { BybitClient } from './exchanges/bybit/index.cjs';
|
|
4
4
|
export { BitgetClient } from './exchanges/bitget/index.cjs';
|
|
5
5
|
export { GateClient } from './exchanges/gate/index.cjs';
|
|
6
6
|
export { BingxClient } from './exchanges/bingx/index.cjs';
|
|
7
|
-
export { HuobiClient } from './exchanges/huobi/index.cjs';
|
|
8
7
|
export { CoinexClient } from './exchanges/coinex/index.cjs';
|
|
9
8
|
export { OkxClient } from './exchanges/okx/index.cjs';
|
|
10
9
|
export { BinanceClient } from './exchanges/binance/index.cjs';
|
|
@@ -12,6 +11,8 @@ export { HyperliquidClient } from './exchanges/hyperliquid/index.cjs';
|
|
|
12
11
|
export { KucoinClient } from './exchanges/kucoin/index.cjs';
|
|
13
12
|
export { DeribitClient } from './exchanges/deribit/index.cjs';
|
|
14
13
|
export { GrvtClient } from './exchanges/grvt/index.cjs';
|
|
14
|
+
export { LighterClient } from './exchanges/lighter/index.cjs';
|
|
15
|
+
export { EdgexClient } from './exchanges/edgex/index.cjs';
|
|
15
16
|
|
|
16
17
|
declare class ExchangeError extends Error {
|
|
17
18
|
readonly exchange: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -1,10 +1,9 @@
|
|
|
1
|
-
import { B as BookEvent, O as OrderbookLevel, M as Market } from './stream-
|
|
2
|
-
export { C as ClientOptions, E as ExchangeName, a as Orderbook, b as OrderbookOptions, c as OrderbookStream, S as Side, d as StreamEvents } from './stream-
|
|
1
|
+
import { B as BookEvent, O as OrderbookLevel, M as Market } from './stream-YYPvjMV4.js';
|
|
2
|
+
export { C as ClientOptions, E as ExchangeName, a as Orderbook, b as OrderbookOptions, c as OrderbookStream, S as Side, d as StreamEvents } from './stream-YYPvjMV4.js';
|
|
3
3
|
export { BybitClient } from './exchanges/bybit/index.js';
|
|
4
4
|
export { BitgetClient } from './exchanges/bitget/index.js';
|
|
5
5
|
export { GateClient } from './exchanges/gate/index.js';
|
|
6
6
|
export { BingxClient } from './exchanges/bingx/index.js';
|
|
7
|
-
export { HuobiClient } from './exchanges/huobi/index.js';
|
|
8
7
|
export { CoinexClient } from './exchanges/coinex/index.js';
|
|
9
8
|
export { OkxClient } from './exchanges/okx/index.js';
|
|
10
9
|
export { BinanceClient } from './exchanges/binance/index.js';
|
|
@@ -12,6 +11,8 @@ export { HyperliquidClient } from './exchanges/hyperliquid/index.js';
|
|
|
12
11
|
export { KucoinClient } from './exchanges/kucoin/index.js';
|
|
13
12
|
export { DeribitClient } from './exchanges/deribit/index.js';
|
|
14
13
|
export { GrvtClient } from './exchanges/grvt/index.js';
|
|
14
|
+
export { LighterClient } from './exchanges/lighter/index.js';
|
|
15
|
+
export { EdgexClient } from './exchanges/edgex/index.js';
|
|
15
16
|
|
|
16
17
|
declare class ExchangeError extends Error {
|
|
17
18
|
readonly exchange: string;
|