mezon-js 2.9.35 → 2.9.36
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/dist/api.gen.d.ts +2 -0
- package/package.json +1 -1
package/api.gen.ts
CHANGED
|
@@ -789,10 +789,14 @@ export interface ApiChannelSettingItem {
|
|
|
789
789
|
|
|
790
790
|
/** */
|
|
791
791
|
export interface ApiChannelSettingListResponse {
|
|
792
|
+
//
|
|
793
|
+
channel_count?: number;
|
|
792
794
|
//
|
|
793
795
|
channel_setting_list?: Array<ApiChannelSettingItem>;
|
|
794
796
|
//
|
|
795
797
|
clan_id?: string;
|
|
798
|
+
//
|
|
799
|
+
thread_count?: number;
|
|
796
800
|
}
|
|
797
801
|
|
|
798
802
|
/** A list of users belonging to a channel, along with their role. */
|
package/dist/api.gen.d.ts
CHANGED
|
@@ -455,8 +455,10 @@ export interface ApiChannelSettingItem {
|
|
|
455
455
|
}
|
|
456
456
|
/** */
|
|
457
457
|
export interface ApiChannelSettingListResponse {
|
|
458
|
+
channel_count?: number;
|
|
458
459
|
channel_setting_list?: Array<ApiChannelSettingItem>;
|
|
459
460
|
clan_id?: string;
|
|
461
|
+
thread_count?: number;
|
|
460
462
|
}
|
|
461
463
|
/** A list of users belonging to a channel, along with their role. */
|
|
462
464
|
export interface ApiChannelUserList {
|