@hectare/platform.clients.trading 1.1.205 → 1.1.207

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/index.d.ts CHANGED
@@ -7,6 +7,7 @@ export type { BidDetail } from './models/BidDetail.js';
7
7
  export type { CloseListingReasonSchema } from './models/CloseListingReasonSchema.js';
8
8
  export type { CommodityPrices } from './models/CommodityPrices.js';
9
9
  export type { CommodityTradedInfo } from './models/CommodityTradedInfo.js';
10
+ export type { CompleteMarketingPlanSchema } from './models/CompleteMarketingPlanSchema.js';
10
11
  export type { ContractDeliverySchema } from './models/ContractDeliverySchema.js';
11
12
  export type { ContractDeliverySettlementDeductionSchema } from './models/ContractDeliverySettlementDeductionSchema.js';
12
13
  export type { ContractDeliverySettlementSchema } from './models/ContractDeliverySettlementSchema.js';
@@ -28,6 +29,7 @@ export type { CreateOrUpdateTargetPriceSchema } from './models/CreateOrUpdateTar
28
29
  export type { CreateOrUpdateTargetPricesSchema } from './models/CreateOrUpdateTargetPricesSchema.js';
29
30
  export type { CreateTradeRequest } from './models/CreateTradeRequest.js';
30
31
  export type { CreateWantedAd } from './models/CreateWantedAd.js';
32
+ export type { DeleteMarketingPlanSchema } from './models/DeleteMarketingPlanSchema.js';
31
33
  export type { ExFarmPriceCommodity } from './models/ExFarmPriceCommodity.js';
32
34
  export type { ExFarmPricesRegionSchema } from './models/ExFarmPricesRegionSchema.js';
33
35
  export type { ExFarmPricesSchema } from './models/ExFarmPricesSchema.js';
@@ -0,0 +1,3 @@
1
+ export type CompleteMarketingPlanSchema = {
2
+ reason: string | null;
3
+ };
@@ -0,0 +1 @@
1
+ export {};
@@ -15,7 +15,7 @@ export type CreateMarketingPlanSchema = {
15
15
  buyerNotes: string | null;
16
16
  };
17
17
  strategy: {
18
- type: 'steady';
18
+ type: 'basic' | 'steady';
19
19
  deadlines: Array<{
20
20
  sellStartDateUTC: string;
21
21
  sellEndDateUTC: string | null;
@@ -0,0 +1,3 @@
1
+ export type DeleteMarketingPlanSchema = {
2
+ reason: string | null;
3
+ };
@@ -0,0 +1 @@
1
+ export {};
@@ -76,7 +76,7 @@ export type MarketingPlanDetailSchema = {
76
76
  buyerNotes: string | null;
77
77
  };
78
78
  strategy: {
79
- type: 'steady';
79
+ type: 'basic' | 'steady';
80
80
  deadlines: Array<{
81
81
  id: number;
82
82
  endDateUTC: string;
@@ -77,7 +77,7 @@ export type MarketingPlanSearchResultsSchema = {
77
77
  buyerNotes: string | null;
78
78
  };
79
79
  strategy: {
80
- type: 'steady';
80
+ type: 'basic' | 'steady';
81
81
  deadlines: Array<{
82
82
  id: number;
83
83
  endDateUTC: string;
@@ -76,7 +76,7 @@ export type MarketingPlanSummarySchema = {
76
76
  buyerNotes: string | null;
77
77
  };
78
78
  strategy: {
79
- type: 'steady';
79
+ type: 'basic' | 'steady';
80
80
  deadlines: Array<{
81
81
  id: number;
82
82
  endDateUTC: string;
@@ -15,7 +15,7 @@ export type PatchMarketingPlanSchema = {
15
15
  buyerNotes: string | null;
16
16
  };
17
17
  strategy: {
18
- type: 'steady';
18
+ type: 'basic' | 'steady';
19
19
  deadlines: Array<{
20
20
  sellStartDateUTC: string;
21
21
  sellEndDateUTC: string | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hectare/platform.clients.trading",
3
- "version": "1.1.205",
3
+ "version": "1.1.207",
4
4
  "main": "index.js",
5
5
  "exported": true,
6
6
  "types": "index.d.ts",