ouisys-engine 2.1.24 → 2.1.25
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/api/index.js +4 -4
- package/dist/reducers/moRedirFlow/utils.js +1 -1
- package/dist/reducers/oneClickFlow/utils.js +1 -1
- package/dist/reducers/pinFlow/utils.js +1 -1
- package/dist/reducers/strategy/utils.js +1 -1
- package/package.json +1 -1
- package/src/api/index.ts +4 -4
- package/src/reducers/moRedirFlow/utils.ts +1 -1
- package/src/reducers/oneClickFlow/utils.ts +1 -1
- package/src/reducers/pinFlow/utils.ts +1 -1
- package/src/reducers/strategy/utils.ts +1 -1
- package/yarn.lock +5204 -0
package/dist/api/index.js
CHANGED
|
@@ -101,7 +101,7 @@ var MockTallyman = {
|
|
|
101
101
|
return _context3.abrupt("return", {
|
|
102
102
|
success: true,
|
|
103
103
|
rockman_id: "000",
|
|
104
|
-
product_url: "
|
|
104
|
+
product_url: "/mock-product-url",
|
|
105
105
|
async: false
|
|
106
106
|
});
|
|
107
107
|
|
|
@@ -130,7 +130,7 @@ var MockTallyman = {
|
|
|
130
130
|
return _context4.abrupt("return", {
|
|
131
131
|
success: true,
|
|
132
132
|
rockman_id: "000",
|
|
133
|
-
product_url: "
|
|
133
|
+
product_url: "/mock-product-url",
|
|
134
134
|
msisdn: "000"
|
|
135
135
|
});
|
|
136
136
|
|
|
@@ -159,7 +159,7 @@ var MockTallyman = {
|
|
|
159
159
|
return _context5.abrupt("return", {
|
|
160
160
|
success: true,
|
|
161
161
|
rockman_id: "000",
|
|
162
|
-
product_url: "
|
|
162
|
+
product_url: "/mock-product-url",
|
|
163
163
|
msisdn: "000"
|
|
164
164
|
});
|
|
165
165
|
|
|
@@ -188,7 +188,7 @@ var MockTallyman = {
|
|
|
188
188
|
return _context6.abrupt("return", {
|
|
189
189
|
success: true,
|
|
190
190
|
rockman_id: "000",
|
|
191
|
-
redirect_url: "
|
|
191
|
+
redirect_url: "/mock-product-url"
|
|
192
192
|
});
|
|
193
193
|
|
|
194
194
|
case 3:
|
|
@@ -570,7 +570,7 @@ var subscribe = /*#__PURE__*/function () {
|
|
|
570
570
|
while (1) {
|
|
571
571
|
switch (_context3.prev = _context3.next) {
|
|
572
572
|
case 0:
|
|
573
|
-
return _context3.abrupt("return", "
|
|
573
|
+
return _context3.abrupt("return", "/mock-product-url");
|
|
574
574
|
|
|
575
575
|
case 1:
|
|
576
576
|
case "end":
|
package/package.json
CHANGED
package/src/api/index.ts
CHANGED
|
@@ -59,7 +59,7 @@ export const MockTallyman:ITallyman = {
|
|
|
59
59
|
return {
|
|
60
60
|
success: true,
|
|
61
61
|
rockman_id: "000",
|
|
62
|
-
product_url: "
|
|
62
|
+
product_url: "/mock-product-url",
|
|
63
63
|
async: false
|
|
64
64
|
}
|
|
65
65
|
},
|
|
@@ -69,7 +69,7 @@ export const MockTallyman:ITallyman = {
|
|
|
69
69
|
return {
|
|
70
70
|
success: true,
|
|
71
71
|
rockman_id: "000",
|
|
72
|
-
product_url: "
|
|
72
|
+
product_url: "/mock-product-url",
|
|
73
73
|
msisdn:"000"
|
|
74
74
|
}
|
|
75
75
|
},
|
|
@@ -79,7 +79,7 @@ export const MockTallyman:ITallyman = {
|
|
|
79
79
|
return {
|
|
80
80
|
success: true,
|
|
81
81
|
rockman_id: "000",
|
|
82
|
-
product_url: "
|
|
82
|
+
product_url: "/mock-product-url",
|
|
83
83
|
msisdn:"000"
|
|
84
84
|
}
|
|
85
85
|
},
|
|
@@ -89,7 +89,7 @@ export const MockTallyman:ITallyman = {
|
|
|
89
89
|
return {
|
|
90
90
|
success: true,
|
|
91
91
|
rockman_id: "000",
|
|
92
|
-
redirect_url: "
|
|
92
|
+
redirect_url: "/mock-product-url"
|
|
93
93
|
}
|
|
94
94
|
},
|
|
95
95
|
triggerMessage:async(host:string, slug:string, country:string, msisdn:string, device:string, offer:number, rockmanId:string, search:string, extraParamsQs:string): Promise<IMoMSISDNSubmissionResult> =>{
|
|
@@ -137,7 +137,7 @@ export const mockedRedirectUrlSuccessState : IOneClickFlowReducerState = {
|
|
|
137
137
|
currentState:{
|
|
138
138
|
type: "GET_REDIRECT_URL",
|
|
139
139
|
//@ts-ignore
|
|
140
|
-
result: RDS.Success<IGETREDIRECTURLFailure, IGETREDIRECTURLSuccess>({redirectUrl: '
|
|
140
|
+
result: RDS.Success<IGETREDIRECTURLFailure, IGETREDIRECTURLSuccess>({redirectUrl: '/mock-product-url'})
|
|
141
141
|
}
|
|
142
142
|
}
|
|
143
143
|
|
|
@@ -218,7 +218,7 @@ export const mockedPINState : IPinFlowReducerState = {
|
|
|
218
218
|
export const mockedCompletedState : IPinFlowReducerState = {
|
|
219
219
|
currentState:{
|
|
220
220
|
type: "PINEntry",
|
|
221
|
-
result: RDS.Success<PINEntryFailure, PINEntrySuccess>({finalUrl:"
|
|
221
|
+
result: RDS.Success<PINEntryFailure, PINEntrySuccess>({finalUrl:"/mock-product-url"}),
|
|
222
222
|
data:{
|
|
223
223
|
actualPIN: "",
|
|
224
224
|
nextAction: "submitPinAction",
|