@mychoice/mychoice-sdk-store 2.2.14 → 2.2.18
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/dist/cjs/index.js +2 -0
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/states/reducers/states/formStates/FormCarState/QuoteState/interfaces.d.ts +3 -1
- package/dist/cjs/states/reducers/states/formStates/FormHomeState/QuoteState/interfaces.d.ts +3 -1
- package/dist/cjs/states/reducers/states/formStates/FormLifeState/QuoteState/interfaces.d.ts +1 -0
- package/dist/esm/index.js +2 -0
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/states/reducers/states/formStates/FormCarState/QuoteState/interfaces.d.ts +3 -1
- package/dist/esm/states/reducers/states/formStates/FormHomeState/QuoteState/interfaces.d.ts +3 -1
- package/dist/esm/states/reducers/states/formStates/FormLifeState/QuoteState/interfaces.d.ts +1 -0
- package/dist/index.d.ts +7 -2
- package/package.json +3 -3
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { StoreFormCarQuoteActionTypes } from './actions';
|
|
2
2
|
export declare enum CarBrokerTypeEnum {
|
|
3
|
-
Youset = "youset"
|
|
3
|
+
Youset = "youset",
|
|
4
|
+
Mitch = "mitch"
|
|
4
5
|
}
|
|
5
6
|
export interface BrokerProfileInterface {
|
|
6
7
|
description: string;
|
|
@@ -26,6 +27,7 @@ export interface CarQuoteCoverageInterface {
|
|
|
26
27
|
}
|
|
27
28
|
export interface CarBrokerIntegrationInterface {
|
|
28
29
|
type: CarBrokerTypeEnum;
|
|
30
|
+
ux?: 'contactonly';
|
|
29
31
|
data: Record<string, any>;
|
|
30
32
|
}
|
|
31
33
|
export interface CarQuoteItemInterface {
|
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
import { StoreFormHomeQuoteActionTypes } from './actions';
|
|
2
2
|
export declare enum HomeBrokerTypeEnum {
|
|
3
|
-
Youset = "youset"
|
|
3
|
+
Youset = "youset",
|
|
4
|
+
Mitch = "mitch"
|
|
4
5
|
}
|
|
5
6
|
export interface HomeBrokerIntegrationInterface {
|
|
6
7
|
type: HomeBrokerTypeEnum;
|
|
8
|
+
ux?: 'contactonly';
|
|
7
9
|
data: Record<string, any>;
|
|
8
10
|
}
|
|
9
11
|
export interface BrokerProfileInterface {
|
package/dist/esm/index.js
CHANGED
|
@@ -420,6 +420,7 @@ const globalStateReducer = combineReducers({
|
|
|
420
420
|
var CarBrokerTypeEnum;
|
|
421
421
|
(function (CarBrokerTypeEnum) {
|
|
422
422
|
CarBrokerTypeEnum["Youset"] = "youset";
|
|
423
|
+
CarBrokerTypeEnum["Mitch"] = "mitch";
|
|
423
424
|
})(CarBrokerTypeEnum || (CarBrokerTypeEnum = {}));
|
|
424
425
|
|
|
425
426
|
const vehicleComprehensiveInitialState = {
|
|
@@ -2285,6 +2286,7 @@ const getDwellingInitialState = (type) => {
|
|
|
2285
2286
|
var HomeBrokerTypeEnum;
|
|
2286
2287
|
(function (HomeBrokerTypeEnum) {
|
|
2287
2288
|
HomeBrokerTypeEnum["Youset"] = "youset";
|
|
2289
|
+
HomeBrokerTypeEnum["Mitch"] = "mitch";
|
|
2288
2290
|
})(HomeBrokerTypeEnum || (HomeBrokerTypeEnum = {}));
|
|
2289
2291
|
|
|
2290
2292
|
const formHomePostalInitialState = {
|