@pathway-io/core 1.0.6 → 1.0.8
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/index.d.mts +15 -1
- package/dist/index.d.ts +15 -1
- package/package.json +1 -1
- package/src/types/index.ts +1 -0
- package/src/types/messages.ts +16 -0
package/dist/index.d.mts
CHANGED
@@ -78,4 +78,18 @@ type AuthSignInRefreshRequest = {
|
|
78
78
|
};
|
79
79
|
type AuthSignInRefreshResponse = AuthSignInResponse;
|
80
80
|
|
81
|
-
|
81
|
+
type MessagesParams = {
|
82
|
+
channelId: number | null;
|
83
|
+
};
|
84
|
+
type Message = {
|
85
|
+
id: number;
|
86
|
+
channel: {
|
87
|
+
id: number;
|
88
|
+
};
|
89
|
+
content: string;
|
90
|
+
createdAt: Date;
|
91
|
+
deletedAt: Date | null;
|
92
|
+
updatedAt: Date;
|
93
|
+
};
|
94
|
+
|
95
|
+
export { type AuthOtpRequest, type AuthSignInRefreshRequest, type AuthSignInRefreshResponse, type AuthSignInRequest, type AuthSignInResponse, type Message, type MessagesParams, colors, fonts };
|
package/dist/index.d.ts
CHANGED
@@ -78,4 +78,18 @@ type AuthSignInRefreshRequest = {
|
|
78
78
|
};
|
79
79
|
type AuthSignInRefreshResponse = AuthSignInResponse;
|
80
80
|
|
81
|
-
|
81
|
+
type MessagesParams = {
|
82
|
+
channelId: number | null;
|
83
|
+
};
|
84
|
+
type Message = {
|
85
|
+
id: number;
|
86
|
+
channel: {
|
87
|
+
id: number;
|
88
|
+
};
|
89
|
+
content: string;
|
90
|
+
createdAt: Date;
|
91
|
+
deletedAt: Date | null;
|
92
|
+
updatedAt: Date;
|
93
|
+
};
|
94
|
+
|
95
|
+
export { type AuthOtpRequest, type AuthSignInRefreshRequest, type AuthSignInRefreshResponse, type AuthSignInRequest, type AuthSignInResponse, type Message, type MessagesParams, colors, fonts };
|
package/package.json
CHANGED
package/src/types/index.ts
CHANGED