@enplug/sdk-dashboard
Advanced tools
Comparing version 5.1.15-ls-2 to 5.1.15-ls-3
{ | ||
"name": "@enplug/sdk-dashboard", | ||
"version": "5.1.15-ls-2", | ||
"version": "5.1.15-ls-3", | ||
"description": "Enplug Dashboard SDK", | ||
@@ -5,0 +5,0 @@ "main": "./src/index.ts", |
@@ -15,3 +15,4 @@ import { | ||
DefaultAsset, | ||
} from './external-types'; | ||
ZoningAppsResponse, | ||
} from './external-types'; | ||
import { BridgeBase } from './bridge/bridge-base'; | ||
@@ -295,3 +296,3 @@ import { validateArray, validateObject, validateString } from './utils'; | ||
getZoningApps() { | ||
getZoningApps(): Promise<ZoningAppsResponse> { | ||
return this.bridge.sendMessage({ | ||
@@ -298,0 +299,0 @@ namespace: MessageNamespaces.App, |
@@ -546,1 +546,12 @@ /** These are meant to avaialable to client apps */ | ||
} | ||
export interface ZoningAppsResponse { | ||
BannerApps: ZoningApp[]; | ||
TickerApps: ZoningApp[]; | ||
} | ||
export interface ZoningApp { | ||
AppId: string; | ||
ConfigureUrl: string; | ||
Name: string; | ||
} |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
204839
3258