idwise-react-native-sdk 5.4.5-alpha.5 → 5.4.5-alpha.6
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/index.d.ts +5 -3
- package/package.json +1 -1
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: Map<string,string
|
|
51
|
+
applicantDetails: Map<string,string>|undefined,
|
|
52
52
|
journeyCallback: IDWiseJourneyCallbacks
|
|
53
53
|
): void;
|
|
54
54
|
|
|
@@ -74,7 +74,7 @@ export namespace IDWiseDynamic {
|
|
|
74
74
|
journeyDefinitionId: string,
|
|
75
75
|
referenceNo: string,
|
|
76
76
|
locale: string,
|
|
77
|
-
applicantDetails:
|
|
77
|
+
applicantDetails: Map<string,string>|undefined,
|
|
78
78
|
journeyCallback: IDWiseJourneyCallbacks,
|
|
79
79
|
stepCallback: IDWiseStepCallbacks
|
|
80
80
|
): void;
|
|
@@ -105,7 +105,7 @@ declare const IDWiseTheme: {
|
|
|
105
105
|
SYSTEM_DEFAULT: 'SYSTEM_DEFAULT';
|
|
106
106
|
};
|
|
107
107
|
|
|
108
|
-
declare const
|
|
108
|
+
declare const ApplicantDetailsKeys: {
|
|
109
109
|
FIRST_NAME: 'first_name';
|
|
110
110
|
LAST_NAME: 'last_name';
|
|
111
111
|
ADDRESS: 'address';
|
|
@@ -113,10 +113,12 @@ declare const ApplicantDetails: {
|
|
|
113
113
|
};
|
|
114
114
|
|
|
115
115
|
export {IDWiseTheme}
|
|
116
|
+
export {ApplicantDetailsKeys}
|
|
116
117
|
// ===== Default Export =====
|
|
117
118
|
declare const IDWiseSDK: {
|
|
118
119
|
IDWise: typeof IDWise;
|
|
119
120
|
IDWiseTheme: typeof IDWiseTheme;
|
|
121
|
+
ApplicantDetailsKeys: typeof ApplicantDetailsKeys;
|
|
120
122
|
IDWiseDynamic: typeof IDWiseDynamic;
|
|
121
123
|
};
|
|
122
124
|
|