web3bio-profile-kit 0.1.43 → 0.2.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.
- package/dist/types/hook.d.ts +4 -2
- package/package.json +1 -1
package/dist/types/hook.d.ts
CHANGED
|
@@ -98,12 +98,14 @@ export interface ProfileResponse extends NSResponse {
|
|
|
98
98
|
createdAt: string | null;
|
|
99
99
|
/** Profile status */
|
|
100
100
|
status: string | null;
|
|
101
|
-
/** Error message if any */
|
|
102
|
-
error?: string;
|
|
103
101
|
/** Social platform links */
|
|
104
102
|
links: SocialLinks;
|
|
103
|
+
/** Web3bio profile page config **/
|
|
104
|
+
widgets: string;
|
|
105
105
|
/** Social metrics */
|
|
106
106
|
social: SocialRecord | {};
|
|
107
|
+
/** Error message if any */
|
|
108
|
+
error?: string;
|
|
107
109
|
}
|
|
108
110
|
/**
|
|
109
111
|
* Name service response from the API
|