@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 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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@taphubhq/sdk-core",
3
- "version": "0.19.0",
3
+ "version": "0.20.0",
4
4
  "description": "Core SDK for building on the TabHub platform",
5
5
  "license": "MIT",
6
6
  "main": "./dist/index.cjs",