mezon-js 2.14.74 → 2.14.75

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/dist/api.gen.d.ts CHANGED
@@ -2411,4 +2411,6 @@ export declare class MezonApi {
2411
2411
  /** */
2412
2412
  dropdownBoxSelected(bearerToken: string, messageId?: string, channelId?: string, selectboxId?: string, senderId?: string, userId?: string, values?: string[], options?: {}): Promise<any>;
2413
2413
  activeArchivedThread(bearerToken: string, clanId?: string, channelId?: string, options?: {}): Promise<any>;
2414
+ addAgentToChannel(bearerToken: string, roomName?: string, channelId?: string, options?: {}): Promise<any>;
2415
+ disconnectAgent(bearerToken: string, roomName?: string, channelId?: string, options?: {}): Promise<any>;
2414
2416
  }
package/dist/client.d.ts CHANGED
@@ -495,4 +495,6 @@ export declare class Client {
495
495
  messageButtonClick(session: Session, messageId?: string, channelId?: string, buttonId?: string, senderId?: string, userId?: string, extraData?: string): Promise<any>;
496
496
  dropdownBoxSelected(session: Session, messageId?: string, channelId?: string, selectboxId?: string, senderId?: string, userId?: string, values?: string[]): Promise<any>;
497
497
  activeArchivedThread(session: Session, clanId?: string, channelId?: string): Promise<any>;
498
+ addAgentToChannel(session: Session, roomName?: string, channelId?: string): Promise<any>;
499
+ disconnectAgent(session: Session, roomName?: string, channelId?: string): Promise<any>;
498
500
  }