@pathway-io/core 1.0.8 → 1.0.9

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 CHANGED
@@ -79,7 +79,7 @@ type AuthSignInRefreshRequest = {
79
79
  type AuthSignInRefreshResponse = AuthSignInResponse;
80
80
 
81
81
  type MessagesParams = {
82
- channelId: number | null;
82
+ channelId: number;
83
83
  };
84
84
  type Message = {
85
85
  id: number;
package/dist/index.d.ts CHANGED
@@ -79,7 +79,7 @@ type AuthSignInRefreshRequest = {
79
79
  type AuthSignInRefreshResponse = AuthSignInResponse;
80
80
 
81
81
  type MessagesParams = {
82
- channelId: number | null;
82
+ channelId: number;
83
83
  };
84
84
  type Message = {
85
85
  id: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pathway-io/core",
3
- "version": "1.0.8",
3
+ "version": "1.0.9",
4
4
  "description": "Shared constants and types for Pathway",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -1,5 +1,5 @@
1
1
  export type MessagesParams = {
2
- channelId: number | null
2
+ channelId: number
3
3
  }
4
4
 
5
5
  export type Message = {