@hectare/platform.clients.trading 1.1.157 → 1.1.159

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.
@@ -175,7 +175,7 @@ export type BidDetail = {
175
175
  customMeasures: boolean | null;
176
176
  };
177
177
  activeBids: number;
178
- bidInfo?: {
178
+ bidInfo: {
179
179
  count: number;
180
180
  acceptedCount: number;
181
181
  activeCount: number;
@@ -234,12 +234,12 @@ export type BidDetail = {
234
234
  };
235
235
  userId: string;
236
236
  userFullName: string;
237
- organisationId: string | null;
238
- organisationCreatedAtUTC: string | null;
239
- organisationName: string | null;
240
- organisationLogo: string | null;
241
- organisationVetted: boolean | null;
242
- organisationsInNetwork: boolean | null;
237
+ organisationId: string;
238
+ organisationCreatedAtUTC: string;
239
+ organisationName: string;
240
+ organisationLogo: string;
241
+ organisationVetted: boolean;
242
+ organisationsInNetwork?: boolean;
243
243
  createdAtUTC: string;
244
244
  status: 'active' | 'accepted' | 'withdrawn' | 'expired' | 'expiredOffered' | 'expiredOfferDeclined' | 'closed';
245
245
  expiresAtUTC: string;
@@ -436,7 +436,7 @@ export type ListingDetail = {
436
436
  customMeasures: boolean | null;
437
437
  };
438
438
  activeBids: number;
439
- bidInfo?: {
439
+ bidInfo: {
440
440
  count: number;
441
441
  acceptedCount: number;
442
442
  activeCount: number;
@@ -495,12 +495,12 @@ export type ListingDetail = {
495
495
  };
496
496
  userId: string;
497
497
  userFullName: string;
498
- organisationId: string | null;
499
- organisationCreatedAtUTC: string | null;
500
- organisationName: string | null;
501
- organisationLogo: string | null;
502
- organisationVetted: boolean | null;
503
- organisationsInNetwork: boolean | null;
498
+ organisationId: string;
499
+ organisationCreatedAtUTC: string;
500
+ organisationName: string;
501
+ organisationLogo: string;
502
+ organisationVetted: boolean;
503
+ organisationsInNetwork?: boolean;
504
504
  createdAtUTC: string;
505
505
  status: 'active' | 'accepted' | 'withdrawn' | 'expired' | 'expiredOffered' | 'expiredOfferDeclined' | 'closed';
506
506
  expiresAtUTC: string;
@@ -172,7 +172,7 @@ export type ListingSummary = {
172
172
  customMeasures: boolean | null;
173
173
  };
174
174
  activeBids: number;
175
- bidInfo?: {
175
+ bidInfo: {
176
176
  count: number;
177
177
  acceptedCount: number;
178
178
  activeCount: number;
@@ -176,7 +176,7 @@ export type SearchResultsBidSchema = {
176
176
  customMeasures: boolean | null;
177
177
  };
178
178
  activeBids: number;
179
- bidInfo?: {
179
+ bidInfo: {
180
180
  count: number;
181
181
  acceptedCount: number;
182
182
  activeCount: number;
@@ -235,12 +235,12 @@ export type SearchResultsBidSchema = {
235
235
  };
236
236
  userId: string;
237
237
  userFullName: string;
238
- organisationId: string | null;
239
- organisationCreatedAtUTC: string | null;
240
- organisationName: string | null;
241
- organisationLogo: string | null;
242
- organisationVetted: boolean | null;
243
- organisationsInNetwork: boolean | null;
238
+ organisationId: string;
239
+ organisationCreatedAtUTC: string;
240
+ organisationName: string;
241
+ organisationLogo: string;
242
+ organisationVetted: boolean;
243
+ organisationsInNetwork?: boolean;
244
244
  createdAtUTC: string;
245
245
  status: 'active' | 'accepted' | 'withdrawn' | 'expired' | 'expiredOffered' | 'expiredOfferDeclined' | 'closed';
246
246
  expiresAtUTC: string;
@@ -173,7 +173,7 @@ export type SearchResultsListingSchema = {
173
173
  customMeasures: boolean | null;
174
174
  };
175
175
  activeBids: number;
176
- bidInfo?: {
176
+ bidInfo: {
177
177
  count: number;
178
178
  acceptedCount: number;
179
179
  activeCount: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hectare/platform.clients.trading",
3
- "version": "1.1.157",
3
+ "version": "1.1.159",
4
4
  "main": "index.js",
5
5
  "exported": true,
6
6
  "types": "index.d.ts",