@bisondesk/core-sdk 1.0.436 → 1.0.438
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/constants.d.ts +1 -0
- package/lib/constants.d.ts.map +1 -1
- package/lib/constants.js +1 -0
- package/lib/constants.js.map +1 -1
- package/lib/types/leasing.d.ts +1 -16
- package/lib/types/leasing.d.ts.map +1 -1
- package/lib/types/leasing.js +0 -2
- package/lib/types/leasing.js.map +1 -1
- package/lib/types/opportunities.d.ts +1 -12
- package/lib/types/opportunities.d.ts.map +1 -1
- package/lib/types/opportunities.js.map +1 -1
- package/lib/types/quotes.d.ts +1 -10
- package/lib/types/quotes.d.ts.map +1 -1
- package/lib/types/quotes.js.map +1 -1
- package/lib/types/vehicle-sales.d.ts +1 -1
- package/lib/types/vehicle-sales.d.ts.map +1 -1
- package/lib/types/vehicle-sales.js.map +1 -1
- package/lib/types/vehicles.d.ts +1 -3
- package/lib/types/vehicles.d.ts.map +1 -1
- package/lib/types/vehicles.js +0 -1
- package/lib/types/vehicles.js.map +1 -1
- package/package.json +1 -1
- package/src/constants.ts +1 -0
- package/src/types/leasing.ts +1 -17
- package/src/types/opportunities.ts +1 -13
- package/src/types/quotes.ts +1 -4
- package/src/types/vehicle-sales.ts +1 -1
- package/src/types/vehicles.ts +0 -4
- package/tsconfig.tsbuildinfo +1 -1
package/src/types/vehicles.ts
CHANGED
|
@@ -18,7 +18,6 @@ export enum VehicleRoles {
|
|
|
18
18
|
RENTAL = 'RENTAL',
|
|
19
19
|
BUILD = 'BUILD',
|
|
20
20
|
UNKNOWN = 'UNKNOWN',
|
|
21
|
-
BANK_FINANCE = 'BANK_FINANCE',
|
|
22
21
|
}
|
|
23
22
|
|
|
24
23
|
export enum VehicleFuelType {
|
|
@@ -683,9 +682,6 @@ export type VehiclePurchase = {
|
|
|
683
682
|
purchaseVatRate?: string;
|
|
684
683
|
purchase?: string; // exclusive VAT
|
|
685
684
|
|
|
686
|
-
bonus?: string; // sometimes manufacturers pay us a bonus when we reach a target
|
|
687
|
-
|
|
688
|
-
// estimated costs, real costs come from actual invoices
|
|
689
685
|
commission?: string;
|
|
690
686
|
externalTransport?: string;
|
|
691
687
|
internalTransport?: string;
|