@pathway-io/core 1.0.26 → 1.0.27
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/index.d.mts +5 -1
- package/dist/index.d.ts +5 -1
- package/package.json +1 -1
- package/src/types/user.ts +5 -0
package/dist/index.d.mts
CHANGED
@@ -168,5 +168,9 @@ type User = {
|
|
168
168
|
type UserUpdateEmailInput = {
|
169
169
|
email: string;
|
170
170
|
};
|
171
|
+
type UserUpdateNameInput = {
|
172
|
+
firstName: string;
|
173
|
+
lastName: string;
|
174
|
+
};
|
171
175
|
|
172
|
-
export { type AuthOtpRequest, type AuthSignInRefreshRequest, type AuthSignInRefreshResponse, type AuthSignInRequest, type AuthSignInResponse, type Message, type MessageCreateRequest, type MessageListCoercedQueryParams, type MessageListQueryParams, type User, type UserRole, type UserUpdateEmailInput, colors, fonts };
|
176
|
+
export { type AuthOtpRequest, type AuthSignInRefreshRequest, type AuthSignInRefreshResponse, type AuthSignInRequest, type AuthSignInResponse, type Message, type MessageCreateRequest, type MessageListCoercedQueryParams, type MessageListQueryParams, type User, type UserRole, type UserUpdateEmailInput, type UserUpdateNameInput, colors, fonts };
|
package/dist/index.d.ts
CHANGED
@@ -168,5 +168,9 @@ type User = {
|
|
168
168
|
type UserUpdateEmailInput = {
|
169
169
|
email: string;
|
170
170
|
};
|
171
|
+
type UserUpdateNameInput = {
|
172
|
+
firstName: string;
|
173
|
+
lastName: string;
|
174
|
+
};
|
171
175
|
|
172
|
-
export { type AuthOtpRequest, type AuthSignInRefreshRequest, type AuthSignInRefreshResponse, type AuthSignInRequest, type AuthSignInResponse, type Message, type MessageCreateRequest, type MessageListCoercedQueryParams, type MessageListQueryParams, type User, type UserRole, type UserUpdateEmailInput, colors, fonts };
|
176
|
+
export { type AuthOtpRequest, type AuthSignInRefreshRequest, type AuthSignInRefreshResponse, type AuthSignInRequest, type AuthSignInResponse, type Message, type MessageCreateRequest, type MessageListCoercedQueryParams, type MessageListQueryParams, type User, type UserRole, type UserUpdateEmailInput, type UserUpdateNameInput, colors, fonts };
|
package/package.json
CHANGED