mezon-js 2.13.12 → 2.13.14

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
@@ -676,6 +676,10 @@ export interface ApiChannelCanvasItem {
676
676
  is_default?: boolean;
677
677
  //
678
678
  title?: string;
679
+ // update time
680
+ update_time?: string;
681
+ // create time
682
+ create_time?: string;
679
683
  }
680
684
 
681
685
  /** */
@@ -2721,7 +2725,7 @@ export interface ApiUser {
2721
2725
  // list nick name
2722
2726
  list_nick_names?: Array<string>;
2723
2727
  // phone number
2724
- phone_number?: number;
2728
+ phone_number?: string;
2725
2729
  }
2726
2730
 
2727
2731
  /** */
package/dist/api.gen.d.ts CHANGED
@@ -389,6 +389,8 @@ export interface ApiChannelCanvasItem {
389
389
  id?: string;
390
390
  is_default?: boolean;
391
391
  title?: string;
392
+ update_time?: string;
393
+ create_time?: string;
392
394
  }
393
395
  /** */
394
396
  export interface ApiChannelCanvasListResponse {
@@ -1554,7 +1556,7 @@ export interface ApiUser {
1554
1556
  username?: string;
1555
1557
  mezon_id?: string;
1556
1558
  list_nick_names?: Array<string>;
1557
- phone_number?: number;
1559
+ phone_number?: string;
1558
1560
  }
1559
1561
  /** */
1560
1562
  export interface ApiUserActivity {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mezon-js",
3
- "version": "2.13.12",
3
+ "version": "2.13.14",
4
4
  "scripts": {
5
5
  "build": "npx tsc && npx rollup -c --bundleConfigAsCjs && node build.mjs"
6
6
  },