@xapy/orderbook 0.1.23 → 0.1.24
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 +1 -0
- 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/gate/index.d.cts +1 -1
- package/dist/exchanges/gate/index.d.ts +1 -1
- package/dist/exchanges/grvt/index.cjs +627 -0
- package/dist/exchanges/grvt/index.cjs.map +1 -0
- package/dist/exchanges/grvt/index.d.cts +47 -0
- package/dist/exchanges/grvt/index.d.ts +47 -0
- package/dist/exchanges/grvt/index.js +623 -0
- package/dist/exchanges/grvt/index.js.map +1 -0
- package/dist/exchanges/huobi/index.d.cts +1 -1
- package/dist/exchanges/huobi/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/okx/index.d.cts +1 -1
- package/dist/exchanges/okx/index.d.ts +1 -1
- package/dist/index.cjs +230 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +3 -2
- package/dist/index.d.ts +3 -2
- package/dist/index.js +230 -4
- package/dist/index.js.map +1 -1
- package/dist/{stream-CO3LD9jf.d.cts → stream-Con47OAp.d.cts} +1 -1
- package/dist/{stream-CO3LD9jf.d.ts → stream-Con47OAp.d.ts} +1 -1
- package/package.json +12 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
type ExchangeName = "bybit" | "okx" | "gate" | "coinex" | "kucoin" | "bingx" | "huobi" | "bitget" | "binance" | "hyperliquid" | "deribit";
|
|
1
|
+
type ExchangeName = "bybit" | "okx" | "gate" | "coinex" | "kucoin" | "bingx" | "huobi" | "bitget" | "binance" | "hyperliquid" | "deribit" | "grvt";
|
|
2
2
|
type Market = "spot" | "perpetual";
|
|
3
3
|
type Side = "bid" | "ask";
|
|
4
4
|
interface OrderbookLevel {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
type ExchangeName = "bybit" | "okx" | "gate" | "coinex" | "kucoin" | "bingx" | "huobi" | "bitget" | "binance" | "hyperliquid" | "deribit";
|
|
1
|
+
type ExchangeName = "bybit" | "okx" | "gate" | "coinex" | "kucoin" | "bingx" | "huobi" | "bitget" | "binance" | "hyperliquid" | "deribit" | "grvt";
|
|
2
2
|
type Market = "spot" | "perpetual";
|
|
3
3
|
type Side = "bid" | "ask";
|
|
4
4
|
interface OrderbookLevel {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xapy/orderbook",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.24",
|
|
4
4
|
"description": "Lightweight multi-exchange orderbook SDK — REST snapshot + WS maintained stream",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"publishConfig": {
|
|
@@ -133,6 +133,16 @@
|
|
|
133
133
|
"types": "./dist/exchanges/deribit/index.d.cts",
|
|
134
134
|
"default": "./dist/exchanges/deribit/index.cjs"
|
|
135
135
|
}
|
|
136
|
+
},
|
|
137
|
+
"./grvt": {
|
|
138
|
+
"import": {
|
|
139
|
+
"types": "./dist/exchanges/grvt/index.d.ts",
|
|
140
|
+
"default": "./dist/exchanges/grvt/index.js"
|
|
141
|
+
},
|
|
142
|
+
"require": {
|
|
143
|
+
"types": "./dist/exchanges/grvt/index.d.cts",
|
|
144
|
+
"default": "./dist/exchanges/grvt/index.cjs"
|
|
145
|
+
}
|
|
136
146
|
}
|
|
137
147
|
},
|
|
138
148
|
"peerDependencies": {
|
|
@@ -171,6 +181,7 @@
|
|
|
171
181
|
"hyperliquid",
|
|
172
182
|
"kucoin",
|
|
173
183
|
"deribit",
|
|
184
|
+
"grvt",
|
|
174
185
|
"websocket"
|
|
175
186
|
],
|
|
176
187
|
"license": "MIT"
|