cmd-control-client-lib 3.0.322 → 3.0.325
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.
|
@@ -204,6 +204,7 @@ export declare type channelIdFilter = {
|
|
|
204
204
|
/** filter by weight */
|
|
205
205
|
filterMinWeight?: string;
|
|
206
206
|
filterMaxWeight?: string;
|
|
207
|
+
filterShadowban?: EnumChannelFilterValues;
|
|
207
208
|
};
|
|
208
209
|
export declare type channelIdSelectOrFilter = channelIdSelector & channelIdFilter;
|
|
209
210
|
export declare type getChannelsParamsType = {
|
|
@@ -17,7 +17,9 @@ export declare enum MSettingNameEnum {
|
|
|
17
17
|
VOYEUR_CHAT_ENABLED = "VoyeurChatEnabled",
|
|
18
18
|
VOYEUR_CHAT_PRIVATE_AUDIO = "VoyeurChatPrivateAudio",
|
|
19
19
|
FREE_CHAT_ENABLED = "FreeChatEnabled",
|
|
20
|
-
PARTY_CHAT_ENABLED = "PartyChatEnabled"
|
|
20
|
+
PARTY_CHAT_ENABLED = "PartyChatEnabled",
|
|
21
|
+
SERVICE0900_ENABLED = "Service0900Enabled",
|
|
22
|
+
SERCIVE0900WEBSIP_ENABLED = "Service0900WebSipEnabled"
|
|
21
23
|
}
|
|
22
24
|
export declare enum MSettingValueTypeEnum {
|
|
23
25
|
FLOAT = "float",
|
|
@@ -88,6 +90,8 @@ export declare class MSettings {
|
|
|
88
90
|
[MSettingNameEnum.VOYEUR_CHAT_PRIVATE_AUDIO]?: MSettingBool;
|
|
89
91
|
[MSettingNameEnum.FREE_CHAT_ENABLED]?: MSettingBool;
|
|
90
92
|
[MSettingNameEnum.PARTY_CHAT_ENABLED]?: MSettingBool;
|
|
93
|
+
[MSettingNameEnum.SERVICE0900_ENABLED]?: MSettingBool;
|
|
94
|
+
[MSettingNameEnum.SERCIVE0900WEBSIP_ENABLED]?: MSettingBool;
|
|
91
95
|
};
|
|
92
96
|
}
|
|
93
97
|
/**
|
|
@@ -340,5 +340,6 @@ export declare enum SystemMessageKey {
|
|
|
340
340
|
h_chat_mobilevideocall_started = "h_chat_mobilevideocall_started",
|
|
341
341
|
h_chat_mobilevideocall_ended = "h_chat_mobilevideocall_ended",
|
|
342
342
|
h_chat_mobilevideocall_started_price = "h_chat_mobilevideocall_started_price",
|
|
343
|
-
h_chat_mobilevideocall_init = "h_chat_mobilevideocall_init"
|
|
343
|
+
h_chat_mobilevideocall_init = "h_chat_mobilevideocall_init",
|
|
344
|
+
h_chat_clip_bought = "h_chat_clip_bought"
|
|
344
345
|
}
|