black-diamond-shared 1.0.51 → 1.0.52

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
@@ -201,9 +201,9 @@ interface TeamStat extends MongoDocument {
201
201
  total: number;
202
202
  };
203
203
  };
204
- form: string;
205
- formHome: string;
206
- formAway: string;
204
+ form: ("W" | "L" | "D")[];
205
+ formHome: ("W" | "L" | "D")[];
206
+ formAway: ("W" | "L" | "D")[];
207
207
  goals: {
208
208
  for: {
209
209
  total: {
package/dist/index.d.ts CHANGED
@@ -201,9 +201,9 @@ interface TeamStat extends MongoDocument {
201
201
  total: number;
202
202
  };
203
203
  };
204
- form: string;
205
- formHome: string;
206
- formAway: string;
204
+ form: ("W" | "L" | "D")[];
205
+ formHome: ("W" | "L" | "D")[];
206
+ formAway: ("W" | "L" | "D")[];
207
207
  goals: {
208
208
  for: {
209
209
  total: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "black-diamond-shared",
3
- "version": "1.0.51",
3
+ "version": "1.0.52",
4
4
  "description": "Shared code between Black Diamond repositories",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",