@xcpcio/types 0.14.0 → 0.16.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.
package/dist/index.cjs CHANGED
@@ -2,9 +2,9 @@
2
2
 
3
3
  Object.defineProperty(exports, '__esModule', { value: true });
4
4
 
5
- const VERSION = "0.13.0";
5
+ const VERSION = "0.15.0";
6
6
  const GITHUB_URL = "https://github.com/xcpcio/xcpcio";
7
- const GITHUB_SHA = "96efba3dd9";
7
+ const GITHUB_SHA = "b8cabad91c";
8
8
 
9
9
  var ContestState = /* @__PURE__ */ ((ContestState2) => {
10
10
  ContestState2["PENDING"] = "PENDING";
package/dist/index.d.ts CHANGED
@@ -85,9 +85,9 @@ interface StatusTimeDisplay {
85
85
  pending: boolean;
86
86
  }
87
87
 
88
- declare const VERSION = "0.13.0";
88
+ declare const VERSION = "0.15.0";
89
89
  declare const GITHUB_URL = "https://github.com/xcpcio/xcpcio";
90
- declare const GITHUB_SHA = "96efba3dd9";
90
+ declare const GITHUB_SHA = "b8cabad91c";
91
91
 
92
92
  interface ContestIndexConfig {
93
93
  contest_name: string;
@@ -203,6 +203,7 @@ interface Team {
203
203
  unofficial?: boolean;
204
204
  girl?: boolean;
205
205
  badge?: Image;
206
+ location?: string;
206
207
  }
207
208
  type Teams = Array<Team> | Record<string, Team>;
208
209
 
package/dist/index.mjs CHANGED
@@ -1,6 +1,6 @@
1
- const VERSION = "0.13.0";
1
+ const VERSION = "0.15.0";
2
2
  const GITHUB_URL = "https://github.com/xcpcio/xcpcio";
3
- const GITHUB_SHA = "96efba3dd9";
3
+ const GITHUB_SHA = "b8cabad91c";
4
4
 
5
5
  var ContestState = /* @__PURE__ */ ((ContestState2) => {
6
6
  ContestState2["PENDING"] = "PENDING";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xcpcio/types",
3
- "version": "0.14.0",
3
+ "version": "0.16.0",
4
4
  "description": "XCPCIO Types",
5
5
  "author": "Dup4 <lyuzhi.pan@gmail.com>",
6
6
  "license": "MIT",
package/src/team.ts CHANGED
@@ -19,6 +19,8 @@ export interface Team {
19
19
  girl?: boolean;
20
20
 
21
21
  badge?: Image;
22
+
23
+ location?: string;
22
24
  }
23
25
 
24
26
  export type Teams = Array<Team> | Record<string, Team>;