@verychat/channel-protos 1.0.34 → 1.0.35

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.
@@ -170,7 +170,8 @@ message GetMessagesResponse {
170
170
 
171
171
  message GetNewChannelMessageRequest {
172
172
  int32 userId = 1;
173
- optional int32 page = 2;
173
+ optional string cursorId = 2;
174
+ optional int32 page = 3;
174
175
  }
175
176
 
176
177
  message GetNewChannelMessageResponse {
@@ -143,6 +143,7 @@ export interface GetMessagesResponse {
143
143
  }
144
144
  export interface GetNewChannelMessageRequest {
145
145
  userId: number;
146
+ cursorId?: string | undefined;
146
147
  page?: number | undefined;
147
148
  }
148
149
  export interface GetNewChannelMessageResponse {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@verychat/channel-protos",
3
- "version": "1.0.34",
3
+ "version": "1.0.35",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -201,6 +201,7 @@ export interface GetMessagesResponse {
201
201
 
202
202
  export interface GetNewChannelMessageRequest {
203
203
  userId: number;
204
+ cursorId?: string | undefined;
204
205
  page?: number | undefined;
205
206
  }
206
207