cmd-control-client-lib 3.0.242 → 3.0.244
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.
|
@@ -13,6 +13,9 @@ export declare enum EnumFormatValues {
|
|
|
13
13
|
JSON = "json",
|
|
14
14
|
PLAIN = "plain"
|
|
15
15
|
}
|
|
16
|
+
export declare type deviceIdType = {
|
|
17
|
+
deviceId?: string;
|
|
18
|
+
};
|
|
16
19
|
export declare type baseParamsType = {
|
|
17
20
|
/** your app instance id, internal */
|
|
18
21
|
_iid?: string;
|
|
@@ -38,4 +41,4 @@ export declare type baseParamsType = {
|
|
|
38
41
|
* \}
|
|
39
42
|
*/
|
|
40
43
|
webtoken?: string;
|
|
41
|
-
};
|
|
44
|
+
} & deviceIdType;
|
|
@@ -12,9 +12,9 @@ export declare type ticketShow = {
|
|
|
12
12
|
showEnd: string;
|
|
13
13
|
/** show Name, readonly*/
|
|
14
14
|
showName: string;
|
|
15
|
-
/** show image url*/
|
|
16
|
-
showImageUrl
|
|
17
|
-
/**
|
|
15
|
+
/** show image url, deprecated*/
|
|
16
|
+
showImageUrl?: string;
|
|
17
|
+
/** pictureId, the replacement for showImageUrl*/
|
|
18
18
|
pictureId?: string;
|
|
19
19
|
/** readonly const */
|
|
20
20
|
showCurrency: EnumCurrency;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ACTION, channelIdType, ICOMMAND, IKeyMaybeValue, IRESPONSE, RESULT } from "../../cmd-protocol";
|
|
2
|
-
import { baseParamsType } from "../command/baseparams";
|
|
2
|
+
import { baseParamsType, deviceIdType } from "../command/baseparams";
|
|
3
3
|
import { VideoSdkConfig } from "./videosdk";
|
|
4
4
|
import { EnumBooleanStringified, JSONString } from "../../@types";
|
|
5
5
|
export declare enum EnumMobileTokenType {
|
|
@@ -16,12 +16,9 @@ export declare enum EnumMobileVideoCallState {
|
|
|
16
16
|
Failed = "FAILED",
|
|
17
17
|
Unknown = "UNKNOWN"
|
|
18
18
|
}
|
|
19
|
-
export declare type deviceIdType = {
|
|
20
|
-
deviceId?: string;
|
|
21
|
-
};
|
|
22
19
|
export declare class CMDP_SETMOBILETOKEN implements ICOMMAND {
|
|
23
20
|
action: ACTION;
|
|
24
|
-
params: baseParamsType &
|
|
21
|
+
params: baseParamsType & {
|
|
25
22
|
type: EnumMobileTokenType;
|
|
26
23
|
token: string;
|
|
27
24
|
bundleId?: string;
|
|
@@ -34,7 +31,7 @@ export declare class CMDP_SETMOBILETOKEN_RESPONSE extends CMDP_SETMOBILETOKEN im
|
|
|
34
31
|
}
|
|
35
32
|
export declare class CMDP_STARTMOBILEVIDEOCALL implements ICOMMAND {
|
|
36
33
|
action: ACTION;
|
|
37
|
-
params: baseParamsType & channelIdType
|
|
34
|
+
params: baseParamsType & channelIdType;
|
|
38
35
|
}
|
|
39
36
|
export declare class CMDP_STARTMOBILEVIDEOCALL_RESPONSE extends CMDP_STARTMOBILEVIDEOCALL implements IRESPONSE {
|
|
40
37
|
result: RESULT;
|
|
@@ -55,7 +52,7 @@ export declare class CMDC_STARTMOBILEVIDEOCALL implements ICOMMAND {
|
|
|
55
52
|
}
|
|
56
53
|
export declare class CMDP_UPDATEMOBILEVIDEOCALL implements ICOMMAND {
|
|
57
54
|
action: ACTION;
|
|
58
|
-
params: baseParamsType &
|
|
55
|
+
params: baseParamsType & {
|
|
59
56
|
videoSdkConfig: string;
|
|
60
57
|
state: EnumMobileVideoCallState;
|
|
61
58
|
};
|