ouisys-engine 5.1.37 → 5.1.38
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/checkSubscriptionHander.js +1 -1
- package/dist/{helpers-BIBpnXln.js → helpers-J_h-ZgxH.js} +2 -2
- package/dist/{helpers-BIBpnXln.js.map → helpers-J_h-ZgxH.js.map} +1 -1
- package/dist/initTPay.js +28 -57
- package/dist/initTPay.js.map +1 -1
- package/dist/pinFlow.js +444 -7
- package/dist/pinFlow.js.map +1 -1
- package/dist/src/utilities/initTpay.d.ts.map +1 -1
- package/dist/ussdFlow.js +1 -1
- package/package.json +1 -1
- package/dist/main-DucVMPM9.js +0 -448
- package/dist/main-DucVMPM9.js.map +0 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { __awaiter, __generator, __assign } from 'tslib';
|
|
2
2
|
import { h as handleResolveRedirect } from './handleResolveRedirect-5Hkm5YXF.js';
|
|
3
|
-
import {
|
|
3
|
+
import { a as loop } from './helpers-J_h-ZgxH.js';
|
|
4
4
|
import { searchToObject } from './searchToObject.js';
|
|
5
5
|
import { t as tracker } from './tracker-B_zsMRN2.js';
|
|
6
6
|
import { u as updateUrlWithParams } from './updateUrlWithParams-ZaZt1BCf.js';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"helpers-
|
|
1
|
+
{"version":3,"file":"helpers-J_h-ZgxH.js","sources":["../../src/utilities/helpers.ts"],"sourcesContent":["import Either from '../common-types/Either';\n\nexport const wait = (ms: number) => new Promise<void>((resolve) => setTimeout(() => resolve(), ms));\n\nexport const loop = async <_I extends Record<string, unknown>, R extends Record<string, unknown>>(\n f: () => Promise<R>,\n max: number,\n stop: (r: R) => boolean,\n i: number\n): Promise<R> => {\n const r = await f();\n if (stop(r) || i >= max) {\n return r;\n }\n await wait(1000);\n return loop(f, max, stop, i + 1);\n};\n\nexport function right<L, R>(r: R) {\n return { type: 'right', value: r } as Either<L, R>;\n}\nexport function left<L, R>(l: L) {\n return { type: 'left', value: l } as Either<L, R>;\n}\n"],"names":[],"mappings":";;AAEO,IAAM,IAAI,GAAG,UAAC,EAAU,EAAK,EAAA,OAAA,IAAI,OAAO,CAAO,UAAC,OAAO,EAAK,EAAA,OAAA,UAAU,CAAC,YAAM,EAAA,OAAA,OAAO,EAAE,GAAA,EAAE,EAAE,CAAC,CAA/B,EAA+B,CAAC,CAAA,EAAA,CAAC;AAEvF,IAAA,IAAI,GAAG,UAClB,CAAmB,EACnB,GAAW,EACX,IAAuB,EACvB,CAAS,EAAA,EAAA,OAAA,SAAA,CAAA,KAAA,CAAA,EAAA,KAAA,CAAA,EAAA,KAAA,CAAA,EAAA,YAAA;;;;oBAEC,OAAM,CAAA,CAAA,YAAA,CAAC,EAAE,CAAA,CAAA;;AAAb,gBAAA,CAAC,GAAG,EAAS,CAAA,IAAA,EAAA,CAAA;gBACnB,IAAI,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,GAAG,EAAE;AACvB,oBAAA,OAAA,CAAA,CAAA,aAAO,CAAC,CAAC,CAAA;AACV,iBAAA;AACD,gBAAA,OAAA,CAAA,CAAA,YAAM,IAAI,CAAC,IAAI,CAAC,CAAA,CAAA;;AAAhB,gBAAA,EAAA,CAAA,IAAA,EAAgB,CAAC;AACjB,gBAAA,OAAA,CAAA,CAAA,aAAO,IAAI,CAAC,CAAC,EAAE,GAAG,EAAE,IAAI,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAA;;;MACjC;AAEI,SAAU,KAAK,CAAO,CAAI,EAAA;IAC9B,OAAO,EAAE,IAAI,EAAE,OAAO,EAAE,KAAK,EAAE,CAAC,EAAkB,CAAC;AACrD,CAAC;AACK,SAAU,IAAI,CAAO,CAAI,EAAA;IAC7B,OAAO,EAAE,IAAI,EAAE,MAAM,EAAE,KAAK,EAAE,CAAC,EAAkB,CAAC;AACpD;;;;"}
|
package/dist/initTPay.js
CHANGED
|
@@ -1,65 +1,36 @@
|
|
|
1
1
|
import { __awaiter, __generator } from 'tslib';
|
|
2
|
-
import { s as submitMSISDN } from './main-DucVMPM9.js';
|
|
3
2
|
import { i as identify } from './api-oPdBWsMC.js';
|
|
4
3
|
import { getConfig } from './getConfig.js';
|
|
5
|
-
import { t as tracker } from './tracker-B_zsMRN2.js';
|
|
6
|
-
import './helpers-BIBpnXln.js';
|
|
7
|
-
import './loadScriptInnerHtml-CstJVRED.js';
|
|
8
|
-
import './normaliseErrorCode-CseFd8jz.js';
|
|
9
|
-
import './searchToObject.js';
|
|
10
|
-
import './cleanSearchParams-B2jK3H1j.js';
|
|
11
|
-
import 'pacman-client';
|
|
12
|
-
import 'uuid';
|
|
13
4
|
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
5
|
+
// interface OperatorEntry {
|
|
6
|
+
// code: number; // MCC/MNC
|
|
7
|
+
// operator_suffix: string;
|
|
8
|
+
// }
|
|
9
|
+
// type OperatorDict = Record<string, OperatorEntry>;
|
|
10
|
+
// function getSuffixByCode(
|
|
11
|
+
// data: OperatorDict | undefined | null,
|
|
12
|
+
// code: number | string,
|
|
13
|
+
// fallback: string | null = null
|
|
14
|
+
// ): string | null {
|
|
15
|
+
// if (!data || typeof data !== 'object') return fallback;
|
|
16
|
+
// const target = Number(code);
|
|
17
|
+
// return Object.values(data).find((item: OperatorEntry) => Number(item.code) === target)?.operator_suffix ?? fallback;
|
|
18
|
+
// }
|
|
22
19
|
var initTPay = function (internationalNumber) { return __awaiter(void 0, void 0, void 0, function () {
|
|
23
|
-
var jsLinkResult, configs, strategyConfigs, config,
|
|
24
|
-
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q
|
|
25
|
-
return __generator(this, function (
|
|
26
|
-
switch (
|
|
20
|
+
var jsLinkResult, configs, strategyConfigs, config, intlPhone, identifyResult, err_1;
|
|
21
|
+
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q;
|
|
22
|
+
return __generator(this, function (_r) {
|
|
23
|
+
switch (_r.label) {
|
|
27
24
|
case 0:
|
|
28
25
|
jsLinkResult = (_b = (_a = window === null || window === void 0 ? void 0 : window.pac_analytics) === null || _a === void 0 ? void 0 : _a.visitor) === null || _b === void 0 ? void 0 : _b.genericJsLinkResult;
|
|
29
26
|
if (!(typeof window !== 'undefined' && (jsLinkResult === null || jsLinkResult === void 0 ? void 0 : jsLinkResult.gateway) === 'tpay')) return [3 /*break*/, 6];
|
|
30
27
|
configs = getConfig();
|
|
31
28
|
strategyConfigs = configs.strategyConfigs;
|
|
32
29
|
config = (_c = strategyConfigs === null || strategyConfigs === void 0 ? void 0 : strategyConfigs.default) === null || _c === void 0 ? void 0 : _c.flowConfig;
|
|
33
|
-
|
|
30
|
+
_r.label = 1;
|
|
34
31
|
case 1:
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
msisdn = (_e = window.TPay.HeaderEnrichment) === null || _e === void 0 ? void 0 : _e.msisdn();
|
|
38
|
-
tracker.advancedInFlow('tallyman.v1-pin', 'msisdn-submitted', { msisdn: msisdn });
|
|
39
|
-
// trigger pin call requested here by Adrian for BE tracking
|
|
40
|
-
submitMSISDN(window, config, msisdn, {
|
|
41
|
-
'skip-validation': '1' // According to doc msisdn might be encrypted
|
|
42
|
-
});
|
|
43
|
-
window.msisdn = msisdn;
|
|
44
|
-
window.operatorCode = (_f = window.TPay.HeaderEnrichment) === null || _f === void 0 ? void 0 : _f.operatorCode();
|
|
45
|
-
window.operatorSuffix = getSuffixByCode((_g = jsLinkResult === null || jsLinkResult === void 0 ? void 0 : jsLinkResult.extra_data) === null || _g === void 0 ? void 0 : _g.operator_mccmnc_mapping, (_h = window.TPay.HeaderEnrichment) === null || _h === void 0 ? void 0 : _h.operatorCode());
|
|
46
|
-
if (window.callConfirm) {
|
|
47
|
-
try {
|
|
48
|
-
window.callConfirm();
|
|
49
|
-
}
|
|
50
|
-
catch (ex) {
|
|
51
|
-
// Catch any unexpected errors
|
|
52
|
-
tracker.recedeInFlow('tallyman.v1-pin', 'msisdn-submission-failure', {
|
|
53
|
-
msisdn: msisdn,
|
|
54
|
-
errorType: 'TPayConfirmError',
|
|
55
|
-
error: (ex === null || ex === void 0 ? void 0 : ex.toString()) || 'Error calling window.callConfirm function',
|
|
56
|
-
message: ex.message
|
|
57
|
-
});
|
|
58
|
-
}
|
|
59
|
-
}
|
|
60
|
-
return [2 /*return*/, true];
|
|
61
|
-
}
|
|
62
|
-
intlPhone = (_j = internationalNumber === null || internationalNumber === void 0 ? void 0 : internationalNumber.match(/\d+/gi)) === null || _j === void 0 ? void 0 : _j.join('');
|
|
32
|
+
_r.trys.push([1, 4, , 5]);
|
|
33
|
+
intlPhone = (_d = internationalNumber === null || internationalNumber === void 0 ? void 0 : internationalNumber.match(/\d+/gi)) === null || _d === void 0 ? void 0 : _d.join('');
|
|
63
34
|
if (!(internationalNumber || (internationalNumber === null || internationalNumber === void 0 ? void 0 : internationalNumber.length) > 2)) return [3 /*break*/, 3];
|
|
64
35
|
return [4 /*yield*/, identify({
|
|
65
36
|
window: window,
|
|
@@ -67,23 +38,23 @@ var initTPay = function (internationalNumber) { return __awaiter(void 0, void 0,
|
|
|
67
38
|
country: config === null || config === void 0 ? void 0 : config.country,
|
|
68
39
|
msisdn: intlPhone,
|
|
69
40
|
device: 'smart',
|
|
70
|
-
offer: (
|
|
71
|
-
rockmanId: (
|
|
41
|
+
offer: (_f = (_e = window === null || window === void 0 ? void 0 : window.pac_analytics) === null || _e === void 0 ? void 0 : _e.visitor) === null || _f === void 0 ? void 0 : _f.offer,
|
|
42
|
+
rockmanId: (_h = (_g = window === null || window === void 0 ? void 0 : window.pac_analytics) === null || _g === void 0 ? void 0 : _g.visitor) === null || _h === void 0 ? void 0 : _h.rockmanId
|
|
72
43
|
})];
|
|
73
44
|
case 2:
|
|
74
|
-
identifyResult =
|
|
45
|
+
identifyResult = _r.sent();
|
|
75
46
|
if (identifyResult.operator) {
|
|
76
|
-
window.operatorCode = (
|
|
47
|
+
window.operatorCode = (_m = (_l = (_k = (_j = jsLinkResult === null || jsLinkResult === void 0 ? void 0 : jsLinkResult.extra_data) === null || _j === void 0 ? void 0 : _j.operator_mccmnc_mapping) === null || _k === void 0 ? void 0 : _k[identifyResult.operator]) === null || _l === void 0 ? void 0 : _l.code) === null || _m === void 0 ? void 0 : _m.toString();
|
|
77
48
|
window.operatorSuffix =
|
|
78
|
-
(
|
|
49
|
+
(_q = (_p = (_o = jsLinkResult === null || jsLinkResult === void 0 ? void 0 : jsLinkResult.extra_data) === null || _o === void 0 ? void 0 : _o.operator_mccmnc_mapping) === null || _p === void 0 ? void 0 : _p[identifyResult.operator]) === null || _q === void 0 ? void 0 : _q.operator_suffix;
|
|
79
50
|
}
|
|
80
51
|
console.log('operatorCode', window.operatorCode);
|
|
81
52
|
console.log('operatorSuffix', window.operatorSuffix);
|
|
82
53
|
window.TPay.HeaderEnrichment.init({ operatorCode: window.operatorCode });
|
|
83
|
-
|
|
54
|
+
_r.label = 3;
|
|
84
55
|
case 3: return [2 /*return*/, true];
|
|
85
56
|
case 4:
|
|
86
|
-
err_1 =
|
|
57
|
+
err_1 = _r.sent();
|
|
87
58
|
console.warn(err_1);
|
|
88
59
|
return [2 /*return*/, false];
|
|
89
60
|
case 5: return [3 /*break*/, 7];
|
package/dist/initTPay.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"initTPay.js","sources":["../../src/utilities/initTpay.ts"],"sourcesContent":["/* eslint-disable no-console */\nimport
|
|
1
|
+
{"version":3,"file":"initTPay.js","sources":["../../src/utilities/initTpay.ts"],"sourcesContent":["/* eslint-disable no-console */\nimport { identify } from '../flows/strategy/api';\nimport { getConfig } from './getConfig';\n\n// interface OperatorEntry {\n// code: number; // MCC/MNC\n// operator_suffix: string;\n// }\n\n// type OperatorDict = Record<string, OperatorEntry>;\n\n// function getSuffixByCode(\n// data: OperatorDict | undefined | null,\n// code: number | string,\n// fallback: string | null = null\n// ): string | null {\n// if (!data || typeof data !== 'object') return fallback;\n\n// const target = Number(code);\n\n// return Object.values(data).find((item: OperatorEntry) => Number(item.code) === target)?.operator_suffix ?? fallback;\n// }\nexport const initTPay = async (internationalNumber?: string): Promise<boolean> => {\n const jsLinkResult = window?.pac_analytics?.visitor?.genericJsLinkResult;\n\n if (typeof window !== 'undefined' && jsLinkResult?.gateway === 'tpay') {\n const configs = getConfig();\n const { strategyConfigs } = configs;\n const config = strategyConfigs?.default?.flowConfig;\n\n try {\n // if ((!internationalNumber || internationalNumber?.length <= 2) && window.TPay.HeaderEnrichment?.enriched()) {\n // const msisdn = window.TPay.HeaderEnrichment?.msisdn();\n // tracker.advancedInFlow('tallyman.v1-pin', 'msisdn-submitted', { msisdn });\n // // trigger pin call requested here by Adrian for BE tracking\n // submitMSISDN(window, config, msisdn, {\n // 'skip-validation': '1' // According to doc msisdn might be encrypted\n // });\n // window.msisdn = msisdn;\n // window.operatorCode = window.TPay.HeaderEnrichment?.operatorCode() as number;\n // window.operatorSuffix = getSuffixByCode(\n // jsLinkResult?.extra_data?.operator_mccmnc_mapping,\n // window.TPay.HeaderEnrichment?.operatorCode()\n // );\n // if (window.callConfirm) {\n // try {\n // window.callConfirm();\n // } catch (ex) {\n // // Catch any unexpected errors\n // tracker.recedeInFlow('tallyman.v1-pin', 'msisdn-submission-failure', {\n // msisdn,\n // errorType: 'TPayConfirmError',\n // error: ex?.toString() || 'Error calling window.callConfirm function',\n // message: ex.message\n // });\n // }\n // }\n // return true;\n // }\n const intlPhone = internationalNumber?.match(/\\d+/gi)?.join('');\n\n if (internationalNumber || internationalNumber?.length > 2) {\n const identifyResult = await identify({\n window,\n slug: config?.slug,\n country: config?.country,\n msisdn: intlPhone,\n device: 'smart',\n offer: window?.pac_analytics?.visitor?.offer,\n rockmanId: window?.pac_analytics?.visitor?.rockmanId\n });\n\n if (identifyResult.operator) {\n window.operatorCode = jsLinkResult?.extra_data?.operator_mccmnc_mapping?.[\n identifyResult.operator\n ]?.code?.toString();\n window.operatorSuffix =\n jsLinkResult?.extra_data?.operator_mccmnc_mapping?.[identifyResult.operator]?.operator_suffix;\n }\n console.log('operatorCode', window.operatorCode);\n console.log('operatorSuffix', window.operatorSuffix);\n\n window.TPay.HeaderEnrichment.init({ operatorCode: window.operatorCode });\n }\n return true;\n } catch (err) {\n console.warn(err);\n return false;\n }\n } else {\n console.log('Not tpay');\n return false;\n }\n};\n"],"names":[],"mappings":"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"}
|