@gamelobby/common 1.0.306 → 1.0.307

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.
@@ -0,0 +1,9 @@
1
+ import { AwardType } from "./awardType.enum";
2
+ export interface AwardNew {
3
+ _id?: string;
4
+ order: number;
5
+ type: AwardType;
6
+ value: string;
7
+ description: string;
8
+ link: string;
9
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,6 @@
1
+ export declare enum AwardType {
2
+ GLC = "GLC",
3
+ ESPECIE = "ESPECIE",
4
+ TROPHY = "TROPHY",
5
+ OTRO = "OTRO"
6
+ }
@@ -0,0 +1,10 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.AwardType = void 0;
4
+ var AwardType;
5
+ (function (AwardType) {
6
+ AwardType["GLC"] = "GLC";
7
+ AwardType["ESPECIE"] = "ESPECIE";
8
+ AwardType["TROPHY"] = "TROPHY";
9
+ AwardType["OTRO"] = "OTRO";
10
+ })(AwardType = exports.AwardType || (exports.AwardType = {}));
@@ -67,3 +67,5 @@ export * from './registrationType';
67
67
  export * from './tournamentRound.interface';
68
68
  export * from './request.interface';
69
69
  export * from './requestStates.enum';
70
+ export * from './awardNew.interface';
71
+ export * from './awardType.enum';
@@ -79,3 +79,5 @@ __exportStar(require("./registrationType"), exports);
79
79
  __exportStar(require("./tournamentRound.interface"), exports);
80
80
  __exportStar(require("./request.interface"), exports);
81
81
  __exportStar(require("./requestStates.enum"), exports);
82
+ __exportStar(require("./awardNew.interface"), exports);
83
+ __exportStar(require("./awardType.enum"), exports);
@@ -1,3 +1,4 @@
1
+ import { AwardNew } from "./awardNew.interface";
1
2
  import { Awards } from "./awards.interface";
2
3
  import { ConfigRoom } from "./config.interface";
3
4
  import { Game } from "./game.interface";
@@ -82,4 +83,5 @@ export interface Room {
82
83
  registrationOpen?: boolean;
83
84
  registrationType?: RegistrationType;
84
85
  round?: number;
86
+ awardsNew?: AwardNew;
85
87
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gamelobby/common",
3
- "version": "1.0.306",
3
+ "version": "1.0.307",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",