@pathway-io/core 1.0.6 → 1.0.7

Sign up to get free protection for your applications and to get access to all the features.
package/dist/index.d.mts CHANGED
@@ -78,4 +78,8 @@ type AuthSignInRefreshRequest = {
78
78
  };
79
79
  type AuthSignInRefreshResponse = AuthSignInResponse;
80
80
 
81
- export { type AuthOtpRequest, type AuthSignInRefreshRequest, type AuthSignInRefreshResponse, type AuthSignInRequest, type AuthSignInResponse, colors, fonts };
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
- export { type AuthOtpRequest, type AuthSignInRefreshRequest, type AuthSignInRefreshResponse, type AuthSignInRequest, type AuthSignInResponse, colors, fonts };
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pathway-io/core",
3
- "version": "1.0.6",
3
+ "version": "1.0.7",
4
4
  "description": "Shared constants and types for Pathway",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -1 +1,2 @@
1
1
  export * from './auth'
2
+ export * from './messages'
@@ -0,0 +1,3 @@
1
+ export type ChannelMessagesParams = {
2
+ channelId: number
3
+ }