@tap-payments/auth-jsconnect 2.1.44-test → 2.1.45-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/form.d.ts +8 -5
- package/build/api/account.d.ts +5 -0
- package/build/api/account.js +9 -1
- package/build/api/auth.d.ts +8 -4
- package/build/api/auth.js +18 -2
- package/build/api/index.d.ts +6 -2
- package/build/api/lead.d.ts +1 -0
- package/build/api/lead.js +10 -1
- package/build/assets/locales/ar.json +2 -0
- package/build/assets/locales/en.json +2 -0
- package/build/components/Lottie/Lottie.d.ts +320 -0
- package/build/components/Lottie/Lottie.js +3 -1
- package/build/components/Lottie/files/account_creating.json +732 -0
- package/build/constants/api.d.ts +3 -0
- package/build/constants/api.js +8 -2
- package/build/constants/app.d.ts +5 -2
- package/build/constants/app.js +60 -4
- package/build/features/app/auth/authStore.d.ts +3 -3
- package/build/features/app/business/businessStore.d.ts +1 -0
- package/build/features/app/connect/connectStore.d.ts +1 -0
- package/build/features/app/connect/connectStore.js +3 -2
- package/build/features/app/connectExpress/connectExpressStore.d.ts +61 -6
- package/build/features/app/connectExpress/connectExpressStore.js +614 -66
- package/build/features/connect/screens/Merchant/Merchant.js +12 -10
- package/build/features/connectExpress/ConnectExpress.js +1 -1
- package/build/features/connectExpress/screens/CivilID/CivilID.js +3 -3
- package/build/features/connectExpress/screens/CivilIDMissed/CivilID.d.ts +5 -0
- package/build/features/connectExpress/screens/CivilIDMissed/CivilID.js +53 -0
- package/build/features/connectExpress/screens/CivilIDMissed/IDNumber.d.ts +7 -0
- package/build/features/connectExpress/screens/CivilIDMissed/IDNumber.js +55 -0
- package/build/features/connectExpress/screens/CivilIDMissed/index.d.ts +3 -0
- package/build/features/connectExpress/screens/CivilIDMissed/index.js +2 -0
- package/build/features/connectExpress/screens/CivilIDMissed/validation.d.ts +8 -0
- package/build/features/connectExpress/screens/CivilIDMissed/validation.js +4 -0
- package/build/features/connectExpress/screens/CollectBusinessInfo/BrandName.d.ts +8 -0
- package/build/features/connectExpress/screens/CollectBusinessInfo/BrandName.js +142 -0
- package/build/features/connectExpress/screens/CollectBusinessInfo/CollectBusinessInfo.d.ts +5 -0
- package/build/features/connectExpress/screens/CollectBusinessInfo/CollectBusinessInfo.js +77 -0
- package/build/features/connectExpress/screens/CollectBusinessInfo/LicenseList.d.ts +8 -0
- package/build/features/connectExpress/screens/CollectBusinessInfo/LicenseList.js +144 -0
- package/build/features/connectExpress/screens/CollectBusinessInfo/LicenseNumber.d.ts +7 -0
- package/build/features/connectExpress/screens/CollectBusinessInfo/LicenseNumber.js +52 -0
- package/build/features/connectExpress/screens/CollectBusinessInfo/LicenseType.d.ts +34 -0
- package/build/features/connectExpress/screens/CollectBusinessInfo/LicenseType.js +94 -0
- package/build/features/connectExpress/screens/CollectBusinessInfo/index.d.ts +3 -0
- package/build/features/connectExpress/screens/CollectBusinessInfo/index.js +2 -0
- package/build/features/connectExpress/screens/CollectBusinessInfo/validation.d.ts +27 -0
- package/build/features/connectExpress/screens/CollectBusinessInfo/validation.js +79 -0
- package/build/features/connectExpress/screens/CollectIndividualInfo/CollectIndividualInfo.d.ts +5 -0
- package/build/features/connectExpress/screens/CollectIndividualInfo/CollectIndividualInfo.js +89 -0
- package/build/features/connectExpress/screens/CollectIndividualInfo/Email.d.ts +8 -0
- package/build/features/connectExpress/screens/CollectIndividualInfo/Email.js +113 -0
- package/build/features/connectExpress/screens/CollectIndividualInfo/MobileNumber.d.ts +10 -0
- package/build/features/connectExpress/screens/CollectIndividualInfo/MobileNumber.js +149 -0
- package/build/features/connectExpress/screens/CollectIndividualInfo/Name.d.ts +6 -0
- package/build/features/connectExpress/screens/CollectIndividualInfo/Name.js +45 -0
- package/build/features/connectExpress/screens/CollectIndividualInfo/index.d.ts +3 -0
- package/build/features/connectExpress/screens/CollectIndividualInfo/index.js +2 -0
- package/build/features/connectExpress/screens/CollectIndividualInfo/validation.d.ts +14 -0
- package/build/features/connectExpress/screens/CollectIndividualInfo/validation.js +31 -0
- package/build/features/connectExpress/screens/CreateAccountLoader/CreateAccountLoader.d.ts +5 -0
- package/build/features/connectExpress/screens/CreateAccountLoader/CreateAccountLoader.js +61 -0
- package/build/features/connectExpress/screens/CreateAccountLoader/index.d.ts +2 -0
- package/build/features/connectExpress/screens/CreateAccountLoader/index.js +2 -0
- package/build/features/connectExpress/screens/IdentityOTP/OTP.d.ts +5 -0
- package/build/features/connectExpress/screens/IdentityOTP/OTP.js +87 -0
- package/build/features/connectExpress/screens/IdentityOTP/OTPInput.d.ts +5 -0
- package/build/features/connectExpress/screens/IdentityOTP/OTPInput.js +52 -0
- package/build/features/connectExpress/screens/IdentityOTP/index.d.ts +3 -0
- package/build/features/connectExpress/screens/IdentityOTP/index.js +2 -0
- package/build/features/connectExpress/screens/IdentityOTP/validation.d.ts +8 -0
- package/build/features/connectExpress/screens/IdentityOTP/validation.js +4 -0
- package/build/features/connectExpress/screens/IdentityVerifyPACI/VerifyPACI.d.ts +5 -0
- package/build/features/connectExpress/screens/IdentityVerifyPACI/VerifyPACI.js +34 -0
- package/build/features/connectExpress/screens/IdentityVerifyPACI/index.d.ts +3 -0
- package/build/features/connectExpress/screens/IdentityVerifyPACI/index.js +2 -0
- package/build/features/connectExpress/screens/Mobile/Mobile.js +0 -3
- package/build/features/connectExpress/screens/NID/NID.js +7 -6
- package/build/features/connectExpress/screens/NIDMissed/DOB.d.ts +6 -0
- package/build/features/connectExpress/screens/NIDMissed/DOB.js +47 -0
- package/build/features/connectExpress/screens/NIDMissed/IDNumber.d.ts +6 -0
- package/build/features/connectExpress/screens/NIDMissed/IDNumber.js +60 -0
- package/build/features/connectExpress/screens/NIDMissed/NID.d.ts +5 -0
- package/build/features/connectExpress/screens/NIDMissed/NID.js +59 -0
- package/build/features/connectExpress/screens/NIDMissed/index.d.ts +3 -0
- package/build/features/connectExpress/screens/NIDMissed/index.js +2 -0
- package/build/features/connectExpress/screens/NIDMissed/validation.d.ts +11 -0
- package/build/features/connectExpress/screens/NIDMissed/validation.js +9 -0
- package/build/features/connectExpress/screens/OTP/OTP.js +10 -6
- package/build/features/connectExpress/screens/OTP/OTPInput.js +7 -6
- package/build/features/connectExpress/screens/SuccessWithFlowButtons/SuccessWithFlowButtons.d.ts +3 -0
- package/build/features/connectExpress/screens/SuccessWithFlowButtons/SuccessWithFlowButtons.js +119 -0
- package/build/features/connectExpress/screens/SuccessWithFlowButtons/index.d.ts +2 -0
- package/build/features/connectExpress/screens/SuccessWithFlowButtons/index.js +2 -0
- package/build/features/connectExpress/screens/VerifyPACI/VerifyPACI.js +7 -68
- package/build/features/featuresScreens.js +40 -0
- package/build/features/shared/FlowButtons/FlowButtons.d.ts +4 -0
- package/build/features/shared/FlowButtons/FlowButtons.js +6 -0
- package/build/features/shared/FlowButtons/index.d.ts +2 -0
- package/build/features/shared/FlowButtons/index.js +2 -0
- package/package.json +1 -1
package/build/@types/form.d.ts
CHANGED
|
@@ -2,6 +2,7 @@ import { Activity, BrandInfo, CountryCode, CustomerLocation, ExpectedCustomer, E
|
|
|
2
2
|
export declare type MobileFormValues = {
|
|
3
3
|
mobile: string;
|
|
4
4
|
countryCode: CountryCode;
|
|
5
|
+
termAndConditionChecked?: boolean;
|
|
5
6
|
};
|
|
6
7
|
export declare type EmailFormValues = {
|
|
7
8
|
email: string | null;
|
|
@@ -15,14 +16,11 @@ export declare type PasswordFormValues = {
|
|
|
15
16
|
export declare type NIDFormValues = {
|
|
16
17
|
nid: string;
|
|
17
18
|
dob: string;
|
|
18
|
-
|
|
19
|
-
export declare type IDFormValues = {
|
|
20
|
-
nid: string;
|
|
21
|
-
dob: string;
|
|
22
|
-
termAndConditionChecked: boolean;
|
|
19
|
+
termAndConditionChecked?: boolean;
|
|
23
20
|
};
|
|
24
21
|
export declare type CivilFormValues = {
|
|
25
22
|
civilId: string;
|
|
23
|
+
termAndConditionChecked?: boolean;
|
|
26
24
|
};
|
|
27
25
|
export declare type IndividualFormValues = {
|
|
28
26
|
name: string;
|
|
@@ -113,3 +111,8 @@ export declare type EntityCapitalFormValues = {
|
|
|
113
111
|
capitalShareCount: string;
|
|
114
112
|
capitalShareValue: string;
|
|
115
113
|
};
|
|
114
|
+
export declare type BusinessDataFormValues = {
|
|
115
|
+
brandName: string;
|
|
116
|
+
licenseNumber: string;
|
|
117
|
+
selectedLicense?: License;
|
|
118
|
+
};
|
package/build/api/account.d.ts
CHANGED
|
@@ -8,7 +8,12 @@ export declare type CreateAccountBody = {
|
|
|
8
8
|
is_acknowledged: boolean;
|
|
9
9
|
step_name: string;
|
|
10
10
|
};
|
|
11
|
+
export declare type ExpressCreateAccountBody = {
|
|
12
|
+
post_url: string;
|
|
13
|
+
lead_id: string;
|
|
14
|
+
};
|
|
11
15
|
declare const accountService: {
|
|
12
16
|
createAccount: (data: CreateAccountBody) => Promise<any>;
|
|
17
|
+
expressCreateAccount: (data: ExpressCreateAccountBody) => Promise<any>;
|
|
13
18
|
};
|
|
14
19
|
export { accountService };
|
package/build/api/account.js
CHANGED
|
@@ -7,7 +7,15 @@ var createAccount = function (data) {
|
|
|
7
7
|
data: data
|
|
8
8
|
});
|
|
9
9
|
};
|
|
10
|
+
var expressCreateAccount = function (data) {
|
|
11
|
+
return httpClient({
|
|
12
|
+
method: 'post',
|
|
13
|
+
url: ENDPOINT_PATHS.EXPRESS_CREATE_ACCOUNT,
|
|
14
|
+
data: data
|
|
15
|
+
});
|
|
16
|
+
};
|
|
10
17
|
var accountService = {
|
|
11
|
-
createAccount: createAccount
|
|
18
|
+
createAccount: createAccount,
|
|
19
|
+
expressCreateAccount: expressCreateAccount
|
|
12
20
|
};
|
|
13
21
|
export { accountService };
|
package/build/api/auth.d.ts
CHANGED
|
@@ -65,15 +65,17 @@ export declare type CreatePasswordBody = {
|
|
|
65
65
|
};
|
|
66
66
|
export declare type VerifyAuthExpressOTPBody = {
|
|
67
67
|
auth_token?: string;
|
|
68
|
+
verify_token?: string;
|
|
68
69
|
lead_id?: string;
|
|
69
70
|
data: string;
|
|
70
|
-
auth_type
|
|
71
|
+
auth_type?: number;
|
|
71
72
|
service_name: string;
|
|
72
73
|
sign_in: boolean;
|
|
73
|
-
|
|
74
|
-
|
|
74
|
+
step_name?: string;
|
|
75
|
+
device_token?: string;
|
|
76
|
+
post_url?: string;
|
|
75
77
|
scopes?: Array<string>;
|
|
76
|
-
terms
|
|
78
|
+
terms?: Array<string>;
|
|
77
79
|
encryption_contract: Array<string>;
|
|
78
80
|
};
|
|
79
81
|
declare const authService: {
|
|
@@ -85,5 +87,7 @@ declare const authService: {
|
|
|
85
87
|
getTokenVerify: (token: string, config?: AxiosRequestConfig) => Promise<any>;
|
|
86
88
|
createAuthKitNID: (data: CreateAuthBody) => Promise<any>;
|
|
87
89
|
createExpressAuth: (data: CreateAuthBody, config?: AxiosRequestConfig) => Promise<any>;
|
|
90
|
+
verifyExpressLeadIdentity: (data: VerifyAuthExpressOTPBody) => Promise<any>;
|
|
91
|
+
createExpressLeadIdentityAuth: (data: CreateAuthBody) => Promise<any>;
|
|
88
92
|
};
|
|
89
93
|
export { authService };
|
package/build/api/auth.js
CHANGED
|
@@ -36,7 +36,21 @@ var getTokenVerify = function (token, config) {
|
|
|
36
36
|
var verifyExpressAuth = function (data) {
|
|
37
37
|
return httpClient({
|
|
38
38
|
method: 'put',
|
|
39
|
-
url: "".concat(ENDPOINT_PATHS.
|
|
39
|
+
url: "".concat(ENDPOINT_PATHS.Verify_Express_Auth_OTP_PATH),
|
|
40
|
+
data: data
|
|
41
|
+
});
|
|
42
|
+
};
|
|
43
|
+
var verifyExpressLeadIdentity = function (data) {
|
|
44
|
+
return httpClient({
|
|
45
|
+
method: 'put',
|
|
46
|
+
url: "".concat(ENDPOINT_PATHS.EXPRESS_LEAD_IDENTITY_AUTH_PATH),
|
|
47
|
+
data: data
|
|
48
|
+
});
|
|
49
|
+
};
|
|
50
|
+
var createExpressLeadIdentityAuth = function (data) {
|
|
51
|
+
return httpClient({
|
|
52
|
+
method: 'post',
|
|
53
|
+
url: "".concat(ENDPOINT_PATHS.EXPRESS_LEAD_IDENTITY_AUTH_PATH),
|
|
40
54
|
data: data
|
|
41
55
|
});
|
|
42
56
|
};
|
|
@@ -55,6 +69,8 @@ var authService = {
|
|
|
55
69
|
getVerifyAuth: getVerifyAuth,
|
|
56
70
|
getTokenVerify: getTokenVerify,
|
|
57
71
|
createAuthKitNID: createAuthKitNID,
|
|
58
|
-
createExpressAuth: createExpressAuth
|
|
72
|
+
createExpressAuth: createExpressAuth,
|
|
73
|
+
verifyExpressLeadIdentity: verifyExpressLeadIdentity,
|
|
74
|
+
createExpressLeadIdentityAuth: createExpressLeadIdentityAuth
|
|
59
75
|
};
|
|
60
76
|
export { authService };
|
package/build/api/index.d.ts
CHANGED
|
@@ -4,7 +4,7 @@ import { CreateAuthBody, VerifyAuthBody, CreatePasswordBody, VerifyOperationAuth
|
|
|
4
4
|
import { UpdateLeadBody, LeadVerifyBody, CreateLeadBody, LeadOTPVerifyBody, LeadIdentityUpdateBody } from './lead';
|
|
5
5
|
import { CheckEmailBody, CheckBrandBody } from './availabilityServices';
|
|
6
6
|
import { EntityInfoBody, EntityBankUpdateBody, UpdateEntityBody, DocumentUpdateBody, DocumentInfo, UpdateEntityActivityBody, UpdateEntityCapitalBody } from './entity';
|
|
7
|
-
import { CreateAccountBody } from './account';
|
|
7
|
+
import { CreateAccountBody, ExpressCreateAccountBody } from './account';
|
|
8
8
|
import { DataElementBody } from './data';
|
|
9
9
|
import { BrandListBody, UpdateBrandBody, UpdateIndividualBody } from './individual';
|
|
10
10
|
import { UpdateBoardBody } from './board';
|
|
@@ -31,6 +31,8 @@ declare const API: {
|
|
|
31
31
|
getTokenVerify: (token: string, config?: import("axios").AxiosRequestConfig<any> | undefined) => Promise<any>;
|
|
32
32
|
createAuthKitNID: (data: CreateAuthBody) => Promise<any>;
|
|
33
33
|
createExpressAuth: (data: CreateAuthBody, config?: import("axios").AxiosRequestConfig<any> | undefined) => Promise<any>;
|
|
34
|
+
verifyExpressLeadIdentity: (data: VerifyAuthExpressOTPBody) => Promise<any>;
|
|
35
|
+
createExpressLeadIdentityAuth: (data: CreateAuthBody) => Promise<any>;
|
|
34
36
|
};
|
|
35
37
|
leadService: {
|
|
36
38
|
createLead: (data: CreateLeadBody, config?: import("axios").AxiosRequestConfig<any> | undefined) => Promise<import("axios").AxiosResponse<any, any>>;
|
|
@@ -41,6 +43,7 @@ declare const API: {
|
|
|
41
43
|
verifyLeadOTP: (data: LeadOTPVerifyBody, config?: import("axios").AxiosRequestConfig<any> | undefined) => Promise<import("axios").AxiosResponse<any, any>>;
|
|
42
44
|
retrieveEntityList: (leadId: string) => Promise<import("axios").AxiosResponse<any, any>>;
|
|
43
45
|
retrieveLeadIdentity: (leadId: string) => Promise<any>;
|
|
46
|
+
updateLeadExpress: ({ id, ...data }: UpdateLeadBody) => Promise<any>;
|
|
44
47
|
};
|
|
45
48
|
entityService: {
|
|
46
49
|
createEntityInfo: ({ id, ...data }: EntityInfoBody, config?: import("axios").AxiosRequestConfig<any> | undefined) => Promise<import("axios").AxiosResponse<any, any>>;
|
|
@@ -66,6 +69,7 @@ declare const API: {
|
|
|
66
69
|
};
|
|
67
70
|
accountService: {
|
|
68
71
|
createAccount: (data: CreateAccountBody) => Promise<any>;
|
|
72
|
+
expressCreateAccount: (data: ExpressCreateAccountBody) => Promise<any>;
|
|
69
73
|
};
|
|
70
74
|
dataService: {
|
|
71
75
|
getChannelsOfServices: (data: {
|
|
@@ -126,6 +130,6 @@ declare const API: {
|
|
|
126
130
|
uploadFileInfo: (data: UploadFileBody, config?: import("axios").AxiosRequestConfig<any> | undefined) => Promise<any>;
|
|
127
131
|
};
|
|
128
132
|
};
|
|
129
|
-
export type { ValidateOperatorBody, CreateAuthBody, 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 };
|
|
133
|
+
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 };
|
|
130
134
|
export { setAxiosGlobalHeaders, removeAxiosGlobalHeaders, axiosInstance, getAxiosHeaders };
|
|
131
135
|
export default API;
|
package/build/api/lead.d.ts
CHANGED
|
@@ -97,5 +97,6 @@ declare const leadService: {
|
|
|
97
97
|
verifyLeadOTP: (data: LeadOTPVerifyBody, config?: AxiosRequestConfig) => Promise<import("axios").AxiosResponse<any, any>>;
|
|
98
98
|
retrieveEntityList: (leadId: string) => Promise<import("axios").AxiosResponse<any, any>>;
|
|
99
99
|
retrieveLeadIdentity: (leadId: string) => Promise<any>;
|
|
100
|
+
updateLeadExpress: ({ id, ...data }: UpdateLeadBody) => Promise<any>;
|
|
100
101
|
};
|
|
101
102
|
export { leadService };
|
package/build/api/lead.js
CHANGED
|
@@ -22,6 +22,14 @@ var updateLead = function (_a) {
|
|
|
22
22
|
data: data
|
|
23
23
|
});
|
|
24
24
|
};
|
|
25
|
+
var updateLeadExpress = function (_a) {
|
|
26
|
+
var id = _a.id, data = __rest(_a, ["id"]);
|
|
27
|
+
return httpClient({
|
|
28
|
+
method: 'put',
|
|
29
|
+
url: "".concat(ENDPOINT_PATHS.EXPRESS_UPDATE_LEAD, "/").concat(id, "/info"),
|
|
30
|
+
data: data
|
|
31
|
+
});
|
|
32
|
+
};
|
|
25
33
|
var retrieveLead = function (leadId) {
|
|
26
34
|
return instance.get("".concat(ENDPOINT_PATHS.LEAD, "/").concat(leadId));
|
|
27
35
|
};
|
|
@@ -54,6 +62,7 @@ var leadService = {
|
|
|
54
62
|
verifyLeadToken: verifyLeadToken,
|
|
55
63
|
verifyLeadOTP: verifyLeadOTP,
|
|
56
64
|
retrieveEntityList: retrieveEntityList,
|
|
57
|
-
retrieveLeadIdentity: retrieveLeadIdentity
|
|
65
|
+
retrieveLeadIdentity: retrieveLeadIdentity,
|
|
66
|
+
updateLeadExpress: updateLeadExpress
|
|
58
67
|
};
|
|
59
68
|
export { leadService };
|
|
@@ -356,5 +356,7 @@
|
|
|
356
356
|
"capital_share_count_required": "Please Enter share count",
|
|
357
357
|
"capital_share_value_required": "Please Enter share value",
|
|
358
358
|
"unified_number_required": "Unified Number Required",
|
|
359
|
+
"creating_account_title": "Creating your account",
|
|
360
|
+
"creating_account_description": "This might take a moment...",
|
|
359
361
|
"uploaded_file": "file"
|
|
360
362
|
}
|
|
@@ -385,5 +385,7 @@
|
|
|
385
385
|
"capital_share_count_required": "Please Enter share count",
|
|
386
386
|
"capital_share_value_required": "Please Enter share value",
|
|
387
387
|
"unified_number_required": "Unified Number Required",
|
|
388
|
+
"creating_account_title": "Creating your account",
|
|
389
|
+
"creating_account_description": "This might take a moment...",
|
|
388
390
|
"uploaded_file": "file"
|
|
389
391
|
}
|
|
@@ -3872,6 +3872,326 @@ export declare const LottieAnimationFiles: {
|
|
|
3872
3872
|
}[];
|
|
3873
3873
|
markers: never[];
|
|
3874
3874
|
};
|
|
3875
|
+
readonly account_creation: {
|
|
3876
|
+
v: string;
|
|
3877
|
+
fr: number;
|
|
3878
|
+
ip: number;
|
|
3879
|
+
op: number;
|
|
3880
|
+
w: number;
|
|
3881
|
+
h: number;
|
|
3882
|
+
nm: string;
|
|
3883
|
+
ddd: number;
|
|
3884
|
+
assets: {
|
|
3885
|
+
id: string;
|
|
3886
|
+
layers: {
|
|
3887
|
+
ddd: number;
|
|
3888
|
+
ind: number;
|
|
3889
|
+
ty: number;
|
|
3890
|
+
nm: string;
|
|
3891
|
+
sr: number;
|
|
3892
|
+
ks: {
|
|
3893
|
+
o: {
|
|
3894
|
+
a: number;
|
|
3895
|
+
k: number;
|
|
3896
|
+
ix: number;
|
|
3897
|
+
};
|
|
3898
|
+
r: {
|
|
3899
|
+
a: number;
|
|
3900
|
+
k: number;
|
|
3901
|
+
ix: number;
|
|
3902
|
+
};
|
|
3903
|
+
p: {
|
|
3904
|
+
a: number;
|
|
3905
|
+
k: number[];
|
|
3906
|
+
ix: number;
|
|
3907
|
+
};
|
|
3908
|
+
a: {
|
|
3909
|
+
a: number;
|
|
3910
|
+
k: number[];
|
|
3911
|
+
ix: number;
|
|
3912
|
+
};
|
|
3913
|
+
s: {
|
|
3914
|
+
a: number;
|
|
3915
|
+
k: ({
|
|
3916
|
+
i: {
|
|
3917
|
+
x: number[];
|
|
3918
|
+
y: number[];
|
|
3919
|
+
};
|
|
3920
|
+
o: {
|
|
3921
|
+
x: number[];
|
|
3922
|
+
y: number[];
|
|
3923
|
+
};
|
|
3924
|
+
n: string[];
|
|
3925
|
+
t: number;
|
|
3926
|
+
s: number[];
|
|
3927
|
+
e: number[];
|
|
3928
|
+
} | {
|
|
3929
|
+
t: number;
|
|
3930
|
+
i?: undefined;
|
|
3931
|
+
o?: undefined;
|
|
3932
|
+
n?: undefined;
|
|
3933
|
+
s?: undefined;
|
|
3934
|
+
e?: undefined;
|
|
3935
|
+
})[];
|
|
3936
|
+
ix: number;
|
|
3937
|
+
};
|
|
3938
|
+
};
|
|
3939
|
+
ao: number;
|
|
3940
|
+
shapes: {
|
|
3941
|
+
ty: string;
|
|
3942
|
+
it: ({
|
|
3943
|
+
ty: string;
|
|
3944
|
+
d: number;
|
|
3945
|
+
s: {
|
|
3946
|
+
a: number;
|
|
3947
|
+
k: number[];
|
|
3948
|
+
ix: number;
|
|
3949
|
+
};
|
|
3950
|
+
p: {
|
|
3951
|
+
a: number;
|
|
3952
|
+
k: number[];
|
|
3953
|
+
ix: number;
|
|
3954
|
+
};
|
|
3955
|
+
r: {
|
|
3956
|
+
a: number;
|
|
3957
|
+
k: number;
|
|
3958
|
+
ix: number;
|
|
3959
|
+
};
|
|
3960
|
+
nm: string;
|
|
3961
|
+
mn: string;
|
|
3962
|
+
hd: boolean;
|
|
3963
|
+
c?: undefined;
|
|
3964
|
+
o?: undefined;
|
|
3965
|
+
a?: undefined;
|
|
3966
|
+
sk?: undefined;
|
|
3967
|
+
sa?: undefined;
|
|
3968
|
+
} | {
|
|
3969
|
+
ty: string;
|
|
3970
|
+
c: {
|
|
3971
|
+
a: number;
|
|
3972
|
+
k: number[];
|
|
3973
|
+
ix: number;
|
|
3974
|
+
};
|
|
3975
|
+
o: {
|
|
3976
|
+
a: number;
|
|
3977
|
+
k: number;
|
|
3978
|
+
ix: number;
|
|
3979
|
+
};
|
|
3980
|
+
r: number;
|
|
3981
|
+
nm: string;
|
|
3982
|
+
mn: string;
|
|
3983
|
+
hd: boolean;
|
|
3984
|
+
d?: undefined;
|
|
3985
|
+
s?: undefined;
|
|
3986
|
+
p?: undefined;
|
|
3987
|
+
a?: undefined;
|
|
3988
|
+
sk?: undefined;
|
|
3989
|
+
sa?: undefined;
|
|
3990
|
+
} | {
|
|
3991
|
+
ty: string;
|
|
3992
|
+
p: {
|
|
3993
|
+
a: number;
|
|
3994
|
+
k: number[];
|
|
3995
|
+
ix: number;
|
|
3996
|
+
};
|
|
3997
|
+
a: {
|
|
3998
|
+
a: number;
|
|
3999
|
+
k: number[];
|
|
4000
|
+
ix: number;
|
|
4001
|
+
};
|
|
4002
|
+
s: {
|
|
4003
|
+
a: number;
|
|
4004
|
+
k: number[];
|
|
4005
|
+
ix: number;
|
|
4006
|
+
};
|
|
4007
|
+
r: {
|
|
4008
|
+
a: number;
|
|
4009
|
+
k: number;
|
|
4010
|
+
ix: number;
|
|
4011
|
+
};
|
|
4012
|
+
o: {
|
|
4013
|
+
a: number;
|
|
4014
|
+
k: number;
|
|
4015
|
+
ix: number;
|
|
4016
|
+
};
|
|
4017
|
+
sk: {
|
|
4018
|
+
a: number;
|
|
4019
|
+
k: number;
|
|
4020
|
+
ix: number;
|
|
4021
|
+
};
|
|
4022
|
+
sa: {
|
|
4023
|
+
a: number;
|
|
4024
|
+
k: number;
|
|
4025
|
+
ix: number;
|
|
4026
|
+
};
|
|
4027
|
+
nm: string;
|
|
4028
|
+
d?: undefined;
|
|
4029
|
+
mn?: undefined;
|
|
4030
|
+
hd?: undefined;
|
|
4031
|
+
c?: undefined;
|
|
4032
|
+
})[];
|
|
4033
|
+
nm: string;
|
|
4034
|
+
np: number;
|
|
4035
|
+
cix: number;
|
|
4036
|
+
ix: number;
|
|
4037
|
+
mn: string;
|
|
4038
|
+
hd: boolean;
|
|
4039
|
+
}[];
|
|
4040
|
+
ip: number;
|
|
4041
|
+
op: number;
|
|
4042
|
+
st: number;
|
|
4043
|
+
bm: number;
|
|
4044
|
+
}[];
|
|
4045
|
+
}[];
|
|
4046
|
+
layers: ({
|
|
4047
|
+
ddd: number;
|
|
4048
|
+
ind: number;
|
|
4049
|
+
ty: number;
|
|
4050
|
+
nm: string;
|
|
4051
|
+
refId: string;
|
|
4052
|
+
sr: number;
|
|
4053
|
+
ks: {
|
|
4054
|
+
o: {
|
|
4055
|
+
a: number;
|
|
4056
|
+
k: number;
|
|
4057
|
+
ix: number;
|
|
4058
|
+
};
|
|
4059
|
+
r: {
|
|
4060
|
+
a: number;
|
|
4061
|
+
k: number;
|
|
4062
|
+
ix: number;
|
|
4063
|
+
};
|
|
4064
|
+
p: {
|
|
4065
|
+
a: number;
|
|
4066
|
+
k: number[];
|
|
4067
|
+
ix: number;
|
|
4068
|
+
};
|
|
4069
|
+
a: {
|
|
4070
|
+
a: number;
|
|
4071
|
+
k: number[];
|
|
4072
|
+
ix: number;
|
|
4073
|
+
};
|
|
4074
|
+
s: {
|
|
4075
|
+
a: number;
|
|
4076
|
+
k: number[];
|
|
4077
|
+
ix: number;
|
|
4078
|
+
};
|
|
4079
|
+
};
|
|
4080
|
+
ao: number;
|
|
4081
|
+
w: number;
|
|
4082
|
+
h: number;
|
|
4083
|
+
ip: number;
|
|
4084
|
+
op: number;
|
|
4085
|
+
st: number;
|
|
4086
|
+
bm: number;
|
|
4087
|
+
} | {
|
|
4088
|
+
ddd: number;
|
|
4089
|
+
ind: number;
|
|
4090
|
+
ty: number;
|
|
4091
|
+
nm: string;
|
|
4092
|
+
refId: string;
|
|
4093
|
+
sr: number;
|
|
4094
|
+
ks: {
|
|
4095
|
+
o: {
|
|
4096
|
+
a: number;
|
|
4097
|
+
k: ({
|
|
4098
|
+
i: {
|
|
4099
|
+
x: number[];
|
|
4100
|
+
y: number[];
|
|
4101
|
+
};
|
|
4102
|
+
o: {
|
|
4103
|
+
x: number[];
|
|
4104
|
+
y: number[];
|
|
4105
|
+
};
|
|
4106
|
+
n: string[];
|
|
4107
|
+
t: number;
|
|
4108
|
+
s: number[];
|
|
4109
|
+
e: number[];
|
|
4110
|
+
} | {
|
|
4111
|
+
t: number;
|
|
4112
|
+
i?: undefined;
|
|
4113
|
+
o?: undefined;
|
|
4114
|
+
n?: undefined;
|
|
4115
|
+
s?: undefined;
|
|
4116
|
+
e?: undefined;
|
|
4117
|
+
})[];
|
|
4118
|
+
ix: number;
|
|
4119
|
+
};
|
|
4120
|
+
r: {
|
|
4121
|
+
a: number;
|
|
4122
|
+
k: number;
|
|
4123
|
+
ix: number;
|
|
4124
|
+
};
|
|
4125
|
+
p: {
|
|
4126
|
+
a: number;
|
|
4127
|
+
k: ({
|
|
4128
|
+
i: {
|
|
4129
|
+
x: number;
|
|
4130
|
+
y: number;
|
|
4131
|
+
};
|
|
4132
|
+
o: {
|
|
4133
|
+
x: number;
|
|
4134
|
+
y: number;
|
|
4135
|
+
};
|
|
4136
|
+
n: string;
|
|
4137
|
+
t: number;
|
|
4138
|
+
s: number[];
|
|
4139
|
+
e: number[];
|
|
4140
|
+
to: number[];
|
|
4141
|
+
ti: number[];
|
|
4142
|
+
} | {
|
|
4143
|
+
t: number;
|
|
4144
|
+
i?: undefined;
|
|
4145
|
+
o?: undefined;
|
|
4146
|
+
n?: undefined;
|
|
4147
|
+
s?: undefined;
|
|
4148
|
+
e?: undefined;
|
|
4149
|
+
to?: undefined;
|
|
4150
|
+
ti?: undefined;
|
|
4151
|
+
})[];
|
|
4152
|
+
ix: number;
|
|
4153
|
+
};
|
|
4154
|
+
a: {
|
|
4155
|
+
a: number;
|
|
4156
|
+
k: number[];
|
|
4157
|
+
ix: number;
|
|
4158
|
+
};
|
|
4159
|
+
s: {
|
|
4160
|
+
a: number;
|
|
4161
|
+
k: ({
|
|
4162
|
+
i: {
|
|
4163
|
+
x: number[];
|
|
4164
|
+
y: number[];
|
|
4165
|
+
};
|
|
4166
|
+
o: {
|
|
4167
|
+
x: number[];
|
|
4168
|
+
y: number[];
|
|
4169
|
+
};
|
|
4170
|
+
n: string[];
|
|
4171
|
+
t: number;
|
|
4172
|
+
s: number[];
|
|
4173
|
+
e: number[];
|
|
4174
|
+
} | {
|
|
4175
|
+
t: number;
|
|
4176
|
+
i?: undefined;
|
|
4177
|
+
o?: undefined;
|
|
4178
|
+
n?: undefined;
|
|
4179
|
+
s?: undefined;
|
|
4180
|
+
e?: undefined;
|
|
4181
|
+
})[];
|
|
4182
|
+
ix: number;
|
|
4183
|
+
};
|
|
4184
|
+
};
|
|
4185
|
+
ao: number;
|
|
4186
|
+
w: number;
|
|
4187
|
+
h: number;
|
|
4188
|
+
ip: number;
|
|
4189
|
+
op: number;
|
|
4190
|
+
st: number;
|
|
4191
|
+
bm: number;
|
|
4192
|
+
})[];
|
|
4193
|
+
markers: never[];
|
|
4194
|
+
};
|
|
3875
4195
|
};
|
|
3876
4196
|
export declare type LottieAnimationFiles = typeof LottieAnimationFiles[keyof typeof LottieAnimationFiles];
|
|
3877
4197
|
interface LottieFileProps extends DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement> {
|
|
@@ -28,12 +28,14 @@ import error from './files/error.json';
|
|
|
28
28
|
import start_loading from './files/start_loading.json';
|
|
29
29
|
import still_loading from './files/still_loading.json';
|
|
30
30
|
import pulsating_circle_waves from './files/pulsating_circle_waves.json';
|
|
31
|
+
import account_creation from './files/account_creating.json';
|
|
31
32
|
export var LottieAnimationFiles = {
|
|
32
33
|
success: success,
|
|
33
34
|
error: error,
|
|
34
35
|
start_loading: start_loading,
|
|
35
36
|
still_loading: still_loading,
|
|
36
|
-
pulsating_circle_waves: pulsating_circle_waves
|
|
37
|
+
pulsating_circle_waves: pulsating_circle_waves,
|
|
38
|
+
account_creation: account_creation
|
|
37
39
|
};
|
|
38
40
|
var LottieFile = function (_a) {
|
|
39
41
|
var file = _a.file, width = _a.width, height = _a.height, _b = _a.loop, loop = _b === void 0 ? true : _b, props = __rest(_a, ["file", "width", "height", "loop"]);
|