@verychat/channel-protos 1.0.17 → 1.0.18

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.
@@ -61,10 +61,8 @@ message GetMessageViewCountResponse {
61
61
 
62
62
  message CreateMessageRequest {
63
63
  string channelId = 1;
64
- optional string title = 2;
65
- int32 userId = 3;
66
- CreateMessageDto dto = 4;
67
- int32 lastChatSeq = 5;
64
+ int32 userId = 2;
65
+ CreateMessageDto dto = 3;
68
66
  }
69
67
 
70
68
  message CreateMessageResponse {
@@ -173,6 +171,7 @@ message GetHistorysResponse {
173
171
  message HoldMessageRequest {
174
172
  string channelId = 1;
175
173
  int32 seq = 2;
174
+ int32 userId = 3;
176
175
  }
177
176
 
178
177
  message GetMembersRequest {
@@ -54,10 +54,8 @@ export interface GetMessageViewCountResponse_ViewCountEntry {
54
54
  }
55
55
  export interface CreateMessageRequest {
56
56
  channelId: string;
57
- title?: string | undefined;
58
57
  userId: number;
59
58
  dto: CreateMessageDto | undefined;
60
- lastChatSeq: number;
61
59
  }
62
60
  export interface CreateMessageResponse {
63
61
  seq: number;
@@ -146,6 +144,7 @@ export interface GetHistorysResponse {
146
144
  export interface HoldMessageRequest {
147
145
  channelId: string;
148
146
  seq: number;
147
+ userId: number;
149
148
  }
150
149
  export interface GetMembersRequest {
151
150
  channelId: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@verychat/channel-protos",
3
- "version": "1.0.17",
3
+ "version": "1.0.18",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -87,10 +87,8 @@ export interface GetMessageViewCountResponse_ViewCountEntry {
87
87
 
88
88
  export interface CreateMessageRequest {
89
89
  channelId: string;
90
- title?: string | undefined;
91
90
  userId: number;
92
91
  dto: CreateMessageDto | undefined;
93
- lastChatSeq: number;
94
92
  }
95
93
 
96
94
  export interface CreateMessageResponse {
@@ -199,6 +197,7 @@ export interface GetHistorysResponse {
199
197
  export interface HoldMessageRequest {
200
198
  channelId: string;
201
199
  seq: number;
200
+ userId: number;
202
201
  }
203
202
 
204
203
  export interface GetMembersRequest {