@glissandoo/lib 1.53.5 → 1.53.6

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.
@@ -20,6 +20,7 @@ export default class EventoPlayerBasic {
20
20
  get isPendingInterested(): boolean;
21
21
  get isSelected(): boolean;
22
22
  get isDiscarded(): boolean;
23
+ get isPendingSelected(): boolean;
23
24
  get isConfirmed(): boolean;
24
25
  get isDeclined(): boolean;
25
26
  get isPending(): boolean;
@@ -55,6 +55,9 @@ class EventoPlayerBasic {
55
55
  get isDiscarded() {
56
56
  return this.selected === false;
57
57
  }
58
+ get isPendingSelected() {
59
+ return this.selected === null;
60
+ }
58
61
  get isConfirmed() {
59
62
  return this.status === types_1.EventPlayerStatus.Confirmed;
60
63
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@glissandoo/lib",
3
- "version": "1.53.5",
3
+ "version": "1.53.6",
4
4
  "description": "Glissandoo library js",
5
5
  "main": "./index.js",
6
6
  "types": "./index.d.ts",