cmd-control-client-lib 3.0.58 → 3.0.60
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.
|
@@ -122,5 +122,6 @@ export declare enum ACTION {
|
|
|
122
122
|
CMDP_SGETTICKETS = "CMDP_SGETTICKETS",
|
|
123
123
|
CMDP_SCHECKUPLOADEDMEDIA = "CMDP_SCHECKUPLOADEDMEDIA",
|
|
124
124
|
CMDP_SGETUPLOADEDMEDIA = "CMDP_SGETUPLOADEDMEDIA",
|
|
125
|
-
CMDC_CMEDIA = "CMDC_CMEDIA"
|
|
125
|
+
CMDC_CMEDIA = "CMDC_CMEDIA",
|
|
126
|
+
CMDP_SCLOSETICKED = "CMDP_SCLOSETICKED"
|
|
126
127
|
}
|
|
@@ -53,4 +53,19 @@ export declare class CMDP_SGETTICKETS_PRESPONSE extends CMDP_SGETTICKETS impleme
|
|
|
53
53
|
commands: CMDC_CMEDIA[];
|
|
54
54
|
values: IKeyMaybeValue;
|
|
55
55
|
}
|
|
56
|
+
/**
|
|
57
|
+
* Frontend command for close of ticket.
|
|
58
|
+
*/
|
|
59
|
+
export declare class CMDP_SCLOSETICKED implements ICOMMAND {
|
|
60
|
+
action: ACTION;
|
|
61
|
+
params: baseParamsType & channelIdType;
|
|
62
|
+
}
|
|
63
|
+
/**
|
|
64
|
+
* Response command for CMDP_SCLOSETICKED.
|
|
65
|
+
*/
|
|
66
|
+
export declare class CMDP_SCLOSETICKED_PRESPONSE extends CMDP_SCLOSETICKED implements IRESPONSE {
|
|
67
|
+
result: RESULT;
|
|
68
|
+
commands: ICOMMAND[];
|
|
69
|
+
values: IKeyMaybeValue;
|
|
70
|
+
}
|
|
56
71
|
export {};
|