@tap-payments/auth-jsconnect 2.8.99-development → 2.9.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.
- package/README.md +2 -2
- package/build/@types/app.d.ts +11 -3
- package/build/@types/app.js +7 -0
- package/build/@types/config.d.ts +4 -0
- package/build/@types/form.d.ts +7 -0
- package/build/api/account.d.ts +3 -1
- package/build/api/account.js +7 -0
- package/build/api/auth.d.ts +16 -1
- package/build/api/index.d.ts +4 -3
- package/build/app/settings.d.ts +1 -0
- package/build/app/settings.js +14 -8
- package/build/assets/currencies/AEDSymbol.d.ts +7 -0
- package/build/assets/currencies/AEDSymbol.js +28 -0
- package/build/assets/currencies/SARSymbol.d.ts +7 -0
- package/build/assets/currencies/SARSymbol.js +28 -0
- package/build/assets/currencies/index.d.ts +2 -0
- package/build/assets/currencies/index.js +2 -0
- package/build/assets/currencies/utils.d.ts +4 -0
- package/build/assets/currencies/utils.js +6 -0
- package/build/assets/locales/ar.json +18 -1
- package/build/assets/locales/en.json +44 -1
- package/build/components/AnimationFlow/BottomSheet.js +16 -12
- package/build/components/AnimationFlow/Dialog.js +3 -1
- package/build/components/Input/Input.js +1 -1
- package/build/components/TextWithCurrency/TextWithCurrency.d.ts +7 -0
- package/build/components/TextWithCurrency/TextWithCurrency.js +14 -0
- package/build/components/TextWithCurrency/index.d.ts +2 -0
- package/build/components/TextWithCurrency/index.js +2 -0
- package/build/components/Tooltip/Tooltip.js +1 -1
- package/build/constants/api.d.ts +2 -0
- package/build/constants/api.js +4 -0
- package/build/constants/app.d.ts +17 -0
- package/build/constants/app.js +97 -17
- package/build/constants/assets.d.ts +12 -3
- package/build/constants/assets.js +123 -105
- package/build/constants/dummy.js +27 -20
- package/build/constants/flows.d.ts +4 -0
- package/build/constants/flows.js +4 -0
- package/build/constants/validation.d.ts +1 -0
- package/build/constants/validation.js +1 -0
- package/build/features/app/auth/authStore.d.ts +24 -5
- package/build/features/app/auth/authStore.js +197 -95
- package/build/features/app/board/boardStore.d.ts +5 -1
- package/build/features/app/board/boardStore.js +40 -35
- package/build/features/app/business/businessStore.d.ts +10 -1
- package/build/features/app/business/businessStore.js +164 -35
- package/build/features/app/connect/connectStore.d.ts +8 -1
- package/build/features/app/connect/connectStore.js +181 -68
- package/build/features/app/connectExpress/connectExpressStore.d.ts +21 -3
- package/build/features/app/connectExpress/connectExpressStore.js +448 -117
- package/build/features/app/individual/individualStore.js +2 -4
- package/build/features/app/kyc/kycStore.js +88 -66
- package/build/features/app/signIn/signInStore.js +19 -15
- package/build/features/auth/Auth.d.ts +1 -1
- package/build/features/auth/screens/Mobile/MobileNumber.js +5 -7
- package/build/features/auth/screens/Mobile/validation.js +5 -2
- package/build/features/auth/screens/OTP/OTP.d.ts +13 -2
- package/build/features/auth/screens/OTP/OTP.js +15 -3
- package/build/features/auth/screens/OTP/index.d.ts +1 -2
- package/build/features/auth/screens/Passcode/Passcode.d.ts +16 -0
- package/build/features/auth/screens/Passcode/Passcode.js +82 -0
- package/build/features/auth/screens/Passcode/PasscodeInput.d.ts +6 -0
- package/build/features/auth/screens/Passcode/PasscodeInput.js +42 -0
- package/build/features/auth/screens/Passcode/index.d.ts +2 -0
- package/build/features/auth/screens/Passcode/index.js +2 -0
- package/build/features/auth/screens/Passcode/validation.d.ts +8 -0
- package/build/features/auth/screens/Passcode/validation.js +4 -0
- package/build/features/bank/Bank.d.ts +5 -1
- package/build/features/bank/Bank.js +15 -7
- package/build/features/board/Board.js +1 -1
- package/build/features/brand/Brand.d.ts +5 -1
- package/build/features/brand/Brand.js +15 -7
- package/build/features/brand/screens/BrandActivities/ExpectedSalesRange.js +3 -8
- package/build/features/business/screens/Customers/ExpectedSalesRange.js +3 -8
- package/build/features/business/screens/MobileOwnership/CollectMobileOwnership.d.ts +3 -0
- package/build/features/business/screens/MobileOwnership/CollectMobileOwnership.js +103 -0
- package/build/features/business/screens/MobileOwnership/MobileNumber.d.ts +3 -0
- package/build/features/business/screens/MobileOwnership/MobileNumber.js +72 -0
- package/build/features/business/screens/MobileOwnership/index.d.ts +2 -0
- package/build/features/business/screens/MobileOwnership/index.js +2 -0
- package/build/features/business/screens/MobileOwnership/validation.d.ts +8 -0
- package/build/features/business/screens/MobileOwnership/validation.js +38 -0
- package/build/features/connect/Connect.js +1 -1
- package/build/features/connect/screens/Individual/MobileNumber.js +5 -7
- package/build/features/connect/screens/Individual/validation.js +5 -2
- package/build/features/connect/screens/Mobile/MobileNumber.js +5 -7
- package/build/features/connect/screens/Mobile/validation.js +5 -2
- package/build/features/connect/screens/MobileOwnership/CollectMobileOwnership.d.ts +3 -0
- package/build/features/connect/screens/MobileOwnership/CollectMobileOwnership.js +104 -0
- package/build/features/connect/screens/MobileOwnership/MobileNumber.d.ts +3 -0
- package/build/features/connect/screens/MobileOwnership/MobileNumber.js +72 -0
- package/build/features/connect/screens/MobileOwnership/index.d.ts +2 -0
- package/build/features/connect/screens/MobileOwnership/index.js +2 -0
- package/build/features/connect/screens/MobileOwnership/validation.d.ts +8 -0
- package/build/features/connect/screens/MobileOwnership/validation.js +38 -0
- package/build/features/connectExpress/ConnectExpress.js +1 -1
- package/build/features/connectExpress/screens/CollectIndividualInfo/MobileNumber.js +5 -7
- package/build/features/connectExpress/screens/CollectIndividualInfo/validation.js +5 -2
- package/build/features/connectExpress/screens/GenericPrepareDataLoading/GenericPrepareDataLoading.d.ts +3 -0
- package/build/features/connectExpress/screens/GenericPrepareDataLoading/GenericPrepareDataLoading.js +9 -0
- package/build/features/connectExpress/screens/GenericPrepareDataLoading/index.d.ts +2 -0
- package/build/features/connectExpress/screens/GenericPrepareDataLoading/index.js +2 -0
- package/build/features/connectExpress/screens/Mobile/MobileNumber.js +5 -7
- package/build/features/connectExpress/screens/Mobile/validation.js +9 -4
- package/build/features/connectExpress/screens/MobileOwnership/CollectMobileOwnership.d.ts +3 -0
- package/build/features/connectExpress/screens/MobileOwnership/CollectMobileOwnership.js +106 -0
- package/build/features/connectExpress/screens/MobileOwnership/MobileNumber.d.ts +3 -0
- package/build/features/connectExpress/screens/MobileOwnership/MobileNumber.js +72 -0
- package/build/features/connectExpress/screens/MobileOwnership/index.d.ts +2 -0
- package/build/features/connectExpress/screens/MobileOwnership/index.js +2 -0
- package/build/features/connectExpress/screens/MobileOwnership/validation.d.ts +8 -0
- package/build/features/connectExpress/screens/MobileOwnership/validation.js +38 -0
- package/build/features/connectExpress/screens/VerifyMobileAuthOTP/OTPInput.d.ts +5 -0
- package/build/features/connectExpress/screens/VerifyMobileAuthOTP/OTPInput.js +49 -0
- package/build/features/connectExpress/screens/VerifyMobileAuthOTP/VerifyMobileAuthOTP.d.ts +5 -0
- package/build/features/connectExpress/screens/VerifyMobileAuthOTP/VerifyMobileAuthOTP.js +88 -0
- package/build/features/connectExpress/screens/VerifyMobileAuthOTP/index.d.ts +3 -0
- package/build/features/connectExpress/screens/VerifyMobileAuthOTP/index.js +2 -0
- package/build/features/connectExpress/screens/VerifyMobileAuthOTP/validation.d.ts +8 -0
- package/build/features/connectExpress/screens/VerifyMobileAuthOTP/validation.js +4 -0
- package/build/features/connectExpress/screens/VerifyNafath/VerifyNafath.js +9 -3
- package/build/features/entity/Entity.d.ts +4 -1
- package/build/features/entity/Entity.js +15 -7
- package/build/features/entity/screens/EntityCapital/CapitalPaid.js +3 -7
- package/build/features/entity/screens/EntityCapital/CapitalShareValue.js +3 -7
- package/build/features/featuresScreens.js +35 -0
- package/build/features/individual/Individual.d.ts +4 -1
- package/build/features/individual/Individual.js +15 -7
- package/build/features/individual/screens/AdditionalIndividualInfo/MonthlyIncome.js +3 -8
- package/build/features/individual/screens/AdditionalIndividualInfo/ShareValue.js +3 -8
- package/build/features/individual/screens/IndividualList/MobileNumber.js +5 -10
- package/build/features/individual/screens/IndividualList/validation.js +5 -3
- package/build/features/individual/screens/IndividualPersonalInfo/MobileNumber.js +3 -5
- package/build/features/individual/screens/IndividualPersonalInfo/validation.js +5 -2
- package/build/features/individual/screens/IndividualPhoneInfo/MobileNumber.js +5 -10
- package/build/features/individual/screens/IndividualPhoneInfo/validation.js +5 -2
- package/build/features/kyc/KYC.js +5 -1
- package/build/features/kyc/screens/AlreadySubmitted/AlreadySubmitted.d.ts +5 -0
- package/build/features/kyc/screens/AlreadySubmitted/AlreadySubmitted.js +19 -0
- package/build/features/kyc/screens/AlreadySubmitted/index.d.ts +2 -0
- package/build/features/kyc/screens/AlreadySubmitted/index.js +2 -0
- package/build/features/kyc/screens/Success/Success.js +18 -5
- package/build/features/kyc/screens/Terms/Terms.js +19 -4
- package/build/features/kyc/screens/TokenError/TokenError.d.ts +5 -0
- package/build/features/kyc/screens/TokenError/TokenError.js +9 -0
- package/build/features/kyc/screens/TokenError/index.d.ts +2 -0
- package/build/features/kyc/screens/TokenError/index.js +2 -0
- package/build/features/kyc/screens/Users/Users.js +6 -3
- package/build/features/password/Password.d.ts +4 -1
- package/build/features/password/Password.js +13 -6
- package/build/features/shared/Background/LogoBackground.js +5 -17
- package/build/features/shared/Button/Button.js +1 -2
- package/build/features/shared/Button/FlowsButtons.js +5 -2
- package/build/features/shared/Containers/FeatureContainer.d.ts +2 -1
- package/build/features/shared/Containers/FeatureContainer.js +5 -3
- package/build/features/shared/Dialog/DialogContainer.js +5 -4
- package/build/features/shared/Input/Input.d.ts +1 -1
- package/build/features/signIn/screens/Mobile/MobileNumber.js +5 -7
- package/build/features/signIn/screens/Mobile/validation.js +5 -2
- package/build/features/tax/Tax.d.ts +4 -1
- package/build/features/tax/Tax.js +15 -7
- package/build/hooks/useAppConfig.js +1 -1
- package/build/utils/common.d.ts +1 -1
- package/build/utils/common.js +6 -5
- package/build/utils/error.d.ts +1 -0
- package/build/utils/error.js +3 -0
- package/build/utils/string.d.ts +4 -2
- package/build/utils/string.js +12 -2
- package/package.json +3 -4
package/README.md
CHANGED
|
@@ -77,8 +77,8 @@ const App = () => {
|
|
|
77
77
|
<meta charset="utf-8" />
|
|
78
78
|
<meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=no,shrink-to-fit=no" />
|
|
79
79
|
<title>Auth-JsConnect</title>
|
|
80
|
-
<script src="https://auth-jsconnect
|
|
81
|
-
<link href="https://auth-jsconnect
|
|
80
|
+
<script src="https://cdn.tap.company/tap-sdks/auth-jsconnect/build-2.0.0/main.js"></script>
|
|
81
|
+
<link href="https://cdn.tap.company/tap-sdks/auth-jsconnect/build-2.0.0/main.css" rel="stylesheet" />
|
|
82
82
|
</head>
|
|
83
83
|
<body>
|
|
84
84
|
<div id="root"></div>
|
package/build/@types/app.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import { PaymentProvider, SettingAsyncData } from './config';
|
|
2
|
+
import { PaymentProvider, SDKNotification, SettingAsyncData } from './config';
|
|
3
3
|
import { LanguageMode, DialogEdgeFormat } from './theme';
|
|
4
4
|
export interface CountryCode {
|
|
5
5
|
created: number;
|
|
@@ -210,7 +210,7 @@ interface LibCallbacks {
|
|
|
210
210
|
onBoardButtonClick?: (data: Record<string, any>) => void;
|
|
211
211
|
onCreated?: (res: Record<string, any>) => void;
|
|
212
212
|
onBoardCompleted?: () => void;
|
|
213
|
-
onMaturityChanged?: (maturity: 'full' | 'express') => void
|
|
213
|
+
onMaturityChanged?: (maturity: 'full' | 'express') => Promise<void>;
|
|
214
214
|
onSwitchToBoard?: (boardId: string, authId: string) => void;
|
|
215
215
|
}
|
|
216
216
|
export interface LibConfig extends LibCallbacks {
|
|
@@ -242,8 +242,10 @@ export interface LibConfig extends LibCallbacks {
|
|
|
242
242
|
redirectUrl?: string;
|
|
243
243
|
data?: Array<string>;
|
|
244
244
|
mode?: 'popup' | 'page' | 'content';
|
|
245
|
+
notification?: SDKNotification;
|
|
245
246
|
boardMaturity?: boolean;
|
|
246
247
|
settingData?: SettingAsyncData;
|
|
248
|
+
region?: string;
|
|
247
249
|
}
|
|
248
250
|
export interface OSDetails {
|
|
249
251
|
name: string;
|
|
@@ -350,12 +352,18 @@ export declare enum AuthForType {
|
|
|
350
352
|
NATIONAL_ID = "national_id",
|
|
351
353
|
NATIONAL_ID_MISSED = "national_id_missed"
|
|
352
354
|
}
|
|
355
|
+
export declare enum AuthForScreen {
|
|
356
|
+
INDIVIDUAL = "individual",
|
|
357
|
+
DOB = "dob",
|
|
358
|
+
MOBILE_OWNERSHIP = "mobile_ownership"
|
|
359
|
+
}
|
|
353
360
|
export declare enum AuthTypeNumber {
|
|
354
361
|
EMAIL_OTP = 5,
|
|
355
362
|
MOBILE_OTP = 2,
|
|
356
363
|
PASSWORD = 1,
|
|
357
364
|
MIGRATION = 10,
|
|
358
|
-
RESET_PASSWORD = 7
|
|
365
|
+
RESET_PASSWORD = 7,
|
|
366
|
+
PASSCODE = 11
|
|
359
367
|
}
|
|
360
368
|
export declare enum MigrationStatus {
|
|
361
369
|
IN_PROGRESS = "IN_PROGRESS",
|
package/build/@types/app.js
CHANGED
|
@@ -43,6 +43,12 @@ export var AuthForType;
|
|
|
43
43
|
AuthForType["NATIONAL_ID"] = "national_id";
|
|
44
44
|
AuthForType["NATIONAL_ID_MISSED"] = "national_id_missed";
|
|
45
45
|
})(AuthForType || (AuthForType = {}));
|
|
46
|
+
export var AuthForScreen;
|
|
47
|
+
(function (AuthForScreen) {
|
|
48
|
+
AuthForScreen["INDIVIDUAL"] = "individual";
|
|
49
|
+
AuthForScreen["DOB"] = "dob";
|
|
50
|
+
AuthForScreen["MOBILE_OWNERSHIP"] = "mobile_ownership";
|
|
51
|
+
})(AuthForScreen || (AuthForScreen = {}));
|
|
46
52
|
export var AuthTypeNumber;
|
|
47
53
|
(function (AuthTypeNumber) {
|
|
48
54
|
AuthTypeNumber[AuthTypeNumber["EMAIL_OTP"] = 5] = "EMAIL_OTP";
|
|
@@ -50,6 +56,7 @@ export var AuthTypeNumber;
|
|
|
50
56
|
AuthTypeNumber[AuthTypeNumber["PASSWORD"] = 1] = "PASSWORD";
|
|
51
57
|
AuthTypeNumber[AuthTypeNumber["MIGRATION"] = 10] = "MIGRATION";
|
|
52
58
|
AuthTypeNumber[AuthTypeNumber["RESET_PASSWORD"] = 7] = "RESET_PASSWORD";
|
|
59
|
+
AuthTypeNumber[AuthTypeNumber["PASSCODE"] = 11] = "PASSCODE";
|
|
53
60
|
})(AuthTypeNumber || (AuthTypeNumber = {}));
|
|
54
61
|
export var MigrationStatus;
|
|
55
62
|
(function (MigrationStatus) {
|
package/build/@types/config.d.ts
CHANGED
|
@@ -18,6 +18,10 @@ export interface PaymentProvider {
|
|
|
18
18
|
interface Redirect {
|
|
19
19
|
url: string;
|
|
20
20
|
}
|
|
21
|
+
export interface SDKNotification {
|
|
22
|
+
email: boolean;
|
|
23
|
+
mobile?: boolean;
|
|
24
|
+
}
|
|
21
25
|
interface Interface {
|
|
22
26
|
locale?: 'dynamic' | 'ar' | 'en';
|
|
23
27
|
edges?: 'straight' | 'curved';
|
package/build/@types/form.d.ts
CHANGED
|
@@ -10,6 +10,9 @@ export declare type EmailFormValues = {
|
|
|
10
10
|
export declare type OTPFormValues = {
|
|
11
11
|
otp: string;
|
|
12
12
|
};
|
|
13
|
+
export declare type PasscodeFormValues = {
|
|
14
|
+
passcode: string;
|
|
15
|
+
};
|
|
13
16
|
export declare type PasswordFormValues = {
|
|
14
17
|
password: string;
|
|
15
18
|
};
|
|
@@ -160,3 +163,7 @@ export declare type AuthenticationListFormValues = {
|
|
|
160
163
|
export declare type AuthMerchantFormValues = {
|
|
161
164
|
merchantInfo?: AuthMerchantInfo;
|
|
162
165
|
};
|
|
166
|
+
export declare type MobileOwnershipFormValues = {
|
|
167
|
+
mobile: string;
|
|
168
|
+
countryCode: CountryCode;
|
|
169
|
+
};
|
package/build/api/account.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { PaymentProvider } from '../@types';
|
|
1
|
+
import { PaymentProvider, SDKNotification } from '../@types';
|
|
2
2
|
export declare type CreateAccountBody = {
|
|
3
3
|
lead_id: string;
|
|
4
4
|
notify: {
|
|
@@ -14,11 +14,13 @@ export declare type ExpressCreateAccountBody = {
|
|
|
14
14
|
lead_id: string;
|
|
15
15
|
platforms?: string[];
|
|
16
16
|
payment_provider?: PaymentProvider;
|
|
17
|
+
notification?: SDKNotification;
|
|
17
18
|
};
|
|
18
19
|
declare const accountService: {
|
|
19
20
|
createAccount: (data: CreateAccountBody) => Promise<any>;
|
|
20
21
|
expressCreateAccount: (data: ExpressCreateAccountBody) => Promise<any>;
|
|
21
22
|
checkAccountAvailability: (individualId: string) => Promise<any>;
|
|
23
|
+
checkAccountAvailabilityStatus: (individualId: string) => Promise<any>;
|
|
22
24
|
checkMigrationStatus: (jobId: string) => Promise<any>;
|
|
23
25
|
};
|
|
24
26
|
export { accountService };
|
package/build/api/account.js
CHANGED
|
@@ -20,6 +20,12 @@ var checkAccountAvailability = function (individualId) {
|
|
|
20
20
|
url: "".concat(ENDPOINT_PATHS.INDIVIDUAL, "/").concat(individualId, "/accounts")
|
|
21
21
|
});
|
|
22
22
|
};
|
|
23
|
+
var checkAccountAvailabilityStatus = function (individualId) {
|
|
24
|
+
return httpClient({
|
|
25
|
+
method: 'get',
|
|
26
|
+
url: "".concat(ENDPOINT_PATHS.INDIVIDUAL, "/").concat(individualId, "/accounts?data=status")
|
|
27
|
+
});
|
|
28
|
+
};
|
|
23
29
|
var checkMigrationStatus = function (jobId) {
|
|
24
30
|
return httpClient({
|
|
25
31
|
method: 'get',
|
|
@@ -30,6 +36,7 @@ var accountService = {
|
|
|
30
36
|
createAccount: createAccount,
|
|
31
37
|
expressCreateAccount: expressCreateAccount,
|
|
32
38
|
checkAccountAvailability: checkAccountAvailability,
|
|
39
|
+
checkAccountAvailabilityStatus: checkAccountAvailabilityStatus,
|
|
33
40
|
checkMigrationStatus: checkMigrationStatus
|
|
34
41
|
};
|
|
35
42
|
export { accountService };
|
package/build/api/auth.d.ts
CHANGED
|
@@ -31,6 +31,7 @@ export declare type CreateAuthBody = {
|
|
|
31
31
|
lead_id?: string;
|
|
32
32
|
board_id?: string;
|
|
33
33
|
user_id?: string;
|
|
34
|
+
login?: boolean;
|
|
34
35
|
};
|
|
35
36
|
export declare type CreateNafathAuthBody = {
|
|
36
37
|
country: string;
|
|
@@ -47,6 +48,20 @@ export declare type CreateNafathAuthBody = {
|
|
|
47
48
|
board_id?: string;
|
|
48
49
|
user_id?: string;
|
|
49
50
|
};
|
|
51
|
+
export declare type CreateKYCAuthBody = {
|
|
52
|
+
country: string;
|
|
53
|
+
scope: string;
|
|
54
|
+
auth_type?: number;
|
|
55
|
+
email_url?: string;
|
|
56
|
+
sign_in?: boolean;
|
|
57
|
+
is_lead?: boolean;
|
|
58
|
+
step_name?: string;
|
|
59
|
+
encryption_contract: Array<string>;
|
|
60
|
+
lang?: LanguageMode;
|
|
61
|
+
lead_id?: string;
|
|
62
|
+
board_id?: string;
|
|
63
|
+
user_id?: string;
|
|
64
|
+
};
|
|
50
65
|
export declare type VerifyAuthBody = {
|
|
51
66
|
auth_token: string;
|
|
52
67
|
auth_type: number;
|
|
@@ -104,7 +119,7 @@ export declare type getExpressTokenVerifyParams = {
|
|
|
104
119
|
};
|
|
105
120
|
export declare type ConfigBody = Pick<ConfigInfo, 'scope' | 'data' | 'lead' | 'board' | 'interface' | 'redirect' | 'post'>;
|
|
106
121
|
declare const authService: {
|
|
107
|
-
createAuth: (data: CreateAuthBody, config?: AxiosRequestConfig) => Promise<any>;
|
|
122
|
+
createAuth: (data: CreateAuthBody | CreateKYCAuthBody, config?: AxiosRequestConfig) => Promise<any>;
|
|
108
123
|
verifyAuth: (data: VerifyAuthBody | VerifyOperationAuthBody, config?: AxiosRequestConfig) => Promise<import("axios").AxiosResponse<any, any>>;
|
|
109
124
|
createPassword: (data: CreatePasswordBody) => Promise<any>;
|
|
110
125
|
verifyExpressAuth: (data: VerifyAuthExpressOTPBody) => Promise<any>;
|
package/build/api/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import axiosInstance, { setAxiosGlobalHeaders, removeAxiosGlobalHeaders, getAxiosHeaders } from './axios';
|
|
2
2
|
import { ValidateOperatorBody, ConfirmBody } from './operator';
|
|
3
|
-
import { CreateAuthBody, VerifyAuthBody, CreatePasswordBody, VerifyOperationAuthBody, ResetPasswordVerifyAuthBody, VerifyAuthExpressOTPBody, ConfigBody, CreateNafathAuthBody } from './auth';
|
|
3
|
+
import { CreateAuthBody, VerifyAuthBody, CreatePasswordBody, VerifyOperationAuthBody, ResetPasswordVerifyAuthBody, VerifyAuthExpressOTPBody, ConfigBody, CreateNafathAuthBody, CreateKYCAuthBody } from './auth';
|
|
4
4
|
import { UpdateLeadBody, LeadVerifyBody, CreateLeadBody, LeadOTPVerifyBody, LeadIdentityUpdateBody, ExpressLeadVerifyBody } from './lead';
|
|
5
5
|
import { CheckEmailBody, CheckBrandBody } from './availabilityServices';
|
|
6
6
|
import { EntityInfoBody, EntityBankUpdateBody, BankDocumentInfo, UpdateEntityBody, UpdateEntityActivityBody, UpdateEntityCapitalBody, UpdateEntityAOAFileBody, RemoveEntityActivity, MerchantListBody, CreateEntityBody } from './entity';
|
|
@@ -30,7 +30,7 @@ declare const API: {
|
|
|
30
30
|
getCurrency: (countryCode: string) => Promise<any>;
|
|
31
31
|
};
|
|
32
32
|
authService: {
|
|
33
|
-
createAuth: (data: CreateAuthBody, config?: import("axios").AxiosRequestConfig<any> | undefined) => Promise<any>;
|
|
33
|
+
createAuth: (data: CreateAuthBody | CreateKYCAuthBody, config?: import("axios").AxiosRequestConfig<any> | undefined) => Promise<any>;
|
|
34
34
|
verifyAuth: (data: VerifyAuthBody | VerifyOperationAuthBody, config?: import("axios").AxiosRequestConfig<any> | undefined) => Promise<import("axios").AxiosResponse<any, any>>;
|
|
35
35
|
createPassword: (data: CreatePasswordBody) => Promise<any>;
|
|
36
36
|
verifyExpressAuth: (data: VerifyAuthExpressOTPBody) => Promise<any>;
|
|
@@ -91,6 +91,7 @@ declare const API: {
|
|
|
91
91
|
createAccount: (data: CreateAccountBody) => Promise<any>;
|
|
92
92
|
expressCreateAccount: (data: ExpressCreateAccountBody) => Promise<any>;
|
|
93
93
|
checkAccountAvailability: (individualId: string) => Promise<any>;
|
|
94
|
+
checkAccountAvailabilityStatus: (individualId: string) => Promise<any>;
|
|
94
95
|
checkMigrationStatus: (jobId: string) => Promise<any>;
|
|
95
96
|
};
|
|
96
97
|
dataService: {
|
|
@@ -164,6 +165,6 @@ declare const API: {
|
|
|
164
165
|
getInitialData: (body: InitBody) => Promise<any>;
|
|
165
166
|
};
|
|
166
167
|
};
|
|
167
|
-
export type { ValidateOperatorBody, CreateAuthBody, ExpressCreateAccountBody, VerifyAuthBody, CreateLeadBody, UpdateLeadBody, LeadVerifyBody, LeadOTPVerifyBody, CheckEmailBody, CheckBrandBody, LeadIdentityUpdateBody, EntityInfoBody, CreateAccountBody, EntityBankUpdateBody, CreatePasswordBody, BrandListBody, VerifyOperationAuthBody, ResetPasswordVerifyAuthBody, UpdateBoardBody, UpdateBrandBody, DataElementBody, UploadFileBody, UpdateEntityBody, DocumentUpdateBody, DocumentInfo, VerifyAuthExpressOTPBody, UpdateIndividualBody, UpdateEntityActivityBody, UpdateEntityCapitalBody, BankDocumentInfo, GetUserListBody, GetIndividualListBody, RequestEmailBody, DocumentBody, UpdateEntityAOAFileBody, InitBody, RemoveBrandActivity, RemoveEntityActivity, UpdateIndividualWithTypeBody, UpdateMultipleIndividualBody, ExpressLeadVerifyBody, ConfirmBody, ConfigBody, MerchantListBody, CreateEntityBody, CreateNafathAuthBody, GetUserListSegmentBody };
|
|
168
|
+
export type { ValidateOperatorBody, CreateAuthBody, ExpressCreateAccountBody, VerifyAuthBody, CreateLeadBody, UpdateLeadBody, LeadVerifyBody, LeadOTPVerifyBody, CheckEmailBody, CheckBrandBody, LeadIdentityUpdateBody, EntityInfoBody, CreateAccountBody, EntityBankUpdateBody, CreatePasswordBody, BrandListBody, VerifyOperationAuthBody, ResetPasswordVerifyAuthBody, UpdateBoardBody, UpdateBrandBody, DataElementBody, UploadFileBody, UpdateEntityBody, DocumentUpdateBody, DocumentInfo, VerifyAuthExpressOTPBody, UpdateIndividualBody, UpdateEntityActivityBody, UpdateEntityCapitalBody, BankDocumentInfo, GetUserListBody, GetIndividualListBody, RequestEmailBody, DocumentBody, UpdateEntityAOAFileBody, InitBody, RemoveBrandActivity, RemoveEntityActivity, UpdateIndividualWithTypeBody, UpdateMultipleIndividualBody, ExpressLeadVerifyBody, ConfirmBody, ConfigBody, MerchantListBody, CreateEntityBody, CreateNafathAuthBody, GetUserListSegmentBody, CreateKYCAuthBody };
|
|
168
169
|
export { setAxiosGlobalHeaders, removeAxiosGlobalHeaders, axiosInstance, getAxiosHeaders };
|
|
169
170
|
export default API;
|
package/build/app/settings.d.ts
CHANGED
package/build/app/settings.js
CHANGED
|
@@ -56,7 +56,7 @@ var __spreadArray = (this && this.__spreadArray) || function (to, from, pack) {
|
|
|
56
56
|
};
|
|
57
57
|
var _a;
|
|
58
58
|
import { createAsyncThunk, createSlice } from '@reduxjs/toolkit';
|
|
59
|
-
import { getStoredData, storeData, isArray, findItem, getBrowserInfo, getFingerPrint, sortCountries, findCountryByIso2, getRequestHeaders, encryptString, dangerousMessage, getParameterByName, setBaseUrl, getUserLanguage } from '../utils';
|
|
59
|
+
import { getStoredData, storeData, isArray, findItem, getBrowserInfo, getFingerPrint, sortCountries, findCountryByIso2, getRequestHeaders, encryptString, dangerousMessage, getParameterByName, setBaseUrl, getUserLanguage, sleep } from '../utils';
|
|
60
60
|
import { BUSINESS_COUNTRIES, DEFAULT_COUNTRY_ISO2, DefaultDeviceInfo, LOCAL_STORAGE_KEYS } from '../constants';
|
|
61
61
|
import i18n from '../i18n';
|
|
62
62
|
import { updateLocale } from '../utils/locale';
|
|
@@ -112,16 +112,13 @@ export var fetchAppSettingsSync = createAsyncThunk('fetchAppSettingsSync', funct
|
|
|
112
112
|
thunkApi.dispatch(handleLanguage(lang));
|
|
113
113
|
if (configInfo.publicKey) {
|
|
114
114
|
if (configToken) {
|
|
115
|
-
setBaseUrl(configInfo.publicKey);
|
|
115
|
+
setBaseUrl(configInfo.publicKey, appConfig.region);
|
|
116
116
|
}
|
|
117
117
|
thunkApi.dispatch(handlePublicKey(configInfo.publicKey));
|
|
118
118
|
}
|
|
119
119
|
if (typeof (board === null || board === void 0 ? void 0 : board.editable) === 'boolean')
|
|
120
120
|
thunkApi.dispatch(handelBoardMaturity(board.editable));
|
|
121
121
|
onVerifyConfigTokenSuccess === null || onVerifyConfigTokenSuccess === void 0 ? void 0 : onVerifyConfigTokenSuccess(config);
|
|
122
|
-
if (matureData === 'express' && maturity !== matureData && typeof configInfo.onMaturityChanged === 'function') {
|
|
123
|
-
configInfo.onMaturityChanged(matureData);
|
|
124
|
-
}
|
|
125
122
|
}
|
|
126
123
|
deviceInfo = {
|
|
127
124
|
app: {
|
|
@@ -172,12 +169,17 @@ export var fetchAppSettingsSync = createAsyncThunk('fetchAppSettingsSync', funct
|
|
|
172
169
|
operator: operator,
|
|
173
170
|
locale: locale
|
|
174
171
|
});
|
|
175
|
-
|
|
172
|
+
if (!(matureData === 'express' && maturity !== matureData && typeof configInfo.onMaturityChanged === 'function')) return [3, 7];
|
|
173
|
+
return [4, configInfo.onMaturityChanged(matureData)];
|
|
174
|
+
case 6:
|
|
175
|
+
_k.sent();
|
|
176
|
+
_k.label = 7;
|
|
177
|
+
case 7: return [2, __assign({ countries: countries, businessCountry: businessCountry, locale: locale, deviceInfo: deviceInfo, ipCountry: ipCountry, isValidOperator: isValidOperator, isMaturityExpress: matureData === 'express' }, (merchant && { merchant: merchant }))];
|
|
176
178
|
}
|
|
177
179
|
});
|
|
178
180
|
}); });
|
|
179
181
|
export var onCloseComplete = createAsyncThunk('settings/onCloseComplete', function (params, thunkApi) { return __awaiter(void 0, void 0, void 0, function () {
|
|
180
|
-
var settings, _a, appConfig, authId, postURL, redirectUrl, bi, merchantId, brandId, entityId, body, data, urlQueryStart, newUrl;
|
|
182
|
+
var settings, _a, appConfig, authId, postURL, redirectUrl, bi, merchantId, brandId, entityId, nextScreen, body, data, urlQueryStart, newUrl;
|
|
181
183
|
var _b, _c;
|
|
182
184
|
return __generator(this, function (_d) {
|
|
183
185
|
switch (_d.label) {
|
|
@@ -186,7 +188,7 @@ export var onCloseComplete = createAsyncThunk('settings/onCloseComplete', functi
|
|
|
186
188
|
_a = settings.data, appConfig = _a.appConfig, authId = _a.authId;
|
|
187
189
|
postURL = appConfig.postURL, redirectUrl = appConfig.redirectUrl;
|
|
188
190
|
bi = settings.data.deviceInfo.browser.browser_id;
|
|
189
|
-
merchantId = params.merchantId, brandId = params.brandId, entityId = params.entityId;
|
|
191
|
+
merchantId = params.merchantId, brandId = params.brandId, entityId = params.entityId, nextScreen = params.nextScreen;
|
|
190
192
|
if (!authId) return [3, 2];
|
|
191
193
|
body = {
|
|
192
194
|
post_url: postURL || '',
|
|
@@ -201,6 +203,10 @@ export var onCloseComplete = createAsyncThunk('settings/onCloseComplete', functi
|
|
|
201
203
|
case 1:
|
|
202
204
|
data = _d.sent();
|
|
203
205
|
(_c = (_b = settings.data.appConfig).onStepCompleted) === null || _c === void 0 ? void 0 : _c.call(_b, settings.data.activeScreen.name, data);
|
|
206
|
+
if (nextScreen) {
|
|
207
|
+
sleep(100).then(function () { return thunkApi.dispatch(handleCurrentActiveScreen(nextScreen)); });
|
|
208
|
+
return [2];
|
|
209
|
+
}
|
|
204
210
|
if (settings.data.appConfig.mode === 'popup') {
|
|
205
211
|
settings.data.appConfig.onFlowCompleted({ auth_id: authId, bi: bi });
|
|
206
212
|
thunkApi.dispatch(handleOpen(false));
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
var __assign = (this && this.__assign) || function () {
|
|
2
|
+
__assign = Object.assign || function(t) {
|
|
3
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
4
|
+
s = arguments[i];
|
|
5
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
6
|
+
t[p] = s[p];
|
|
7
|
+
}
|
|
8
|
+
return t;
|
|
9
|
+
};
|
|
10
|
+
return __assign.apply(this, arguments);
|
|
11
|
+
};
|
|
12
|
+
var __rest = (this && this.__rest) || function (s, e) {
|
|
13
|
+
var t = {};
|
|
14
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
15
|
+
t[p] = s[p];
|
|
16
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
17
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
18
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
19
|
+
t[p[i]] = s[p[i]];
|
|
20
|
+
}
|
|
21
|
+
return t;
|
|
22
|
+
};
|
|
23
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
24
|
+
var AEDSymbol = function (_a) {
|
|
25
|
+
var _b = _a.height, height = _b === void 0 ? 10 : _b, svgProps = __rest(_a, ["height"]);
|
|
26
|
+
return (_jsx("span", __assign({ style: { padding: '0 2px' } }, { children: _jsx("svg", __assign({ xmlns: 'http://www.w3.org/2000/svg', height: height, fill: 'currentColor', viewBox: '0 0 344.84 299.91' }, svgProps, { children: _jsx("path", { d: 'M342.14,140.96l2.7,2.54v-7.72c0-17-11.92-30.84-26.56-30.84h-23.41C278.49,36.7,222.69,0,139.68,0c-52.86,0-59.65,0-109.71,0,0,0,15.03,12.63,15.03,52.4v52.58h-27.68c-5.38,0-10.43-2.08-14.61-6.01l-2.7-2.54v7.72c0,17.01,11.92,30.84,26.56,30.84h18.44s0,29.99,0,29.99h-27.68c-5.38,0-10.43-2.07-14.61-6.01l-2.7-2.54v7.71c0,17,11.92,30.82,26.56,30.82h18.44s0,54.89,0,54.89c0,38.65-15.03,50.06-15.03,50.06h109.71c85.62,0,139.64-36.96,155.38-104.98h32.46c5.38,0,10.43,2.07,14.61,6l2.7,2.54v-7.71c0-17-11.92-30.83-26.56-30.83h-18.9c.32-4.88.49-9.87.49-15s-.18-10.11-.51-14.99h28.17c5.37,0,10.43,2.07,14.61,6.01ZM89.96,15.01h45.86c61.7,0,97.44,27.33,108.1,89.94l-153.96.02V15.01ZM136.21,284.93h-46.26v-89.98l153.87-.02c-9.97,56.66-42.07,88.38-107.61,90ZM247.34,149.96c0,5.13-.11,10.13-.34,14.99l-157.04.02v-29.99l157.05-.02c.22,4.84.33,9.83.33,15Z' }) })) })));
|
|
27
|
+
};
|
|
28
|
+
export default AEDSymbol;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
var __assign = (this && this.__assign) || function () {
|
|
2
|
+
__assign = Object.assign || function(t) {
|
|
3
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
4
|
+
s = arguments[i];
|
|
5
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
6
|
+
t[p] = s[p];
|
|
7
|
+
}
|
|
8
|
+
return t;
|
|
9
|
+
};
|
|
10
|
+
return __assign.apply(this, arguments);
|
|
11
|
+
};
|
|
12
|
+
var __rest = (this && this.__rest) || function (s, e) {
|
|
13
|
+
var t = {};
|
|
14
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
15
|
+
t[p] = s[p];
|
|
16
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
17
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
18
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
19
|
+
t[p[i]] = s[p[i]];
|
|
20
|
+
}
|
|
21
|
+
return t;
|
|
22
|
+
};
|
|
23
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
24
|
+
var SARSymbol = function (_a) {
|
|
25
|
+
var _b = _a.height, height = _b === void 0 ? 10 : _b, svgProps = __rest(_a, ["height"]);
|
|
26
|
+
return (_jsx("span", __assign({ style: { padding: '0 2px' } }, { children: _jsx("svg", __assign({ xmlns: 'http://www.w3.org/2000/svg', height: height, fill: 'currentColor', viewBox: '0 0 1124.14 1256.39' }, svgProps, { children: _jsx("path", { d: 'M699.62 1113.02a460.24 460.24 0 0 0-38.4 143.37l424.51-90.24a460.44 460.44 0 0 0 38.4-143.37l-424.51 90.24zM1085.73 895.8a460.16 460.16 0 0 0 38.4-143.37l-330.68 70.33v-135.2l292.27-62.11a460.16 460.16 0 0 0 38.4-143.37l-330.68 70.27V66.13a466.56 466.56 0 0 0-132.25 110.99v403.35l-132.25 28.11V0A466.4 466.4 0 0 0 396.7 110.99v525.69l-295.92 62.88a460.46 460.46 0 0 0-38.42 143.37l334.33-71.05v170.26l-358.3 76.14a460.16 460.16 0 0 0-38.4 143.37l375.03-79.7a119.13 119.13 0 0 0 73.83-49.24l68.78-101.97v-.02a65.72 65.72 0 0 0 11.3-36.97V743.77l132.25-28.11v270.4l424.53-90.28z' }) })) })));
|
|
27
|
+
};
|
|
28
|
+
export default SARSymbol;
|
|
@@ -136,12 +136,14 @@
|
|
|
136
136
|
"cancel": "إلغاء",
|
|
137
137
|
"capital_paid_hint": "00000",
|
|
138
138
|
"capital_paid_label": "رأس المال المدفوع ({{currency}})",
|
|
139
|
+
"capital_paid_input_label": "رأس المال المدفوع",
|
|
139
140
|
"capital_paid_required": "Please Enter paid amount",
|
|
140
141
|
"capital_share_count_hint": "00000",
|
|
141
142
|
"capital_share_count_label": "عدد اسهم رأس المال",
|
|
142
143
|
"capital_share_count_required": "Please Enter share count",
|
|
143
144
|
"capital_share_value_hint": "00000",
|
|
144
145
|
"capital_share_value_label": "قيمة السهم ({{currency}})",
|
|
146
|
+
"capital_share_value_input_label": "قيمة السهم",
|
|
145
147
|
"capital_share_value_required": "Please Enter share value",
|
|
146
148
|
"category": "الفئة",
|
|
147
149
|
"category_name": "اسم الفئة",
|
|
@@ -280,6 +282,7 @@
|
|
|
280
282
|
"entity_type_required": "Please select at least one entity type",
|
|
281
283
|
"expected_customers_to_serve": "عدد العملاء شهريا",
|
|
282
284
|
"expected_sales_monthly": "البيع المتوقع في الشهر؟ ({{currency}})",
|
|
285
|
+
"expected_sale_per_month": "البيع المتوقع في الشهر؟",
|
|
283
286
|
"expected_sales_yearly": "ما هي المبيعات المتوقعة لعملك شهريًا؟",
|
|
284
287
|
"expected_served_monthly": "عدد العملاء شهريا",
|
|
285
288
|
"expiry_date": "تاريخ الإنتهاء",
|
|
@@ -364,6 +367,7 @@
|
|
|
364
367
|
"issue_date": "تاريخ الإصدار",
|
|
365
368
|
"issued_country_label": "بلد الإصدار",
|
|
366
369
|
"join_our_community": "",
|
|
370
|
+
"kyc_already_submitted_title": "لقد وافقت مسبقاً على كافة الوثائق",
|
|
367
371
|
"kyc_dispute_policy": "سياسة المنازعات",
|
|
368
372
|
"kyc_refund_policy": "سياسة الاسترجاع",
|
|
369
373
|
"kyc_success_button": "حساب لوحة التحكم",
|
|
@@ -372,7 +376,9 @@
|
|
|
372
376
|
"kyc_terms_description": "يجب على الممثل المعتمد للشركة قراءة الوثائق القانونية والموافقة عليها",
|
|
373
377
|
"kyc_terms_description_single_user": "يجب على الشخص المخول الذي يحمل الهوية {{id_number}} قراءة المستندات القانونية والموافقة عليها",
|
|
374
378
|
"kyc_terms_title": "وثائق قانونية",
|
|
379
|
+
"kyc_token_invalid": "الرجاء مراجعة رابط المرسل اليك",
|
|
375
380
|
"kyc_users_description": "يرجى اختيار رقم هوية الممثل المعتمد للموافقة عليه مع {{provider}}",
|
|
381
|
+
"kyc_privacy_policy": "سياسة الخصوصية",
|
|
376
382
|
"language": "English",
|
|
377
383
|
"license_info": "معلومات الترخيص",
|
|
378
384
|
"license_name_hint": "Enter legal name",
|
|
@@ -480,6 +486,7 @@
|
|
|
480
486
|
"please_choose_is_authorized": "الرجاء التأكيد إذا كنت أنت المستخدم المصرح له",
|
|
481
487
|
"please_choose_relative_pep": "هل أنت أو أحد أقاربك شخص مكشوف علنًا (PEP)",
|
|
482
488
|
"please_enter_actual_income": "ما هو دخلك الشهري ({{currency}}) ؟ ",
|
|
489
|
+
"monthly_income": "ما هو دخلك الشهري؟ ",
|
|
483
490
|
"please_enter_employer_name": "يرجى إدخال اسم منشأه العمل الخاص بك",
|
|
484
491
|
"please_try_again_after_few_minutes": "يمكنك محاولة تسجيل الدخول مرة أخرى بعد {{minutes}} دقيقة",
|
|
485
492
|
"powered_by": "بواسطة",
|
|
@@ -520,6 +527,7 @@
|
|
|
520
527
|
"share_count_label": "عدد الأسهم",
|
|
521
528
|
"share_value_hint": "0000",
|
|
522
529
|
"share_value_label": "قيمة السهم ({{currency}})",
|
|
530
|
+
"share_value_input_label": "قيمة السهم",
|
|
523
531
|
"sign_up": "Sign up",
|
|
524
532
|
"signed_up": "تسجيل الدخول",
|
|
525
533
|
"signin_email_label": "البريد الألكتروني",
|
|
@@ -630,5 +638,14 @@
|
|
|
630
638
|
"year": "السنة",
|
|
631
639
|
"yes": "نعم",
|
|
632
640
|
"your_brand_details": "تفاصيل علامتك التجارية",
|
|
633
|
-
"يرجى التحقق من اسم تطبيق ابل": ""
|
|
641
|
+
"يرجى التحقق من اسم تطبيق ابل": "",
|
|
642
|
+
"mobile_ownership_title": "لتفعيل استلام الايداعات، يرجى تحديث رقم هاتفك المحمول المسجل ليتوافق مع هويتك.",
|
|
643
|
+
"current_mobile_number": "رقم الجوال الحالي",
|
|
644
|
+
"new_mobile_number": "رقم الجوال الجديد",
|
|
645
|
+
"update_mobile_number": "تحديث رقم الجوال",
|
|
646
|
+
"update_later": "سأقوم بالتحديث لاحقاً",
|
|
647
|
+
"passcode_title": "الرجاء إدخال رمز المرور الخاص بك",
|
|
648
|
+
"sign_in_with_otp": "تسجيل الدخول باستخدام رمز التحقق (OTP)",
|
|
649
|
+
"passcode_required": "الرجاء إدخال رمز المرور المطلوب",
|
|
650
|
+
"login_with_passcode": "تسجيل الدخول باستخدام رمز المرور"
|
|
634
651
|
}
|
|
@@ -135,12 +135,14 @@
|
|
|
135
135
|
"cancel": "Cancel",
|
|
136
136
|
"capital_paid_hint": "00000",
|
|
137
137
|
"capital_paid_label": "Capital Paid ({{currency}})",
|
|
138
|
+
"capital_paid_input_label": "Capital Paid",
|
|
138
139
|
"capital_paid_required": "Please Enter paid amount",
|
|
139
140
|
"capital_share_count_hint": "00000",
|
|
140
141
|
"capital_share_count_label": "Capital Share Count",
|
|
141
142
|
"capital_share_count_required": "Please Enter share count",
|
|
142
143
|
"capital_share_value_hint": "00000",
|
|
143
144
|
"capital_share_value_label": "Capital Share Value ({{currency}})",
|
|
145
|
+
"capital_share_value_input_label": "Capital Share Value",
|
|
144
146
|
"capital_share_value_required": "Please Enter share value",
|
|
145
147
|
"category": "Category",
|
|
146
148
|
"category_name": "Category name",
|
|
@@ -288,6 +290,7 @@
|
|
|
288
290
|
"entity_type_required": "Please select at least one entity type",
|
|
289
291
|
"expected_customers_to_serve": "Customers server per month",
|
|
290
292
|
"expected_sales_monthly": "Expected sale per month? ({{currency}})",
|
|
293
|
+
"expected_sale_per_month": "Expected sale per month?",
|
|
291
294
|
"expected_sales_yearly": "What is the expected sales for your business per month?",
|
|
292
295
|
"expected_served_monthly": "Customers server per month",
|
|
293
296
|
"expiry_date": "Date of expiry",
|
|
@@ -377,6 +380,7 @@
|
|
|
377
380
|
"issue_date": "Date of issuance",
|
|
378
381
|
"issued_country_label": "Issued Country",
|
|
379
382
|
"join_our_community": "",
|
|
383
|
+
"kyc_already_submitted_title": "You already approved all documents",
|
|
380
384
|
"kyc_dispute_policy": "Dispute Policy",
|
|
381
385
|
"kyc_refund_policy": "Refund Policy",
|
|
382
386
|
"kyc_success_button": "Go to my board",
|
|
@@ -385,8 +389,10 @@
|
|
|
385
389
|
"kyc_terms_description": "An authorized representative of the company must read and approve the legal documents",
|
|
386
390
|
"kyc_terms_description_single_user": "The authorized person with the ID {{id_number}} must read and approve the legal documents",
|
|
387
391
|
"kyc_terms_title": "Legal documents",
|
|
392
|
+
"kyc_token_invalid": "May you please verify link of which you are trying to open.",
|
|
388
393
|
"kyc_users_description": "Please select an authorized registered ID to approve with {{provider}}",
|
|
389
394
|
"kyc_verification": "Know Your Customer (KYC)",
|
|
395
|
+
"kyc_privacy_policy": "Privacy Policy",
|
|
390
396
|
"language": "العربية",
|
|
391
397
|
"license_info": "License information",
|
|
392
398
|
"license_name_hint": "Enter legal name",
|
|
@@ -496,6 +502,7 @@
|
|
|
496
502
|
"please_choose_is_authorized": "Please tell us if you are the authorized user",
|
|
497
503
|
"please_choose_relative_pep": "Are you or one of your relatives a Publicly Exposed Person (PEP)",
|
|
498
504
|
"please_enter_actual_income": "Monthly income ({{currency}})",
|
|
505
|
+
"monthly_income": "Monthly income",
|
|
499
506
|
"please_enter_employer_name": "Please enter the name of your employer",
|
|
500
507
|
"please_try_again_after_few_minutes": "You can try to login again after {{minutes}} mins",
|
|
501
508
|
"powered_by": "Powered by",
|
|
@@ -542,6 +549,7 @@
|
|
|
542
549
|
"share_count_label": "Share Count",
|
|
543
550
|
"share_value_hint": "0000",
|
|
544
551
|
"share_value_label": "Share Value ({{currency}})",
|
|
552
|
+
"share_value_input_label": "Share Value",
|
|
545
553
|
"sign_up": "Sign up",
|
|
546
554
|
"signed_up": "Signed up",
|
|
547
555
|
"signin_email_label": "Email address",
|
|
@@ -657,5 +665,40 @@
|
|
|
657
665
|
"website_label": "Website",
|
|
658
666
|
"year": "Year",
|
|
659
667
|
"yes": "Yes",
|
|
660
|
-
"your_brand_details": "Your brand details"
|
|
668
|
+
"your_brand_details": "Your brand details",
|
|
669
|
+
"mobile_ownership_title": "To enable bank payouts, please update your registered mobile number to match your national ID.",
|
|
670
|
+
"current_mobile_number": "Current mobile number",
|
|
671
|
+
"new_mobile_number": "New mobile number",
|
|
672
|
+
"update_mobile_number": "Update mobile number",
|
|
673
|
+
"update_later": "I'll update later",
|
|
674
|
+
"terminal_manage_terminals": "Manage Terminals",
|
|
675
|
+
"terminal_link_terminal": "Link Terminal",
|
|
676
|
+
"terminal_linked": "Linked",
|
|
677
|
+
"terminal_link": "Link",
|
|
678
|
+
"terminal_unlinked": "Unlinked",
|
|
679
|
+
"terminal_paired_with": "Paired with",
|
|
680
|
+
"terminal_device_id": "Device ID",
|
|
681
|
+
"terminal_serial_number": "Serial no",
|
|
682
|
+
"terminal_qr_code_description": "Open the Tap app on the terminal and select Linked Terminal from the More menu.",
|
|
683
|
+
"terminal_or_use_code": "or use code",
|
|
684
|
+
"terminal_unlink": "Unlink",
|
|
685
|
+
"terminal_linked_with": "Linked with",
|
|
686
|
+
"terminal_send_link_request": "Send linking request",
|
|
687
|
+
"terminal_request_will_send": "A request will be sent to Tap Terminal app to confirm linking.",
|
|
688
|
+
"terminal_new_request_will_send": "A new link request bas ben sent to Tap Terminal app to confirm linking.",
|
|
689
|
+
"terminal_resend_request": "Resend Request",
|
|
690
|
+
"terminal_with": "with",
|
|
691
|
+
"terminal_request_denied": "The Request to link Terminal {{device}} has been denied.",
|
|
692
|
+
"terminal_go_to_board": "Go to Board",
|
|
693
|
+
"terminal_linked_success": "Your terminal {{device}} is linked successfully",
|
|
694
|
+
"terminal_unlinked_success": "Your terminal {{device}} is unlinked successfully",
|
|
695
|
+
"terminal_no_terminal_linked": "No Terminal Linked",
|
|
696
|
+
"terminal_no_terminal_linked_description": "We will list the linked terminals here when available",
|
|
697
|
+
"terminal_push_notification_link_new_terminal_failed": "Something went wrong. Please try again later",
|
|
698
|
+
"terminal_id": "Terminal ID",
|
|
699
|
+
"terminal_devices": "{{name}} Devices",
|
|
700
|
+
"passcode_title": "Please enter your passcode",
|
|
701
|
+
"sign_in_with_otp": "Sign in with OTP",
|
|
702
|
+
"passcode_required": "Please enter the required Passcode",
|
|
703
|
+
"login_with_passcode": "Login with Passcode"
|
|
661
704
|
}
|