@hmxlabs/dax-client 2.8.0 → 2.10.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.
@@ -489,6 +489,9 @@ export interface ListingDetailFullResponse {
489
489
  bids?: ListingDetailBid[] | null;
490
490
  /** @format double */
491
491
  minBid?: number;
492
+ isWatchedByMe?: boolean | null;
493
+ /** @format double */
494
+ watchCount?: number;
492
495
  }
493
496
  export interface ListingDetailPropertyMap {
494
497
  name?: string | null;
@@ -546,6 +549,9 @@ export interface ListingDetailResponse {
546
549
  attachments?: ListingDetailAttachment[] | null;
547
550
  bidsError?: string | null;
548
551
  bids?: ListingDetailBid[] | null;
552
+ isWatchedByMe?: boolean | null;
553
+ /** @format double */
554
+ watchCount?: number;
549
555
  }
550
556
  export interface ListingStatusCountResponse {
551
557
  type?: string | null;
@@ -39,4 +39,6 @@ export interface ListingDetailFindAllResponse {
39
39
  attachments: ListingDetailFindAllAttachment[];
40
40
  bidsError: string;
41
41
  bids: ListingDetailFindAllBid[];
42
+ isWatchedByMe?: boolean;
43
+ watchCount: number;
42
44
  }
@@ -57,4 +57,6 @@ export interface ListingDetailGetByIdResponse {
57
57
  bidsError: string;
58
58
  bids: ListingDetailGetByIdBid[];
59
59
  minBid: number;
60
+ isWatchedByMe?: boolean;
61
+ watchCount: number;
60
62
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hmxlabs/dax-client",
3
- "version": "2.8.0",
3
+ "version": "2.10.0",
4
4
  "type": "module",
5
5
  "main": "build/index.js",
6
6
  "module": "build/index.esm.js",