@bisondesk/core-sdk 1.0.444 → 1.0.445

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.
@@ -469,6 +469,7 @@ export type SalesTemplateData = {
469
469
  km: string | number;
470
470
  vin: string;
471
471
  year: string;
472
+ parkingLocation: string;
472
473
  };
473
474
  c: {
474
475
  organizationId?: string;
@@ -304,6 +304,18 @@ type BaseQuote = {
304
304
  calculatorOutput: SalesCalculatorOutput;
305
305
  rating?: MatchingRuleValue;
306
306
  }
307
+ | {
308
+ type: OpportunityType.NEW_TRAILER;
309
+ calculatorInput: SalesCalculatorInput;
310
+ calculatorOutput: SalesCalculatorOutput;
311
+ rating?: MatchingRuleValue;
312
+ }
313
+ | {
314
+ type: OpportunityType.USED_TRAILER;
315
+ calculatorInput: SalesCalculatorInput;
316
+ calculatorOutput: SalesCalculatorOutput;
317
+ rating?: MatchingRuleValue;
318
+ }
307
319
  );
308
320
 
309
321
  export type NewQuote = BaseQuote & {