@bisondesk/core-sdk 1.0.559 → 1.0.561

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.
@@ -108,6 +108,7 @@ export enum OpportunityLostReasonValues {
108
108
  NoAnswer = 'client_not_answered',
109
109
  Automatic = 'automatic',
110
110
  LeasingDeal = 'sold-via-leasing',
111
+ InvestmentPostponed = 'investment_postponed',
111
112
  }
112
113
 
113
114
  type BaseBid = {
@@ -37,6 +37,7 @@ export enum DeliveryTypes {
37
37
  PICK_UP = 'pickUp',
38
38
  ADDRESS = 'address',
39
39
  PORT = 'port',
40
+ PORT_AND_SHIP = 'portAndShip',
40
41
  }
41
42
 
42
43
  export enum SpoilerInfo {
@@ -163,7 +164,7 @@ export type AddressDeliveryType = BaseDeliveryType & {
163
164
  };
164
165
 
165
166
  export type PortDeliverytype = BaseDeliveryType & {
166
- type: DeliveryTypes.PORT;
167
+ type: DeliveryTypes.PORT | DeliveryTypes.PORT_AND_SHIP;
167
168
  portOriginId: string;
168
169
  portDestination?: string;
169
170
  shippingCompany?: string;
@@ -655,6 +655,7 @@ export enum VehiclePurchaseLogisticsStatus {
655
655
  AtOrigin = 'AT_ORIGIN',
656
656
  Arrived = 'ARRIVED',
657
657
  CheckedIn = 'CHECKED_IN',
658
+ NotApplicable = 'NOT_APPLICABLE',
658
659
  }
659
660
 
660
661
  export enum VehiclePurchaseDeliveryType {