@pathway-io/core 1.0.19 → 1.0.20
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 +4 -1
- package/dist/index.d.ts +4 -1
- package/package.json +1 -1
- package/src/index.ts +3 -3
- package/src/types/user.ts +4 -0
package/dist/index.d.mts
CHANGED
@@ -153,5 +153,8 @@ type User = {
|
|
153
153
|
role: UserRole;
|
154
154
|
pictureUrl?: string;
|
155
155
|
};
|
156
|
+
type UserUpdateEmailInput = {
|
157
|
+
email: string;
|
158
|
+
};
|
156
159
|
|
157
|
-
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 };
|
160
|
+
export { type AuthOtpRequest, type AuthSignInRefreshRequest, type AuthSignInRefreshResponse, type AuthSignInRequest, type AuthSignInResponse, type Message, type MessageCreateInput, type MessageListCoercedQueryParams, type MessageListQueryParams, type User, type UserRole, type UserUpdateEmailInput, colors, fonts };
|
package/dist/index.d.ts
CHANGED
@@ -153,5 +153,8 @@ type User = {
|
|
153
153
|
role: UserRole;
|
154
154
|
pictureUrl?: string;
|
155
155
|
};
|
156
|
+
type UserUpdateEmailInput = {
|
157
|
+
email: string;
|
158
|
+
};
|
156
159
|
|
157
|
-
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 };
|
160
|
+
export { type AuthOtpRequest, type AuthSignInRefreshRequest, type AuthSignInRefreshResponse, type AuthSignInRequest, type AuthSignInResponse, type Message, type MessageCreateInput, type MessageListCoercedQueryParams, type MessageListQueryParams, type User, type UserRole, type UserUpdateEmailInput, colors, fonts };
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
@@ -1,3 +1,3 @@
|
|
1
|
-
export * from
|
2
|
-
export * from
|
3
|
-
export * from
|
1
|
+
export * from "./functions";
|
2
|
+
export * from "./styles";
|
3
|
+
export * from "./types";
|