mezon-js 2.10.54 → 2.10.55

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/api.gen.ts CHANGED
@@ -2304,6 +2304,8 @@ export interface ApiTokenSentEvent {
2304
2304
  sender_name?: string;
2305
2305
  //
2306
2306
  extra_attribute?: string;
2307
+ //
2308
+ transaction_id?: string;
2307
2309
  }
2308
2310
 
2309
2311
  /** Update a user's account details. */
package/client.ts CHANGED
@@ -1649,6 +1649,7 @@ export class Client {
1649
1649
  id: at.id,
1650
1650
  uploader: at.uploader,
1651
1651
  url: at.url,
1652
+ message_id: at.message_id,
1652
1653
  create_time: at.create_time,
1653
1654
  width: at.width,
1654
1655
  height: at.height,
package/dist/api.gen.d.ts CHANGED
@@ -1335,6 +1335,7 @@ export interface ApiTokenSentEvent {
1335
1335
  sender_id?: string;
1336
1336
  sender_name?: string;
1337
1337
  extra_attribute?: string;
1338
+ transaction_id?: string;
1338
1339
  }
1339
1340
  /** Update a user's account details. */
1340
1341
  export interface ApiUpdateAccountRequest {
@@ -8783,6 +8783,7 @@ var Client = class {
8783
8783
  id: at.id,
8784
8784
  uploader: at.uploader,
8785
8785
  url: at.url,
8786
+ message_id: at.message_id,
8786
8787
  create_time: at.create_time,
8787
8788
  width: at.width,
8788
8789
  height: at.height
@@ -8749,6 +8749,7 @@ var Client = class {
8749
8749
  id: at.id,
8750
8750
  uploader: at.uploader,
8751
8751
  url: at.url,
8752
+ message_id: at.message_id,
8752
8753
  create_time: at.create_time,
8753
8754
  width: at.width,
8754
8755
  height: at.height
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "mezon-js",
3
3
 
4
- "version": "2.10.54",
4
+ "version": "2.10.55",
5
5
 
6
6
  "scripts": {
7
7
  "build": "npx tsc && npx rollup -c --bundleConfigAsCjs && node build.mjs"