@pathway-io/core 1.0.17 → 1.0.18

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/index.d.mts CHANGED
@@ -116,6 +116,7 @@ type User = {
116
116
  lastSignedInAt?: Date;
117
117
  signInCount: number;
118
118
  role: UserRole;
119
+ pictureUrl?: string;
119
120
  };
120
121
 
121
122
  export { type AuthOtpRequest, type AuthSignInRefreshRequest, type AuthSignInRefreshResponse, type AuthSignInRequest, type AuthSignInResponse, type Message, type MessageCreateInput, type MessageListCoercedQueryParams, type MessageListQueryParams, type User, type UserRole, colors, fonts };
package/dist/index.d.ts CHANGED
@@ -116,6 +116,7 @@ type User = {
116
116
  lastSignedInAt?: Date;
117
117
  signInCount: number;
118
118
  role: UserRole;
119
+ pictureUrl?: string;
119
120
  };
120
121
 
121
122
  export { type AuthOtpRequest, type AuthSignInRefreshRequest, type AuthSignInRefreshResponse, type AuthSignInRequest, type AuthSignInResponse, type Message, type MessageCreateInput, type MessageListCoercedQueryParams, type MessageListQueryParams, type User, type UserRole, colors, fonts };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pathway-io/core",
3
- "version": "1.0.17",
3
+ "version": "1.0.18",
4
4
  "description": "Shared constants and types for Pathway",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
package/src/types/user.ts CHANGED
@@ -13,4 +13,5 @@ export type User = {
13
13
  lastSignedInAt?: Date;
14
14
  signInCount: number;
15
15
  role: UserRole;
16
+ pictureUrl?: string;
16
17
  };