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.
Files changed (2) hide show
  1. package/dist/models.d.ts +2 -1
  2. 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<{
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "skikrumb-api",
3
- "version": "2.1.7",
3
+ "version": "2.1.8",
4
4
  "description": "Wrapper for the skiKrumb API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",