@xcpcio/core 0.53.1 → 0.54.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.
Files changed (2) hide show
  1. package/package.json +2 -2
  2. package/src/rank.ts +2 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xcpcio/core",
3
- "version": "0.53.1",
3
+ "version": "0.54.0",
4
4
  "description": "XCPCIO Core",
5
5
  "author": "Dup4 <lyuzhi.pan@gmail.com>",
6
6
  "license": "MIT",
@@ -49,7 +49,7 @@
49
49
  "papaparse": "^5.4.1",
50
50
  "string-width": "^7.2.0",
51
51
  "xlsx-js-style": "^1.2.0",
52
- "@xcpcio/types": "0.53.1"
52
+ "@xcpcio/types": "0.54.0"
53
53
  },
54
54
  "devDependencies": {
55
55
  "@babel/types": "^7.25.7",
package/src/rank.ts CHANGED
@@ -142,10 +142,10 @@ export class Rank {
142
142
  readonly contest: Contest;
143
143
 
144
144
  teams: Teams;
145
- teamsMap: Map<string, Team>;
145
+ teamsMap: Map<string /* teamId */, Team>;
146
146
 
147
147
  submissions: Submissions;
148
- submissionsMap: Map<string, Submission>;
148
+ submissionsMap: Map<string /* submissionId */, Submission>;
149
149
 
150
150
  organizations: Array<string>;
151
151
  originTeams: Teams;