cmd-control-client-lib 3.0.78 → 3.0.79
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.
|
@@ -126,5 +126,6 @@ export declare enum ACTION {
|
|
|
126
126
|
CMDP_SCLOSETICKET = "CMDP_SCLOSETICKET",
|
|
127
127
|
CMDP_SGETMSETTINGS = "CMDP_SGETMSETTINGS",
|
|
128
128
|
CMDP_SSETMSETTING = "CMDP_SSETMSETTING",
|
|
129
|
-
CMDC_MSETTINGS = "CMDC_MSETTINGS"
|
|
129
|
+
CMDC_MSETTINGS = "CMDC_MSETTINGS",
|
|
130
|
+
CMDP_SDELETE_USER = "CMDP_SDELETE_USER"
|
|
130
131
|
}
|
|
@@ -22,7 +22,7 @@ export declare class CMDP_SIGNUP_RESPONSE extends CMDP_SIGNUP implements IRESPON
|
|
|
22
22
|
values: IKeyMaybeValue;
|
|
23
23
|
}
|
|
24
24
|
/**
|
|
25
|
-
* query
|
|
25
|
+
* query password reset
|
|
26
26
|
*/
|
|
27
27
|
export declare class CMDP_RESETPASSWORD implements ICOMMAND {
|
|
28
28
|
action: ACTION;
|
|
@@ -32,9 +32,24 @@ export declare class CMDP_RESETPASSWORD implements ICOMMAND {
|
|
|
32
32
|
};
|
|
33
33
|
}
|
|
34
34
|
/**
|
|
35
|
-
* reponse
|
|
35
|
+
* reponse for CMDP_RESETPASSWORD
|
|
36
|
+
*/
|
|
37
|
+
export declare class CMDP_RESETPASSWORD_RESPONSE extends CMDP_RESETPASSWORD implements IRESPONSE {
|
|
38
|
+
result: RESULT;
|
|
39
|
+
commands: ICOMMAND[];
|
|
40
|
+
values: IKeyMaybeValue;
|
|
41
|
+
}
|
|
42
|
+
/**
|
|
43
|
+
* delete account
|
|
44
|
+
*/
|
|
45
|
+
export declare class CMDP_SDELETE_USER implements ICOMMAND {
|
|
46
|
+
action: ACTION;
|
|
47
|
+
params: baseParamsType;
|
|
48
|
+
}
|
|
49
|
+
/**
|
|
50
|
+
* reponse for CMDP_SDELETE_USER
|
|
36
51
|
*/
|
|
37
|
-
export declare class
|
|
52
|
+
export declare class CMDP_SDELETE_USER_RESPONSE extends CMDP_SDELETE_USER implements IRESPONSE {
|
|
38
53
|
result: RESULT;
|
|
39
54
|
commands: ICOMMAND[];
|
|
40
55
|
values: IKeyMaybeValue;
|