cmd-control-client-lib 3.0.158 → 3.0.159
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,5 +1,5 @@
|
|
|
1
1
|
import { JSONString, EnumQueryBackendSubAction } from "../@types";
|
|
2
|
-
import { IMayHaveChannelId, usrKeyType } from "./channel";
|
|
2
|
+
import { channelIdType, IMayHaveChannelId, usrKeyType } from "./channel";
|
|
3
3
|
import { ACTION } from "./command/action";
|
|
4
4
|
import { baseParamsType } from "./command/baseparams";
|
|
5
5
|
import { ICOMMAND, IKeyMaybeValue, IRESPONSE, RESULT } from "./command/icommand";
|
|
@@ -21,7 +21,7 @@ declare type TSubActionParams = {
|
|
|
21
21
|
*/
|
|
22
22
|
export declare class CMDP_QUERYBACKEND implements ICOMMAND, IBACKENDPAYLOAD {
|
|
23
23
|
action: ACTION;
|
|
24
|
-
params: TSubActionParams & baseParamsType;
|
|
24
|
+
params: TSubActionParams & baseParamsType & channelIdType;
|
|
25
25
|
/** if jwt-session, any json-payload for transport to backend */
|
|
26
26
|
payload?: JSONString<any>;
|
|
27
27
|
}
|