@bp1222/stats-api 0.2.0 → 0.2.1

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.d.mts CHANGED
@@ -356,6 +356,7 @@ declare const GameStatusCode: {
356
356
  readonly InProgress: "I";
357
357
  readonly Pregame: "P";
358
358
  readonly GameOver: "O";
359
+ readonly Canceled: "C";
359
360
  };
360
361
  type GameStatusCode = typeof GameStatusCode[keyof typeof GameStatusCode];
361
362
  declare function instanceOfGameStatusCode(value: any): boolean;
package/dist/index.d.ts CHANGED
@@ -356,6 +356,7 @@ declare const GameStatusCode: {
356
356
  readonly InProgress: "I";
357
357
  readonly Pregame: "P";
358
358
  readonly GameOver: "O";
359
+ readonly Canceled: "C";
359
360
  };
360
361
  type GameStatusCode = typeof GameStatusCode[keyof typeof GameStatusCode];
361
362
  declare function instanceOfGameStatusCode(value: any): boolean;
package/dist/index.js CHANGED
@@ -972,7 +972,8 @@ var GameStatusCode = {
972
972
  Scheduled: "S",
973
973
  InProgress: "I",
974
974
  Pregame: "P",
975
- GameOver: "O"
975
+ GameOver: "O",
976
+ Canceled: "C"
976
977
  };
977
978
  function instanceOfGameStatusCode(value) {
978
979
  for (const key in GameStatusCode) {
package/dist/index.mjs CHANGED
@@ -843,7 +843,8 @@ var GameStatusCode = {
843
843
  Scheduled: "S",
844
844
  InProgress: "I",
845
845
  Pregame: "P",
846
- GameOver: "O"
846
+ GameOver: "O",
847
+ Canceled: "C"
847
848
  };
848
849
  function instanceOfGameStatusCode(value) {
849
850
  for (const key in GameStatusCode) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bp1222/stats-api",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "main": "dist/index.js",
5
5
  "module": "dist/index.mjs",
6
6
  "types": "dist/index.d.ts",