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/api.gen.ts +6 -0
- package/client.ts +189 -184
- package/dist/api.gen.d.ts +3 -0
- package/dist/client.d.ts +2 -0
- package/dist/mezon-js.cjs.js +187 -184
- package/dist/mezon-js.esm.mjs +187 -184
- package/dist/socket.d.ts +1 -0
- package/package.json +1 -1
- package/socket.ts +2 -0
package/api.gen.ts
CHANGED
@@ -158,6 +158,8 @@ export interface MezonUpdateClanDescBody {
|
|
158
158
|
is_onboarding?: boolean;
|
159
159
|
// welcome channel id.
|
160
160
|
welcome_channel_id?: string;
|
161
|
+
//Onboarding_banner.
|
162
|
+
onboarding_banner?: string;
|
161
163
|
}
|
162
164
|
|
163
165
|
/** */
|
@@ -951,6 +953,8 @@ export interface ApiClanDesc {
|
|
951
953
|
is_onboarding?: boolean;
|
952
954
|
// welcome channel id.
|
953
955
|
welcome_channel_id?: string;
|
956
|
+
//Onboarding_banner.
|
957
|
+
onboarding_banner?: string;
|
954
958
|
}
|
955
959
|
|
956
960
|
/** */
|
@@ -3082,6 +3086,8 @@ export interface ApiCreateHashChannelAppsResponse {
|
|
3082
3086
|
hash?: string;
|
3083
3087
|
//
|
3084
3088
|
user_id?: string;
|
3089
|
+
//
|
3090
|
+
auth_date?: string;
|
3085
3091
|
}
|
3086
3092
|
|
3087
3093
|
export class MezonApi {
|