black-diamond-shared 1.0.70 → 1.0.71

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
@@ -1475,12 +1475,12 @@ interface Fixture extends MongoDocument {
1475
1475
  }
1476
1476
  interface PrevFixtures {
1477
1477
  homeTeam?: {
1478
- home?: string[] | Fixture[];
1479
- all?: string[] | Fixture[];
1478
+ home?: Fixture[];
1479
+ all?: Fixture[];
1480
1480
  };
1481
1481
  awayTeam?: {
1482
- away?: string[] | Fixture[];
1483
- all?: string[] | Fixture[];
1482
+ away?: Fixture[];
1483
+ all?: Fixture[];
1484
1484
  };
1485
1485
  }
1486
1486
  interface TeamLast5 {
package/dist/index.d.ts CHANGED
@@ -1475,12 +1475,12 @@ interface Fixture extends MongoDocument {
1475
1475
  }
1476
1476
  interface PrevFixtures {
1477
1477
  homeTeam?: {
1478
- home?: string[] | Fixture[];
1479
- all?: string[] | Fixture[];
1478
+ home?: Fixture[];
1479
+ all?: Fixture[];
1480
1480
  };
1481
1481
  awayTeam?: {
1482
- away?: string[] | Fixture[];
1483
- all?: string[] | Fixture[];
1482
+ away?: Fixture[];
1483
+ all?: Fixture[];
1484
1484
  };
1485
1485
  }
1486
1486
  interface TeamLast5 {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "black-diamond-shared",
3
- "version": "1.0.70",
3
+ "version": "1.0.71",
4
4
  "description": "Shared code between Black Diamond repositories",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",