@pathway-io/core 1.0.8 → 1.0.10
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/index.d.mts +3 -3
- package/dist/index.d.ts +3 -3
- package/package.json +1 -1
- package/src/types/messages.ts +2 -2
package/dist/index.d.mts
CHANGED
@@ -78,8 +78,8 @@ type AuthSignInRefreshRequest = {
|
|
78
78
|
};
|
79
79
|
type AuthSignInRefreshResponse = AuthSignInResponse;
|
80
80
|
|
81
|
-
type
|
82
|
-
channelId: number
|
81
|
+
type MessagesQueryParams = {
|
82
|
+
channelId: number;
|
83
83
|
};
|
84
84
|
type Message = {
|
85
85
|
id: number;
|
@@ -92,4 +92,4 @@ type Message = {
|
|
92
92
|
updatedAt: Date;
|
93
93
|
};
|
94
94
|
|
95
|
-
export { type AuthOtpRequest, type AuthSignInRefreshRequest, type AuthSignInRefreshResponse, type AuthSignInRequest, type AuthSignInResponse, type Message, type
|
95
|
+
export { type AuthOtpRequest, type AuthSignInRefreshRequest, type AuthSignInRefreshResponse, type AuthSignInRequest, type AuthSignInResponse, type Message, type MessagesQueryParams, colors, fonts };
|
package/dist/index.d.ts
CHANGED
@@ -78,8 +78,8 @@ type AuthSignInRefreshRequest = {
|
|
78
78
|
};
|
79
79
|
type AuthSignInRefreshResponse = AuthSignInResponse;
|
80
80
|
|
81
|
-
type
|
82
|
-
channelId: number
|
81
|
+
type MessagesQueryParams = {
|
82
|
+
channelId: number;
|
83
83
|
};
|
84
84
|
type Message = {
|
85
85
|
id: number;
|
@@ -92,4 +92,4 @@ type Message = {
|
|
92
92
|
updatedAt: Date;
|
93
93
|
};
|
94
94
|
|
95
|
-
export { type AuthOtpRequest, type AuthSignInRefreshRequest, type AuthSignInRefreshResponse, type AuthSignInRequest, type AuthSignInResponse, type Message, type
|
95
|
+
export { type AuthOtpRequest, type AuthSignInRefreshRequest, type AuthSignInRefreshResponse, type AuthSignInRequest, type AuthSignInResponse, type Message, type MessagesQueryParams, colors, fonts };
|
package/package.json
CHANGED
package/src/types/messages.ts
CHANGED