idwise-react-native-sdk 5.4.5-alpha.6 → 5.4.5-alpha.7
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/android/build.gradle +2 -2
- package/index.d.ts +7 -7
- package/package.json +1 -1
- package/src/IDWiseConstants.js +7 -0
- package/src/index.js +2 -2
package/android/build.gradle
CHANGED
package/index.d.ts
CHANGED
|
@@ -48,7 +48,7 @@ export namespace IDWise {
|
|
|
48
48
|
journeyDefinitionId: string,
|
|
49
49
|
referenceNo: string,
|
|
50
50
|
locale: string,
|
|
51
|
-
applicantDetails:
|
|
51
|
+
applicantDetails: { [key: string]: string }|undefined,
|
|
52
52
|
journeyCallback: IDWiseJourneyCallbacks
|
|
53
53
|
): void;
|
|
54
54
|
|
|
@@ -64,7 +64,7 @@ export namespace IDWise {
|
|
|
64
64
|
export namespace IDWiseDynamic {
|
|
65
65
|
function initialize(
|
|
66
66
|
clientKey: string,
|
|
67
|
-
theme:
|
|
67
|
+
theme: string,
|
|
68
68
|
callback: InitializeCallback
|
|
69
69
|
): void;
|
|
70
70
|
|
|
@@ -74,7 +74,7 @@ export namespace IDWiseDynamic {
|
|
|
74
74
|
journeyDefinitionId: string,
|
|
75
75
|
referenceNo: string,
|
|
76
76
|
locale: string,
|
|
77
|
-
applicantDetails:
|
|
77
|
+
applicantDetails: { [key: string]: string }|undefined,
|
|
78
78
|
journeyCallback: IDWiseJourneyCallbacks,
|
|
79
79
|
stepCallback: IDWiseStepCallbacks
|
|
80
80
|
): void;
|
|
@@ -106,10 +106,10 @@ declare const IDWiseTheme: {
|
|
|
106
106
|
};
|
|
107
107
|
|
|
108
108
|
declare const ApplicantDetailsKeys: {
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
109
|
+
FULL_NAME: 'full_name',
|
|
110
|
+
BIRTH_DATE: 'birth_date',
|
|
111
|
+
SEX: 'sex',
|
|
112
|
+
ADDRESS: 'address'
|
|
113
113
|
};
|
|
114
114
|
|
|
115
115
|
export {IDWiseTheme}
|
package/package.json
CHANGED
package/src/IDWiseConstants.js
CHANGED
package/src/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { IDWise } from './IDWise';
|
|
2
|
-
import { IDWiseTheme } from './IDWiseConstants';
|
|
2
|
+
import { IDWiseTheme, ApplicantDetailsKeys } from './IDWiseConstants';
|
|
3
3
|
import { IDWiseDynamic } from './IDWiseDynamic';
|
|
4
4
|
|
|
5
|
-
export { IDWise, IDWiseTheme, IDWiseDynamic };
|
|
5
|
+
export { IDWise, IDWiseTheme, IDWiseDynamic, ApplicantDetailsKeys };
|
|
6
6
|
|
|
7
7
|
export default { IDWise, IDWiseTheme, IDWiseDynamic };
|