@mychoice/mychoice-sdk-store 2.1.86 → 2.2.5
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 +19 -8
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/states/reducers/states/formStates/FormCarState/DiscountState/actions.d.ts +1 -0
- package/dist/cjs/states/reducers/states/formStates/FormCarState/DiscountState/interfaces.d.ts +6 -0
- package/dist/cjs/states/reducers/states/formStates/FormHomeState/DiscountState/actions.d.ts +1 -0
- package/dist/cjs/states/reducers/states/formStates/FormHomeState/DiscountState/interfaces.d.ts +6 -0
- package/dist/cjs/states/reducers/states/formStates/FormLifeState/ApplicantState/actions.d.ts +2 -1
- package/dist/cjs/states/reducers/states/formStates/FormLifeState/ApplicantState/interfaces.d.ts +6 -0
- package/dist/esm/index.js +19 -8
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/states/reducers/states/formStates/FormCarState/DiscountState/actions.d.ts +1 -0
- package/dist/esm/states/reducers/states/formStates/FormCarState/DiscountState/interfaces.d.ts +6 -0
- package/dist/esm/states/reducers/states/formStates/FormHomeState/DiscountState/actions.d.ts +1 -0
- package/dist/esm/states/reducers/states/formStates/FormHomeState/DiscountState/interfaces.d.ts +6 -0
- package/dist/esm/states/reducers/states/formStates/FormLifeState/ApplicantState/actions.d.ts +2 -1
- package/dist/esm/states/reducers/states/formStates/FormLifeState/ApplicantState/interfaces.d.ts +6 -0
- package/dist/index.d.ts +22 -1
- package/package.json +3 -3
|
@@ -23,5 +23,6 @@ export declare enum StoreFormCarDiscountActionTypes {
|
|
|
23
23
|
FormCarDiscountQuoterBrokerInfoSet = "FormCarDiscountQuoterBrokerInfoSet",
|
|
24
24
|
FormCarDiscountQuoterUtmSourceSet = "FormCarDiscountQuoterUtmSourceSet",
|
|
25
25
|
FormCarDiscountQuoterUtmCampaignSet = "FormCarDiscountQuoterUtmCampaignSet",
|
|
26
|
+
FormCarDiscountQuoterUtmProducerSet = "FormCarDiscountQuoterUtmProducerSet",
|
|
26
27
|
FormCarDiscountQuoterInitialSet = "FormCarDiscountQuoterInitialSet"
|
|
27
28
|
}
|
package/dist/esm/states/reducers/states/formStates/FormCarState/DiscountState/interfaces.d.ts
CHANGED
|
@@ -131,6 +131,12 @@ export type FormCarDiscountStateActionType = {
|
|
|
131
131
|
utmCampaign: string;
|
|
132
132
|
};
|
|
133
133
|
localIndex?: string;
|
|
134
|
+
} | {
|
|
135
|
+
type: StoreFormCarDiscountActionTypes.FormCarDiscountQuoterUtmProducerSet;
|
|
136
|
+
payload: {
|
|
137
|
+
utmProducer: string;
|
|
138
|
+
};
|
|
139
|
+
localIndex?: string;
|
|
134
140
|
} | {
|
|
135
141
|
type: StoreFormCarDiscountActionTypes.FormCarDiscountQuoterInitialSet;
|
|
136
142
|
payload: {
|
|
@@ -15,6 +15,7 @@ export declare enum StoreFormHomeDiscountActionTypes {
|
|
|
15
15
|
FormHomeQuoterPhoneSet = "FormHomeQuoterPhoneSet",
|
|
16
16
|
FormHomeUtmCampaignSet = "FormHomeUtmCampaignSet",
|
|
17
17
|
FormHomeUtmSourceSet = "FormHomeUtmSourceSet",
|
|
18
|
+
FormHomeUtmProducerSet = "FormHomeUtmProducerSet",
|
|
18
19
|
FormHomeQuoterBrokerInfoSet = "FormHomeQuoterBrokerInfoSet",
|
|
19
20
|
FormHomeDiscountQuoterInitialSet = "FormHomeDiscountQuoterInitialSet"
|
|
20
21
|
}
|
package/dist/esm/states/reducers/states/formStates/FormHomeState/DiscountState/interfaces.d.ts
CHANGED
|
@@ -86,6 +86,12 @@ export type FormHomeDiscountStateActionType = {
|
|
|
86
86
|
utmSource: string;
|
|
87
87
|
};
|
|
88
88
|
localIndex?: string;
|
|
89
|
+
} | {
|
|
90
|
+
type: StoreFormHomeDiscountActionTypes.FormHomeUtmProducerSet;
|
|
91
|
+
payload: {
|
|
92
|
+
utmProducer: string;
|
|
93
|
+
};
|
|
94
|
+
localIndex?: string;
|
|
89
95
|
} | {
|
|
90
96
|
type: StoreFormHomeDiscountActionTypes.FormHomeDiscountQuoterInitialSet;
|
|
91
97
|
payload: {
|
package/dist/esm/states/reducers/states/formStates/FormLifeState/ApplicantState/actions.d.ts
CHANGED
|
@@ -14,5 +14,6 @@ export declare enum StoreFormLifeApplicantActionTypes {
|
|
|
14
14
|
FormLifeQuoterLastNameSet = "FormLifeQuoterLastNameSet",
|
|
15
15
|
FormLifeQuoterPhoneSet = "FormLifeQuoterPhoneSet",
|
|
16
16
|
FormLifeUtmCampaignSet = "FormLifeUtmCampaignSet",
|
|
17
|
-
FormLifeUtmSourceSet = "FormLifeUtmSourceSet"
|
|
17
|
+
FormLifeUtmSourceSet = "FormLifeUtmSourceSet",
|
|
18
|
+
FormLifeUtmProducerSet = "FormLifeUtmProducerSet"
|
|
18
19
|
}
|
package/dist/esm/states/reducers/states/formStates/FormLifeState/ApplicantState/interfaces.d.ts
CHANGED
|
@@ -103,6 +103,12 @@ export type FormLifeApplicantStateActionType = {
|
|
|
103
103
|
utmSource: string;
|
|
104
104
|
};
|
|
105
105
|
localIndex?: string;
|
|
106
|
+
} | {
|
|
107
|
+
type: StoreFormLifeApplicantActionTypes.FormLifeUtmProducerSet;
|
|
108
|
+
payload: {
|
|
109
|
+
utmProducer: string;
|
|
110
|
+
};
|
|
111
|
+
localIndex?: string;
|
|
106
112
|
} | {
|
|
107
113
|
type: StoreFormLifeApplicantActionTypes.FormLifeApplicantClear;
|
|
108
114
|
payload?: null;
|
package/dist/index.d.ts
CHANGED
|
@@ -1277,6 +1277,7 @@ declare enum StoreFormCarDiscountActionTypes {
|
|
|
1277
1277
|
FormCarDiscountQuoterBrokerInfoSet = "FormCarDiscountQuoterBrokerInfoSet",
|
|
1278
1278
|
FormCarDiscountQuoterUtmSourceSet = "FormCarDiscountQuoterUtmSourceSet",
|
|
1279
1279
|
FormCarDiscountQuoterUtmCampaignSet = "FormCarDiscountQuoterUtmCampaignSet",
|
|
1280
|
+
FormCarDiscountQuoterUtmProducerSet = "FormCarDiscountQuoterUtmProducerSet",
|
|
1280
1281
|
FormCarDiscountQuoterInitialSet = "FormCarDiscountQuoterInitialSet"
|
|
1281
1282
|
}
|
|
1282
1283
|
|
|
@@ -1410,6 +1411,12 @@ type FormCarDiscountStateActionType = {
|
|
|
1410
1411
|
utmCampaign: string;
|
|
1411
1412
|
};
|
|
1412
1413
|
localIndex?: string;
|
|
1414
|
+
} | {
|
|
1415
|
+
type: StoreFormCarDiscountActionTypes.FormCarDiscountQuoterUtmProducerSet;
|
|
1416
|
+
payload: {
|
|
1417
|
+
utmProducer: string;
|
|
1418
|
+
};
|
|
1419
|
+
localIndex?: string;
|
|
1413
1420
|
} | {
|
|
1414
1421
|
type: StoreFormCarDiscountActionTypes.FormCarDiscountQuoterInitialSet;
|
|
1415
1422
|
payload: {
|
|
@@ -2236,6 +2243,7 @@ declare enum StoreFormHomeDiscountActionTypes {
|
|
|
2236
2243
|
FormHomeQuoterPhoneSet = "FormHomeQuoterPhoneSet",
|
|
2237
2244
|
FormHomeUtmCampaignSet = "FormHomeUtmCampaignSet",
|
|
2238
2245
|
FormHomeUtmSourceSet = "FormHomeUtmSourceSet",
|
|
2246
|
+
FormHomeUtmProducerSet = "FormHomeUtmProducerSet",
|
|
2239
2247
|
FormHomeQuoterBrokerInfoSet = "FormHomeQuoterBrokerInfoSet",
|
|
2240
2248
|
FormHomeDiscountQuoterInitialSet = "FormHomeDiscountQuoterInitialSet"
|
|
2241
2249
|
}
|
|
@@ -2325,6 +2333,12 @@ type FormHomeDiscountStateActionType = {
|
|
|
2325
2333
|
utmSource: string;
|
|
2326
2334
|
};
|
|
2327
2335
|
localIndex?: string;
|
|
2336
|
+
} | {
|
|
2337
|
+
type: StoreFormHomeDiscountActionTypes.FormHomeUtmProducerSet;
|
|
2338
|
+
payload: {
|
|
2339
|
+
utmProducer: string;
|
|
2340
|
+
};
|
|
2341
|
+
localIndex?: string;
|
|
2328
2342
|
} | {
|
|
2329
2343
|
type: StoreFormHomeDiscountActionTypes.FormHomeDiscountQuoterInitialSet;
|
|
2330
2344
|
payload: {
|
|
@@ -2585,7 +2599,8 @@ declare enum StoreFormLifeApplicantActionTypes {
|
|
|
2585
2599
|
FormLifeQuoterLastNameSet = "FormLifeQuoterLastNameSet",
|
|
2586
2600
|
FormLifeQuoterPhoneSet = "FormLifeQuoterPhoneSet",
|
|
2587
2601
|
FormLifeUtmCampaignSet = "FormLifeUtmCampaignSet",
|
|
2588
|
-
FormLifeUtmSourceSet = "FormLifeUtmSourceSet"
|
|
2602
|
+
FormLifeUtmSourceSet = "FormLifeUtmSourceSet",
|
|
2603
|
+
FormLifeUtmProducerSet = "FormLifeUtmProducerSet"
|
|
2589
2604
|
}
|
|
2590
2605
|
|
|
2591
2606
|
interface FormLifeApplicantStateInterface extends StateBaseInterface {
|
|
@@ -2690,6 +2705,12 @@ type FormLifeApplicantStateActionType = {
|
|
|
2690
2705
|
utmSource: string;
|
|
2691
2706
|
};
|
|
2692
2707
|
localIndex?: string;
|
|
2708
|
+
} | {
|
|
2709
|
+
type: StoreFormLifeApplicantActionTypes.FormLifeUtmProducerSet;
|
|
2710
|
+
payload: {
|
|
2711
|
+
utmProducer: string;
|
|
2712
|
+
};
|
|
2713
|
+
localIndex?: string;
|
|
2693
2714
|
} | {
|
|
2694
2715
|
type: StoreFormLifeApplicantActionTypes.FormLifeApplicantClear;
|
|
2695
2716
|
payload?: null;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mychoice/mychoice-sdk-store",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.2.5",
|
|
4
4
|
"description": "> TODO: description",
|
|
5
5
|
"homepage": "https://github.com/hexdivision/mychoice-sdk#readme",
|
|
6
6
|
"author": "GogMes",
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"url": "https://github.com/hexdivision/mychoice-sdk/issues"
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@mychoice/mychoice-sdk-components": "^2.
|
|
32
|
+
"@mychoice/mychoice-sdk-components": "^2.2.0",
|
|
33
33
|
"@redux-devtools/extension": "^3.2.2",
|
|
34
34
|
"axios": "^0.27.2",
|
|
35
35
|
"humps": "^2.0.1",
|
|
@@ -37,5 +37,5 @@
|
|
|
37
37
|
"redux": "^4.2.0",
|
|
38
38
|
"redux-thunk": "^2.4.1"
|
|
39
39
|
},
|
|
40
|
-
"gitHead": "
|
|
40
|
+
"gitHead": "d7d80310f4eb6f4ea7f3acd12162b7ada89b9786"
|
|
41
41
|
}
|