capacitor-plugin-playlist 0.9.4 → 0.9.5

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.
@@ -15,7 +15,7 @@ export declare class RmxAudioPlayer {
15
15
  * because they properly interpret the range of these values, but this field is exposed if you wish to observe
16
16
  * or interrogate it.
17
17
  */
18
- get currentState(): "error" | "stopped" | "unknown" | "paused" | "loading" | "playing" | "ready";
18
+ get currentState(): "unknown" | "ready" | "error" | "playing" | "loading" | "paused" | "stopped";
19
19
  get currentTrack(): AudioTrack | null;
20
20
  /**
21
21
  * If the playlist is currently playling a track.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "capacitor-plugin-playlist",
3
- "version": "0.9.4",
3
+ "version": "0.9.5",
4
4
  "description": "Playlist ",
5
5
  "main": "dist/plugin.cjs.js",
6
6
  "module": "dist/esm/index.js",
@@ -26,8 +26,7 @@
26
26
  "build": "npm run clean && npm run docgen && tsc && rollup -c rollup.config.mjs",
27
27
  "clean": "rimraf ./dist",
28
28
  "watch": "tsc --watch",
29
- "prepublishOnly": "npm run build",
30
- "prepare": "npm run build"
29
+ "prepublishOnly": "npm run build"
31
30
  },
32
31
  "author": "phiamo",
33
32
  "license": "MIT",