ouisys-engine 4.1.47-alpha.0 → 4.3.0-alpha.0

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 (158) hide show
  1. package/dist/@types/window.d.js +1 -1
  2. package/dist/api/index.js +728 -1
  3. package/dist/app/store.js +20 -0
  4. package/dist/common-types/AppThunk.js +1 -1
  5. package/dist/common-types/Either.js +1 -1
  6. package/dist/common-types/IError.js +1 -1
  7. package/dist/common-types/ITracker.js +3 -1
  8. package/dist/common-types/IVisitor.js +1 -1
  9. package/dist/common-types/RemoteDataState.js +135 -1
  10. package/dist/features/strategies/categories/askMobileNumber.js +388 -0
  11. package/dist/features/strategies/categories/askOperator.js +313 -0
  12. package/dist/features/strategies/categories/detectOperatorByIp.js +599 -0
  13. package/dist/features/strategies/categories/headerEnrichment.js +665 -0
  14. package/dist/features/strategies/categories/singleFlows/pin.js +1 -0
  15. package/dist/features/strategies/identifySlice.js +355 -0
  16. package/dist/features/strategies/pinFlowSlice.js +338 -0
  17. package/dist/flows/click2smsFlow.js +19 -1
  18. package/dist/flows/moFlow.js +19 -1
  19. package/dist/flows/moRedirFlow.js +19 -1
  20. package/dist/flows/oneClickFlow.js +23 -1
  21. package/dist/flows/pinFlow.js +23 -1
  22. package/dist/flows/strategy.js +53 -1
  23. package/dist/flows/tpayHeFlow.js +23 -0
  24. package/dist/flows/ussdFlow.js +19 -1
  25. package/dist/index.js +2 -0
  26. package/dist/ips/tryGetIPRangeName.js +74 -1
  27. package/dist/mockServer/browser.js +48 -0
  28. package/dist/mockServer/handlers.js +22 -0
  29. package/dist/mockServer/server.js +48 -0
  30. package/dist/pacman/index.js +108 -1
  31. package/dist/pacman/queryString.js +45 -1
  32. package/dist/reducers/click2smsFlow/Click2smsTypes.js +1 -1
  33. package/dist/reducers/click2smsFlow/IClick2smsConstants.js +1 -1
  34. package/dist/reducers/click2smsFlow/index.js +183 -1
  35. package/dist/reducers/click2smsFlow/utils.js +357 -1
  36. package/dist/reducers/moFlow/IMoConstants.js +1 -1
  37. package/dist/reducers/moFlow/MoTypes.js +1 -1
  38. package/dist/reducers/moFlow/index.js +251 -1
  39. package/dist/reducers/moFlow/utils.js +284 -1
  40. package/dist/reducers/moRedirFlow/IMoRedirConstants.js +1 -1
  41. package/dist/reducers/moRedirFlow/MoRedirTypes.js +1 -1
  42. package/dist/reducers/moRedirFlow/index.js +226 -1
  43. package/dist/reducers/moRedirFlow/utils.js +186 -1
  44. package/dist/reducers/oneClickFlow/IOneClickConstants.js +1 -1
  45. package/dist/reducers/oneClickFlow/OneClickTypes.js +1 -1
  46. package/dist/reducers/oneClickFlow/index.js +409 -1
  47. package/dist/reducers/oneClickFlow/utils.js +366 -1
  48. package/dist/reducers/pinFlow/IPinConstants.js +1 -1
  49. package/dist/reducers/pinFlow/PinTypes.js +1 -1
  50. package/dist/reducers/pinFlow/index.js +514 -1
  51. package/dist/reducers/pinFlow/utils.js +494 -1
  52. package/dist/reducers/strategy/IStategyActionContants.js +1 -1
  53. package/dist/reducers/strategy/StrategyTypes.js +1 -1
  54. package/dist/reducers/strategy/index.js +389 -1
  55. package/dist/reducers/strategy/strategies/ask_mobile_number.js +403 -1
  56. package/dist/reducers/strategy/strategies/ask_operator.js +305 -1
  57. package/dist/reducers/strategy/strategies/detect_operator_by_ip.js +459 -1
  58. package/dist/reducers/strategy/strategies/header_enrichment.js +783 -1
  59. package/dist/reducers/strategy/utils.js +702 -1
  60. package/dist/reducers/tpayHeFlow/ITpayHeConstants.js +1 -0
  61. package/dist/reducers/tpayHeFlow/TpayHeTypes.js +1 -0
  62. package/dist/reducers/tpayHeFlow/index.js +331 -0
  63. package/dist/reducers/tpayHeFlow/utils.js +510 -0
  64. package/dist/reducers/ussdFlow/IUssdConstants.js +1 -1
  65. package/dist/reducers/ussdFlow/UssdTypes.js +1 -1
  66. package/dist/reducers/ussdFlow/index.js +251 -1
  67. package/dist/reducers/ussdFlow/utils.js +225 -1
  68. package/dist/store/index.js +177 -1
  69. package/dist/store/reducers.js +41 -1
  70. package/dist/test/setup.js +24 -0
  71. package/dist/test/test-utils.js +51 -0
  72. package/dist/utilities/handleSubmitNumber.js +59 -1
  73. package/package.json +2 -2
  74. package/dist/api/index.d.ts +0 -43
  75. package/dist/common-types/AppThunk.d.ts +0 -13
  76. package/dist/common-types/Either.d.ts +0 -8
  77. package/dist/common-types/IError.d.ts +0 -3
  78. package/dist/common-types/IOptInFlowName.d.ts +0 -1
  79. package/dist/common-types/ITracker.d.ts +0 -9
  80. package/dist/common-types/IVisitor.d.ts +0 -14
  81. package/dist/common-types/RemoteDataState.d.ts +0 -38
  82. package/dist/custom-hooks/useOneClickRedirectUrl.d.ts +0 -3
  83. package/dist/custom-hooks/useOneClickRedirectUrl.js +0 -1
  84. package/dist/custom-hooks/usePinEntryState.d.ts +0 -8
  85. package/dist/custom-hooks/usePinEntryState.js +0 -1
  86. package/dist/custom-hooks/useStrategyConfig.d.ts +0 -4
  87. package/dist/custom-hooks/useStrategyConfig.js +0 -1
  88. package/dist/flows/click2smsFlow.d.ts +0 -6
  89. package/dist/flows/creditCardFlow.d.ts +0 -6
  90. package/dist/flows/creditCardFlow.js +0 -1
  91. package/dist/flows/moFlow.d.ts +0 -6
  92. package/dist/flows/moRedirFlow.d.ts +0 -6
  93. package/dist/flows/oneClickFlow.d.ts +0 -7
  94. package/dist/flows/pinFlow.d.ts +0 -7
  95. package/dist/flows/strategy.d.ts +0 -14
  96. package/dist/flows/ussdFlow.d.ts +0 -6
  97. package/dist/index.d.ts +0 -0
  98. package/dist/ips/tryGetIPRangeName.d.ts +0 -2
  99. package/dist/jest.config.js +0 -194
  100. package/dist/pacman/index.d.ts +0 -6
  101. package/dist/pacman/queryString.d.ts +0 -3
  102. package/dist/reducers/click2smsFlow/Click2smsTypes.d.ts +0 -76
  103. package/dist/reducers/click2smsFlow/IClick2smsConstants.d.ts +0 -2
  104. package/dist/reducers/click2smsFlow/index.d.ts +0 -5
  105. package/dist/reducers/click2smsFlow/utils.d.ts +0 -4
  106. package/dist/reducers/creditCardFlow/CreditCardTypes.d.ts +0 -79
  107. package/dist/reducers/creditCardFlow/CreditCardTypes.js +0 -1
  108. package/dist/reducers/creditCardFlow/ICreditCardConstants.d.ts +0 -2
  109. package/dist/reducers/creditCardFlow/ICreditCardConstants.js +0 -1
  110. package/dist/reducers/creditCardFlow/index.d.ts +0 -5
  111. package/dist/reducers/creditCardFlow/index.js +0 -1
  112. package/dist/reducers/creditCardFlow/utils.d.ts +0 -8
  113. package/dist/reducers/creditCardFlow/utils.js +0 -1
  114. package/dist/reducers/moFlow/IMoConstants.d.ts +0 -2
  115. package/dist/reducers/moFlow/MoTypes.d.ts +0 -88
  116. package/dist/reducers/moFlow/index.d.ts +0 -16
  117. package/dist/reducers/moFlow/utils.d.ts +0 -12
  118. package/dist/reducers/moRedirFlow/IMoRedirConstants.d.ts +0 -2
  119. package/dist/reducers/moRedirFlow/MoRedirTypes.d.ts +0 -64
  120. package/dist/reducers/moRedirFlow/index.d.ts +0 -14
  121. package/dist/reducers/moRedirFlow/utils.d.ts +0 -10
  122. package/dist/reducers/oneClickFlow/IOneClickConstants.d.ts +0 -2
  123. package/dist/reducers/oneClickFlow/OneClickTypes.d.ts +0 -85
  124. package/dist/reducers/oneClickFlow/index.d.ts +0 -13
  125. package/dist/reducers/oneClickFlow/utils.d.ts +0 -16
  126. package/dist/reducers/pinFlow/IPinConstants.d.ts +0 -2
  127. package/dist/reducers/pinFlow/PinTypes.d.ts +0 -156
  128. package/dist/reducers/pinFlow/index.d.ts +0 -19
  129. package/dist/reducers/pinFlow/utils.d.ts +0 -11
  130. package/dist/reducers/strategy/IStategyActionContants.d.ts +0 -2
  131. package/dist/reducers/strategy/StrategyTypes.d.ts +0 -248
  132. package/dist/reducers/strategy/index.d.ts +0 -13
  133. package/dist/reducers/strategy/strategies/ask_mobile_number.d.ts +0 -15
  134. package/dist/reducers/strategy/strategies/ask_operator.d.ts +0 -5
  135. package/dist/reducers/strategy/strategies/detect_operator_by_ip.d.ts +0 -10
  136. package/dist/reducers/strategy/strategies/header_enrichment.d.ts +0 -7
  137. package/dist/reducers/strategy/strategies/injectHeaderEnrichmentScript.d.ts +0 -7
  138. package/dist/reducers/strategy/strategies/injectHeaderEnrichmentScript.js +0 -1
  139. package/dist/reducers/strategy/utils.d.ts +0 -30
  140. package/dist/reducers/ussdFlow/IUssdConstants.d.ts +0 -2
  141. package/dist/reducers/ussdFlow/UssdTypes.d.ts +0 -77
  142. package/dist/reducers/ussdFlow/index.d.ts +0 -14
  143. package/dist/reducers/ussdFlow/utils.d.ts +0 -11
  144. package/dist/store/index.d.ts +0 -14
  145. package/dist/store/reducers.d.ts +0 -20
  146. package/dist/utilities/addEmpelloToken.d.ts +0 -4
  147. package/dist/utilities/addEmpelloToken.js +0 -1
  148. package/dist/utilities/handleSubmitNumber.d.ts +0 -21
  149. package/dist/utilities/index.d.ts +0 -14
  150. package/dist/utilities/index.js +0 -1
  151. package/dist/utilities/loadScriptInnerHtml.d.ts +0 -2
  152. package/dist/utilities/loadScriptInnerHtml.js +0 -1
  153. package/dist/utilities/loadScriptSrc.d.ts +0 -8
  154. package/dist/utilities/loadScriptSrc.js +0 -1
  155. package/dist/utilities/replaceUrlParam.d.ts +0 -1
  156. package/dist/utilities/replaceUrlParam.js +0 -1
  157. package/dist/utilities/storeMsisdn.d.ts +0 -3
  158. package/dist/utilities/storeMsisdn.js +0 -1
@@ -1 +1 @@
1
- "use strict";Object.defineProperty(exports,"__esModule",{value:!0});
1
+ "use strict";