xpt-shared-types 1.0.2 → 1.0.3

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.ts CHANGED
@@ -1,2 +1,4 @@
1
1
  export * from './types/country';
2
+ export * from './types/match';
3
+ export * from './types/tournament';
2
4
  export * from './data/countriesList';
package/dist/index.js CHANGED
@@ -16,5 +16,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
17
  // Export types
18
18
  __exportStar(require("./types/country"), exports);
19
+ __exportStar(require("./types/match"), exports);
20
+ __exportStar(require("./types/tournament"), exports);
19
21
  // Export data
20
22
  __exportStar(require("./data/countriesList"), exports);
@@ -0,0 +1 @@
1
+ export type MatchRound = 'Round 32' | 'Round 16' | 'Quarter Final' | 'Semi-Final' | 'Third Round' | 'Finals' | 'League';
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1 @@
1
+ export type TournamentType = 'Single Elimination' | 'League' | 'Double Elimination';
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "xpt-shared-types",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "description": "Shared types and data for XPT projects",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",