ouisys-engine 5.0.66 → 5.0.67

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.
@@ -0,0 +1,80 @@
1
+ import { R as RemoteDataState } from './RemoteDataState-D1aFrz8W.js';
2
+
3
+ declare type IWithMultiKeywordShortcode = IKeywordShortcode & {
4
+ type?: string;
5
+ data?: Array<IKeywordShortcode>;
6
+ };
7
+ interface LOAD_OC2SMSState {
8
+ type: 'LOAD_OC2SMS';
9
+ result: RemoteDataState<string, IWithMultiKeywordShortcode>;
10
+ }
11
+ interface Click2smsFlowState {
12
+ currentState: Click2smsFlowCurrentState;
13
+ }
14
+ declare type Click2smsFlowCurrentState = LOAD_OC2SMSState;
15
+ declare type MSISDNEntryErrorTypes = 'AlreadySubscribed' | 'UnknownError' | 'InvalidMSISDN' | 'UnexpectedState';
16
+ declare type ILOADOC2SMSFailure = {
17
+ errorType: MSISDNEntryErrorTypes;
18
+ error?: any;
19
+ productUrl?: string;
20
+ };
21
+ declare type ILOADOC2SMSSuccess = IKeywordShortcode;
22
+ declare type ILoadOc2click2smsPayload = {
23
+ type: 'LOAD_OC2SMS';
24
+ payload: RemoteDataState<string, IWithMultiKeywordShortcode>;
25
+ };
26
+ declare type IKeywordShortcode = {
27
+ keyword: string;
28
+ shortcode: string;
29
+ operator?: string;
30
+ };
31
+ declare type Config = {
32
+ host?: string;
33
+ country?: string;
34
+ slug?: string;
35
+ automaticallySubmitAllOperators?: boolean;
36
+ operators?: string[];
37
+ };
38
+ declare type IClick2smsConfig = ({
39
+ tag: 'tallyman';
40
+ } & Config) | ({
41
+ tag: 'keywordAndShortCode';
42
+ } & IKeywordShortcode & Config) | ({
43
+ tag: 'keyword';
44
+ } & Config);
45
+ declare type SingleSubmissionResult = IKeywordShortcode & {
46
+ type: 'SingleSubmissionResult';
47
+ };
48
+ declare type MultiOperatorSubmissionResult = {
49
+ type: 'MultiOperatorSubmissionResult';
50
+ data: Array<IKeywordShortcode>;
51
+ };
52
+ declare type ICheckSubscriptionResult = {
53
+ success: false;
54
+ rockman_id: string;
55
+ message: string;
56
+ } | {
57
+ success: true;
58
+ msisdn: string;
59
+ product_url?: string;
60
+ rockman_id: string;
61
+ };
62
+ declare type IFetchResult = {
63
+ success: boolean;
64
+ uid: string;
65
+ shortcode: string;
66
+ keyword: string;
67
+ displayKeyword: string;
68
+ message?: string;
69
+ };
70
+ declare type IValidateAntifraudResult = {
71
+ success: true;
72
+ message: string;
73
+ code: number;
74
+ } | {
75
+ success: false;
76
+ message: string;
77
+ code: number;
78
+ };
79
+
80
+ export type { Click2smsFlowState as C, IWithMultiKeywordShortcode as I, LOAD_OC2SMSState as L, MSISDNEntryErrorTypes as M, SingleSubmissionResult as S, Click2smsFlowCurrentState as a, ILOADOC2SMSFailure as b, ILOADOC2SMSSuccess as c, ILoadOc2click2smsPayload as d, IKeywordShortcode as e, IClick2smsConfig as f, MultiOperatorSubmissionResult as g, ICheckSubscriptionResult as h, IFetchResult as i, IValidateAntifraudResult as j };
@@ -1,5 +1,6 @@
1
1
  import { R as RemoteDataState } from './RemoteDataState-D1aFrz8W.js';
2
2
  import { I as IStrategyNames } from './Strategy-BMpqb_fA.js';
3
+ import { C as Click2smsFlowState } from './Click2smsTypes-BbhnGxiA.js';
3
4
  import { C as CreditCardFlowState } from './CreditCardTypes-CyluWBTE.js';
4
5
  import { e as MoRedirFlowState } from './MoRedirTypes-4tEJjT1g.js';
5
6
  import { d as MoFlowState } from './MoTypes-D-UK92gs.js';
@@ -7,83 +8,6 @@ import { O as OneClickFlowState } from './OneClickTypes-CgHVbYo3.js';
7
8
  import { h as PinFlowState } from './PinTypes-DZyJBV0L.js';
8
9
  import { U as UssdFlowState } from './UssdTypes-C7QlIW11.js';
9
10
 
10
- declare type IWithMultiKeywordShortcode = IKeywordShortcode & {
11
- type?: string;
12
- data?: Array<IKeywordShortcode>;
13
- };
14
- interface LOAD_OC2SMSState {
15
- type: 'LOAD_OC2SMS';
16
- result: RemoteDataState<string, IWithMultiKeywordShortcode>;
17
- }
18
- interface Click2smsFlowState {
19
- currentState: Click2smsFlowCurrentState;
20
- }
21
- declare type Click2smsFlowCurrentState = LOAD_OC2SMSState;
22
- declare type MSISDNEntryErrorTypes = 'AlreadySubscribed' | 'UnknownError' | 'InvalidMSISDN' | 'UnexpectedState';
23
- declare type ILOADOC2SMSFailure = {
24
- errorType: MSISDNEntryErrorTypes;
25
- error?: any;
26
- productUrl?: string;
27
- };
28
- declare type ILOADOC2SMSSuccess = IKeywordShortcode;
29
- declare type ILoadOc2click2smsPayload = {
30
- type: 'LOAD_OC2SMS';
31
- payload: RemoteDataState<string, IWithMultiKeywordShortcode>;
32
- };
33
- declare type IKeywordShortcode = {
34
- keyword: string;
35
- shortcode: string;
36
- operator?: string;
37
- };
38
- declare type Config = {
39
- host?: string;
40
- country?: string;
41
- slug?: string;
42
- automaticallySubmitAllOperators?: boolean;
43
- operators?: string[];
44
- };
45
- declare type IClick2smsConfig = ({
46
- tag: 'tallyman';
47
- } & Config) | ({
48
- tag: 'keywordAndShortCode';
49
- } & IKeywordShortcode & Config) | ({
50
- tag: 'keyword';
51
- } & Config);
52
- declare type SingleSubmissionResult = IKeywordShortcode & {
53
- type: 'SingleSubmissionResult';
54
- };
55
- declare type MultiOperatorSubmissionResult = {
56
- type: 'MultiOperatorSubmissionResult';
57
- data: Array<IKeywordShortcode>;
58
- };
59
- declare type ICheckSubscriptionResult = {
60
- success: false;
61
- rockman_id: string;
62
- message: string;
63
- } | {
64
- success: true;
65
- msisdn: string;
66
- product_url?: string;
67
- rockman_id: string;
68
- };
69
- declare type IFetchResult = {
70
- success: boolean;
71
- uid: string;
72
- shortcode: string;
73
- keyword: string;
74
- displayKeyword: string;
75
- message?: string;
76
- };
77
- declare type IValidateAntifraudResult = {
78
- success: true;
79
- message: string;
80
- code: number;
81
- } | {
82
- success: false;
83
- message: string;
84
- code: number;
85
- };
86
-
87
11
  declare type IIdentifyResult = {
88
12
  operator: string;
89
13
  flow?: string;
@@ -340,4 +264,4 @@ interface RootState {
340
264
  creditCardFlow?: CreditCardFlowState;
341
265
  }
342
266
 
343
- export { type ILoadOc2click2smsPayload as $, type IIdentfyFlowByMsisdnNextAction as A, type IIdentfyFlowByOperatorNextAction as B, type ConfigDetails as C, type IIdentfyFlowByIPOperatorNextAction as D, type IIdenyifyFlowByMsisdnSumbitNextData as E, type IIdenyifyFlowByMsisdnPayload as F, type IIdenyifyStrategyPayload as G, type HEResult as H, type IDENTIFYMSISDNEntryFailure as I, type IStrategyCurrentState as J, type IStrategyIDentifyUserResult as K, type IMockFlows as L, type IMockFlowParams as M, type IScriptHeaderEnrichmentSuccess as N, type OPERATORSelectFailure as O, PossibleTypes as P, type ExtraStrategyData as Q, type IMockPinFlowStates as R, type StrategyCurrentState as S, type RootState as T, type LOAD_OC2SMSState as U, type Click2smsFlowState as V, type IWithMultiKeywordShortcode as W, type Click2smsFlowCurrentState as X, type MSISDNEntryErrorTypes as Y, type ILOADOC2SMSFailure as Z, type ILOADOC2SMSSuccess as _, type IDENTIFYMSISDNEntrySuccess as a, type IKeywordShortcode as a0, type IClick2smsConfig as a1, type SingleSubmissionResult as a2, type MultiOperatorSubmissionResult as a3, type ICheckSubscriptionResult as a4, type IFetchResult as a5, type IValidateAntifraudResult as a6, type StrategyState as b, type IIdentifyResult as c, type IConfig as d, type ISupportedFlows as e, type IFlow as f, type StrategyConfig as g, type IStrategy as h, type IHash as i, type IDENTIFYMSISDNEntryErrorTypes as j, type IdentifyFlowOptionsResult as k, type OPERATORSelectSuccess as l, type IDETECTYOPERATOBYIPFailure as m, type IDETECTYOPERATOBYIPSuccess as n, type IDENTIFY_OPERATOR_MSISDNEntrySuccess as o, type IDENTIFY_FLOW_HESuccess as p, type OPERATORSelectFlowIdentifyFailure as q, type OPERATORSelectFlowIdentifySuccess as r, type IDENTIFYFailure as s, type IDENTIFYSuccess as t, type IOperatorSelectFlowIdentifyPayload as u, type IDetectOperatorByIpPayload as v, type IOperatorSelectPayload as w, type ISubmitMsisdnPayload as x, type IIdentifyFlowByIpOperatorPayload as y, type IIdentifyFlowByHePayload as z };
267
+ export { type IIdentfyFlowByMsisdnNextAction as A, type IIdentfyFlowByOperatorNextAction as B, type ConfigDetails as C, type IIdentfyFlowByIPOperatorNextAction as D, type IIdenyifyFlowByMsisdnSumbitNextData as E, type IIdenyifyFlowByMsisdnPayload as F, type IIdenyifyStrategyPayload as G, type HEResult as H, type IDENTIFYMSISDNEntryFailure as I, type IStrategyCurrentState as J, type IStrategyIDentifyUserResult as K, type IMockFlows as L, type IMockFlowParams as M, type IScriptHeaderEnrichmentSuccess as N, type OPERATORSelectFailure as O, PossibleTypes as P, type ExtraStrategyData as Q, type IMockPinFlowStates as R, type StrategyCurrentState as S, type RootState as T, type IDENTIFYMSISDNEntrySuccess as a, type StrategyState as b, type IIdentifyResult as c, type IConfig as d, type ISupportedFlows as e, type IFlow as f, type StrategyConfig as g, type IStrategy as h, type IHash as i, type IDENTIFYMSISDNEntryErrorTypes as j, type IdentifyFlowOptionsResult as k, type OPERATORSelectSuccess as l, type IDETECTYOPERATOBYIPFailure as m, type IDETECTYOPERATOBYIPSuccess as n, type IDENTIFY_OPERATOR_MSISDNEntrySuccess as o, type IDENTIFY_FLOW_HESuccess as p, type OPERATORSelectFlowIdentifyFailure as q, type OPERATORSelectFlowIdentifySuccess as r, type IDENTIFYFailure as s, type IDENTIFYSuccess as t, type IOperatorSelectFlowIdentifyPayload as u, type IDetectOperatorByIpPayload as v, type IOperatorSelectPayload as w, type ISubmitMsisdnPayload as x, type IIdentifyFlowByIpOperatorPayload as y, type IIdentifyFlowByHePayload as z };
@@ -1,8 +1,9 @@
1
- import { U as LOAD_OC2SMSState, V as Click2smsFlowState, i as IHash, W as IWithMultiKeywordShortcode, X as Click2smsFlowCurrentState } from './StrategyTypes-G6fqxyxe.js';
2
- export { a4 as ICheckSubscriptionResult, a1 as IClick2smsConfig, a5 as IFetchResult, a0 as IKeywordShortcode, Z as ILOADOC2SMSFailure, _ as ILOADOC2SMSSuccess, $ as ILoadOc2click2smsPayload, a6 as IValidateAntifraudResult, Y as MSISDNEntryErrorTypes, a3 as MultiOperatorSubmissionResult, a2 as SingleSubmissionResult } from './StrategyTypes-G6fqxyxe.js';
1
+ import { L as LOAD_OC2SMSState, C as Click2smsFlowState, I as IWithMultiKeywordShortcode, a as Click2smsFlowCurrentState } from './Click2smsTypes-BbhnGxiA.js';
2
+ export { h as ICheckSubscriptionResult, f as IClick2smsConfig, i as IFetchResult, e as IKeywordShortcode, b as ILOADOC2SMSFailure, c as ILOADOC2SMSSuccess, d as ILoadOc2click2smsPayload, j as IValidateAntifraudResult, M as MSISDNEntryErrorTypes, g as MultiOperatorSubmissionResult, S as SingleSubmissionResult } from './Click2smsTypes-BbhnGxiA.js';
3
3
  import * as redux from 'redux';
4
4
  import * as _reduxjs_toolkit from '@reduxjs/toolkit';
5
5
  import * as _reduxjs_toolkit_dist_createAsyncThunk from '@reduxjs/toolkit/dist/createAsyncThunk';
6
+ import { i as IHash } from './StrategyTypes-BhHu5V2b.js';
6
7
  import { useSelector } from 'react-redux';
7
8
  import { R as RemoteDataState } from './RemoteDataState-D1aFrz8W.js';
8
9
  import './Strategy-BMpqb_fA.js';
@@ -1,12 +1,13 @@
1
1
  import { R as RemoteDataState } from './RemoteDataState-D1aFrz8W.js';
2
2
  export { a as RDS } from './RemoteDataState-D1aFrz8W.js';
3
- import { S as StrategyCurrentState, I as IDENTIFYMSISDNEntryFailure, a as IDENTIFYMSISDNEntrySuccess, P as PossibleTypes, C as ConfigDetails$1, b as StrategyState } from './StrategyTypes-G6fqxyxe.js';
4
- export { Q as ExtraStrategyData, H as HEResult, d as IConfig, s as IDENTIFYFailure, j as IDENTIFYMSISDNEntryErrorTypes, t as IDENTIFYSuccess, p as IDENTIFY_FLOW_HESuccess, o as IDENTIFY_OPERATOR_MSISDNEntrySuccess, m as IDETECTYOPERATOBYIPFailure, n as IDETECTYOPERATOBYIPSuccess, v as IDetectOperatorByIpPayload, f as IFlow, i as IHash, D as IIdentfyFlowByIPOperatorNextAction, A as IIdentfyFlowByMsisdnNextAction, B as IIdentfyFlowByOperatorNextAction, z as IIdentifyFlowByHePayload, y as IIdentifyFlowByIpOperatorPayload, c as IIdentifyResult, F as IIdenyifyFlowByMsisdnPayload, E as IIdenyifyFlowByMsisdnSumbitNextData, G as IIdenyifyStrategyPayload, M as IMockFlowParams, L as IMockFlows, R as IMockPinFlowStates, u as IOperatorSelectFlowIdentifyPayload, w as IOperatorSelectPayload, N as IScriptHeaderEnrichmentSuccess, h as IStrategy, J as IStrategyCurrentState, K as IStrategyIDentifyUserResult, x as ISubmitMsisdnPayload, e as ISupportedFlows, k as IdentifyFlowOptionsResult, O as OPERATORSelectFailure, q as OPERATORSelectFlowIdentifyFailure, r as OPERATORSelectFlowIdentifySuccess, l as OPERATORSelectSuccess, T as RootState, g as StrategyConfig } from './StrategyTypes-G6fqxyxe.js';
3
+ import { S as StrategyCurrentState, I as IDENTIFYMSISDNEntryFailure, a as IDENTIFYMSISDNEntrySuccess, P as PossibleTypes, C as ConfigDetails$1, b as StrategyState } from './StrategyTypes-BhHu5V2b.js';
4
+ export { Q as ExtraStrategyData, H as HEResult, d as IConfig, s as IDENTIFYFailure, j as IDENTIFYMSISDNEntryErrorTypes, t as IDENTIFYSuccess, p as IDENTIFY_FLOW_HESuccess, o as IDENTIFY_OPERATOR_MSISDNEntrySuccess, m as IDETECTYOPERATOBYIPFailure, n as IDETECTYOPERATOBYIPSuccess, v as IDetectOperatorByIpPayload, f as IFlow, i as IHash, D as IIdentfyFlowByIPOperatorNextAction, A as IIdentfyFlowByMsisdnNextAction, B as IIdentfyFlowByOperatorNextAction, z as IIdentifyFlowByHePayload, y as IIdentifyFlowByIpOperatorPayload, c as IIdentifyResult, F as IIdenyifyFlowByMsisdnPayload, E as IIdenyifyFlowByMsisdnSumbitNextData, G as IIdenyifyStrategyPayload, M as IMockFlowParams, L as IMockFlows, R as IMockPinFlowStates, u as IOperatorSelectFlowIdentifyPayload, w as IOperatorSelectPayload, N as IScriptHeaderEnrichmentSuccess, h as IStrategy, J as IStrategyCurrentState, K as IStrategyIDentifyUserResult, x as ISubmitMsisdnPayload, e as ISupportedFlows, k as IdentifyFlowOptionsResult, O as OPERATORSelectFailure, q as OPERATORSelectFlowIdentifyFailure, r as OPERATORSelectFlowIdentifySuccess, l as OPERATORSelectSuccess, T as RootState, g as StrategyConfig } from './StrategyTypes-BhHu5V2b.js';
5
5
  import { useSelector } from 'react-redux';
6
6
  import * as _reduxjs_toolkit from '@reduxjs/toolkit';
7
7
  import * as _reduxjs_toolkit_dist_createAsyncThunk from '@reduxjs/toolkit/dist/createAsyncThunk';
8
8
  import { C as ConfigDetails } from './Strategy-BMpqb_fA.js';
9
9
  import * as redux from 'redux';
10
+ import './Click2smsTypes-BbhnGxiA.js';
10
11
  import './CreditCardTypes-CyluWBTE.js';
11
12
  import './MoRedirTypes-4tEJjT1g.js';
12
13
  import './MoTypes-D-UK92gs.js';
@@ -0,0 +1,11 @@
1
+ import { I as IHash } from './IHash-0OgZ_1ij.js';
2
+ import { j as IValidateAntifraudResult } from './Click2smsTypes-BbhnGxiA.js';
3
+ import './RemoteDataState-D1aFrz8W.js';
4
+
5
+ declare function verifyAntifraudOnClick2Sms({ window, antifraudId, extraParams }: {
6
+ window: Window;
7
+ antifraudId: string;
8
+ extraParams?: IHash;
9
+ }): Promise<IValidateAntifraudResult>;
10
+
11
+ export { verifyAntifraudOnClick2Sms };
@@ -0,0 +1,2 @@
1
+ import{__awaiter as n,__generator as t,__read as a}from"tslib";import{c as r}from"./cleanSearchParams-Dl7ZDlew.js";import{getConfig as o}from"./getConfig.js";function i(i){var c,e=i.window,u=i.antifraudId,d=i.extraParams;return n(this,void 0,void 0,(function(){var n,i,f,l,s,m,p,v,_,g,h,j,y,C,b;return t(this,(function(t){return n=o(),i=e.pac_analytics.visitor,f=i.rockmanId,l=null==n?void 0:n.strategyConfigs.default,s=null==l?void 0:l.flowConfig,m=s.slug,p=s.country,v=s.device,_=s.offer,g=e.location.search.substr(1)||"",h="&".concat(Object.keys(d).map((function(n){return d[n]?"".concat(n,"=").concat(d[n]):""})).filter(Boolean).join("&")),g=r(g),j={action:"validateAntifraud",country:p,slug:m,device:v,offer:_,rockman_id:f,antifraud_id:u||e.antifraud_id||"",page:encodeURIComponent(null===(c=null==e?void 0:e.location)||void 0===c?void 0:c.href),language_code:e.languageCode||"",partner_transaction_id:e.partner_transaction_id||"",partner_timestamp:e.partner_timestamp||"",partner_cid:e.partner_cid||""},y=Object.entries(j).filter((function(n){var t=a(n,2);return t[0],t[1]})).map((function(n){var t=a(n,2),r=t[0],o=t[1];return"".concat(r,"=").concat(o)})).join("&"),C=e.DEV_BASE_URL||"",b="".concat(C,"/tallyman/v1/?").concat(y).concat(h).concat(g?"&".concat(g):""),[2,fetch(b).then((function(n){return n.json()}))]}))}))}export{i as verifyAntifraudOnClick2Sms};
2
+ //# sourceMappingURL=verifyAntifraudOnClick2Sms.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"verifyAntifraudOnClick2Sms.js","sources":["../src/utilities/verifyAntifraudOnClick2Sms.ts"],"sourcesContent":["import { IHash } from '../common-types/IHash';\nimport { IValidateAntifraudResult } from '../sharedFlowTypes/Click2smsTypes';\nimport { cleanSearchParams } from './cleanSearchParams';\nimport { getConfig } from './getConfig';\n\nexport async function verifyAntifraudOnClick2Sms({\n window,\n antifraudId,\n extraParams\n}: {\n window: Window;\n antifraudId: string;\n extraParams?: IHash;\n}): Promise<IValidateAntifraudResult> {\n const configs = getConfig();\n const { visitor } = window.pac_analytics;\n const { rockmanId } = visitor;\n const defaultConfig = configs?.strategyConfigs.default;\n const { slug, country, device, offer } = defaultConfig?.flowConfig;\n let search = window.location.search.substr(1) || '';\n\n const extraParamsQs = `&${Object.keys(extraParams)\n .map((k) => (extraParams[k] ? `${k}=${extraParams[k]}` : ''))\n .filter(Boolean)\n .join('&')}`;\n\n // Remove conflicting params from url\n search = cleanSearchParams(search);\n\n // Base parameters object\n const params = {\n action: 'validateAntifraud',\n country,\n slug,\n device,\n offer,\n rockman_id: rockmanId,\n antifraud_id: antifraudId || window.antifraud_id || '',\n page: encodeURIComponent(window?.location?.href),\n language_code: window.languageCode || '',\n partner_transaction_id: window.partner_transaction_id || '',\n partner_timestamp: window.partner_timestamp || '',\n partner_cid: window.partner_cid || ''\n };\n\n // Convert params object to query string\n const queryString = Object.entries(params)\n .filter(([_, value]) => value)\n .map(([key, value]) => `${key}=${value}`)\n .join('&');\n const host = window.DEV_BASE_URL || '';\n const url = `${host}/tallyman/v1/?${queryString}${extraParamsQs}${search ? `&${search}` : ''}`;\n\n return fetch(url).then((x) => x.json());\n}\n"],"names":["verifyAntifraudOnClick2Sms","_a","window","antifraudId","extraParams","configs","getConfig","visitor","pac_analytics","rockmanId","defaultConfig","strategyConfigs","default","_c","flowConfig","slug","country","device","offer","search","location","substr","extraParamsQs","concat","Object","keys","map","k","filter","Boolean","join","cleanSearchParams","params","action","rockman_id","antifraud_id","page","encodeURIComponent","_b","href","language_code","languageCode","partner_transaction_id","partner_timestamp","partner_cid","queryString","entries","__read","key","value","host","DEV_BASE_URL","url","fetch","then","x","json"],"mappings":"8JAKM,SAAgBA,EAA2BC,SAC/CC,WACAC,EAAWF,EAAAE,YACXC,EAAWH,EAAAG,iHA6CX,OAvCMC,EAAUC,IACRC,EAAYL,EAAOM,sBACnBC,EAAcF,EAAOE,UACvBC,EAAgBL,aAAO,EAAPA,EAASM,gBAAgBC,QACzCC,EAAmCH,eAAAA,EAAeI,WAAhDC,SAAMC,YAASC,WAAQC,UAC3BC,EAASjB,EAAOkB,SAASD,OAAOE,OAAO,IAAM,GAE3CC,EAAgB,IAAIC,OAAAC,OAAOC,KAAKrB,GACnCsB,KAAI,SAACC,GAAM,OAACvB,EAAYuB,GAAK,GAAAJ,OAAGI,EAAC,KAAAJ,OAAInB,EAAYuB,IAAO,MACxDC,OAAOC,SACPC,KAAK,MAGRX,EAASY,EAAkBZ,GAGrBa,EAAS,CACbC,OAAQ,oBACRjB,QAAOA,EACPD,KAAIA,EACJE,OAAMA,EACNC,MAAKA,EACLgB,WAAYzB,EACZ0B,aAAchC,GAAeD,EAAOiC,cAAgB,GACpDC,KAAMC,mBAAmC,QAAhBC,EAAApC,aAAM,EAANA,EAAQkB,gBAAQ,IAAAkB,OAAA,EAAAA,EAAEC,MAC3CC,cAAetC,EAAOuC,cAAgB,GACtCC,uBAAwBxC,EAAOwC,wBAA0B,GACzDC,kBAAmBzC,EAAOyC,mBAAqB,GAC/CC,YAAa1C,EAAO0C,aAAe,IAI/BC,EAAcrB,OAAOsB,QAAQd,GAChCJ,QAAO,SAAC3B,GAAA,IAAAqC,EAAAS,OAAe,OAAbT,EAAA,GAAOA,EAAA,EAAM,IACvBZ,KAAI,SAACzB,GAAA,IAAAqC,EAAAS,OAACC,EAAGV,EAAA,GAAEW,EAAKX,EAAA,GAAM,MAAA,GAAGf,OAAAyB,EAAO,KAAAzB,OAAA0B,EAAV,IACtBnB,KAAK,KACFoB,EAAOhD,EAAOiD,cAAgB,GAC9BC,EAAM,UAAGF,EAAI,kBAAA3B,OAAiBsB,GAActB,OAAAD,UAAgBH,EAAS,IAAAI,OAAIJ,GAAW,IAE1F,CAAA,EAAOkC,MAAMD,GAAKE,MAAK,SAACC,GAAM,OAAAA,EAAEC,MAAF,UAC/B"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ouisys-engine",
3
- "version": "5.0.66",
3
+ "version": "5.0.67",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "directories": "dist dev-tools",
@@ -38,6 +38,7 @@
38
38
  "./utilities/getConfig": "./dist/getConfig.js",
39
39
  "./utilities/handleClickChainFlow": "./dist/handleClickChainFlow.js",
40
40
  "./utilities/checkSubscriptionHander": "./dist/checkSubscriptionHander.js",
41
+ "./utilities/verifyAntifraudOnClick2Sms": "./dist/verifyAntifraudOnClick2Sms.js",
41
42
  "./utilities/unblockUser": "./dist/unblockUser.js"
42
43
  },
43
44
  "typesVersions": {
@@ -84,6 +85,9 @@
84
85
  "utilities/checkSubscriptionHander": [
85
86
  "dist/types/checkSubscriptionHander.d.ts"
86
87
  ],
88
+ "utilities/verifyAntifraudOnClick2Sms": [
89
+ "dist/types/verifyAntifraudOnClick2Sms.d.ts"
90
+ ],
87
91
  "utilities/unblockUser": [
88
92
  "dist/types/unblockUser.d.ts"
89
93
  ]