@pathway-io/core 1.0.26 → 1.0.27
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 +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