tods-competition-factory 2.2.29 → 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.
@@ -4619,11 +4619,11 @@ declare function deleteFlightProfileAndFlightDraws({ autoPublish, tournamentReco
4619
4619
  event: any;
4620
4620
  force: any;
4621
4621
  }): {
4622
+ error: any;
4623
+ } | {
4622
4624
  success?: boolean;
4623
4625
  error?: ErrorType;
4624
4626
  info?: any;
4625
- } | {
4626
- error: any;
4627
4627
  };
4628
4628
 
4629
4629
  type ModifyEventMatchUpFormatTimingArgs = {
@@ -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): any;
5715
+ declare function setMatchUpStatus(params: SetMatchUpStatusArgs): ResultType;
5715
5716
 
5716
- declare function bulkMatchUpStatusUpdate(params: any): 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;