tods-competition-factory 1.8.39 → 1.8.40
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 +5 -3
- package/dist/index.mjs.map +1 -1
- package/dist/tods-competition-factory.development.cjs.js +3 -2
- 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 +1 -1
package/dist/index.mjs
CHANGED
|
@@ -2404,7 +2404,7 @@ const matchUpFormatCode = {
|
|
|
2404
2404
|
};
|
|
2405
2405
|
|
|
2406
2406
|
function factoryVersion() {
|
|
2407
|
-
return "1.8.
|
|
2407
|
+
return "1.8.40";
|
|
2408
2408
|
}
|
|
2409
2409
|
|
|
2410
2410
|
function getObjectTieFormat(obj) {
|
|
@@ -58180,7 +58180,8 @@ function deleteFlightAndFlightDraw({
|
|
|
58180
58180
|
tournamentRecord,
|
|
58181
58181
|
auditData,
|
|
58182
58182
|
drawId,
|
|
58183
|
-
event
|
|
58183
|
+
event,
|
|
58184
|
+
force
|
|
58184
58185
|
}) {
|
|
58185
58186
|
if (!tournamentRecord)
|
|
58186
58187
|
return { error: MISSING_TOURNAMENT_RECORD };
|
|
@@ -58217,7 +58218,8 @@ function deleteFlightAndFlightDraw({
|
|
|
58217
58218
|
tournamentRecord,
|
|
58218
58219
|
autoPublish,
|
|
58219
58220
|
auditData,
|
|
58220
|
-
event
|
|
58221
|
+
event,
|
|
58222
|
+
force
|
|
58221
58223
|
});
|
|
58222
58224
|
if (result.error)
|
|
58223
58225
|
return result;
|