@hectare/platform.clients.trading 1.1.68 → 1.1.70

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.
@@ -3,6 +3,7 @@ export type BidDetail = {
3
3
  listingId: string;
4
4
  listing?: {
5
5
  id: string;
6
+ createdAtUTC: string;
6
7
  status: 'active' | 'closed' | 'traded';
7
8
  substatus: 'unsold' | 'archived' | 'scheduled' | 'open' | 'in-review' | null;
8
9
  business: {
@@ -17,7 +17,7 @@ export type InsightsDailySpotPricesByDateRangeSchema = {
17
17
  macd: 'is-falling-extremely-quickly' | 'is-falling-quickly' | 'is-falling' | 'may-be-turning' | 'is-growing' | 'is-growing-quickly' | 'is-growing-extremely-quickly';
18
18
  rsi: 'may-be-undervalued' | 'may-be-slightly-undervalued' | 'is-a-balanced-price' | 'may-be-slightly-overvalued' | 'may-be-overvalued';
19
19
  } | null;
20
- };
20
+ } | null;
21
21
  prices?: Array<{
22
22
  price: number;
23
23
  dt: string;
@@ -16,7 +16,7 @@ export type InsightsHistoricalFuturesPricesSchema = {
16
16
  macd: 'is-falling-extremely-quickly' | 'is-falling-quickly' | 'is-falling' | 'may-be-turning' | 'is-growing' | 'is-growing-quickly' | 'is-growing-extremely-quickly';
17
17
  rsi: 'may-be-undervalued' | 'may-be-slightly-undervalued' | 'is-a-balanced-price' | 'may-be-slightly-overvalued' | 'may-be-overvalued';
18
18
  } | null;
19
- };
19
+ } | null;
20
20
  prices: Array<{
21
21
  price: number;
22
22
  dt: string;
@@ -1,5 +1,6 @@
1
1
  export type ListingDetail = {
2
2
  id: string;
3
+ createdAtUTC: string;
3
4
  status: 'active' | 'closed' | 'traded';
4
5
  substatus: 'unsold' | 'archived' | 'scheduled' | 'open' | 'in-review' | null;
5
6
  business: {
@@ -241,6 +242,7 @@ export type ListingDetail = {
241
242
  listingId: string;
242
243
  listing?: {
243
244
  id: string;
245
+ createdAtUTC: string;
244
246
  status: 'active' | 'closed' | 'traded';
245
247
  substatus: 'unsold' | 'archived' | 'scheduled' | 'open' | 'in-review' | null;
246
248
  business: {
@@ -1,5 +1,6 @@
1
1
  export type ListingSummary = {
2
2
  id: string;
3
+ createdAtUTC: string;
3
4
  status: 'active' | 'closed' | 'traded';
4
5
  substatus: 'unsold' | 'archived' | 'scheduled' | 'open' | 'in-review' | null;
5
6
  business: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hectare/platform.clients.trading",
3
- "version": "1.1.68",
3
+ "version": "1.1.70",
4
4
  "main": "index.js",
5
5
  "exported": true,
6
6
  "types": "index.d.ts",