@hectare/platform.clients.trading 1.1.11 → 1.1.13

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,7 +55,7 @@ export type BidDetail = {
55
55
  startDateUTC: string;
56
56
  endDateUTC: string;
57
57
  type: 'date' | 'month';
58
- asAvailable: boolean | null;
58
+ asAvailable?: boolean | null;
59
59
  };
60
60
  buyerNotes: string | null;
61
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;
@@ -6,6 +6,7 @@ export type CreateBid = {
6
6
  startDateUTC: string;
7
7
  endDateUTC: string;
8
8
  type: 'date' | 'month';
9
+ asAvailable?: boolean | null;
9
10
  };
10
11
  pricePerUnit: {
11
12
  amount: number;
@@ -24,7 +24,7 @@ export type CreateListing = {
24
24
  startDateUTC: string;
25
25
  endDateUTC: string;
26
26
  type: 'date' | 'month';
27
- asAvailable: boolean | null;
27
+ asAvailable?: boolean | null;
28
28
  };
29
29
  price?: {
30
30
  amount: number;
@@ -52,7 +52,7 @@ export type ListingDetail = {
52
52
  startDateUTC: string;
53
53
  endDateUTC: string;
54
54
  type: 'date' | 'month';
55
- asAvailable: boolean | null;
55
+ asAvailable?: boolean | null;
56
56
  };
57
57
  buyerNotes: string | null;
58
58
  files?: Array<{
@@ -260,7 +260,7 @@ export type ListingDetail = {
260
260
  startDateUTC: string;
261
261
  endDateUTC: string;
262
262
  type: 'date' | 'month';
263
- asAvailable: boolean | null;
263
+ asAvailable?: boolean | null;
264
264
  };
265
265
  buyerNotes: string | null;
266
266
  files?: Array<{
@@ -52,7 +52,7 @@ export type ListingSummary = {
52
52
  startDateUTC: string;
53
53
  endDateUTC: string;
54
54
  type: 'date' | 'month';
55
- asAvailable: boolean | null;
55
+ asAvailable?: boolean | null;
56
56
  };
57
57
  buyerNotes: string | null;
58
58
  files?: Array<{
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hectare/platform.clients.trading",
3
- "version": "1.1.11",
3
+ "version": "1.1.13",
4
4
  "main": "index.js",
5
5
  "exported": true,
6
6
  "types": "index.d.ts",