mezon-js 2.9.75 → 2.9.77

Sign up to get free protection for your applications and to get access to all the features.
package/api.gen.ts CHANGED
@@ -153,6 +153,8 @@ export interface MezonUpdateClanDescBody {
153
153
  logo?: string;
154
154
  //
155
155
  status?: number;
156
+ // Is onboarding.
157
+ is_onboarding?: boolean;
156
158
  }
157
159
 
158
160
  /** */
@@ -896,6 +898,8 @@ export interface ApiClanDesc {
896
898
  status?: number;
897
899
  //
898
900
  badge_count?: number;
901
+ // Is onboarding.
902
+ is_onboarding?: boolean;
899
903
  }
900
904
 
901
905
  /** */
package/dist/api.gen.d.ts CHANGED
@@ -90,6 +90,7 @@ export interface MezonUpdateClanDescBody {
90
90
  creator_id?: string;
91
91
  logo?: string;
92
92
  status?: number;
93
+ is_onboarding?: boolean;
93
94
  }
94
95
  /** */
95
96
  export interface MezonUpdateClanDescProfileBody {
@@ -516,6 +517,7 @@ export interface ApiClanDesc {
516
517
  logo?: string;
517
518
  status?: number;
518
519
  badge_count?: number;
520
+ is_onboarding?: boolean;
519
521
  }
520
522
  /** */
521
523
  export interface ApiClanDescList {
@@ -7358,10 +7358,10 @@ var _DefaultSocket = class _DefaultSocket {
7358
7358
  return response.check_name_existed_event;
7359
7359
  });
7360
7360
  }
7361
- forwardWebrtcSignaling(receiver_id, data_type, json_data) {
7361
+ forwardWebrtcSignaling(receiver_id, data_type, json_data, channel_id) {
7362
7362
  return __async(this, null, function* () {
7363
7363
  const response = yield this.send({
7364
- webrtc_signaling_fwd: { receiver_id, data_type, json_data }
7364
+ webrtc_signaling_fwd: { receiver_id, data_type, json_data, channel_id }
7365
7365
  });
7366
7366
  return response.webrtc_signaling_fwd;
7367
7367
  });
@@ -7328,10 +7328,10 @@ var _DefaultSocket = class _DefaultSocket {
7328
7328
  return response.check_name_existed_event;
7329
7329
  });
7330
7330
  }
7331
- forwardWebrtcSignaling(receiver_id, data_type, json_data) {
7331
+ forwardWebrtcSignaling(receiver_id, data_type, json_data, channel_id) {
7332
7332
  return __async(this, null, function* () {
7333
7333
  const response = yield this.send({
7334
- webrtc_signaling_fwd: { receiver_id, data_type, json_data }
7334
+ webrtc_signaling_fwd: { receiver_id, data_type, json_data, channel_id }
7335
7335
  });
7336
7336
  return response.webrtc_signaling_fwd;
7337
7337
  });
package/dist/socket.d.ts CHANGED
@@ -588,6 +588,7 @@ export interface WebrtcSignalingFwd {
588
588
  receiver_id: string;
589
589
  data_type: number;
590
590
  json_data: string;
591
+ channel_id: string;
591
592
  }
592
593
  export interface JoinPTTChannel {
593
594
  channel_id: string;
@@ -707,7 +708,7 @@ export interface Socket {
707
708
  checkDuplicateName(name: string, condition_id: string, type: number): Promise<CheckNameExistedEvent>;
708
709
  handleMessageButtonClick: (message_id: string, channel_id: string, button_id: string, sender_id: string, user_id: string) => Promise<MessageButtonClicked>;
709
710
  onmessagebuttonclicked: (event: MessageButtonClicked) => void;
710
- forwardWebrtcSignaling: (receiverId: string, dataType: number, jsonData: string) => Promise<WebrtcSignalingFwd>;
711
+ forwardWebrtcSignaling: (receiverId: string, dataType: number, jsonData: string, channelId: string) => Promise<WebrtcSignalingFwd>;
711
712
  onwebrtcsignalingfwd: (event: WebrtcSignalingFwd) => void;
712
713
  oneventcreated: (clan_event_created: ApiCreateEventRequest) => void;
713
714
  oncoffeegiven: (give_coffee_event: ApiGiveCoffeeEvent) => void;
@@ -818,7 +819,7 @@ export declare class DefaultSocket implements Socket {
818
819
  writeVoiceLeaved(id: string, clanId: string, voiceChannelId: string, voiceUserId: string): Promise<VoiceLeavedEvent>;
819
820
  writeCustomStatus(clan_id: string, status: string): Promise<CustomStatusEvent>;
820
821
  checkDuplicateName(name: string, condition_id: string, type: number): Promise<CheckNameExistedEvent>;
821
- forwardWebrtcSignaling(receiver_id: string, data_type: number, json_data: string): Promise<WebrtcSignalingFwd>;
822
+ forwardWebrtcSignaling(receiver_id: string, data_type: number, json_data: string, channel_id: string): Promise<WebrtcSignalingFwd>;
822
823
  handleMessageButtonClick(message_id: string, channel_id: string, button_id: string, sender_id: string, user_id: string): Promise<MessageButtonClicked>;
823
824
  joinPTTChannel(channelId: string, dataType: number, jsonData: string): Promise<JoinPTTChannel>;
824
825
  talkPTTChannel(channelId: string, dataType: number, jsonData: string, state: number): Promise<TalkPTTChannel>;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "mezon-js",
3
3
 
4
- "version": "2.9.75",
4
+ "version": "2.9.77",
5
5
 
6
6
  "scripts": {
7
7
  "build": "npx tsc && npx rollup -c --bundleConfigAsCjs && node build.mjs"
package/socket.ts CHANGED
@@ -832,6 +832,7 @@ export interface WebrtcSignalingFwd {
832
832
  receiver_id: string;
833
833
  data_type: number;
834
834
  json_data: string;
835
+ channel_id: string;
835
836
  }
836
837
 
837
838
  export interface JoinPTTChannel {
@@ -1146,7 +1147,7 @@ export interface Socket {
1146
1147
 
1147
1148
  onmessagebuttonclicked: (event: MessageButtonClicked) => void;
1148
1149
 
1149
- forwardWebrtcSignaling: (receiverId: string, dataType: number, jsonData: string) => Promise<WebrtcSignalingFwd>;
1150
+ forwardWebrtcSignaling: (receiverId: string, dataType: number, jsonData: string, channelId: string) => Promise<WebrtcSignalingFwd>;
1150
1151
 
1151
1152
  onwebrtcsignalingfwd: (event: WebrtcSignalingFwd) => void;
1152
1153
 
@@ -2143,9 +2144,10 @@ export class DefaultSocket implements Socket {
2143
2144
  async forwardWebrtcSignaling(
2144
2145
  receiver_id: string,
2145
2146
  data_type: number,
2146
- json_data: string): Promise<WebrtcSignalingFwd> {
2147
+ json_data: string,
2148
+ channel_id: string): Promise<WebrtcSignalingFwd> {
2147
2149
  const response = await this.send({
2148
- webrtc_signaling_fwd: { receiver_id: receiver_id, data_type: data_type, json_data: json_data },
2150
+ webrtc_signaling_fwd: { receiver_id: receiver_id, data_type: data_type, json_data: json_data, channel_id: channel_id },
2149
2151
  });
2150
2152
  return response.webrtc_signaling_fwd;
2151
2153
  }