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