@omelhorsite/sdk 0.4.4 → 0.4.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.
|
@@ -78,14 +78,17 @@ export interface UserSearchResult {
|
|
|
78
78
|
export interface UpdateAccountInput {
|
|
79
79
|
readonly handle?: string;
|
|
80
80
|
readonly name?: string;
|
|
81
|
-
|
|
81
|
+
/** `null` clears it. */
|
|
82
|
+
readonly bio?: string | null;
|
|
82
83
|
readonly countryCode?: string;
|
|
83
84
|
readonly emailIsPublic?: boolean;
|
|
84
85
|
readonly genderIsPublic?: boolean;
|
|
85
86
|
readonly gender?: string;
|
|
86
87
|
readonly libraryPublic?: boolean;
|
|
87
|
-
|
|
88
|
-
readonly
|
|
88
|
+
/** `null` clears it. */
|
|
89
|
+
readonly libraryName?: string | null;
|
|
90
|
+
/** `null` clears it. */
|
|
91
|
+
readonly libraryDescription?: string | null;
|
|
89
92
|
/** Whether friends may see what you are listening to. */
|
|
90
93
|
readonly shareListening?: boolean;
|
|
91
94
|
}
|
package/package.json
CHANGED