mezon-js 2.11.8 → 2.11.10
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 +4 -0
- package/client.ts +190 -185
- package/dist/api.gen.d.ts +2 -0
- package/dist/client.d.ts +3 -1
- package/dist/mezon-js.cjs.js +194 -185
- package/dist/mezon-js.esm.mjs +194 -185
- package/dist/socket.d.ts +1 -0
- package/package.json +1 -1
- package/socket.ts +9 -1
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
|
/** */
|