@glissandoo/lib 1.117.0 → 1.118.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.
@@ -34,4 +34,5 @@ export default class EventoPlayerBasic {
34
34
  get isRollCallConfirmed(): boolean;
35
35
  get isRollCallDeclined(): boolean;
36
36
  get questions(): import("./types").EventPlayerAnswers[];
37
+ get paymentId(): string | null;
37
38
  }
@@ -91,5 +91,8 @@ class EventoPlayerBasic {
91
91
  get questions() {
92
92
  return this.data.questions || [];
93
93
  }
94
+ get paymentId() {
95
+ return this.data.paymentId || null;
96
+ }
94
97
  }
95
98
  exports.default = EventoPlayerBasic;
@@ -118,6 +118,7 @@ export interface EventPlayerBasicData extends PlayerBasicData {
118
118
  reason?: EventPlayerReason | null;
119
119
  /** @deprecated use status */
120
120
  interested: true | null;
121
+ paymentId?: string | null;
121
122
  }
122
123
  export interface AEventPlayerBasicData extends EventPlayerBasicData {
123
124
  id: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@glissandoo/lib",
3
- "version": "1.117.0",
3
+ "version": "1.118.0",
4
4
  "description": "Glissandoo library js",
5
5
  "main": "./index.js",
6
6
  "types": "./index.d.ts",