ouisys-engine 3.0.22 → 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.
Files changed (61) hide show
  1. package/.babelrc +9 -1
  2. package/dist/@types/window.d.js +1 -5
  3. package/dist/api/index.js +1 -760
  4. package/dist/common-types/AppThunk.js +1 -5
  5. package/dist/common-types/Either.js +1 -5
  6. package/dist/common-types/IError.js +1 -5
  7. package/dist/common-types/ITracker.js +1 -5
  8. package/dist/common-types/IVisitor.js +1 -5
  9. package/dist/common-types/RemoteDataState.js +1 -138
  10. package/dist/custom-hooks/useStrategyConfig.js +1 -24
  11. package/dist/flows/click2smsFlow.js +1 -23
  12. package/dist/flows/moFlow.js +1 -23
  13. package/dist/flows/moRedirFlow.js +1 -23
  14. package/dist/flows/oneClickFlow.js +1 -29
  15. package/dist/flows/pinFlow.js +1 -25
  16. package/dist/flows/strategy.js +1 -49
  17. package/dist/flows/ussdFlow.js +1 -22
  18. package/dist/index.js +0 -2
  19. package/dist/ips/tryGetIPRangeName.js +1 -111
  20. package/dist/pacman/index.js +1 -111
  21. package/dist/pacman/queryString.js +1 -50
  22. package/dist/reducers/click2smsFlow/Click2smsTypes.js +1 -5
  23. package/dist/reducers/click2smsFlow/IClick2smsConstants.js +1 -5
  24. package/dist/reducers/click2smsFlow/index.js +1 -199
  25. package/dist/reducers/click2smsFlow/utils.js +1 -372
  26. package/dist/reducers/moFlow/IMoConstants.js +1 -5
  27. package/dist/reducers/moFlow/MoTypes.js +1 -5
  28. package/dist/reducers/moFlow/index.js +1 -257
  29. package/dist/reducers/moFlow/utils.js +1 -340
  30. package/dist/reducers/moRedirFlow/IMoRedirConstants.js +1 -5
  31. package/dist/reducers/moRedirFlow/MoRedirTypes.js +1 -5
  32. package/dist/reducers/moRedirFlow/index.js +1 -243
  33. package/dist/reducers/moRedirFlow/utils.js +1 -240
  34. package/dist/reducers/oneClickFlow/IOneClickConstants.js +1 -5
  35. package/dist/reducers/oneClickFlow/OneClickTypes.js +1 -5
  36. package/dist/reducers/oneClickFlow/index.js +1 -458
  37. package/dist/reducers/oneClickFlow/utils.js +1 -410
  38. package/dist/reducers/pinFlow/IPinConstants.js +1 -5
  39. package/dist/reducers/pinFlow/PinTypes.js +1 -5
  40. package/dist/reducers/pinFlow/index.js +1 -543
  41. package/dist/reducers/pinFlow/utils.js +1 -554
  42. package/dist/reducers/strategy/IStategyActionContants.js +1 -5
  43. package/dist/reducers/strategy/StrategyTypes.js +1 -5
  44. package/dist/reducers/strategy/index.js +1 -419
  45. package/dist/reducers/strategy/strategies/ask_mobile_number.js +1 -581
  46. package/dist/reducers/strategy/strategies/ask_operator.js +1 -317
  47. package/dist/reducers/strategy/strategies/detect_operator_by_ip.js +1 -692
  48. package/dist/reducers/strategy/strategies/header_enrichment.js +1 -804
  49. package/dist/reducers/strategy/strategies/injectHeaderEnrichmentScript.js +1 -118
  50. package/dist/reducers/strategy/utils.js +1 -710
  51. package/dist/reducers/ussdFlow/IUssdConstants.js +1 -5
  52. package/dist/reducers/ussdFlow/UssdTypes.js +1 -5
  53. package/dist/reducers/ussdFlow/index.js +1 -267
  54. package/dist/reducers/ussdFlow/utils.js +1 -247
  55. package/dist/store/index.js +1 -177
  56. package/dist/store/reducers.js +1 -38
  57. package/dist/utilities/handleSubmitNumber.js +1 -76
  58. package/dist/utilities/index.js +1 -68
  59. package/dist/utilities/loadScriptInnerHtml.js +1 -22
  60. package/dist/utilities/loadScriptSrc.js +1 -32
  61. package/package.json +3 -2
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": {
@@ -1,5 +1 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
1
+ "use strict";Object.defineProperty(exports,"__esModule",{value:!0});