tods-competition-factory 2.2.30 → 2.2.31
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.mjs +8 -8
- package/dist/tods-competition-factory.d.ts +18 -3
- package/dist/tods-competition-factory.development.cjs.js +235 -158
- package/dist/tods-competition-factory.development.cjs.js.map +1 -1
- package/dist/tods-competition-factory.production.cjs.min.js +1 -1
- package/dist/tods-competition-factory.production.cjs.min.js.map +1 -1
- package/package.json +37 -37
|
@@ -5696,8 +5696,9 @@ type SetMatchUpStatusArgs = {
|
|
|
5696
5696
|
policyDefinitions?: PolicyDefinitions;
|
|
5697
5697
|
disableScoreValidation?: boolean;
|
|
5698
5698
|
allowChangePropagation?: boolean;
|
|
5699
|
-
tournamentRecord: Tournament;
|
|
5700
5699
|
drawDefinition: DrawDefinition;
|
|
5700
|
+
propagateExitStatus?: boolean;
|
|
5701
|
+
tournamentRecord: Tournament;
|
|
5701
5702
|
disableAutoCalc?: boolean;
|
|
5702
5703
|
enableAutoCalc?: boolean;
|
|
5703
5704
|
matchUpFormat?: string;
|
|
@@ -5711,9 +5712,23 @@ type SetMatchUpStatusArgs = {
|
|
|
5711
5712
|
event?: Event$1;
|
|
5712
5713
|
outcome?: any;
|
|
5713
5714
|
};
|
|
5714
|
-
declare function setMatchUpStatus(params: SetMatchUpStatusArgs):
|
|
5715
|
+
declare function setMatchUpStatus(params: SetMatchUpStatusArgs): ResultType;
|
|
5715
5716
|
|
|
5716
|
-
declare function bulkMatchUpStatusUpdate(params: any):
|
|
5717
|
+
declare function bulkMatchUpStatusUpdate(params: any): ResultType | {
|
|
5718
|
+
error: {
|
|
5719
|
+
message: string;
|
|
5720
|
+
code: string;
|
|
5721
|
+
};
|
|
5722
|
+
info?: undefined;
|
|
5723
|
+
} | {
|
|
5724
|
+
error: {
|
|
5725
|
+
message: string;
|
|
5726
|
+
code: string;
|
|
5727
|
+
};
|
|
5728
|
+
info: {
|
|
5729
|
+
outcomes: any;
|
|
5730
|
+
};
|
|
5731
|
+
};
|
|
5717
5732
|
|
|
5718
5733
|
declare function setDelegatedOutcome(params: any): {
|
|
5719
5734
|
success?: boolean;
|