cmd-control-client-lib 3.0.249 → 3.0.251

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.
@@ -13,6 +13,12 @@ export interface IInitBackendPayload {
13
13
  toyControls: any;
14
14
  icons: any;
15
15
  }
16
+ export declare type UploadMediaTus = {
17
+ endPoint: string;
18
+ chunkSize: number;
19
+ parallelUploads: number;
20
+ authHeader: string;
21
+ };
16
22
  /**
17
23
  * the initial command
18
24
  */
@@ -38,6 +44,7 @@ export declare class CMDP_INIT_RESPONSE extends CMDP_INIT implements IRESPONSE,
38
44
  versionUpdateUrl?: string;
39
45
  /** where to send message media */
40
46
  uploadMediaUrl?: string;
47
+ uploadMediaTus?: JSONString<UploadMediaTus>;
41
48
  speedTestUrl?: string;
42
49
  uploadFeedbackUrl?: string;
43
50
  translations?: JSONString<InitialTranslations>;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "cmd-control-client-lib",
3
3
  "description": "Cmd-Client-Library",
4
- "version": "3.0.249",
4
+ "version": "3.0.251",
5
5
  "directories": {
6
6
  "lib": "./dist"
7
7
  },