@tap-payments/auth-jsconnect 2.6.20-test → 2.6.24-test
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/build/@types/app.d.ts +2 -1
- package/build/@types/app.js +1 -0
- package/build/api/auth.d.ts +1 -0
- package/build/api/auth.js +5 -1
- package/build/api/index.d.ts +2 -0
- package/build/api/lead.d.ts +1 -0
- package/build/api/lead.js +50 -1
- package/build/app/rootReducer.d.ts +1 -0
- package/build/app/rootReducer.js +3 -1
- package/build/app/settings.js +3 -3
- package/build/app/store.d.ts +2 -0
- package/build/constants/api.d.ts +2 -0
- package/build/constants/api.js +4 -0
- package/build/constants/app.d.ts +5 -0
- package/build/constants/app.js +24 -0
- package/build/features/app/board/boardStore.d.ts +30 -0
- package/build/features/app/board/boardStore.js +223 -0
- package/build/features/app/connectExpress/connectExpressStore.d.ts +1 -1
- package/build/features/app/connectExpress/connectExpressStore.js +88 -7
- package/build/features/board/Board.d.ts +9 -0
- package/build/features/board/Board.js +75 -0
- package/build/features/board/index.d.ts +1 -0
- package/build/features/board/index.js +1 -0
- package/build/features/board/screens/ResetPasswordSuccess/ResetPasswordSuccess.d.ts +5 -0
- package/build/features/board/screens/ResetPasswordSuccess/ResetPasswordSuccess.js +21 -0
- package/build/features/board/screens/ResetPasswordSuccess/index.d.ts +3 -0
- package/build/features/board/screens/ResetPasswordSuccess/index.js +2 -0
- package/build/features/board/screens/SuccessWithFlowButtons/SuccessWithFlowButtons.d.ts +3 -0
- package/build/features/board/screens/SuccessWithFlowButtons/SuccessWithFlowButtons.js +27 -0
- package/build/features/board/screens/SuccessWithFlowButtons/index.d.ts +2 -0
- package/build/features/board/screens/SuccessWithFlowButtons/index.js +2 -0
- package/build/features/board/screens/Verify/OTPInput.d.ts +7 -0
- package/build/features/board/screens/Verify/OTPInput.js +51 -0
- package/build/features/board/screens/Verify/Verify.d.ts +5 -0
- package/build/features/board/screens/Verify/Verify.js +74 -0
- package/build/features/board/screens/Verify/index.d.ts +2 -0
- package/build/features/board/screens/Verify/index.js +2 -0
- package/build/features/board/screens/Verify/validation.d.ts +8 -0
- package/build/features/board/screens/Verify/validation.js +4 -0
- package/build/features/connectExpress/ConnectExpress.js +3 -1
- package/build/features/connectExpress/screens/CivilID/CivilID.js +5 -2
- package/build/features/connectExpress/screens/CivilID/IDNumber.js +7 -2
- package/build/features/connectExpress/screens/Mobile/Mobile.js +1 -1
- package/build/features/connectExpress/screens/Mobile/TAC.js +1 -1
- package/build/features/featuresScreens.d.ts +1 -0
- package/build/features/featuresScreens.js +17 -0
- package/build/features/shared/BusinessCountry/BusinessCountry.js +5 -0
- package/build/hooks/useAppDispatch.d.ts +1 -0
- package/build/index.d.ts +3 -2
- package/build/index.js +4 -2
- package/package.json +1 -1
package/build/index.d.ts
CHANGED
|
@@ -10,5 +10,6 @@ import { TaxElement, TaxLibProps } from './features/tax';
|
|
|
10
10
|
import { SignInElement, SignInLibProps } from './features/signIn';
|
|
11
11
|
import { EntityElement, EntityLibProps } from './features/entity';
|
|
12
12
|
import { BrandElement, BrandLibProps } from './features/brand';
|
|
13
|
-
|
|
14
|
-
export {
|
|
13
|
+
import { BoardLibProps, BoardElement } from './features/board';
|
|
14
|
+
export type { ConnectLibProps, ConnectExpressLibProps, BusinessLibProps, PasswordLibProps, IndividualLibProps, BankLibProps, TaxLibProps, EntityLibProps, BrandLibProps, SignInLibProps, BoardLibProps };
|
|
15
|
+
export { ConnectElement, ConnectExpressElement, BusinessElement, PasswordElement, IndividualElement, BankElement, TaxElement, EntityElement, BrandElement, SignInElement, BoardElement };
|
package/build/index.js
CHANGED
|
@@ -10,7 +10,8 @@ import { TaxElement, renderTaxLib } from './features/tax';
|
|
|
10
10
|
import { SignInElement, renderSignInLib } from './features/signIn';
|
|
11
11
|
import { EntityElement, renderEntityLib } from './features/entity';
|
|
12
12
|
import { BrandElement, renderBrandLib } from './features/brand';
|
|
13
|
-
|
|
13
|
+
import { BoardElement, renderBoardLib } from './features/board';
|
|
14
|
+
export { ConnectElement, ConnectExpressElement, BusinessElement, PasswordElement, IndividualElement, BankElement, TaxElement, EntityElement, BrandElement, SignInElement, BoardElement };
|
|
14
15
|
window['TapAuth'] = {
|
|
15
16
|
renderConnectLib: renderConnectLib,
|
|
16
17
|
renderConnectExpressLib: renderConnectExpressLib,
|
|
@@ -21,6 +22,7 @@ window['TapAuth'] = {
|
|
|
21
22
|
renderTaxLib: renderTaxLib,
|
|
22
23
|
renderEntityLib: renderEntityLib,
|
|
23
24
|
renderBrandLib: renderBrandLib,
|
|
24
|
-
renderSignInLib: renderSignInLib
|
|
25
|
+
renderSignInLib: renderSignInLib,
|
|
26
|
+
renderBoardLib: renderBoardLib
|
|
25
27
|
};
|
|
26
28
|
console.log("TapAuth version: ".concat(require('../package.json').version));
|