ouisys-engine 3.0.21 → 3.0.23
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/.babelrc +9 -1
- package/dist/@types/window.d.js +1 -5
- package/dist/api/index.js +1 -760
- package/dist/common-types/AppThunk.js +1 -5
- package/dist/common-types/Either.js +1 -5
- package/dist/common-types/IError.js +1 -5
- package/dist/common-types/ITracker.js +1 -5
- package/dist/common-types/IVisitor.js +1 -5
- package/dist/common-types/RemoteDataState.js +1 -138
- package/dist/custom-hooks/useStrategyConfig.js +1 -24
- package/dist/flows/click2smsFlow.js +1 -23
- package/dist/flows/moFlow.js +1 -23
- package/dist/flows/moRedirFlow.js +1 -23
- package/dist/flows/oneClickFlow.js +1 -29
- package/dist/flows/pinFlow.js +1 -25
- package/dist/flows/strategy.js +1 -49
- package/dist/flows/ussdFlow.js +1 -22
- package/dist/index.js +0 -2
- package/dist/ips/tryGetIPRangeName.js +1 -111
- package/dist/pacman/index.js +1 -110
- package/dist/pacman/queryString.js +1 -50
- package/dist/reducers/click2smsFlow/Click2smsTypes.js +1 -5
- package/dist/reducers/click2smsFlow/IClick2smsConstants.js +1 -5
- package/dist/reducers/click2smsFlow/index.js +1 -199
- package/dist/reducers/click2smsFlow/utils.js +1 -372
- package/dist/reducers/moFlow/IMoConstants.js +1 -5
- package/dist/reducers/moFlow/MoTypes.js +1 -5
- package/dist/reducers/moFlow/index.js +1 -257
- package/dist/reducers/moFlow/utils.js +1 -340
- package/dist/reducers/moRedirFlow/IMoRedirConstants.js +1 -5
- package/dist/reducers/moRedirFlow/MoRedirTypes.js +1 -5
- package/dist/reducers/moRedirFlow/index.js +1 -243
- package/dist/reducers/moRedirFlow/utils.js +1 -240
- package/dist/reducers/oneClickFlow/IOneClickConstants.js +1 -5
- package/dist/reducers/oneClickFlow/OneClickTypes.js +1 -5
- package/dist/reducers/oneClickFlow/index.js +1 -458
- package/dist/reducers/oneClickFlow/utils.js +1 -410
- package/dist/reducers/pinFlow/IPinConstants.js +1 -5
- package/dist/reducers/pinFlow/PinTypes.js +1 -5
- package/dist/reducers/pinFlow/index.js +1 -543
- package/dist/reducers/pinFlow/utils.js +1 -545
- package/dist/reducers/strategy/IStategyActionContants.js +1 -5
- package/dist/reducers/strategy/StrategyTypes.d.ts +3 -2
- package/dist/reducers/strategy/StrategyTypes.js +1 -5
- package/dist/reducers/strategy/index.js +1 -419
- package/dist/reducers/strategy/strategies/ask_mobile_number.js +1 -581
- package/dist/reducers/strategy/strategies/ask_operator.js +1 -317
- package/dist/reducers/strategy/strategies/detect_operator_by_ip.js +1 -692
- package/dist/reducers/strategy/strategies/header_enrichment.js +1 -804
- package/dist/reducers/strategy/strategies/injectHeaderEnrichmentScript.js +1 -118
- package/dist/reducers/strategy/utils.js +1 -710
- package/dist/reducers/ussdFlow/IUssdConstants.js +1 -5
- package/dist/reducers/ussdFlow/UssdTypes.js +1 -5
- package/dist/reducers/ussdFlow/index.js +1 -267
- package/dist/reducers/ussdFlow/utils.js +1 -247
- package/dist/store/index.js +1 -177
- package/dist/store/reducers.js +1 -38
- package/dist/utilities/handleSubmitNumber.js +1 -77
- package/dist/utilities/index.js +1 -68
- package/dist/utilities/loadScriptInnerHtml.js +1 -22
- package/dist/utilities/loadScriptSrc.js +1 -32
- package/package.json +61 -60
package/.babelrc
CHANGED
|
@@ -8,7 +8,15 @@
|
|
|
8
8
|
"corejs": "3.6.5"
|
|
9
9
|
}
|
|
10
10
|
],
|
|
11
|
-
"@babel/preset-typescript"
|
|
11
|
+
"@babel/preset-typescript",
|
|
12
|
+
[
|
|
13
|
+
"minify",
|
|
14
|
+
{
|
|
15
|
+
"builtIns": false,
|
|
16
|
+
"evaluate": false,
|
|
17
|
+
"mangle": false
|
|
18
|
+
}
|
|
19
|
+
]
|
|
12
20
|
],
|
|
13
21
|
"plugins": ["@babel/plugin-proposal-class-properties"],
|
|
14
22
|
"env": {
|
package/dist/@types/window.d.js
CHANGED