@enplug/sdk-player
Advanced tools
Comparing version 0.11.9 to 0.11.10
{ | ||
"name": "@enplug/sdk-player", | ||
"version": "0.11.9", | ||
"version": "0.11.10", | ||
"description": "Enplug Player SDK", | ||
@@ -78,2 +78,3 @@ "main": "./src/index.ts", | ||
"aws": { | ||
"profile": "enplug-s3-deployer", | ||
"buckets": [ | ||
@@ -83,3 +84,2 @@ "apps.enplug.in", | ||
], | ||
"profile": "enplug-s3-deployer", | ||
"s3": { | ||
@@ -86,0 +86,0 @@ "cache": false, |
@@ -49,4 +49,8 @@ /** | ||
getNextForPlayList<T>(index: number): Promise<T> { | ||
return this.bridge.send(Service.Assets, Action.GetNextForPlayList, index); | ||
getNextForPlayList<T>(index: number, appId: string): Promise<T> { | ||
const payload = { | ||
index, | ||
appId, | ||
}; | ||
return this.bridge.send(Service.Assets, Action.GetNextForPlayList, payload); | ||
} | ||
@@ -53,0 +57,0 @@ |
@@ -21,3 +21,3 @@ /** | ||
const getNext: () => Promise<any>; | ||
const getNextForPlayList: (index: number) => Promise<any>; | ||
const getNextForPlayList: (index: number, appId: string) => Promise<any>; | ||
const getTheme: () => Promise<any>; | ||
@@ -24,0 +24,0 @@ } |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
221279
3220