cmd-control-client-lib 3.0.277 → 3.0.279
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,4 @@
|
|
|
1
|
-
import { JSONString } from "../../@types";
|
|
1
|
+
import { EnumCurrency, JSONString } from "../../@types";
|
|
2
2
|
import { ICOMMAND, ACTION, IRESPONSE, RESULT } from "../../cmd-protocol";
|
|
3
3
|
import { baseParamsType, SupportedLanguage } from "../command/baseparams";
|
|
4
4
|
export declare enum MSettingNameEnum {
|
|
@@ -34,6 +34,7 @@ export declare class MSetting {
|
|
|
34
34
|
}
|
|
35
35
|
export declare class MSettingFloat extends MSetting {
|
|
36
36
|
type: MSettingValueTypeEnum.FLOAT;
|
|
37
|
+
currency: EnumCurrency | string;
|
|
37
38
|
value: number;
|
|
38
39
|
minValue: number;
|
|
39
40
|
maxValue: number;
|
package/dist/protocol/login.d.ts
CHANGED
|
@@ -33,6 +33,7 @@ export declare type otherLoginParamsType = {
|
|
|
33
33
|
usrKey?: string;
|
|
34
34
|
/** this is session with messenger functions, default is "0" */
|
|
35
35
|
msn?: EnumBooleanDigitized;
|
|
36
|
+
autoLogin?: EnumBooleanDigitized;
|
|
36
37
|
};
|
|
37
38
|
/** login union type */
|
|
38
39
|
export declare type loginParamType = loginWithWebtokenType | loginWithUserNameType | foreignSIDType;
|