@vpdev2/metakyc 1.0.47 → 1.0.49
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/dist/client/config.d.ts +6 -0
- package/dist/client/config.d.ts.map +1 -1
- package/dist/client/session.d.ts.map +1 -1
- package/dist/hooks/useKycWorkflow.d.ts +2 -2
- package/dist/hooks/useKycWorkflow.d.ts.map +1 -1
- package/dist/index.cjs +15 -15
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +1180 -1193
- package/dist/index.js.map +1 -1
- package/dist/utils/storage.d.ts +7 -5
- package/dist/utils/storage.d.ts.map +1 -1
- package/dist/version.d.ts +1 -1
- package/package.json +1 -1
package/dist/utils/storage.d.ts
CHANGED
|
@@ -1,16 +1,18 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Local storage utilities for persisting workflow state
|
|
2
|
+
* Local storage utilities for persisting workflow step state
|
|
3
3
|
*/
|
|
4
4
|
/**
|
|
5
|
-
*
|
|
5
|
+
* @deprecated Pass applicantId via MetaKYCClientConfig instead.
|
|
6
|
+
* Kept for backward compatibility — will be removed in a future version.
|
|
6
7
|
*/
|
|
7
|
-
export declare function saveApplicantId(
|
|
8
|
+
export declare function saveApplicantId(_applicantId: number): void;
|
|
8
9
|
/**
|
|
9
|
-
*
|
|
10
|
+
* @deprecated Pass applicantId via MetaKYCClientConfig instead.
|
|
11
|
+
* Kept for backward compatibility — will be removed in a future version.
|
|
10
12
|
*/
|
|
11
13
|
export declare function getApplicantId(): number | null;
|
|
12
14
|
/**
|
|
13
|
-
*
|
|
15
|
+
* @deprecated No longer needed — applicant ID is not stored in localStorage.
|
|
14
16
|
*/
|
|
15
17
|
export declare function clearApplicantId(): void;
|
|
16
18
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"storage.d.ts","sourceRoot":"","sources":["../../src/utils/storage.ts"],"names":[],"mappings":"AAAA;;GAEG;AAOH
|
|
1
|
+
{"version":3,"file":"storage.d.ts","sourceRoot":"","sources":["../../src/utils/storage.ts"],"names":[],"mappings":"AAAA;;GAEG;AAOH;;;GAGG;AACH,wBAAgB,eAAe,CAAC,YAAY,EAAE,MAAM,GAAG,IAAI,CAE1D;AAED;;;GAGG;AACH,wBAAgB,cAAc,IAAI,MAAM,GAAG,IAAI,CAE9C;AAED;;GAEG;AACH,wBAAgB,gBAAgB,IAAI,IAAI,CAMvC;AAED;;GAEG;AACH,MAAM,WAAW,sBAAsB;IACrC,WAAW,EAAE,MAAM,CAAC;IACpB,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,MAAM,EAAE,MAAM,CAAC;IACf,WAAW,EAAE,MAAM,CAAC;IACpB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,eAAe,CAAC,EAAE,MAAM,CAAC;CAC1B;AAED;;GAEG;AACH,wBAAgB,iBAAiB,CAAC,KAAK,EAAE,sBAAsB,GAAG,IAAI,CAMrE;AAED;;GAEG;AACH,wBAAgB,gBAAgB,IAAI,sBAAsB,GAAG,IAAI,CAQhE;AAED;;GAEG;AACH,wBAAgB,kBAAkB,IAAI,IAAI,CAMzC;AAED;;GAEG;AACH,wBAAgB,eAAe,IAAI,IAAI,CAGtC"}
|
package/dist/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const SDK_VERSION = "1.0.
|
|
1
|
+
export declare const SDK_VERSION = "1.0.49";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|