@verified-network/verified-custody 0.2.6 → 0.2.8

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/index.d.mts CHANGED
@@ -12,6 +12,8 @@ type VerifiedWalletVault = {
12
12
  address?: string;
13
13
  channel?: "sms" | "email";
14
14
  pk?: string;
15
+ chainId?: number;
16
+ regAddress?: string;
15
17
  };
16
18
  type VerifiedWalletTx = {
17
19
  id: string;
@@ -36,6 +38,10 @@ interface VerifiedCustodyProps {
36
38
  showLogoPage?: boolean;
37
39
  logoPageElement?: React.JSX.Element;
38
40
  logoTimeoutTime?: number;
41
+ dashbordElement?: React.ComponentType<{
42
+ setIsLoading: React.Dispatch<React.SetStateAction<boolean>>;
43
+ [key: string]: any;
44
+ }>;
39
45
  }
40
46
  interface VerifiedCustodyHelpers {
41
47
  sendCoSignerInvitation: (channel: "sms" | "email", cosigerId: string, cretorId: string, hashedCretorPin: string) => Promise<boolean>;
@@ -69,6 +75,9 @@ declare const FTUPage: (props: {
69
75
  setisOnboard?: (isOnboard: boolean) => void;
70
76
  helperFunctions?: VerifiedCustodyHelpers;
71
77
  setIsLoading?: (isLoading: boolean) => void;
78
+ dashbordElement?: React$1.ComponentType<{
79
+ setIsLoading: React$1.Dispatch<React$1.SetStateAction<boolean>>;
80
+ }>;
72
81
  }) => React$1.JSX.Element;
73
82
 
74
83
  declare const EnterPinPage: (props: {
@@ -88,6 +97,7 @@ declare const EnterPinPage: (props: {
88
97
  reqVaultData?: any;
89
98
  reqTxData?: any;
90
99
  setIsLoading: (isLoading: boolean) => void;
100
+ setShowDashboard?: (showDashboard: boolean) => void;
91
101
  helperFunctions?: VerifiedCustodyHelpers;
92
102
  }) => React$1.JSX.Element;
93
103
 
package/dist/index.d.ts CHANGED
@@ -12,6 +12,8 @@ type VerifiedWalletVault = {
12
12
  address?: string;
13
13
  channel?: "sms" | "email";
14
14
  pk?: string;
15
+ chainId?: number;
16
+ regAddress?: string;
15
17
  };
16
18
  type VerifiedWalletTx = {
17
19
  id: string;
@@ -36,6 +38,10 @@ interface VerifiedCustodyProps {
36
38
  showLogoPage?: boolean;
37
39
  logoPageElement?: React.JSX.Element;
38
40
  logoTimeoutTime?: number;
41
+ dashbordElement?: React.ComponentType<{
42
+ setIsLoading: React.Dispatch<React.SetStateAction<boolean>>;
43
+ [key: string]: any;
44
+ }>;
39
45
  }
40
46
  interface VerifiedCustodyHelpers {
41
47
  sendCoSignerInvitation: (channel: "sms" | "email", cosigerId: string, cretorId: string, hashedCretorPin: string) => Promise<boolean>;
@@ -69,6 +75,9 @@ declare const FTUPage: (props: {
69
75
  setisOnboard?: (isOnboard: boolean) => void;
70
76
  helperFunctions?: VerifiedCustodyHelpers;
71
77
  setIsLoading?: (isLoading: boolean) => void;
78
+ dashbordElement?: React$1.ComponentType<{
79
+ setIsLoading: React$1.Dispatch<React$1.SetStateAction<boolean>>;
80
+ }>;
72
81
  }) => React$1.JSX.Element;
73
82
 
74
83
  declare const EnterPinPage: (props: {
@@ -88,6 +97,7 @@ declare const EnterPinPage: (props: {
88
97
  reqVaultData?: any;
89
98
  reqTxData?: any;
90
99
  setIsLoading: (isLoading: boolean) => void;
100
+ setShowDashboard?: (showDashboard: boolean) => void;
91
101
  helperFunctions?: VerifiedCustodyHelpers;
92
102
  }) => React$1.JSX.Element;
93
103