tenniscommon 1.1.44 → 1.1.46

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.
@@ -95,6 +95,7 @@ export interface MatchplayUIItem extends MatchplayItem {
95
95
  opponentName: string;
96
96
  opponentNameTwo?: string;
97
97
  tournamentName: string;
98
+ tournamentYear: string;
98
99
  }
99
100
  export interface PointStats {
100
101
  general: {
@@ -170,6 +171,7 @@ export interface MatchplayUIResponse {
170
171
  matchplayUIData: Record<string, MatchplayUIItem[]>;
171
172
  opponentNameMap: Record<string, string>;
172
173
  tournamentNameMap: Record<string, string>;
174
+ tournamentYearMap: Record<string, string>;
173
175
  }
174
176
  export interface MatchplayStats {
175
177
  Career: StatsPack;
@@ -95,6 +95,7 @@ export interface MatchplayUIItem extends MatchplayItem {
95
95
  opponentName: string;
96
96
  opponentNameTwo?: string;
97
97
  tournamentName: string;
98
+ tournamentYear: string;
98
99
  }
99
100
  export interface PointStats {
100
101
  general: {
@@ -170,6 +171,7 @@ export interface MatchplayUIResponse {
170
171
  matchplayUIData: Record<string, MatchplayUIItem[]>;
171
172
  opponentNameMap: Record<string, string>;
172
173
  tournamentNameMap: Record<string, string>;
174
+ tournamentYearMap: Record<string, string>;
173
175
  }
174
176
  export interface MatchplayStats {
175
177
  Career: StatsPack;
@@ -95,6 +95,7 @@ export interface MatchplayUIItem extends MatchplayItem {
95
95
  opponentName: string;
96
96
  opponentNameTwo?: string;
97
97
  tournamentName: string;
98
+ tournamentYear: string;
98
99
  }
99
100
  export interface PointStats {
100
101
  general: {
@@ -170,6 +171,7 @@ export interface MatchplayUIResponse {
170
171
  matchplayUIData: Record<string, MatchplayUIItem[]>;
171
172
  opponentNameMap: Record<string, string>;
172
173
  tournamentNameMap: Record<string, string>;
174
+ tournamentYearMap: Record<string, string>;
173
175
  }
174
176
  export interface MatchplayStats {
175
177
  Career: StatsPack;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tenniscommon",
3
- "version": "1.1.44",
3
+ "version": "1.1.46",
4
4
  "description": "Types for Tennis application",
5
5
  "main": "dist/cjs/index.js",
6
6
  "module": "dist/esm/index.js",