@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.
@@ -352,14 +352,8 @@ export type DeliveryRoutesRequest = {
352
352
  destination: DeliveryLocationValue;
353
353
  };
354
354
 
355
- export type NewCommission = {
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 Commission = NewCommission & {
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
  };