@player-ui/player 0.15.1-next.6 → 0.15.2-next.0

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.
package/package.json CHANGED
@@ -6,12 +6,12 @@
6
6
  "types"
7
7
  ],
8
8
  "name": "@player-ui/player",
9
- "version": "0.15.1-next.6",
9
+ "version": "0.15.2-next.0",
10
10
  "main": "dist/cjs/index.cjs",
11
11
  "dependencies": {
12
- "@player-ui/partial-match-registry": "0.15.1-next.6",
13
- "@player-ui/make-flow": "0.15.1-next.6",
14
- "@player-ui/types": "0.15.1-next.6",
12
+ "@player-ui/partial-match-registry": "0.15.2-next.0",
13
+ "@player-ui/make-flow": "0.15.2-next.0",
14
+ "@player-ui/types": "0.15.2-next.0",
15
15
  "@types/dlv": "^1.1.4",
16
16
  "dequal": "^2.0.2",
17
17
  "dlv": "^1.1.3",
package/src/player.ts CHANGED
@@ -73,6 +73,10 @@ export interface ExtendedPlayerPlugin<
73
73
  Expressions = void,
74
74
  // eslint-disable-next-line @typescript-eslint/no-unused-vars
75
75
  DataTypes = void,
76
+ // eslint-disable-next-line @typescript-eslint/no-unused-vars
77
+ Formatters = void,
78
+ // eslint-disable-next-line @typescript-eslint/no-unused-vars
79
+ Validators = void,
76
80
  > {}
77
81
 
78
82
  export interface PlayerConfigOptions {
package/types/player.d.ts CHANGED
@@ -25,7 +25,7 @@ export interface PlayerPlugin {
25
25
  */
26
26
  apply: (player: Player) => void;
27
27
  }
28
- export interface ExtendedPlayerPlugin<Assets = void, Views = void, Expressions = void, DataTypes = void> {
28
+ export interface ExtendedPlayerPlugin<Assets = void, Views = void, Expressions = void, DataTypes = void, Formatters = void, Validators = void> {
29
29
  }
30
30
  export interface PlayerConfigOptions {
31
31
  /** A set of plugins to load */