@hectare/platform.clients.trading 1.1.10 → 1.1.12

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.
@@ -55,6 +55,7 @@ export type BidDetail = {
55
55
  startDateUTC: string;
56
56
  endDateUTC: string;
57
57
  type: 'date' | 'month';
58
+ asAvailable?: boolean | null;
58
59
  };
59
60
  buyerNotes: string | null;
60
61
  files?: Array<{
@@ -268,6 +268,7 @@ export type ContractDetail = {
268
268
  } | null;
269
269
  }>;
270
270
  vetted?: boolean;
271
+ rejected?: boolean;
271
272
  isMerchant?: boolean;
272
273
  sqc?: {
273
274
  number: string;
@@ -24,6 +24,7 @@ export type CreateListing = {
24
24
  startDateUTC: string;
25
25
  endDateUTC: string;
26
26
  type: 'date' | 'month';
27
+ asAvailable?: boolean | null;
27
28
  };
28
29
  price?: {
29
30
  amount: number;
@@ -52,6 +52,7 @@ export type ListingDetail = {
52
52
  startDateUTC: string;
53
53
  endDateUTC: string;
54
54
  type: 'date' | 'month';
55
+ asAvailable?: boolean | null;
55
56
  };
56
57
  buyerNotes: string | null;
57
58
  files?: Array<{
@@ -259,6 +260,7 @@ export type ListingDetail = {
259
260
  startDateUTC: string;
260
261
  endDateUTC: string;
261
262
  type: 'date' | 'month';
263
+ asAvailable?: boolean | null;
262
264
  };
263
265
  buyerNotes: string | null;
264
266
  files?: Array<{
@@ -52,6 +52,7 @@ export type ListingSummary = {
52
52
  startDateUTC: string;
53
53
  endDateUTC: string;
54
54
  type: 'date' | 'month';
55
+ asAvailable?: boolean | null;
55
56
  };
56
57
  buyerNotes: string | null;
57
58
  files?: Array<{
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hectare/platform.clients.trading",
3
- "version": "1.1.10",
3
+ "version": "1.1.12",
4
4
  "main": "index.js",
5
5
  "exported": true,
6
6
  "types": "index.d.ts",