@hectare/platform.clients.trading 1.1.260 → 1.1.262
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 +0 -3
- package/models/ContractDetail.d.ts +0 -3
- package/models/ListingDetail.d.ts +0 -2
- package/models/PatchInventorySchema.d.ts +17 -0
- package/models/SearchResultsBidSchema.d.ts +0 -3
- package/models/SearchResultsContractSchema.d.ts +0 -3
- package/models/SearchResultsListingSchema.d.ts +0 -2
- package/package.json +1 -1
package/models/BidDetail.d.ts
CHANGED
|
@@ -8,7 +8,6 @@ export type BidDetail = {
|
|
|
8
8
|
organisationId: string;
|
|
9
9
|
organisationName: string;
|
|
10
10
|
createdAtUTC: string;
|
|
11
|
-
logo: string | null;
|
|
12
11
|
location?: {
|
|
13
12
|
what3words: string | null;
|
|
14
13
|
address: {
|
|
@@ -156,7 +155,6 @@ export type BidDetail = {
|
|
|
156
155
|
organisationId: string;
|
|
157
156
|
organisationCreatedAtUTC: string;
|
|
158
157
|
organisationName: string;
|
|
159
|
-
organisationLogo: string;
|
|
160
158
|
organisationVetted: boolean;
|
|
161
159
|
businessId: string;
|
|
162
160
|
businessName: string;
|
|
@@ -380,7 +378,6 @@ export type BidDetail = {
|
|
|
380
378
|
organisationId: string;
|
|
381
379
|
organisationName: string;
|
|
382
380
|
createdAtUTC: string;
|
|
383
|
-
logo: string | null;
|
|
384
381
|
location?: {
|
|
385
382
|
what3words: string | null;
|
|
386
383
|
address: {
|
|
@@ -190,7 +190,6 @@ export type ContractDetail = {
|
|
|
190
190
|
organisationId: string;
|
|
191
191
|
organisationName: string;
|
|
192
192
|
createdAtUTC: string;
|
|
193
|
-
logo: string | null;
|
|
194
193
|
location?: {
|
|
195
194
|
what3words: string | null;
|
|
196
195
|
address: {
|
|
@@ -338,7 +337,6 @@ export type ContractDetail = {
|
|
|
338
337
|
organisationId: string;
|
|
339
338
|
organisationCreatedAtUTC: string;
|
|
340
339
|
organisationName: string;
|
|
341
|
-
organisationLogo: string;
|
|
342
340
|
organisationVetted: boolean;
|
|
343
341
|
businessId: string;
|
|
344
342
|
businessName: string;
|
|
@@ -562,7 +560,6 @@ export type ContractDetail = {
|
|
|
562
560
|
organisationId: string;
|
|
563
561
|
organisationName: string;
|
|
564
562
|
createdAtUTC: string;
|
|
565
|
-
logo: string | null;
|
|
566
563
|
location?: {
|
|
567
564
|
what3words: string | null;
|
|
568
565
|
address: {
|
|
@@ -10,7 +10,6 @@ export type ListingDetail = {
|
|
|
10
10
|
organisationId: string;
|
|
11
11
|
organisationCreatedAtUTC: string;
|
|
12
12
|
organisationName: string;
|
|
13
|
-
organisationLogo: string;
|
|
14
13
|
organisationVetted: boolean;
|
|
15
14
|
businessId: string;
|
|
16
15
|
businessName: string;
|
|
@@ -234,7 +233,6 @@ export type ListingDetail = {
|
|
|
234
233
|
organisationId: string;
|
|
235
234
|
organisationName: string;
|
|
236
235
|
createdAtUTC: string;
|
|
237
|
-
logo: string | null;
|
|
238
236
|
location?: {
|
|
239
237
|
what3words: string | null;
|
|
240
238
|
address: {
|
|
@@ -14,4 +14,21 @@ export type PatchInventorySchema = {
|
|
|
14
14
|
max: number | null;
|
|
15
15
|
}>;
|
|
16
16
|
hasSampled?: boolean;
|
|
17
|
+
crop?: {
|
|
18
|
+
type?: 'crop' | 'produce';
|
|
19
|
+
harvestYear?: string;
|
|
20
|
+
commodity?: {
|
|
21
|
+
id: number;
|
|
22
|
+
type: number;
|
|
23
|
+
grade: number | null;
|
|
24
|
+
varieties?: Array<string> | null;
|
|
25
|
+
tags?: Array<number> | null;
|
|
26
|
+
};
|
|
27
|
+
measures?: Array<{
|
|
28
|
+
specificationId: number;
|
|
29
|
+
min: number | null;
|
|
30
|
+
max: number | null;
|
|
31
|
+
}> | null;
|
|
32
|
+
hasSampled?: boolean;
|
|
33
|
+
};
|
|
17
34
|
};
|
|
@@ -9,7 +9,6 @@ export type SearchResultsBidSchema = {
|
|
|
9
9
|
organisationId: string;
|
|
10
10
|
organisationName: string;
|
|
11
11
|
createdAtUTC: string;
|
|
12
|
-
logo: string | null;
|
|
13
12
|
location?: {
|
|
14
13
|
what3words: string | null;
|
|
15
14
|
address: {
|
|
@@ -157,7 +156,6 @@ export type SearchResultsBidSchema = {
|
|
|
157
156
|
organisationId: string;
|
|
158
157
|
organisationCreatedAtUTC: string;
|
|
159
158
|
organisationName: string;
|
|
160
|
-
organisationLogo: string;
|
|
161
159
|
organisationVetted: boolean;
|
|
162
160
|
businessId: string;
|
|
163
161
|
businessName: string;
|
|
@@ -381,7 +379,6 @@ export type SearchResultsBidSchema = {
|
|
|
381
379
|
organisationId: string;
|
|
382
380
|
organisationName: string;
|
|
383
381
|
createdAtUTC: string;
|
|
384
|
-
logo: string | null;
|
|
385
382
|
location?: {
|
|
386
383
|
what3words: string | null;
|
|
387
384
|
address: {
|
|
@@ -191,7 +191,6 @@ export type SearchResultsContractSchema = {
|
|
|
191
191
|
organisationId: string;
|
|
192
192
|
organisationName: string;
|
|
193
193
|
createdAtUTC: string;
|
|
194
|
-
logo: string | null;
|
|
195
194
|
location?: {
|
|
196
195
|
what3words: string | null;
|
|
197
196
|
address: {
|
|
@@ -339,7 +338,6 @@ export type SearchResultsContractSchema = {
|
|
|
339
338
|
organisationId: string;
|
|
340
339
|
organisationCreatedAtUTC: string;
|
|
341
340
|
organisationName: string;
|
|
342
|
-
organisationLogo: string;
|
|
343
341
|
organisationVetted: boolean;
|
|
344
342
|
businessId: string;
|
|
345
343
|
businessName: string;
|
|
@@ -563,7 +561,6 @@ export type SearchResultsContractSchema = {
|
|
|
563
561
|
organisationId: string;
|
|
564
562
|
organisationName: string;
|
|
565
563
|
createdAtUTC: string;
|
|
566
|
-
logo: string | null;
|
|
567
564
|
location?: {
|
|
568
565
|
what3words: string | null;
|
|
569
566
|
address: {
|
|
@@ -11,7 +11,6 @@ export type SearchResultsListingSchema = {
|
|
|
11
11
|
organisationId: string;
|
|
12
12
|
organisationCreatedAtUTC: string;
|
|
13
13
|
organisationName: string;
|
|
14
|
-
organisationLogo: string;
|
|
15
14
|
organisationVetted: boolean;
|
|
16
15
|
businessId: string;
|
|
17
16
|
businessName: string;
|
|
@@ -235,7 +234,6 @@ export type SearchResultsListingSchema = {
|
|
|
235
234
|
organisationId: string;
|
|
236
235
|
organisationName: string;
|
|
237
236
|
createdAtUTC: string;
|
|
238
|
-
logo: string | null;
|
|
239
237
|
location?: {
|
|
240
238
|
what3words: string | null;
|
|
241
239
|
address: {
|