skikrumb-api 2.1.7 → 2.1.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/models.d.ts +2 -1
- package/package.json +1 -1
package/dist/models.d.ts
CHANGED
|
@@ -103,6 +103,7 @@ export interface ExternalUserRequest {
|
|
|
103
103
|
nickName?: string;
|
|
104
104
|
providerId?: string;
|
|
105
105
|
providerName?: string;
|
|
106
|
+
avatar?: string | null;
|
|
106
107
|
}
|
|
107
108
|
export interface ExternalUserResponse {
|
|
108
109
|
success: boolean;
|
|
@@ -168,7 +169,7 @@ export interface SharePreviewResponse {
|
|
|
168
169
|
account_id: string;
|
|
169
170
|
name: string;
|
|
170
171
|
email: string;
|
|
171
|
-
avatar: string;
|
|
172
|
+
avatar: string | null;
|
|
172
173
|
};
|
|
173
174
|
share_type: 'admin' | 'specific_profiles';
|
|
174
175
|
profiles: Array<{
|