c2-climbing-x 1.0.42 → 1.0.43

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.
@@ -4,7 +4,7 @@
4
4
  export declare enum MatchStatus {
5
5
  PENDING = "PENDING",
6
6
  SCHEDULED = "SCHEDULED",
7
- IN_PLAY = "IN_PLAY",
7
+ IN_PROGRESS = "IN_PROGRESS",
8
8
  FINISHED = "FINISHED",
9
9
  POSTPONED = "POSTPONED",
10
10
  CANCELLED = "CANCELLED"
@@ -8,7 +8,7 @@ var MatchStatus;
8
8
  (function (MatchStatus) {
9
9
  MatchStatus["PENDING"] = "PENDING";
10
10
  MatchStatus["SCHEDULED"] = "SCHEDULED";
11
- MatchStatus["IN_PLAY"] = "IN_PLAY";
11
+ MatchStatus["IN_PROGRESS"] = "IN_PROGRESS";
12
12
  MatchStatus["FINISHED"] = "FINISHED";
13
13
  MatchStatus["POSTPONED"] = "POSTPONED";
14
14
  MatchStatus["CANCELLED"] = "CANCELLED";
@@ -3,8 +3,9 @@
3
3
  * CLOSED = rodada encerrada; Desafio não pode usar como rodada mínima uma rodada já CLOSED.
4
4
  */
5
5
  export declare enum RoundStatus {
6
- NOT_PLAYED = "NOT_PLAYED",
6
+ CANCELLED = "CANCELLED",
7
7
  SCHEDULED = "SCHEDULED",
8
8
  IN_PROGRESS = "IN_PROGRESS",
9
+ IN_HOMOLOGATION = "IN_HOMOLOGATION",
9
10
  FINISHED = "FINISHED"
10
11
  }
@@ -7,8 +7,9 @@ exports.RoundStatus = void 0;
7
7
  */
8
8
  var RoundStatus;
9
9
  (function (RoundStatus) {
10
- RoundStatus["NOT_PLAYED"] = "NOT_PLAYED";
10
+ RoundStatus["CANCELLED"] = "CANCELLED";
11
11
  RoundStatus["SCHEDULED"] = "SCHEDULED";
12
12
  RoundStatus["IN_PROGRESS"] = "IN_PROGRESS";
13
+ RoundStatus["IN_HOMOLOGATION"] = "IN_HOMOLOGATION";
13
14
  RoundStatus["FINISHED"] = "FINISHED";
14
15
  })(RoundStatus || (exports.RoundStatus = RoundStatus = {}));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "c2-climbing-x",
3
- "version": "1.0.42",
3
+ "version": "1.0.43",
4
4
  "description": "Modelagem TypeScript/Mongoose para o jogo Escalada X (times, campeonatos, fases, rodadas, confrontos, desafios)",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",