cmd-control-client-lib 3.0.107 → 3.0.109
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.
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { EnumBooleanStringified } from "../../@types/enum-boolean-stringified";
|
|
2
|
+
import { ComaSeparatedValues } from "../sessionstate";
|
|
2
3
|
export declare enum SupportedLanguage {
|
|
3
4
|
DE = "de",
|
|
4
5
|
EN = "en",
|
|
@@ -14,7 +15,7 @@ export declare enum EnumFormatValues {
|
|
|
14
15
|
PLAIN = "plain"
|
|
15
16
|
}
|
|
16
17
|
export declare type baseParamsType = {
|
|
17
|
-
[key: string]: string
|
|
18
|
+
[key: string]: string | ComaSeparatedValues<string>;
|
|
18
19
|
/** your app instance id, internal */
|
|
19
20
|
_iid?: string;
|
|
20
21
|
/** your app type */
|
|
@@ -34,6 +34,12 @@ export declare enum ChatFlags {
|
|
|
34
34
|
FLATRATE = "FLATRATE",
|
|
35
35
|
SINGLEC2C = "SINGLEC2C"
|
|
36
36
|
}
|
|
37
|
+
export declare enum EnumIntentionString {
|
|
38
|
+
TEXT = "TEXT",
|
|
39
|
+
VOYEUR = "VOYEUR",
|
|
40
|
+
VIDEO = "VIDEO",
|
|
41
|
+
SINGLECAM2CAM = "SINGLECAM2CAM"
|
|
42
|
+
}
|
|
37
43
|
export declare class SChatInfo implements IKeyMaybeValue {
|
|
38
44
|
[key: string]: string;
|
|
39
45
|
/** the unique chatId*/
|
|
@@ -91,6 +97,8 @@ export declare class SChatInfo implements IKeyMaybeValue {
|
|
|
91
97
|
imgSrc?: string;
|
|
92
98
|
/** is voyeur to single */
|
|
93
99
|
voyeur2single?: EnumBooleanDigitized;
|
|
100
|
+
/** the intention of chat type from guest. this is not actual chat type, only intention */
|
|
101
|
+
chattype: EnumIntentionString | string;
|
|
94
102
|
}
|
|
95
103
|
export declare class CMDC_CINIT implements ICOMMAND {
|
|
96
104
|
action: ACTION;
|