shred-api-client 1.11.13 → 1.11.14

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.
@@ -1,5 +1,5 @@
1
1
  import Context from "./Context";
2
- export type Update = Pick<User, "name" | "profession" | "preferences" | "photoUrl" | "fcmToken">;
2
+ export type Update = Pick<User, "name" | "profession" | "preferences" | "photoUrl" | "fcmToken" | "timezone" | "experienceId">;
3
3
  interface UserAPISchema {
4
4
  getUserInfo: (context: Context) => Promise<User>;
5
5
  isEmailAvaliable: (email: string) => Promise<boolean>;
@@ -109,6 +109,7 @@ type User = {
109
109
  tenantId?: string;
110
110
  editorId?: string;
111
111
  timezone?: string;
112
+ experienceId?: string;
112
113
  customerId: string;
113
114
  role: Role;
114
115
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "shred-api-client",
3
- "version": "1.11.13",
3
+ "version": "1.11.14",
4
4
  "description": "API Client for Shred",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",