@hectare/platform.clients.trading 1.1.257 → 1.1.258
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.
- package/models/BidDetail.d.ts +38 -0
- package/models/ContractDetail.d.ts +38 -0
- package/models/ListingDetail.d.ts +19 -0
- package/models/SearchResultsBidSchema.d.ts +38 -0
- package/models/SearchResultsContractSchema.d.ts +38 -0
- package/models/SearchResultsListingSchema.d.ts +19 -0
- package/package.json +1 -1
package/models/BidDetail.d.ts
CHANGED
|
@@ -28,6 +28,25 @@ export type BidDetail = {
|
|
|
28
28
|
lon: number;
|
|
29
29
|
} | null;
|
|
30
30
|
} | null;
|
|
31
|
+
deliveryLocation?: {
|
|
32
|
+
what3words: string | null;
|
|
33
|
+
address: {
|
|
34
|
+
name?: string | null;
|
|
35
|
+
line1: string;
|
|
36
|
+
line2?: string | null;
|
|
37
|
+
line3?: string | null;
|
|
38
|
+
city?: string | null;
|
|
39
|
+
region?: string | null;
|
|
40
|
+
regionISO?: string | null;
|
|
41
|
+
postcode: string;
|
|
42
|
+
countryName?: string | null;
|
|
43
|
+
countryISO: 'GB' | 'US' | 'ZA' | 'FR';
|
|
44
|
+
};
|
|
45
|
+
coordinates: {
|
|
46
|
+
lat: number;
|
|
47
|
+
lon: number;
|
|
48
|
+
} | null;
|
|
49
|
+
} | null;
|
|
31
50
|
bio?: string | null;
|
|
32
51
|
companyNumber?: string | null;
|
|
33
52
|
vatNumber?: string | null;
|
|
@@ -383,6 +402,25 @@ export type BidDetail = {
|
|
|
383
402
|
lon: number;
|
|
384
403
|
} | null;
|
|
385
404
|
} | null;
|
|
405
|
+
deliveryLocation?: {
|
|
406
|
+
what3words: string | null;
|
|
407
|
+
address: {
|
|
408
|
+
name?: string | null;
|
|
409
|
+
line1: string;
|
|
410
|
+
line2?: string | null;
|
|
411
|
+
line3?: string | null;
|
|
412
|
+
city?: string | null;
|
|
413
|
+
region?: string | null;
|
|
414
|
+
regionISO?: string | null;
|
|
415
|
+
postcode: string;
|
|
416
|
+
countryName?: string | null;
|
|
417
|
+
countryISO: 'GB' | 'US' | 'ZA' | 'FR';
|
|
418
|
+
};
|
|
419
|
+
coordinates: {
|
|
420
|
+
lat: number;
|
|
421
|
+
lon: number;
|
|
422
|
+
} | null;
|
|
423
|
+
} | null;
|
|
386
424
|
bio?: string | null;
|
|
387
425
|
companyNumber?: string | null;
|
|
388
426
|
vatNumber?: string | null;
|
|
@@ -210,6 +210,25 @@ export type ContractDetail = {
|
|
|
210
210
|
lon: number;
|
|
211
211
|
} | null;
|
|
212
212
|
} | null;
|
|
213
|
+
deliveryLocation?: {
|
|
214
|
+
what3words: string | null;
|
|
215
|
+
address: {
|
|
216
|
+
name?: string | null;
|
|
217
|
+
line1: string;
|
|
218
|
+
line2?: string | null;
|
|
219
|
+
line3?: string | null;
|
|
220
|
+
city?: string | null;
|
|
221
|
+
region?: string | null;
|
|
222
|
+
regionISO?: string | null;
|
|
223
|
+
postcode: string;
|
|
224
|
+
countryName?: string | null;
|
|
225
|
+
countryISO: 'GB' | 'US' | 'ZA' | 'FR';
|
|
226
|
+
};
|
|
227
|
+
coordinates: {
|
|
228
|
+
lat: number;
|
|
229
|
+
lon: number;
|
|
230
|
+
} | null;
|
|
231
|
+
} | null;
|
|
213
232
|
bio?: string | null;
|
|
214
233
|
companyNumber?: string | null;
|
|
215
234
|
vatNumber?: string | null;
|
|
@@ -565,6 +584,25 @@ export type ContractDetail = {
|
|
|
565
584
|
lon: number;
|
|
566
585
|
} | null;
|
|
567
586
|
} | null;
|
|
587
|
+
deliveryLocation?: {
|
|
588
|
+
what3words: string | null;
|
|
589
|
+
address: {
|
|
590
|
+
name?: string | null;
|
|
591
|
+
line1: string;
|
|
592
|
+
line2?: string | null;
|
|
593
|
+
line3?: string | null;
|
|
594
|
+
city?: string | null;
|
|
595
|
+
region?: string | null;
|
|
596
|
+
regionISO?: string | null;
|
|
597
|
+
postcode: string;
|
|
598
|
+
countryName?: string | null;
|
|
599
|
+
countryISO: 'GB' | 'US' | 'ZA' | 'FR';
|
|
600
|
+
};
|
|
601
|
+
coordinates: {
|
|
602
|
+
lat: number;
|
|
603
|
+
lon: number;
|
|
604
|
+
} | null;
|
|
605
|
+
} | null;
|
|
568
606
|
bio?: string | null;
|
|
569
607
|
companyNumber?: string | null;
|
|
570
608
|
vatNumber?: string | null;
|
|
@@ -256,6 +256,25 @@ export type ListingDetail = {
|
|
|
256
256
|
lon: number;
|
|
257
257
|
} | null;
|
|
258
258
|
} | null;
|
|
259
|
+
deliveryLocation?: {
|
|
260
|
+
what3words: string | null;
|
|
261
|
+
address: {
|
|
262
|
+
name?: string | null;
|
|
263
|
+
line1: string;
|
|
264
|
+
line2?: string | null;
|
|
265
|
+
line3?: string | null;
|
|
266
|
+
city?: string | null;
|
|
267
|
+
region?: string | null;
|
|
268
|
+
regionISO?: string | null;
|
|
269
|
+
postcode: string;
|
|
270
|
+
countryName?: string | null;
|
|
271
|
+
countryISO: 'GB' | 'US' | 'ZA' | 'FR';
|
|
272
|
+
};
|
|
273
|
+
coordinates: {
|
|
274
|
+
lat: number;
|
|
275
|
+
lon: number;
|
|
276
|
+
} | null;
|
|
277
|
+
} | null;
|
|
259
278
|
bio?: string | null;
|
|
260
279
|
companyNumber?: string | null;
|
|
261
280
|
vatNumber?: string | null;
|
|
@@ -29,6 +29,25 @@ export type SearchResultsBidSchema = {
|
|
|
29
29
|
lon: number;
|
|
30
30
|
} | null;
|
|
31
31
|
} | null;
|
|
32
|
+
deliveryLocation?: {
|
|
33
|
+
what3words: string | null;
|
|
34
|
+
address: {
|
|
35
|
+
name?: string | null;
|
|
36
|
+
line1: string;
|
|
37
|
+
line2?: string | null;
|
|
38
|
+
line3?: string | null;
|
|
39
|
+
city?: string | null;
|
|
40
|
+
region?: string | null;
|
|
41
|
+
regionISO?: string | null;
|
|
42
|
+
postcode: string;
|
|
43
|
+
countryName?: string | null;
|
|
44
|
+
countryISO: 'GB' | 'US' | 'ZA' | 'FR';
|
|
45
|
+
};
|
|
46
|
+
coordinates: {
|
|
47
|
+
lat: number;
|
|
48
|
+
lon: number;
|
|
49
|
+
} | null;
|
|
50
|
+
} | null;
|
|
32
51
|
bio?: string | null;
|
|
33
52
|
companyNumber?: string | null;
|
|
34
53
|
vatNumber?: string | null;
|
|
@@ -384,6 +403,25 @@ export type SearchResultsBidSchema = {
|
|
|
384
403
|
lon: number;
|
|
385
404
|
} | null;
|
|
386
405
|
} | null;
|
|
406
|
+
deliveryLocation?: {
|
|
407
|
+
what3words: string | null;
|
|
408
|
+
address: {
|
|
409
|
+
name?: string | null;
|
|
410
|
+
line1: string;
|
|
411
|
+
line2?: string | null;
|
|
412
|
+
line3?: string | null;
|
|
413
|
+
city?: string | null;
|
|
414
|
+
region?: string | null;
|
|
415
|
+
regionISO?: string | null;
|
|
416
|
+
postcode: string;
|
|
417
|
+
countryName?: string | null;
|
|
418
|
+
countryISO: 'GB' | 'US' | 'ZA' | 'FR';
|
|
419
|
+
};
|
|
420
|
+
coordinates: {
|
|
421
|
+
lat: number;
|
|
422
|
+
lon: number;
|
|
423
|
+
} | null;
|
|
424
|
+
} | null;
|
|
387
425
|
bio?: string | null;
|
|
388
426
|
companyNumber?: string | null;
|
|
389
427
|
vatNumber?: string | null;
|
|
@@ -211,6 +211,25 @@ export type SearchResultsContractSchema = {
|
|
|
211
211
|
lon: number;
|
|
212
212
|
} | null;
|
|
213
213
|
} | null;
|
|
214
|
+
deliveryLocation?: {
|
|
215
|
+
what3words: string | null;
|
|
216
|
+
address: {
|
|
217
|
+
name?: string | null;
|
|
218
|
+
line1: string;
|
|
219
|
+
line2?: string | null;
|
|
220
|
+
line3?: string | null;
|
|
221
|
+
city?: string | null;
|
|
222
|
+
region?: string | null;
|
|
223
|
+
regionISO?: string | null;
|
|
224
|
+
postcode: string;
|
|
225
|
+
countryName?: string | null;
|
|
226
|
+
countryISO: 'GB' | 'US' | 'ZA' | 'FR';
|
|
227
|
+
};
|
|
228
|
+
coordinates: {
|
|
229
|
+
lat: number;
|
|
230
|
+
lon: number;
|
|
231
|
+
} | null;
|
|
232
|
+
} | null;
|
|
214
233
|
bio?: string | null;
|
|
215
234
|
companyNumber?: string | null;
|
|
216
235
|
vatNumber?: string | null;
|
|
@@ -566,6 +585,25 @@ export type SearchResultsContractSchema = {
|
|
|
566
585
|
lon: number;
|
|
567
586
|
} | null;
|
|
568
587
|
} | null;
|
|
588
|
+
deliveryLocation?: {
|
|
589
|
+
what3words: string | null;
|
|
590
|
+
address: {
|
|
591
|
+
name?: string | null;
|
|
592
|
+
line1: string;
|
|
593
|
+
line2?: string | null;
|
|
594
|
+
line3?: string | null;
|
|
595
|
+
city?: string | null;
|
|
596
|
+
region?: string | null;
|
|
597
|
+
regionISO?: string | null;
|
|
598
|
+
postcode: string;
|
|
599
|
+
countryName?: string | null;
|
|
600
|
+
countryISO: 'GB' | 'US' | 'ZA' | 'FR';
|
|
601
|
+
};
|
|
602
|
+
coordinates: {
|
|
603
|
+
lat: number;
|
|
604
|
+
lon: number;
|
|
605
|
+
} | null;
|
|
606
|
+
} | null;
|
|
569
607
|
bio?: string | null;
|
|
570
608
|
companyNumber?: string | null;
|
|
571
609
|
vatNumber?: string | null;
|
|
@@ -257,6 +257,25 @@ export type SearchResultsListingSchema = {
|
|
|
257
257
|
lon: number;
|
|
258
258
|
} | null;
|
|
259
259
|
} | null;
|
|
260
|
+
deliveryLocation?: {
|
|
261
|
+
what3words: string | null;
|
|
262
|
+
address: {
|
|
263
|
+
name?: string | null;
|
|
264
|
+
line1: string;
|
|
265
|
+
line2?: string | null;
|
|
266
|
+
line3?: string | null;
|
|
267
|
+
city?: string | null;
|
|
268
|
+
region?: string | null;
|
|
269
|
+
regionISO?: string | null;
|
|
270
|
+
postcode: string;
|
|
271
|
+
countryName?: string | null;
|
|
272
|
+
countryISO: 'GB' | 'US' | 'ZA' | 'FR';
|
|
273
|
+
};
|
|
274
|
+
coordinates: {
|
|
275
|
+
lat: number;
|
|
276
|
+
lon: number;
|
|
277
|
+
} | null;
|
|
278
|
+
} | null;
|
|
260
279
|
bio?: string | null;
|
|
261
280
|
companyNumber?: string | null;
|
|
262
281
|
vatNumber?: string | null;
|