mezon-js 2.7.59 → 2.7.60

Sign up to get free protection for your applications and to get access to all the features.
package/api.gen.ts CHANGED
@@ -302,14 +302,22 @@ export interface ApiChannelMessage {
302
302
 
303
303
  /** */
304
304
  export interface ApiChannelMessageHeader {
305
+ //
306
+ attachment?: string;
307
+ //
308
+ content?: string;
305
309
  //
306
310
  id?: string;
307
311
  //
312
+ mention?: string;
313
+ //
314
+ reaction?: string;
315
+ //
316
+ referece?: string;
317
+ //
318
+ sender_id?: string;
319
+ //
308
320
  timestamp?: string;
309
- // sender id
310
- sender_id: string;
311
- // content
312
- content: string;
313
321
  }
314
322
 
315
323
  /** A list of channel messages, usually a result of a list operation. */
package/dist/api.gen.d.ts CHANGED
@@ -171,10 +171,14 @@ export interface ApiChannelMessage {
171
171
  }
172
172
  /** */
173
173
  export interface ApiChannelMessageHeader {
174
+ attachment?: string;
175
+ content?: string;
174
176
  id?: string;
177
+ mention?: string;
178
+ reaction?: string;
179
+ referece?: string;
180
+ sender_id?: string;
175
181
  timestamp?: string;
176
- sender_id: string;
177
- content: string;
178
182
  }
179
183
  /** A list of channel messages, usually a result of a list operation. */
180
184
  export interface ApiChannelMessageList {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mezon-js",
3
- "version": "2.7.59",
3
+ "version": "2.7.60",
4
4
  "scripts": {
5
5
  "build": "npx tsc && npx rollup -c --bundleConfigAsCjs && node build.mjs"
6
6
  },