mezon-js 2.12.58 → 2.12.59

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
@@ -751,7 +751,7 @@ export interface ApiChannelDescription {
751
751
  //
752
752
  is_online?: Array<boolean>;
753
753
  //
754
- avatar_url?: string;
754
+ topic?: string;
755
755
  //The channel type.
756
756
  type?: number;
757
757
  //
package/client.ts CHANGED
@@ -478,7 +478,7 @@ export interface ApiUpdateChannelDescRequest {
478
478
  //
479
479
  e2ee?: number;
480
480
  //
481
- avatar_url?: string;
481
+ topic?: string;
482
482
  //
483
483
  age_restricted?: number;
484
484
  }
package/dist/api.gen.d.ts CHANGED
@@ -429,7 +429,7 @@ export interface ApiChannelDescription {
429
429
  meeting_uri?: string;
430
430
  parent_id?: string;
431
431
  is_online?: Array<boolean>;
432
- avatar_url?: string;
432
+ topic?: string;
433
433
  type?: number;
434
434
  update_time_seconds?: number;
435
435
  user_id?: Array<string>;
package/dist/client.d.ts CHANGED
@@ -264,7 +264,7 @@ export interface ApiUpdateChannelDescRequest {
264
264
  /** The app url of channel */
265
265
  app_id: string | undefined;
266
266
  e2ee?: number;
267
- avatar_url?: string;
267
+ topic?: string;
268
268
  age_restricted?: number;
269
269
  }
270
270
  /** Add users to a channel. */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mezon-js",
3
- "version": "2.12.58",
3
+ "version": "2.12.59",
4
4
  "scripts": {
5
5
  "build": "npx tsc && npx rollup -c --bundleConfigAsCjs && node build.mjs"
6
6
  },