heartraite 1.0.137 → 1.0.139

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.
@@ -1,5 +1,6 @@
1
1
  export declare enum MatchmakingMode {
2
2
  ACTIVE = "active",
3
3
  PAUSED = "paused",
4
- DISABLED = "disabled"
4
+ DISABLED = "disabled",
5
+ IN_EVENT = "in_event"
5
6
  }
@@ -6,4 +6,5 @@ var MatchmakingMode;
6
6
  MatchmakingMode["ACTIVE"] = "active";
7
7
  MatchmakingMode["PAUSED"] = "paused";
8
8
  MatchmakingMode["DISABLED"] = "disabled";
9
+ MatchmakingMode["IN_EVENT"] = "in_event";
9
10
  })(MatchmakingMode || (exports.MatchmakingMode = MatchmakingMode = {}));
@@ -56,6 +56,7 @@ export type EventMatchStats = {
56
56
  totalPairs: number;
57
57
  topMatches: EventMatchPair[];
58
58
  averageCompatibility: number;
59
+ excludedParticipantIds: string[];
59
60
  };
60
61
  export type FullEvent = Omit<Event, "participants"> & {
61
62
  participants: FullParticipant[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "heartraite",
3
- "version": "1.0.137",
3
+ "version": "1.0.139",
4
4
  "description": "Heartraite npm package for common functionality",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -2,4 +2,5 @@ export enum MatchmakingMode {
2
2
  ACTIVE = "active",
3
3
  PAUSED = "paused",
4
4
  DISABLED = "disabled",
5
+ IN_EVENT = "in_event",
5
6
  }
@@ -63,6 +63,7 @@ export type EventMatchStats = {
63
63
  totalPairs: number;
64
64
  topMatches: EventMatchPair[];
65
65
  averageCompatibility: number;
66
+ excludedParticipantIds: string[];
66
67
  };
67
68
 
68
69
  export type FullEvent = Omit<Event, "participants"> & {