@incodetech/welcome 1.85.0-20251219230908.0 → 1.85.0-20251223153148.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.
|
@@ -238,8 +238,12 @@ tokboxApiKey, darkMode, hostingApp, unsafeMode, customHeaders, fingerprintApiKey
|
|
|
238
238
|
setTheme: <T extends import('../../types/src').IncodeTheme>(customTheme: T) => import('../../types/src').IncodeTheme;
|
|
239
239
|
sendOTPSMS: typeof sendOTPSMS;
|
|
240
240
|
compareOTP: typeof compareOTP;
|
|
241
|
-
getFinishStatus: (flowId: string, { token }: {
|
|
241
|
+
getFinishStatus: (flowId: string, { token, payload, }: {
|
|
242
242
|
token: string;
|
|
243
|
+
payload?: {
|
|
244
|
+
provider: string;
|
|
245
|
+
value: string;
|
|
246
|
+
};
|
|
243
247
|
}) => Promise<{
|
|
244
248
|
redirectionUrl: string;
|
|
245
249
|
action: "none" | "approved" | "rejected";
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { default as React } from 'react';
|
|
2
|
+
export declare const InformationVerificationResults: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
2
3
|
interface EkybProps {
|
|
3
4
|
goNext: () => void;
|
|
4
5
|
verificationFields?: string[];
|
|
@@ -1,5 +1,9 @@
|
|
|
1
|
-
declare const getFinishStatus: (flowId: string | undefined | null, { token }: {
|
|
1
|
+
declare const getFinishStatus: (flowId: string | undefined | null, { token, payload, }: {
|
|
2
2
|
token: string;
|
|
3
|
+
payload?: {
|
|
4
|
+
provider: string;
|
|
5
|
+
value: string;
|
|
6
|
+
};
|
|
3
7
|
}) => Promise<{
|
|
4
8
|
redirectionUrl: string;
|
|
5
9
|
action: 'approved' | 'rejected' | 'none';
|