@pathway-io/core 1.0.11 → 1.0.12
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/index.d.mts +2 -2
- package/dist/index.d.ts +2 -2
- package/package.json +1 -1
- package/src/types/messages.ts +1 -1
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
|
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
|
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
|
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
|
99
|
+
export { type AuthOtpRequest, type AuthSignInRefreshRequest, type AuthSignInRefreshResponse, type AuthSignInRequest, type AuthSignInResponse, type Message, type MessageCreateInput, type MessageListQueryParams, colors, fonts };
|
package/package.json
CHANGED