@tap-payments/auth-jsconnect 2.8.14-test → 2.8.15-test
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.
|
@@ -66,10 +66,10 @@ import { hasNoneEditableValue, isKW, isTwitter, isWebsite, mapSalesChannel, retr
|
|
|
66
66
|
export var verifyLeadToken = createAsyncThunk('brand/verifyLeadToken', function (_a, thunkApi) {
|
|
67
67
|
var token = _a.token, isInternally = _a.isInternally;
|
|
68
68
|
return __awaiter(void 0, void 0, void 0, function () {
|
|
69
|
-
var payload, data, countryIso2, _b, config, brand_id, entity_id, publicKey, salesChannels, brandData;
|
|
70
|
-
var _c;
|
|
71
|
-
return __generator(this, function (
|
|
72
|
-
switch (
|
|
69
|
+
var payload, data, countryIso2, _b, config, brand_id, entity_id, board_id, publicKey, salesChannels, brandData, data_1;
|
|
70
|
+
var _c, _d;
|
|
71
|
+
return __generator(this, function (_e) {
|
|
72
|
+
switch (_e.label) {
|
|
73
73
|
case 0:
|
|
74
74
|
payload = __assign({ service_name: 'tap_email', verify_token: token }, (isInternally && {
|
|
75
75
|
notification: {
|
|
@@ -78,31 +78,38 @@ export var verifyLeadToken = createAsyncThunk('brand/verifyLeadToken', function
|
|
|
78
78
|
}));
|
|
79
79
|
return [4, API.leadService.verifyLeadToken(payload)];
|
|
80
80
|
case 1:
|
|
81
|
-
data = (
|
|
81
|
+
data = (_e.sent()).data;
|
|
82
82
|
if (((_c = data === null || data === void 0 ? void 0 : data.errors) === null || _c === void 0 ? void 0 : _c.length) || (data === null || data === void 0 ? void 0 : data.mw_error))
|
|
83
83
|
throw new Error(data.errors[0].description || (data === null || data === void 0 ? void 0 : data.mw_error));
|
|
84
84
|
countryIso2 = data === null || data === void 0 ? void 0 : data.country_code;
|
|
85
85
|
if (countryIso2)
|
|
86
86
|
thunkApi.dispatch(handleSetCountryByIso2(countryIso2));
|
|
87
|
-
_b = data || {}, config = _b.config, brand_id = _b.brand_id, entity_id = _b.entity_id;
|
|
87
|
+
_b = data || {}, config = _b.config, brand_id = _b.brand_id, entity_id = _b.entity_id, board_id = _b.id;
|
|
88
88
|
publicKey = config === null || config === void 0 ? void 0 : config.public_key;
|
|
89
89
|
if (publicKey)
|
|
90
90
|
thunkApi.dispatch(handlePublicKey(publicKey));
|
|
91
91
|
brandData = undefined;
|
|
92
92
|
if (isInternally)
|
|
93
93
|
data.step_name = BRAND_STEP_NAMES.BRAND_INFO;
|
|
94
|
-
if (!(data.step_name !== BRAND_STEP_NAMES.PHONE_AUTH || isInternally)) return [3,
|
|
95
|
-
if (
|
|
96
|
-
|
|
97
|
-
return [4, API.brandService.retrieveBrand(brand_id)];
|
|
94
|
+
if (!(data.step_name !== BRAND_STEP_NAMES.PHONE_AUTH || isInternally)) return [3, 7];
|
|
95
|
+
if (!!brand_id) return [3, 3];
|
|
96
|
+
return [4, API.boardService.retrieveBoardDetails(board_id)];
|
|
98
97
|
case 2:
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
98
|
+
data_1 = _e.sent();
|
|
99
|
+
brandData = data_1;
|
|
100
|
+
if (!((_d = data_1 === null || data_1 === void 0 ? void 0 : data_1.brand) === null || _d === void 0 ? void 0 : _d.id))
|
|
101
|
+
throw new Error('brand_id_missing');
|
|
102
|
+
return [3, 5];
|
|
103
|
+
case 3: return [4, API.brandService.retrieveBrand(brand_id)];
|
|
104
|
+
case 4:
|
|
105
|
+
brandData = _e.sent();
|
|
106
|
+
_e.label = 5;
|
|
107
|
+
case 5: return [4, API.dataService.getChannelsOfServices({ page: 0 })];
|
|
108
|
+
case 6:
|
|
109
|
+
salesChannels = _e.sent();
|
|
103
110
|
thunkApi.dispatch(handleNextScreenStep('BRAND_INFO_STEP'));
|
|
104
|
-
|
|
105
|
-
case
|
|
111
|
+
_e.label = 7;
|
|
112
|
+
case 7: return [2, {
|
|
106
113
|
data: data,
|
|
107
114
|
brandData: brandData === null || brandData === void 0 ? void 0 : brandData.brand,
|
|
108
115
|
salesChannels: salesChannels,
|
|
@@ -131,10 +138,10 @@ export var resendOTP = createAsyncThunk('brandResendOTP', function (params, thun
|
|
|
131
138
|
});
|
|
132
139
|
}); });
|
|
133
140
|
export var verifyBrandLeadOTP = createAsyncThunk('brand/verifyLeadOTP', function (params, thunkApi) { return __awaiter(void 0, void 0, void 0, function () {
|
|
134
|
-
var _a, brand, settings, responseBody, payload, data, publicKey, _b, brand_id, entity_id, brandData, salesChannels;
|
|
135
|
-
var _c, _d, _e, _f, _g;
|
|
136
|
-
return __generator(this, function (
|
|
137
|
-
switch (
|
|
141
|
+
var _a, brand, settings, responseBody, payload, data, publicKey, _b, brand_id, entity_id, boardId, brandData, data_2, salesChannels;
|
|
142
|
+
var _c, _d, _e, _f, _g, _h;
|
|
143
|
+
return __generator(this, function (_j) {
|
|
144
|
+
switch (_j.label) {
|
|
138
145
|
case 0:
|
|
139
146
|
_a = thunkApi.getState(), brand = _a.brand, settings = _a.settings;
|
|
140
147
|
responseBody = brand.data.verify.responseBody;
|
|
@@ -147,22 +154,30 @@ export var verifyBrandLeadOTP = createAsyncThunk('brand/verifyLeadOTP', function
|
|
|
147
154
|
};
|
|
148
155
|
return [4, API.leadService.verifyLeadOTP(payload)];
|
|
149
156
|
case 1:
|
|
150
|
-
data = (
|
|
157
|
+
data = (_j.sent()).data;
|
|
151
158
|
if ((_d = data.errors) === null || _d === void 0 ? void 0 : _d.length)
|
|
152
159
|
throw new Error(data.errors[0].description);
|
|
153
160
|
publicKey = (_e = data === null || data === void 0 ? void 0 : data.config) === null || _e === void 0 ? void 0 : _e.public_key;
|
|
154
161
|
if (publicKey)
|
|
155
162
|
thunkApi.dispatch(handlePublicKey(publicKey));
|
|
156
|
-
_b = data || {}, brand_id = _b.brand_id, entity_id = _b.entity_id;
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
return [4, API.
|
|
163
|
+
_b = data || {}, brand_id = _b.brand_id, entity_id = _b.entity_id, boardId = _b.id;
|
|
164
|
+
brandData = undefined;
|
|
165
|
+
if (!!brand_id) return [3, 3];
|
|
166
|
+
return [4, API.boardService.retrieveBoardDetails(boardId)];
|
|
160
167
|
case 2:
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
168
|
+
data_2 = _j.sent();
|
|
169
|
+
brandData = data_2;
|
|
170
|
+
if (!((_f = data_2 === null || data_2 === void 0 ? void 0 : data_2.brand) === null || _f === void 0 ? void 0 : _f.id))
|
|
171
|
+
throw new Error('brand_id_missing');
|
|
172
|
+
return [3, 5];
|
|
173
|
+
case 3: return [4, API.brandService.retrieveBrand(brand_id)];
|
|
174
|
+
case 4:
|
|
175
|
+
brandData = _j.sent();
|
|
176
|
+
_j.label = 5;
|
|
177
|
+
case 5: return [4, API.dataService.getChannelsOfServices({ page: 0 })];
|
|
178
|
+
case 6:
|
|
179
|
+
salesChannels = _j.sent();
|
|
180
|
+
(_h = (_g = settings.data.appConfig).onStepCompleted) === null || _h === void 0 ? void 0 : _h.call(_g, settings.data.activeScreen.name, { otp: params.otp });
|
|
166
181
|
sleep(100).then(function () { return thunkApi.dispatch(handleNextScreenStep('BRAND_INFO_STEP')); });
|
|
167
182
|
return [2, {
|
|
168
183
|
data: data,
|