omnipay-reactnative-sdk 1.3.0 → 1.3.1
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.
|
@@ -62,7 +62,7 @@ declare const Omnipay: {
|
|
|
62
62
|
color: string;
|
|
63
63
|
env: "dev" | "prod";
|
|
64
64
|
preAuthKey: string;
|
|
65
|
-
onVerificationSuccessful: (
|
|
65
|
+
onVerificationSuccessful: (faceAuthToken: string) => void;
|
|
66
66
|
}) => React.JSX.Element;
|
|
67
67
|
};
|
|
68
68
|
export default Omnipay;
|
|
@@ -3,7 +3,7 @@ type OmnipayProps = {
|
|
|
3
3
|
color: string;
|
|
4
4
|
env: 'dev' | 'prod';
|
|
5
5
|
preAuthKey: string;
|
|
6
|
-
onVerificationSuccessful: (
|
|
6
|
+
onVerificationSuccessful: (faceAuthToken: string) => void;
|
|
7
7
|
};
|
|
8
8
|
export declare const FaceVerification: ({ color, env, preAuthKey, onVerificationSuccessful, }: OmnipayProps) => React.JSX.Element;
|
|
9
9
|
export {};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"FaceVerification.d.ts","sourceRoot":"","sources":["../../../../src/components/views/FaceVerification.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAqC,MAAM,OAAO,CAAC;AAW1D,KAAK,YAAY,GAAG;IAClB,KAAK,EAAE,MAAM,CAAC;IACd,GAAG,EAAE,KAAK,GAAG,MAAM,CAAC;IACpB,UAAU,EAAE,MAAM,CAAC;IACnB,wBAAwB,EAAE,CAAC,
|
|
1
|
+
{"version":3,"file":"FaceVerification.d.ts","sourceRoot":"","sources":["../../../../src/components/views/FaceVerification.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAqC,MAAM,OAAO,CAAC;AAW1D,KAAK,YAAY,GAAG;IAClB,KAAK,EAAE,MAAM,CAAC;IACd,GAAG,EAAE,KAAK,GAAG,MAAM,CAAC;IACpB,UAAU,EAAE,MAAM,CAAC;IACnB,wBAAwB,EAAE,CAAC,aAAa,EAAE,MAAM,KAAK,IAAI,CAAC;CAC3D,CAAC;AAIF,eAAO,MAAM,gBAAgB,GAAI,uDAK9B,YAAY,KAAG,KAAK,CAAC,GAAG,CAAC,OA4E3B,CAAC"}
|
package/package.json
CHANGED
|
@@ -13,7 +13,7 @@ type OmnipayProps = {
|
|
|
13
13
|
color: string;
|
|
14
14
|
env: 'dev' | 'prod';
|
|
15
15
|
preAuthKey: string;
|
|
16
|
-
onVerificationSuccessful: (
|
|
16
|
+
onVerificationSuccessful: (faceAuthToken: string) => void;
|
|
17
17
|
};
|
|
18
18
|
|
|
19
19
|
type Status = 'error' | 'loading' | 'success';
|