@lumiapassport/ui-kit 1.12.2 → 1.12.5
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/iframe/_headers +1 -1
- package/dist/iframe/index.html +1 -1
- package/dist/iframe/kyc/sumsub.html +91 -0
- package/dist/iframe/kyc/sumsub.js +237 -0
- package/dist/iframe/main.js +1 -1
- package/dist/index.cjs +3186 -2634
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +3119 -2567
- package/dist/index.js.map +1 -1
- package/dist/styles.css +1 -1
- package/package.json +2 -3
package/dist/index.d.cts
CHANGED
|
@@ -671,6 +671,7 @@ declare enum PageKey {
|
|
|
671
671
|
AUTH = "auth",
|
|
672
672
|
TERMS_OF_SERVICE = "terms-of-service",
|
|
673
673
|
MAIN_MENU = "main-menu",
|
|
674
|
+
SETTINGS = "settings",
|
|
674
675
|
SEND = "send",
|
|
675
676
|
RECEIVE = "receive",
|
|
676
677
|
BUY = "buy",
|
|
@@ -955,6 +956,7 @@ declare function getUserProfile(): Promise<UserProfile>;
|
|
|
955
956
|
declare function updateUserProfile(updates: UpdateProfileRequest): Promise<UserProfile>;
|
|
956
957
|
|
|
957
958
|
declare const queryClient: QueryClient;
|
|
959
|
+
|
|
958
960
|
declare const wagmiConfig: wagmi.Config<readonly [viem.Chain], {
|
|
959
961
|
[lumiaBeam.id]: viem.HttpTransport<undefined, false>;
|
|
960
962
|
}, readonly wagmi.CreateConnectorFn[]>;
|
package/dist/index.d.ts
CHANGED
|
@@ -671,6 +671,7 @@ declare enum PageKey {
|
|
|
671
671
|
AUTH = "auth",
|
|
672
672
|
TERMS_OF_SERVICE = "terms-of-service",
|
|
673
673
|
MAIN_MENU = "main-menu",
|
|
674
|
+
SETTINGS = "settings",
|
|
674
675
|
SEND = "send",
|
|
675
676
|
RECEIVE = "receive",
|
|
676
677
|
BUY = "buy",
|
|
@@ -955,6 +956,7 @@ declare function getUserProfile(): Promise<UserProfile>;
|
|
|
955
956
|
declare function updateUserProfile(updates: UpdateProfileRequest): Promise<UserProfile>;
|
|
956
957
|
|
|
957
958
|
declare const queryClient: QueryClient;
|
|
959
|
+
|
|
958
960
|
declare const wagmiConfig: wagmi.Config<readonly [viem.Chain], {
|
|
959
961
|
[lumiaBeam.id]: viem.HttpTransport<undefined, false>;
|
|
960
962
|
}, readonly wagmi.CreateConnectorFn[]>;
|