tv-app-core-types 1.2.9-webos.2 → 1.2.9-webos.4

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.
@@ -60,6 +60,7 @@ export declare enum TvOperations {
60
60
  LAUNCH_APP = "launch",
61
61
  CHECK_OUT = "checkout",
62
62
  CHECK_IN = "checkin",
63
+ ALL_LOGOUT = "allLogOut",
63
64
  AIRPLAY = "AirPlay",
64
65
  REBOOT = "reboot",
65
66
  GET_CURRENT_INPUT_SOURCE = "getCurrentInputSource",
@@ -64,6 +64,7 @@ export var TvOperations;
64
64
  TvOperations["LAUNCH_APP"] = "launch";
65
65
  TvOperations["CHECK_OUT"] = "checkout";
66
66
  TvOperations["CHECK_IN"] = "checkin";
67
+ TvOperations["ALL_LOGOUT"] = "allLogOut";
67
68
  TvOperations["AIRPLAY"] = "AirPlay";
68
69
  TvOperations["REBOOT"] = "reboot";
69
70
  TvOperations["GET_CURRENT_INPUT_SOURCE"] = "getCurrentInputSource";
@@ -51,7 +51,7 @@ export interface IMqttResponse {
51
51
  isChannelPlayerActive: boolean;
52
52
  channelName: string | null;
53
53
  isWelcomeLetterOpen: boolean;
54
- isClosedCaptionEnabled: boolean | null;
54
+ isClosedCaptionEnabled: boolean;
55
55
  tvScreenFeature: {
56
56
  feature: string | null;
57
57
  state: string | null;
@@ -43,6 +43,7 @@ export interface IRequestHandler {
43
43
  checkOutOperation(): Promise<void>;
44
44
  guestLanguageChangeOperation(details: any): Promise<void>;
45
45
  guestInfoUpdateOperation(): Promise<void>;
46
+ allLogoutOperation(): Promise<void>;
46
47
  launchInbuiltAppOperation(details: any): Promise<void>;
47
48
  virtualKeyPressOperation(details: any): Promise<void>;
48
49
  saveDefaultConfig(details: any): void;
@@ -59,4 +60,5 @@ export interface IRequestHandler {
59
60
  musicPlayOperation(details: any): Promise<void>;
60
61
  musicPauseOperation(details: any): Promise<void>;
61
62
  musicStopOperation(details: any): Promise<void>;
63
+ closeCaptionOperation(details: any): Promise<void>;
62
64
  }
@@ -42,5 +42,6 @@ export interface IUtils {
42
42
  getTargetDeviceId(): Promise<string | null>;
43
43
  getCurrentChannelId(): Promise<string | null>;
44
44
  getCommandsToIgnore(): Array<string>;
45
- closedCaptionStatus(): Promise<boolean | null>;
45
+ isInbuiltAppActive(): Promise<boolean | null>;
46
+ closedCaptionStatus(): Promise<boolean>;
46
47
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tv-app-core-types",
3
- "version": "1.2.9-webos.2",
3
+ "version": "1.2.9-webos.4",
4
4
  "description": "DigiValet TV App package for common utilities, functions and interfaces.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",