@pathway-io/core 1.0.12 → 1.0.13
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/index.d.mts +4 -1
- package/dist/index.d.ts +4 -1
- package/package.json +1 -1
- package/src/types/messages.ts +4 -0
package/dist/index.d.mts
CHANGED
@@ -79,6 +79,9 @@ type AuthSignInRefreshRequest = {
|
|
79
79
|
type AuthSignInRefreshResponse = AuthSignInResponse;
|
80
80
|
|
81
81
|
type MessageListQueryParams = {
|
82
|
+
channelId: string;
|
83
|
+
};
|
84
|
+
type MessageListCoercedQueryParams = {
|
82
85
|
channelId: number;
|
83
86
|
};
|
84
87
|
type Message = {
|
@@ -96,4 +99,4 @@ type MessageCreateInput = {
|
|
96
99
|
content: string;
|
97
100
|
};
|
98
101
|
|
99
|
-
export { type AuthOtpRequest, type AuthSignInRefreshRequest, type AuthSignInRefreshResponse, type AuthSignInRequest, type AuthSignInResponse, type Message, type MessageCreateInput, type MessageListQueryParams, colors, fonts };
|
102
|
+
export { type AuthOtpRequest, type AuthSignInRefreshRequest, type AuthSignInRefreshResponse, type AuthSignInRequest, type AuthSignInResponse, type Message, type MessageCreateInput, type MessageListCoercedQueryParams, type MessageListQueryParams, colors, fonts };
|
package/dist/index.d.ts
CHANGED
@@ -79,6 +79,9 @@ type AuthSignInRefreshRequest = {
|
|
79
79
|
type AuthSignInRefreshResponse = AuthSignInResponse;
|
80
80
|
|
81
81
|
type MessageListQueryParams = {
|
82
|
+
channelId: string;
|
83
|
+
};
|
84
|
+
type MessageListCoercedQueryParams = {
|
82
85
|
channelId: number;
|
83
86
|
};
|
84
87
|
type Message = {
|
@@ -96,4 +99,4 @@ type MessageCreateInput = {
|
|
96
99
|
content: string;
|
97
100
|
};
|
98
101
|
|
99
|
-
export { type AuthOtpRequest, type AuthSignInRefreshRequest, type AuthSignInRefreshResponse, type AuthSignInRequest, type AuthSignInResponse, type Message, type MessageCreateInput, type MessageListQueryParams, colors, fonts };
|
102
|
+
export { type AuthOtpRequest, type AuthSignInRefreshRequest, type AuthSignInRefreshResponse, type AuthSignInRequest, type AuthSignInResponse, type Message, type MessageCreateInput, type MessageListCoercedQueryParams, type MessageListQueryParams, colors, fonts };
|
package/package.json
CHANGED