@bisondesk/core-sdk 1.0.292 → 1.0.293
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/cjs/types/quotes.js.map +1 -1
- package/lib/esm/types/quotes.js.map +1 -1
- package/lib/tsconfig.cjs.tsbuildinfo +1 -1
- package/lib/tsconfig.esm.tsbuildinfo +1 -1
- package/lib/types/types/quotes.d.ts +7 -7
- package/lib/types/types/quotes.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/types/quotes.ts +10 -8
package/src/types/quotes.ts
CHANGED
|
@@ -352,14 +352,8 @@ export type DeliveryRoutesRequest = {
|
|
|
352
352
|
destination: DeliveryLocationValue;
|
|
353
353
|
};
|
|
354
354
|
|
|
355
|
-
|
|
356
|
-
branchId: string;
|
|
357
|
-
currency: string;
|
|
355
|
+
type BaseCommission = {
|
|
358
356
|
opportunityId: string;
|
|
359
|
-
stockNumber: string;
|
|
360
|
-
vehicleId: string;
|
|
361
|
-
|
|
362
|
-
dealAmount: string;
|
|
363
357
|
|
|
364
358
|
estimatedAmount: string;
|
|
365
359
|
estimatedPaidAt: string;
|
|
@@ -369,7 +363,15 @@ export type NewCommission = {
|
|
|
369
363
|
notes?: string;
|
|
370
364
|
};
|
|
371
365
|
|
|
372
|
-
export type
|
|
366
|
+
export type NewCommission = BaseCommission & {};
|
|
367
|
+
|
|
368
|
+
export type Commission = BaseCommission & {
|
|
369
|
+
stockNumber: string;
|
|
370
|
+
vehicleId: string;
|
|
371
|
+
|
|
372
|
+
branchId: string;
|
|
373
|
+
currency: string;
|
|
374
|
+
|
|
373
375
|
modifiedAt: string;
|
|
374
376
|
modifiedBy: string;
|
|
375
377
|
};
|