@qrush/types 2.1.79 → 2.1.80
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/Social.d.ts +7 -0
- package/package.json +1 -1
package/dist/Social.d.ts
CHANGED
|
@@ -54,6 +54,13 @@ export interface ISocialProfile {
|
|
|
54
54
|
guidelinesAccepted?: boolean;
|
|
55
55
|
visibility: ISocialProfileVisibility;
|
|
56
56
|
}
|
|
57
|
+
export interface IUpdateSocialProfileRequest {
|
|
58
|
+
/** Dot-notation fields to update, e.g. { bio: 'Hello', 'visibility.bio': 'all' } */
|
|
59
|
+
fields: Record<string, unknown>;
|
|
60
|
+
}
|
|
61
|
+
export interface IUpdateSocialProfileResponse {
|
|
62
|
+
success: boolean;
|
|
63
|
+
}
|
|
57
64
|
export interface ISocialEntry {
|
|
58
65
|
name: string;
|
|
59
66
|
avatarURL: string;
|