black-diamond-shared 1.0.68 → 1.0.70
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 +10 -9
- package/dist/index.d.ts +10 -9
- package/package.json +1 -1
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
|
-
|
|
1476
|
-
|
|
1477
|
-
|
|
1478
|
-
|
|
1479
|
-
|
|
1480
|
-
|
|
1481
|
-
|
|
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
|
-
|
|
1476
|
-
|
|
1477
|
-
|
|
1478
|
-
|
|
1479
|
-
|
|
1480
|
-
|
|
1481
|
-
|
|
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 {
|