@hectare/platform.clients.trading 1.1.32 → 1.1.33

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.
@@ -216,6 +216,7 @@ export type BidDetail = {
216
216
  };
217
217
  };
218
218
  paymentDays: number;
219
+ paymentDayType?: 'fixed' | 'dayOfMonth' | null;
219
220
  paymentType: 'base' | 'fixed' | 'unpriced' | 'premium';
220
221
  haulageType: 'ex-farm' | 'delivered';
221
222
  sellerNotes: string | null;
@@ -19,6 +19,7 @@ export type CreateBid = {
19
19
  max: number;
20
20
  };
21
21
  paymentDays: number;
22
+ paymentDayType?: 'fixed' | 'dayOfMonth' | null;
22
23
  paymentType: 'base' | 'fixed' | 'unpriced' | 'premium';
23
24
  haulageType: 'ex-farm' | 'delivered';
24
25
  deliveryPostcode?: string | null;
@@ -424,6 +424,7 @@ export type ListingDetail = {
424
424
  };
425
425
  };
426
426
  paymentDays: number;
427
+ paymentDayType?: 'fixed' | 'dayOfMonth' | null;
427
428
  paymentType: 'base' | 'fixed' | 'unpriced' | 'premium';
428
429
  haulageType: 'ex-farm' | 'delivered';
429
430
  sellerNotes: string | null;
@@ -18,6 +18,7 @@ export type PatchBid = {
18
18
  max: number;
19
19
  };
20
20
  paymentDays: number;
21
+ paymentDayType?: 'fixed' | 'dayOfMonth' | null;
21
22
  paymentType: 'base' | 'fixed' | 'unpriced' | 'premium';
22
23
  haulageType: 'ex-farm' | 'delivered';
23
24
  deliveryPostcode?: string | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hectare/platform.clients.trading",
3
- "version": "1.1.32",
3
+ "version": "1.1.33",
4
4
  "main": "index.js",
5
5
  "exported": true,
6
6
  "types": "index.d.ts",