@pathway-io/core 1.0.11 → 1.0.12

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
@@ -91,9 +91,9 @@ type Message = {
91
91
  deletedAt: Date | null;
92
92
  updatedAt: Date;
93
93
  };
94
- type MessageInputForCreate = {
94
+ type MessageCreateInput = {
95
95
  channelId: number;
96
96
  content: string;
97
97
  };
98
98
 
99
- export { type AuthOtpRequest, type AuthSignInRefreshRequest, type AuthSignInRefreshResponse, type AuthSignInRequest, type AuthSignInResponse, type Message, type MessageInputForCreate, type MessageListQueryParams, colors, fonts };
99
+ export { type AuthOtpRequest, type AuthSignInRefreshRequest, type AuthSignInRefreshResponse, type AuthSignInRequest, type AuthSignInResponse, type Message, type MessageCreateInput, type MessageListQueryParams, colors, fonts };
package/dist/index.d.ts CHANGED
@@ -91,9 +91,9 @@ type Message = {
91
91
  deletedAt: Date | null;
92
92
  updatedAt: Date;
93
93
  };
94
- type MessageInputForCreate = {
94
+ type MessageCreateInput = {
95
95
  channelId: number;
96
96
  content: string;
97
97
  };
98
98
 
99
- export { type AuthOtpRequest, type AuthSignInRefreshRequest, type AuthSignInRefreshResponse, type AuthSignInRequest, type AuthSignInResponse, type Message, type MessageInputForCreate, type MessageListQueryParams, colors, fonts };
99
+ export { type AuthOtpRequest, type AuthSignInRefreshRequest, type AuthSignInRefreshResponse, type AuthSignInRequest, type AuthSignInResponse, type Message, type MessageCreateInput, type MessageListQueryParams, colors, fonts };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pathway-io/core",
3
- "version": "1.0.11",
3
+ "version": "1.0.12",
4
4
  "description": "Shared constants and types for Pathway",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -15,7 +15,7 @@ export type Message = {
15
15
  updatedAt: Date
16
16
  }
17
17
 
18
- export type MessageInputForCreate = {
18
+ export type MessageCreateInput = {
19
19
  channelId: number
20
20
  content: string
21
21
  }