@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.
- package/lib/apis/offers.d.ts +3 -0
- package/lib/apis/offers.d.ts.map +1 -0
- package/lib/apis/offers.js +19 -0
- package/lib/apis/offers.js.map +1 -0
- package/lib/constants.d.ts +2 -0
- package/lib/constants.d.ts.map +1 -1
- package/lib/constants.js +2 -0
- package/lib/constants.js.map +1 -1
- package/lib/types/delivery-settings.d.ts +5 -10
- package/lib/types/delivery-settings.d.ts.map +1 -1
- package/lib/types/delivery-settings.js.map +1 -1
- package/lib/types/leasing-search.d.ts +1 -0
- package/lib/types/leasing-search.d.ts.map +1 -1
- package/lib/types/leasing-search.js.map +1 -1
- package/lib/types/opportunities.d.ts +2 -1
- package/lib/types/opportunities.d.ts.map +1 -1
- package/lib/types/opportunities.js +1 -0
- package/lib/types/opportunities.js.map +1 -1
- package/lib/types/quotes.d.ts +3 -2
- package/lib/types/quotes.d.ts.map +1 -1
- package/lib/types/quotes.js +1 -0
- package/lib/types/quotes.js.map +1 -1
- package/lib/types/vehicles.d.ts +2 -1
- package/lib/types/vehicles.d.ts.map +1 -1
- package/lib/types/vehicles.js +1 -0
- package/lib/types/vehicles.js.map +1 -1
- package/package.json +1 -1
- package/src/apis/offers.ts +25 -0
- package/src/constants.ts +2 -0
- package/src/types/delivery-settings.ts +6 -13
- package/src/types/leasing-search.ts +1 -0
- package/src/types/opportunities.ts +1 -0
- package/src/types/quotes.ts +2 -1
- package/src/types/vehicles.ts +1 -0
- package/tsconfig.tsbuildinfo +1 -1
package/src/types/quotes.ts
CHANGED
|
@@ -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;
|
package/src/types/vehicles.ts
CHANGED