@parra/parra-js-sdk 0.3.419 → 0.3.420
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/ParraAPI.d.ts +11 -11
- package/package.json +1 -1
package/dist/ParraAPI.d.ts
CHANGED
@@ -1005,6 +1005,17 @@ export interface ChannelMember {
|
|
1005
1005
|
type: ChannelMemberType;
|
1006
1006
|
roles: Array<ChannelMemberRole>;
|
1007
1007
|
}
|
1008
|
+
export interface Message {
|
1009
|
+
id: string;
|
1010
|
+
created_at: string;
|
1011
|
+
updated_at: string;
|
1012
|
+
deleted_at?: string | null;
|
1013
|
+
tenant_id: string;
|
1014
|
+
channel_id: string;
|
1015
|
+
member_id: string;
|
1016
|
+
user?: TenantUserStub | null;
|
1017
|
+
content: string;
|
1018
|
+
}
|
1008
1019
|
export interface Channel {
|
1009
1020
|
id: string;
|
1010
1021
|
created_at: string;
|
@@ -1046,17 +1057,6 @@ export interface MessageCollectionResponse {
|
|
1046
1057
|
export interface CreateMessageRequestBody {
|
1047
1058
|
content: string;
|
1048
1059
|
}
|
1049
|
-
export interface Message {
|
1050
|
-
id: string;
|
1051
|
-
created_at: string;
|
1052
|
-
updated_at: string;
|
1053
|
-
deleted_at?: string | null;
|
1054
|
-
tenant_id: string;
|
1055
|
-
channel_id: string;
|
1056
|
-
member_id: string;
|
1057
|
-
user?: TenantUserStub | null;
|
1058
|
-
content: string;
|
1059
|
-
}
|
1060
1060
|
export interface FlagMessageRequestBody {
|
1061
1061
|
reason?: string | null;
|
1062
1062
|
}
|