mezon-js 2.10.97 → 2.10.98

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
@@ -761,8 +761,8 @@ export interface ApiChannelDescription {
761
761
  meeting_code?: string;
762
762
  //
763
763
  meeting_uri?: string;
764
- //The parrent channel this message belongs to.
765
- parrent_id?: string;
764
+ //The parent channel this message belongs to.
765
+ parent_id?: string;
766
766
  //
767
767
  is_online?: Array<boolean>;
768
768
  //
@@ -1111,8 +1111,8 @@ export interface ApiCreateChannelDescRequest {
1111
1111
  channel_private?: number;
1112
1112
  //
1113
1113
  clan_id?: string;
1114
- //The parrent channel this message belongs to.
1115
- parrent_id?: string;
1114
+ //The parent channel this message belongs to.
1115
+ parent_id?: string;
1116
1116
  //The channel type.
1117
1117
  type?: number;
1118
1118
  //The users to add.
@@ -1417,7 +1417,7 @@ export interface ApiHashtagDm {
1417
1417
  //
1418
1418
  meeting_code?: string;
1419
1419
  //
1420
- parrent_id?: string;
1420
+ parent_id?: string;
1421
1421
  //
1422
1422
  type?: number;
1423
1423
  }
package/dist/api.gen.d.ts CHANGED
@@ -440,7 +440,7 @@ export interface ApiChannelDescription {
440
440
  last_sent_message?: ApiChannelMessageHeader;
441
441
  meeting_code?: string;
442
442
  meeting_uri?: string;
443
- parrent_id?: string;
443
+ parent_id?: string;
444
444
  is_online?: Array<boolean>;
445
445
  topic?: string;
446
446
  type?: number;
@@ -635,7 +635,7 @@ export interface ApiCreateChannelDescRequest {
635
635
  channel_label?: string;
636
636
  channel_private?: number;
637
637
  clan_id?: string;
638
- parrent_id?: string;
638
+ parent_id?: string;
639
639
  type?: number;
640
640
  user_ids?: Array<string>;
641
641
  }
@@ -811,7 +811,7 @@ export interface ApiHashtagDm {
811
811
  clan_id?: string;
812
812
  clan_name?: string;
813
813
  meeting_code?: string;
814
- parrent_id?: string;
814
+ parent_id?: string;
815
815
  type?: number;
816
816
  }
817
817
  /** */
package/dist/socket.d.ts CHANGED
@@ -313,7 +313,7 @@ export interface ChannelUpdatedEvent {
313
313
  clan_id: string;
314
314
  category_id: string;
315
315
  creator_id: string;
316
- parrent_id: string;
316
+ parent_id: string;
317
317
  channel_id: string;
318
318
  channel_label: string;
319
319
  channel_type: number;
@@ -331,7 +331,7 @@ export interface ChannelCreatedEvent {
331
331
  clan_id: string;
332
332
  category_id: string;
333
333
  creator_id: string;
334
- parrent_id: string;
334
+ parent_id: string;
335
335
  channel_id: string;
336
336
  channel_label: string;
337
337
  channel_private: number;
@@ -345,7 +345,7 @@ export interface ChannelDeletedEvent {
345
345
  category_id: string;
346
346
  channel_id: string;
347
347
  deletor: string;
348
- parrent_id: string;
348
+ parent_id: string;
349
349
  }
350
350
  export interface StickerCreateEvent {
351
351
  clan_id: string;
@@ -515,7 +515,7 @@ export interface ChannelDescription {
515
515
  channel_private?: number;
516
516
  meeting_code?: string;
517
517
  clan_name?: string;
518
- parrent_id?: string;
518
+ parent_id?: string;
519
519
  last_sent_message?: ApiChannelMessageHeader;
520
520
  }
521
521
  export interface HashtagDm {
@@ -526,7 +526,7 @@ export interface HashtagDm {
526
526
  meeting_code?: string;
527
527
  type?: number;
528
528
  channel_private?: number;
529
- parrent_id?: string;
529
+ parent_id?: string;
530
530
  }
531
531
  export interface NotificationSetting {
532
532
  id?: string;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "mezon-js",
3
3
 
4
- "version": "2.10.97",
4
+ "version": "2.10.98",
5
5
 
6
6
  "scripts": {
7
7
  "build": "npx tsc && npx rollup -c --bundleConfigAsCjs && node build.mjs"
package/socket.ts CHANGED
@@ -456,8 +456,8 @@ export interface ChannelUpdatedEvent {
456
456
  category_id: string;
457
457
  // creator
458
458
  creator_id: string;
459
- // parrent_id
460
- parrent_id: string;
459
+ // parent_id
460
+ parent_id: string;
461
461
  // channel id
462
462
  channel_id: string;
463
463
  // channel label
@@ -491,8 +491,8 @@ export interface ChannelCreatedEvent {
491
491
  category_id: string;
492
492
  // creator
493
493
  creator_id: string;
494
- // parrent_id
495
- parrent_id: string;
494
+ // parent_id
495
+ parent_id: string;
496
496
  // channel id
497
497
  channel_id: string;
498
498
  // channel label
@@ -518,8 +518,8 @@ export interface ChannelDeletedEvent {
518
518
  channel_id: string;
519
519
  // deletor
520
520
  deletor: string;
521
- // parrent id
522
- parrent_id: string;
521
+ // parent id
522
+ parent_id: string;
523
523
  }
524
524
 
525
525
  export interface StickerCreateEvent {
@@ -756,7 +756,7 @@ export interface ChannelDescription {
756
756
  //
757
757
  clan_name?: string;
758
758
  //
759
- parrent_id?: string;
759
+ parent_id?: string;
760
760
  //
761
761
  last_sent_message?: ApiChannelMessageHeader;
762
762
  }
@@ -778,7 +778,7 @@ export interface HashtagDm {
778
778
  //
779
779
  channel_private?: number;
780
780
  //
781
- parrent_id?: string;
781
+ parent_id?: string;
782
782
  }
783
783
 
784
784
  export interface NotificationSetting {