@hectare/platform.clients.trading 1.1.254 → 1.1.255

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.
@@ -300,7 +300,6 @@ export type BidDetail = {
300
300
  };
301
301
  };
302
302
  };
303
- activeBids: number;
304
303
  bidInfo: {
305
304
  count: number;
306
305
  acceptedCount: number;
@@ -318,6 +317,8 @@ export type BidDetail = {
318
317
  currency: string;
319
318
  } | null;
320
319
  soldWeight: number | null;
320
+ spreadMin: number | null;
321
+ spreadMax: number | null;
321
322
  bids: Record<string, {
322
323
  organisationId: string | null;
323
324
  userId: string;
@@ -327,37 +328,6 @@ export type BidDetail = {
327
328
  min: number;
328
329
  max: number;
329
330
  };
330
- options: Array<{
331
- id: number;
332
- soldWeightKG?: number | null;
333
- soldWeight: number | null;
334
- pricePerUnit?: {
335
- amount: number;
336
- currency: string;
337
- } | null;
338
- pricing?: {
339
- exFarm: {
340
- amount: number;
341
- currency: string;
342
- } | null;
343
- delivered: {
344
- amount: number;
345
- currency: string;
346
- } | null;
347
- min: {
348
- amount: number;
349
- currency: string;
350
- } | null;
351
- max: {
352
- amount: number;
353
- currency: string;
354
- } | null;
355
- fixedPremium: {
356
- amount: number;
357
- currency: string;
358
- } | null;
359
- };
360
- }>;
361
331
  createdAtUTC: string;
362
332
  updatedAtUTC: string;
363
333
  }>;
@@ -482,7 +482,6 @@ export type ContractDetail = {
482
482
  };
483
483
  };
484
484
  };
485
- activeBids: number;
486
485
  bidInfo: {
487
486
  count: number;
488
487
  acceptedCount: number;
@@ -500,6 +499,8 @@ export type ContractDetail = {
500
499
  currency: string;
501
500
  } | null;
502
501
  soldWeight: number | null;
502
+ spreadMin: number | null;
503
+ spreadMax: number | null;
503
504
  bids: Record<string, {
504
505
  organisationId: string | null;
505
506
  userId: string;
@@ -509,37 +510,6 @@ export type ContractDetail = {
509
510
  min: number;
510
511
  max: number;
511
512
  };
512
- options: Array<{
513
- id: number;
514
- soldWeightKG?: number | null;
515
- soldWeight: number | null;
516
- pricePerUnit?: {
517
- amount: number;
518
- currency: string;
519
- } | null;
520
- pricing?: {
521
- exFarm: {
522
- amount: number;
523
- currency: string;
524
- } | null;
525
- delivered: {
526
- amount: number;
527
- currency: string;
528
- } | null;
529
- min: {
530
- amount: number;
531
- currency: string;
532
- } | null;
533
- max: {
534
- amount: number;
535
- currency: string;
536
- } | null;
537
- fixedPremium: {
538
- amount: number;
539
- currency: string;
540
- } | null;
541
- };
542
- }>;
543
513
  createdAtUTC: string;
544
514
  updatedAtUTC: string;
545
515
  }>;
@@ -7,37 +7,6 @@ export type ListingBidInfoBid = {
7
7
  min: number;
8
8
  max: number;
9
9
  };
10
- options: Array<{
11
- id: number;
12
- soldWeightKG?: number | null;
13
- soldWeight: number | null;
14
- pricePerUnit?: {
15
- amount: number;
16
- currency: string;
17
- } | null;
18
- pricing?: {
19
- exFarm: {
20
- amount: number;
21
- currency: string;
22
- } | null;
23
- delivered: {
24
- amount: number;
25
- currency: string;
26
- } | null;
27
- min: {
28
- amount: number;
29
- currency: string;
30
- } | null;
31
- max: {
32
- amount: number;
33
- currency: string;
34
- } | null;
35
- fixedPremium: {
36
- amount: number;
37
- currency: string;
38
- } | null;
39
- };
40
- }>;
41
10
  createdAtUTC: string;
42
11
  updatedAtUTC: string;
43
12
  };
@@ -173,7 +173,6 @@ export type ListingDetail = {
173
173
  };
174
174
  };
175
175
  };
176
- activeBids: number;
177
176
  bidInfo: {
178
177
  count: number;
179
178
  acceptedCount: number;
@@ -191,6 +190,8 @@ export type ListingDetail = {
191
190
  currency: string;
192
191
  } | null;
193
192
  soldWeight: number | null;
193
+ spreadMin: number | null;
194
+ spreadMax: number | null;
194
195
  bids: Record<string, {
195
196
  organisationId: string | null;
196
197
  userId: string;
@@ -200,37 +201,6 @@ export type ListingDetail = {
200
201
  min: number;
201
202
  max: number;
202
203
  };
203
- options: Array<{
204
- id: number;
205
- soldWeightKG?: number | null;
206
- soldWeight: number | null;
207
- pricePerUnit?: {
208
- amount: number;
209
- currency: string;
210
- } | null;
211
- pricing?: {
212
- exFarm: {
213
- amount: number;
214
- currency: string;
215
- } | null;
216
- delivered: {
217
- amount: number;
218
- currency: string;
219
- } | null;
220
- min: {
221
- amount: number;
222
- currency: string;
223
- } | null;
224
- max: {
225
- amount: number;
226
- currency: string;
227
- } | null;
228
- fixedPremium: {
229
- amount: number;
230
- currency: string;
231
- } | null;
232
- };
233
- }>;
234
204
  createdAtUTC: string;
235
205
  updatedAtUTC: string;
236
206
  }>;
@@ -301,7 +301,6 @@ export type SearchResultsBidSchema = {
301
301
  };
302
302
  };
303
303
  };
304
- activeBids: number;
305
304
  bidInfo: {
306
305
  count: number;
307
306
  acceptedCount: number;
@@ -319,6 +318,8 @@ export type SearchResultsBidSchema = {
319
318
  currency: string;
320
319
  } | null;
321
320
  soldWeight: number | null;
321
+ spreadMin: number | null;
322
+ spreadMax: number | null;
322
323
  bids: Record<string, {
323
324
  organisationId: string | null;
324
325
  userId: string;
@@ -328,37 +329,6 @@ export type SearchResultsBidSchema = {
328
329
  min: number;
329
330
  max: number;
330
331
  };
331
- options: Array<{
332
- id: number;
333
- soldWeightKG?: number | null;
334
- soldWeight: number | null;
335
- pricePerUnit?: {
336
- amount: number;
337
- currency: string;
338
- } | null;
339
- pricing?: {
340
- exFarm: {
341
- amount: number;
342
- currency: string;
343
- } | null;
344
- delivered: {
345
- amount: number;
346
- currency: string;
347
- } | null;
348
- min: {
349
- amount: number;
350
- currency: string;
351
- } | null;
352
- max: {
353
- amount: number;
354
- currency: string;
355
- } | null;
356
- fixedPremium: {
357
- amount: number;
358
- currency: string;
359
- } | null;
360
- };
361
- }>;
362
332
  createdAtUTC: string;
363
333
  updatedAtUTC: string;
364
334
  }>;
@@ -483,7 +483,6 @@ export type SearchResultsContractSchema = {
483
483
  };
484
484
  };
485
485
  };
486
- activeBids: number;
487
486
  bidInfo: {
488
487
  count: number;
489
488
  acceptedCount: number;
@@ -501,6 +500,8 @@ export type SearchResultsContractSchema = {
501
500
  currency: string;
502
501
  } | null;
503
502
  soldWeight: number | null;
503
+ spreadMin: number | null;
504
+ spreadMax: number | null;
504
505
  bids: Record<string, {
505
506
  organisationId: string | null;
506
507
  userId: string;
@@ -510,37 +511,6 @@ export type SearchResultsContractSchema = {
510
511
  min: number;
511
512
  max: number;
512
513
  };
513
- options: Array<{
514
- id: number;
515
- soldWeightKG?: number | null;
516
- soldWeight: number | null;
517
- pricePerUnit?: {
518
- amount: number;
519
- currency: string;
520
- } | null;
521
- pricing?: {
522
- exFarm: {
523
- amount: number;
524
- currency: string;
525
- } | null;
526
- delivered: {
527
- amount: number;
528
- currency: string;
529
- } | null;
530
- min: {
531
- amount: number;
532
- currency: string;
533
- } | null;
534
- max: {
535
- amount: number;
536
- currency: string;
537
- } | null;
538
- fixedPremium: {
539
- amount: number;
540
- currency: string;
541
- } | null;
542
- };
543
- }>;
544
514
  createdAtUTC: string;
545
515
  updatedAtUTC: string;
546
516
  }>;
@@ -174,7 +174,6 @@ export type SearchResultsListingSchema = {
174
174
  };
175
175
  };
176
176
  };
177
- activeBids: number;
178
177
  bidInfo: {
179
178
  count: number;
180
179
  acceptedCount: number;
@@ -192,6 +191,8 @@ export type SearchResultsListingSchema = {
192
191
  currency: string;
193
192
  } | null;
194
193
  soldWeight: number | null;
194
+ spreadMin: number | null;
195
+ spreadMax: number | null;
195
196
  bids: Record<string, {
196
197
  organisationId: string | null;
197
198
  userId: string;
@@ -201,37 +202,6 @@ export type SearchResultsListingSchema = {
201
202
  min: number;
202
203
  max: number;
203
204
  };
204
- options: Array<{
205
- id: number;
206
- soldWeightKG?: number | null;
207
- soldWeight: number | null;
208
- pricePerUnit?: {
209
- amount: number;
210
- currency: string;
211
- } | null;
212
- pricing?: {
213
- exFarm: {
214
- amount: number;
215
- currency: string;
216
- } | null;
217
- delivered: {
218
- amount: number;
219
- currency: string;
220
- } | null;
221
- min: {
222
- amount: number;
223
- currency: string;
224
- } | null;
225
- max: {
226
- amount: number;
227
- currency: string;
228
- } | null;
229
- fixedPremium: {
230
- amount: number;
231
- currency: string;
232
- } | null;
233
- };
234
- }>;
235
205
  createdAtUTC: string;
236
206
  updatedAtUTC: string;
237
207
  }>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hectare/platform.clients.trading",
3
- "version": "1.1.254",
3
+ "version": "1.1.255",
4
4
  "main": "index.js",
5
5
  "exported": true,
6
6
  "types": "index.d.ts",