@taphubhq/sdk-core 0.19.0 → 0.20.0
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/dist/index.d.mts +3 -0
- package/dist/index.d.ts +3 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -621,7 +621,10 @@ interface MqttCandleEvent {
|
|
|
621
621
|
interface MqttAcceptedBid {
|
|
622
622
|
id: string;
|
|
623
623
|
userId: string;
|
|
624
|
+
/** @deprecated use `pairId`; both carry the bare pair id (e.g. "grid-ETH-USD"). */
|
|
624
625
|
gameUuid: string;
|
|
626
|
+
/** Pair id, e.g. "grid-ETH-USD". */
|
|
627
|
+
pairId?: string;
|
|
625
628
|
currency: string;
|
|
626
629
|
amount: string;
|
|
627
630
|
coefficient: number;
|
package/dist/index.d.ts
CHANGED
|
@@ -621,7 +621,10 @@ interface MqttCandleEvent {
|
|
|
621
621
|
interface MqttAcceptedBid {
|
|
622
622
|
id: string;
|
|
623
623
|
userId: string;
|
|
624
|
+
/** @deprecated use `pairId`; both carry the bare pair id (e.g. "grid-ETH-USD"). */
|
|
624
625
|
gameUuid: string;
|
|
626
|
+
/** Pair id, e.g. "grid-ETH-USD". */
|
|
627
|
+
pairId?: string;
|
|
625
628
|
currency: string;
|
|
626
629
|
amount: string;
|
|
627
630
|
coefficient: number;
|