@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 +1 -0
- package/dist/index.d.ts +1 -0
- package/package.json +1 -1
- package/src/types/user.ts +1 -0
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