@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.
- package/lib/constants.d.ts +3 -1
- package/lib/constants.d.ts.map +1 -1
- package/lib/constants.js +2 -0
- package/lib/constants.js.map +1 -1
- package/lib/types/opportunities.d.ts +1 -0
- package/lib/types/opportunities.d.ts.map +1 -1
- package/lib/types/opportunities.js.map +1 -1
- package/lib/types/quotes.d.ts +10 -0
- package/lib/types/quotes.d.ts.map +1 -1
- package/lib/types/quotes.js.map +1 -1
- package/package.json +1 -1
- package/src/constants.ts +2 -0
- package/src/types/opportunities.ts +1 -0
- package/src/types/quotes.ts +12 -0
- package/tsconfig.tsbuildinfo +1 -1
package/src/types/quotes.ts
CHANGED
|
@@ -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 & {
|