cmd-control-client-lib 3.0.360 → 3.0.362
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.
package/dist/protocol/init.d.ts
CHANGED
|
@@ -19,11 +19,16 @@ export interface IInitBackendPayload {
|
|
|
19
19
|
icons: any;
|
|
20
20
|
}
|
|
21
21
|
export declare type UploadMediaTus = {
|
|
22
|
-
|
|
23
|
-
|
|
22
|
+
authHeader: string;
|
|
23
|
+
/**
|
|
24
|
+
* @deprecated/obsolete
|
|
25
|
+
*/
|
|
26
|
+
chunkSize?: number;
|
|
24
27
|
chunksNumber: number;
|
|
28
|
+
endPoint: string;
|
|
29
|
+
maxChunkSize: number;
|
|
30
|
+
minChunkSize: number;
|
|
25
31
|
parallelUploads: number;
|
|
26
|
-
authHeader: string;
|
|
27
32
|
};
|
|
28
33
|
/**
|
|
29
34
|
* the initial command
|
|
@@ -102,6 +102,7 @@ export declare class SChatInfo {
|
|
|
102
102
|
chattype: EnumIntentionString | string;
|
|
103
103
|
/** preview state: "1" if the preview is run, "0" if the preview is stopped */
|
|
104
104
|
previewRun?: "1" | "0" | string;
|
|
105
|
+
blurred?: "1" | "0" | string;
|
|
105
106
|
}
|
|
106
107
|
export declare class CMDC_CINIT implements ICOMMAND {
|
|
107
108
|
action: ACTION;
|
|
@@ -21,7 +21,8 @@ export declare enum MSettingNameEnum {
|
|
|
21
21
|
SERVICE0900_ENABLED = "Service0900Enabled",
|
|
22
22
|
SERCIVE0900WEBSIP_ENABLED = "Service0900WebSipEnabled",
|
|
23
23
|
SERVICE0900WEBSIP_VISIBLE = "Service0900WebSipVisible",
|
|
24
|
-
SERVICE0900PHONE_ENABLED = "Service0900PhoneEnabled"
|
|
24
|
+
SERVICE0900PHONE_ENABLED = "Service0900PhoneEnabled",
|
|
25
|
+
MESSAGETEMPLATES_ENABLED = "MessageTemplatesEnabled"
|
|
25
26
|
}
|
|
26
27
|
export declare enum MSettingValueTypeEnum {
|
|
27
28
|
FLOAT = "float",
|
|
@@ -102,6 +103,7 @@ export declare class MSettings {
|
|
|
102
103
|
[MSettingNameEnum.SERCIVE0900WEBSIP_ENABLED]?: MSettingBool;
|
|
103
104
|
[MSettingNameEnum.SERVICE0900WEBSIP_VISIBLE]?: MSettingBool;
|
|
104
105
|
[MSettingNameEnum.SERVICE0900PHONE_ENABLED]?: MSettingBool;
|
|
106
|
+
[MSettingNameEnum.MESSAGETEMPLATES_ENABLED]?: MSettingBool;
|
|
105
107
|
};
|
|
106
108
|
}
|
|
107
109
|
/**
|