@hectare/platform.clients.trading 1.1.9 → 1.1.10

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.
@@ -148,7 +148,7 @@ export type BidDetail = {
148
148
  soldWeight: number | null;
149
149
  bids: Record<string, {
150
150
  userId: string;
151
- status: 'active' | 'accepted' | 'withdrawn' | 'expired' | 'expiredOffered' | 'expiredOfferDeclined';
151
+ status: 'active' | 'accepted' | 'withdrawn' | 'expired' | 'expiredOffered' | 'expiredOfferDeclined' | 'closed';
152
152
  weight: {
153
153
  min: number;
154
154
  max: number;
@@ -172,7 +172,7 @@ export type BidDetail = {
172
172
  organisationVetted: boolean | null;
173
173
  organisationsInNetwork: boolean | null;
174
174
  createdAtUTC: string;
175
- status: 'active' | 'accepted' | 'withdrawn' | 'expired' | 'expiredOffered' | 'expiredOfferDeclined';
175
+ status: 'active' | 'accepted' | 'withdrawn' | 'expired' | 'expiredOffered' | 'expiredOfferDeclined' | 'closed';
176
176
  expiresAtUTC: string;
177
177
  options: Array<{
178
178
  id: number;
@@ -1,6 +1,6 @@
1
1
  export type ListingBidInfoBid = {
2
2
  userId: string;
3
- status: 'active' | 'accepted' | 'withdrawn' | 'expired' | 'expiredOffered' | 'expiredOfferDeclined';
3
+ status: 'active' | 'accepted' | 'withdrawn' | 'expired' | 'expiredOffered' | 'expiredOfferDeclined' | 'closed';
4
4
  weight: {
5
5
  min: number;
6
6
  max: number;
@@ -145,7 +145,7 @@ export type ListingDetail = {
145
145
  soldWeight: number | null;
146
146
  bids: Record<string, {
147
147
  userId: string;
148
- status: 'active' | 'accepted' | 'withdrawn' | 'expired' | 'expiredOffered' | 'expiredOfferDeclined';
148
+ status: 'active' | 'accepted' | 'withdrawn' | 'expired' | 'expiredOffered' | 'expiredOfferDeclined' | 'closed';
149
149
  weight: {
150
150
  min: number;
151
151
  max: number;
@@ -352,7 +352,7 @@ export type ListingDetail = {
352
352
  soldWeight: number | null;
353
353
  bids: Record<string, {
354
354
  userId: string;
355
- status: 'active' | 'accepted' | 'withdrawn' | 'expired' | 'expiredOffered' | 'expiredOfferDeclined';
355
+ status: 'active' | 'accepted' | 'withdrawn' | 'expired' | 'expiredOffered' | 'expiredOfferDeclined' | 'closed';
356
356
  weight: {
357
357
  min: number;
358
358
  max: number;
@@ -376,7 +376,7 @@ export type ListingDetail = {
376
376
  organisationVetted: boolean | null;
377
377
  organisationsInNetwork: boolean | null;
378
378
  createdAtUTC: string;
379
- status: 'active' | 'accepted' | 'withdrawn' | 'expired' | 'expiredOffered' | 'expiredOfferDeclined';
379
+ status: 'active' | 'accepted' | 'withdrawn' | 'expired' | 'expiredOffered' | 'expiredOfferDeclined' | 'closed';
380
380
  expiresAtUTC: string;
381
381
  options: Array<{
382
382
  id: number;
@@ -145,7 +145,7 @@ export type ListingSummary = {
145
145
  soldWeight: number | null;
146
146
  bids: Record<string, {
147
147
  userId: string;
148
- status: 'active' | 'accepted' | 'withdrawn' | 'expired' | 'expiredOffered' | 'expiredOfferDeclined';
148
+ status: 'active' | 'accepted' | 'withdrawn' | 'expired' | 'expiredOffered' | 'expiredOfferDeclined' | 'closed';
149
149
  weight: {
150
150
  min: number;
151
151
  max: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hectare/platform.clients.trading",
3
- "version": "1.1.9",
3
+ "version": "1.1.10",
4
4
  "main": "index.js",
5
5
  "exported": true,
6
6
  "types": "index.d.ts",