@gamelobby/common 1.0.358 → 1.0.360

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.
@@ -2,6 +2,6 @@ import { Match, Notification, Room } from "../interfaces";
2
2
  import { ActionDone } from "./actionDone.dto";
3
3
  export interface DoneDTO {
4
4
  uuid: string;
5
- component: string;
5
+ component?: string;
6
6
  data?: Room | Match | Notification | ActionDone;
7
7
  }
@@ -1,6 +1,7 @@
1
1
  import { Trophy } from "./trophy.interface";
2
2
  import { User } from "./user.interface";
3
3
  export interface Award {
4
+ id?: number;
4
5
  _id?: string;
5
6
  name: string;
6
7
  trophy: string;
@@ -2,6 +2,7 @@ import { ChatType } from "./chatType.enum";
2
2
  import { ChatTypeMessage } from "./chatTypeMessage.enum";
3
3
  import { Team } from "./team.interface";
4
4
  export interface Chat {
5
+ id?: number;
5
6
  _id?: string;
6
7
  type: ChatType;
7
8
  uuid: string;
@@ -1,4 +1,5 @@
1
1
  export interface Point {
2
+ id?: number;
2
3
  _id?: string;
3
4
  event: string;
4
5
  points: number;
@@ -103,4 +103,5 @@ export interface Room {
103
103
  };
104
104
  gameDay?: GameDay;
105
105
  bannerImageUrl?: string;
106
+ showOpponentInInvitation?: boolean;
106
107
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gamelobby/common",
3
- "version": "1.0.358",
3
+ "version": "1.0.360",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",