mezon-js 2.14.44 → 2.14.45

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
@@ -754,7 +754,7 @@ export interface ApiChannelAppResponse {
754
754
  /** */
755
755
  export interface ApiChannelAttachment {
756
756
  //The UNIX time (for gRPC clients) or ISO string (for REST clients) when the group was created.
757
- create_time?: string;
757
+ create_time_seconds?: number;
758
758
  //
759
759
  filename?: string;
760
760
  //
package/client.ts CHANGED
@@ -1396,7 +1396,7 @@ export class Client {
1396
1396
  uploader: at.uploader,
1397
1397
  url: at.url,
1398
1398
  message_id: at.message_id,
1399
- create_time: at.create_time,
1399
+ create_time_seconds: at.create_time_seconds,
1400
1400
  width: at.width,
1401
1401
  height: at.height,
1402
1402
  });
package/dist/api.gen.d.ts CHANGED
@@ -437,7 +437,7 @@ export interface ApiChannelAppResponse {
437
437
  }
438
438
  /** */
439
439
  export interface ApiChannelAttachment {
440
- create_time?: string;
440
+ create_time_seconds?: number;
441
441
  filename?: string;
442
442
  filesize?: string;
443
443
  filetype?: string;
@@ -41464,7 +41464,7 @@ var Client = class {
41464
41464
  uploader: at.uploader,
41465
41465
  url: at.url,
41466
41466
  message_id: at.message_id,
41467
- create_time: at.create_time,
41467
+ create_time_seconds: at.create_time_seconds,
41468
41468
  width: at.width,
41469
41469
  height: at.height
41470
41470
  });
@@ -41429,7 +41429,7 @@ var Client = class {
41429
41429
  uploader: at.uploader,
41430
41430
  url: at.url,
41431
41431
  message_id: at.message_id,
41432
- create_time: at.create_time,
41432
+ create_time_seconds: at.create_time_seconds,
41433
41433
  width: at.width,
41434
41434
  height: at.height
41435
41435
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mezon-js",
3
- "version": "2.14.44",
3
+ "version": "2.14.45",
4
4
  "scripts": {
5
5
  "build": "npx tsc && npx rollup -c --bundleConfigAsCjs && node build.mjs"
6
6
  },