black-diamond-shared 1.0.68 → 1.0.69

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