@pathway-io/core 1.0.6 → 1.0.7
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/index.ts +1 -0
- package/src/types/messages.ts +3 -0
package/dist/index.d.mts
CHANGED
@@ -78,4 +78,8 @@ type AuthSignInRefreshRequest = {
|
|
78
78
|
};
|
79
79
|
type AuthSignInRefreshResponse = AuthSignInResponse;
|
80
80
|
|
81
|
-
|
81
|
+
type ChannelMessagesParams = {
|
82
|
+
channelId: number;
|
83
|
+
};
|
84
|
+
|
85
|
+
export { type AuthOtpRequest, type AuthSignInRefreshRequest, type AuthSignInRefreshResponse, type AuthSignInRequest, type AuthSignInResponse, type ChannelMessagesParams, colors, fonts };
|
package/dist/index.d.ts
CHANGED
@@ -78,4 +78,8 @@ type AuthSignInRefreshRequest = {
|
|
78
78
|
};
|
79
79
|
type AuthSignInRefreshResponse = AuthSignInResponse;
|
80
80
|
|
81
|
-
|
81
|
+
type ChannelMessagesParams = {
|
82
|
+
channelId: number;
|
83
|
+
};
|
84
|
+
|
85
|
+
export { type AuthOtpRequest, type AuthSignInRefreshRequest, type AuthSignInRefreshResponse, type AuthSignInRequest, type AuthSignInResponse, type ChannelMessagesParams, colors, fonts };
|
package/package.json
CHANGED
package/src/types/index.ts
CHANGED