@hectare/platform.clients.trading 1.1.143 → 1.1.145

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.
@@ -86,6 +86,10 @@ export type BidDetail = {
86
86
  excludedDatesUTC?: Array<string> | null;
87
87
  asAvailable?: boolean | null;
88
88
  };
89
+ movement: {
90
+ months: Array<string>;
91
+ asAvailable: boolean;
92
+ };
89
93
  buyerNotes: string | null;
90
94
  files?: Array<{
91
95
  name?: string;
@@ -246,6 +250,10 @@ export type BidDetail = {
246
250
  endDateUTC: string;
247
251
  type: 'date' | 'month';
248
252
  };
253
+ movement: {
254
+ months: Array<string>;
255
+ asAvailable: boolean;
256
+ };
249
257
  pricePerUnit: {
250
258
  amount: number;
251
259
  currency: string;
@@ -1,6 +1,6 @@
1
1
  export type CreateBid = {
2
2
  listingId: string;
3
- expiresAtUTC: string;
3
+ expiresAtUTC?: string;
4
4
  options: Array<{
5
5
  movementPeriod: {
6
6
  startDateUTC: string;
@@ -83,6 +83,10 @@ export type ListingDetail = {
83
83
  excludedDatesUTC?: Array<string> | null;
84
84
  asAvailable?: boolean | null;
85
85
  };
86
+ movement: {
87
+ months: Array<string>;
88
+ asAvailable: boolean;
89
+ };
86
90
  buyerNotes: string | null;
87
91
  files?: Array<{
88
92
  name?: string;
@@ -341,6 +345,10 @@ export type ListingDetail = {
341
345
  excludedDatesUTC?: Array<string> | null;
342
346
  asAvailable?: boolean | null;
343
347
  };
348
+ movement: {
349
+ months: Array<string>;
350
+ asAvailable: boolean;
351
+ };
344
352
  buyerNotes: string | null;
345
353
  files?: Array<{
346
354
  name?: string;
@@ -501,6 +509,10 @@ export type ListingDetail = {
501
509
  endDateUTC: string;
502
510
  type: 'date' | 'month';
503
511
  };
512
+ movement: {
513
+ months: Array<string>;
514
+ asAvailable: boolean;
515
+ };
504
516
  pricePerUnit: {
505
517
  amount: number;
506
518
  currency: string;
@@ -83,6 +83,10 @@ export type ListingSummary = {
83
83
  excludedDatesUTC?: Array<string> | null;
84
84
  asAvailable?: boolean | null;
85
85
  };
86
+ movement: {
87
+ months: Array<string>;
88
+ asAvailable: boolean;
89
+ };
86
90
  buyerNotes: string | null;
87
91
  files?: Array<{
88
92
  name?: string;
@@ -1,5 +1,5 @@
1
1
  export type PatchBid = {
2
- expiresAtUTC: string;
2
+ expiresAtUTC?: string;
3
3
  options: Array<{
4
4
  id: number | null;
5
5
  movementPeriod: {
@@ -87,6 +87,10 @@ export type SearchResultsBidSchema = {
87
87
  excludedDatesUTC?: Array<string> | null;
88
88
  asAvailable?: boolean | null;
89
89
  };
90
+ movement: {
91
+ months: Array<string>;
92
+ asAvailable: boolean;
93
+ };
90
94
  buyerNotes: string | null;
91
95
  files?: Array<{
92
96
  name?: string;
@@ -247,6 +251,10 @@ export type SearchResultsBidSchema = {
247
251
  endDateUTC: string;
248
252
  type: 'date' | 'month';
249
253
  };
254
+ movement: {
255
+ months: Array<string>;
256
+ asAvailable: boolean;
257
+ };
250
258
  pricePerUnit: {
251
259
  amount: number;
252
260
  currency: string;
@@ -84,6 +84,10 @@ export type SearchResultsListingSchema = {
84
84
  excludedDatesUTC?: Array<string> | null;
85
85
  asAvailable?: boolean | null;
86
86
  };
87
+ movement: {
88
+ months: Array<string>;
89
+ asAvailable: boolean;
90
+ };
87
91
  buyerNotes: string | null;
88
92
  files?: Array<{
89
93
  name?: string;
@@ -40,6 +40,10 @@ export type TradeRequestDetail = {
40
40
  endDateUTC: string;
41
41
  type: 'date' | 'month';
42
42
  };
43
+ movement: {
44
+ months: Array<string>;
45
+ asAvailable: boolean;
46
+ };
43
47
  haulageTerms: {
44
48
  haulageType?: 'ex-farm' | 'delivered';
45
49
  deliveryPostcode?: string | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hectare/platform.clients.trading",
3
- "version": "1.1.143",
3
+ "version": "1.1.145",
4
4
  "main": "index.js",
5
5
  "exported": true,
6
6
  "types": "index.d.ts",