mezon-js 2.11.9 → 2.11.11

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
@@ -92,6 +92,7 @@ export interface MezonUpdateClanDescBody {
92
92
  status?: number;
93
93
  is_onboarding?: boolean;
94
94
  welcome_channel_id?: string;
95
+ onboarding_banner?: string;
95
96
  }
96
97
  /** */
97
98
  export interface MezonUpdateClanDescProfileBody {
@@ -543,6 +544,7 @@ export interface ApiClanDesc {
543
544
  badge_count?: number;
544
545
  is_onboarding?: boolean;
545
546
  welcome_channel_id?: string;
547
+ onboarding_banner?: string;
546
548
  }
547
549
  /** */
548
550
  export interface ApiClanDescList {
@@ -1770,6 +1772,7 @@ export interface ApiMezonOauthClient {
1770
1772
  export interface ApiCreateHashChannelAppsResponse {
1771
1773
  hash?: string;
1772
1774
  user_id?: string;
1775
+ auth_date?: string;
1773
1776
  }
1774
1777
  export declare class MezonApi {
1775
1778
  readonly serverKey: string;
package/dist/client.d.ts CHANGED
@@ -343,6 +343,8 @@ export declare class Client {
343
343
  readonly useSSL: boolean;
344
344
  readonly timeout: number;
345
345
  readonly autoRefreshSession: boolean;
346
+ /** The expired timespan used to check session lifetime. */
347
+ expiredTimespanMs: number;
346
348
  /** The low level API client for Mezon server. */
347
349
  private readonly apiClient;
348
350
  /** thre refreshTokenPromise */