tods-competition-factory 1.8.11 → 1.8.12
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/forge/query.mjs +4 -7
- package/dist/forge/query.mjs.map +1 -1
- package/dist/index.mjs +86 -95
- package/dist/index.mjs.map +1 -1
- package/dist/tods-competition-factory.development.cjs.js +108 -131
- 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
|
@@ -2898,7 +2898,7 @@ var matchUpFormatCode = {
|
|
|
2898
2898
|
};
|
|
2899
2899
|
|
|
2900
2900
|
function factoryVersion() {
|
|
2901
|
-
return '1.8.
|
|
2901
|
+
return '1.8.12';
|
|
2902
2902
|
}
|
|
2903
2903
|
|
|
2904
2904
|
function getObjectTieFormat(obj) {
|
|
@@ -18980,6 +18980,45 @@ function removeExtraneousAttributes(matchUps, matchUpFormatMap) {
|
|
|
18980
18980
|
}
|
|
18981
18981
|
}
|
|
18982
18982
|
|
|
18983
|
+
function participantScaleItem(_a) {
|
|
18984
|
+
var _b, _c;
|
|
18985
|
+
var requireTimeStamp = _a.requireTimeStamp, scaleAttributes = _a.scaleAttributes, participant = _a.participant;
|
|
18986
|
+
if (!participant)
|
|
18987
|
+
return { error: MISSING_PARTICIPANT };
|
|
18988
|
+
if (typeof scaleAttributes !== 'object')
|
|
18989
|
+
return { error: INVALID_VALUES };
|
|
18990
|
+
if (!participant.timeItems)
|
|
18991
|
+
participant.timeItems = [];
|
|
18992
|
+
if (Array.isArray(participant.timeItems)) {
|
|
18993
|
+
var accessor = scaleAttributes.accessor, scaleType = scaleAttributes.scaleType, eventType = scaleAttributes.eventType, scaleName = scaleAttributes.scaleName;
|
|
18994
|
+
var filterType_1 = [SCALE$1, scaleType, eventType, scaleName].join('.');
|
|
18995
|
+
var filteredTimeItems = participant.timeItems
|
|
18996
|
+
.filter(function (timeItem) { return (timeItem === null || timeItem === void 0 ? void 0 : timeItem.itemType) === filterType_1; })
|
|
18997
|
+
.filter(function (timeItem) { return !requireTimeStamp || (timeItem === null || timeItem === void 0 ? void 0 : timeItem.itemDate); })
|
|
18998
|
+
.sort(function (a, b) {
|
|
18999
|
+
return (a.createdAt ? new Date(a.createdAt).getTime() : 0) -
|
|
19000
|
+
(b.createdAt ? new Date(b.createdAt).getTime() : 0);
|
|
19001
|
+
});
|
|
19002
|
+
var timeItem = filteredTimeItems.pop();
|
|
19003
|
+
if (timeItem) {
|
|
19004
|
+
var _d = __read((_c = (_b = timeItem.itemType) === null || _b === void 0 ? void 0 : _b.split('.')) !== null && _c !== void 0 ? _c : [], 4), itemSubject = _d[0], scaleType_1 = _d[1], eventType_1 = _d[2], scaleName_1 = _d[3];
|
|
19005
|
+
if (itemSubject !== SCALE$1)
|
|
19006
|
+
return { error: INVALID_SCALE_ITEM };
|
|
19007
|
+
var accessorValue = accessor && getAccessorValue({ element: timeItem.itemValue, accessor: accessor });
|
|
19008
|
+
var scaleValue = (accessorValue === null || accessorValue === void 0 ? void 0 : accessorValue.value) || timeItem.itemValue;
|
|
19009
|
+
var scaleItem = {
|
|
19010
|
+
eventType: eventType_1,
|
|
19011
|
+
scaleDate: timeItem.itemDate,
|
|
19012
|
+
scaleValue: scaleValue,
|
|
19013
|
+
scaleName: scaleName_1,
|
|
19014
|
+
scaleType: scaleType_1,
|
|
19015
|
+
};
|
|
19016
|
+
return __assign(__assign({}, SUCCESS), { scaleItem: scaleItem });
|
|
19017
|
+
}
|
|
19018
|
+
}
|
|
19019
|
+
return __assign(__assign({}, SUCCESS), { scaleItem: undefined });
|
|
19020
|
+
}
|
|
19021
|
+
|
|
18983
19022
|
function getCourtDateAvailability(_a) {
|
|
18984
19023
|
var court = _a.court, date = _a.date;
|
|
18985
19024
|
var targetDateAvailability = date &&
|
|
@@ -28884,45 +28923,6 @@ function getEventPublishStatuses(_a) {
|
|
|
28884
28923
|
return undefined;
|
|
28885
28924
|
}
|
|
28886
28925
|
|
|
28887
|
-
function participantScaleItem(_a) {
|
|
28888
|
-
var _b, _c;
|
|
28889
|
-
var requireTimeStamp = _a.requireTimeStamp, scaleAttributes = _a.scaleAttributes, participant = _a.participant;
|
|
28890
|
-
if (!participant)
|
|
28891
|
-
return { error: MISSING_PARTICIPANT };
|
|
28892
|
-
if (typeof scaleAttributes !== 'object')
|
|
28893
|
-
return { error: INVALID_VALUES };
|
|
28894
|
-
if (!participant.timeItems)
|
|
28895
|
-
participant.timeItems = [];
|
|
28896
|
-
if (Array.isArray(participant.timeItems)) {
|
|
28897
|
-
var accessor = scaleAttributes.accessor, scaleType = scaleAttributes.scaleType, eventType = scaleAttributes.eventType, scaleName = scaleAttributes.scaleName;
|
|
28898
|
-
var filterType_1 = [SCALE$1, scaleType, eventType, scaleName].join('.');
|
|
28899
|
-
var filteredTimeItems = participant.timeItems
|
|
28900
|
-
.filter(function (timeItem) { return (timeItem === null || timeItem === void 0 ? void 0 : timeItem.itemType) === filterType_1; })
|
|
28901
|
-
.filter(function (timeItem) { return !requireTimeStamp || (timeItem === null || timeItem === void 0 ? void 0 : timeItem.itemDate); })
|
|
28902
|
-
.sort(function (a, b) {
|
|
28903
|
-
return (a.createdAt ? new Date(a.createdAt).getTime() : 0) -
|
|
28904
|
-
(b.createdAt ? new Date(b.createdAt).getTime() : 0);
|
|
28905
|
-
});
|
|
28906
|
-
var timeItem = filteredTimeItems.pop();
|
|
28907
|
-
if (timeItem) {
|
|
28908
|
-
var _d = __read((_c = (_b = timeItem.itemType) === null || _b === void 0 ? void 0 : _b.split('.')) !== null && _c !== void 0 ? _c : [], 4), itemSubject = _d[0], scaleType_1 = _d[1], eventType_1 = _d[2], scaleName_1 = _d[3];
|
|
28909
|
-
if (itemSubject !== SCALE$1)
|
|
28910
|
-
return { error: INVALID_SCALE_ITEM };
|
|
28911
|
-
var accessorValue = accessor && getAccessorValue({ element: timeItem.itemValue, accessor: accessor });
|
|
28912
|
-
var scaleValue = (accessorValue === null || accessorValue === void 0 ? void 0 : accessorValue.value) || timeItem.itemValue;
|
|
28913
|
-
var scaleItem = {
|
|
28914
|
-
eventType: eventType_1,
|
|
28915
|
-
scaleDate: timeItem.itemDate,
|
|
28916
|
-
scaleValue: scaleValue,
|
|
28917
|
-
scaleName: scaleName_1,
|
|
28918
|
-
scaleType: scaleType_1,
|
|
28919
|
-
};
|
|
28920
|
-
return __assign(__assign({}, SUCCESS), { scaleItem: scaleItem });
|
|
28921
|
-
}
|
|
28922
|
-
}
|
|
28923
|
-
return __assign(__assign({}, SUCCESS), { scaleItem: undefined });
|
|
28924
|
-
}
|
|
28925
|
-
|
|
28926
28926
|
function getEventSeedAssignments(_a) {
|
|
28927
28927
|
var e_1, _b;
|
|
28928
28928
|
var _c, _d, _e;
|
|
@@ -39484,9 +39484,7 @@ function matchUpActions$2(_a) {
|
|
|
39484
39484
|
},
|
|
39485
39485
|
});
|
|
39486
39486
|
}
|
|
39487
|
-
if (
|
|
39488
|
-
// isInComplete && // TODO: determine whether removal should be disallowed for completed matchUps => policy consideration?
|
|
39489
|
-
(existingParticipantIds_1 === null || existingParticipantIds_1 === void 0 ? void 0 : existingParticipantIds_1.length) &&
|
|
39487
|
+
if ((existingParticipantIds_1 === null || existingParticipantIds_1 === void 0 ? void 0 : existingParticipantIds_1.length) &&
|
|
39490
39488
|
(!scoreHasValue(matchUp) || ((_6 = side === null || side === void 0 ? void 0 : side.substitutions) === null || _6 === void 0 ? void 0 : _6.length))) {
|
|
39491
39489
|
validActions.push({
|
|
39492
39490
|
method: REMOVE_TEAM_POSITION_METHOD,
|
|
@@ -41182,6 +41180,42 @@ function setState$4(records, deepCopyOption) {
|
|
|
41182
41180
|
return setTournamentRecords(deepCopyOption ? makeDeepCopy(records) : records);
|
|
41183
41181
|
}
|
|
41184
41182
|
|
|
41183
|
+
function engineLogging(_a) {
|
|
41184
|
+
var _b, _c;
|
|
41185
|
+
var result = _a.result, methodName = _a.methodName, elapsed = _a.elapsed, params = _a.params, engine = _a.engine;
|
|
41186
|
+
var devContext = getDevContext();
|
|
41187
|
+
var log = { method: methodName };
|
|
41188
|
+
var logError = result.error &&
|
|
41189
|
+
(devContext.errors === true ||
|
|
41190
|
+
(Array.isArray(devContext.errors) &&
|
|
41191
|
+
devContext.errors.includes(methodName)));
|
|
41192
|
+
var specifiedMethodParams = Array.isArray(devContext.params) && ((_b = devContext.params) === null || _b === void 0 ? void 0 : _b.includes(methodName));
|
|
41193
|
+
var logParams = (devContext.params && !Array.isArray(devContext.params)) ||
|
|
41194
|
+
specifiedMethodParams;
|
|
41195
|
+
var exclude = Array.isArray(devContext.exclude) &&
|
|
41196
|
+
devContext.exclude.includes(methodName);
|
|
41197
|
+
if (!exclude &&
|
|
41198
|
+
![undefined, false].includes(devContext.perf) &&
|
|
41199
|
+
(isNaN(devContext.perf) || elapsed > devContext.perf))
|
|
41200
|
+
log.elapsed = elapsed;
|
|
41201
|
+
if (!exclude && (logError || logParams)) {
|
|
41202
|
+
log.params = params;
|
|
41203
|
+
}
|
|
41204
|
+
if (!exclude &&
|
|
41205
|
+
(logError ||
|
|
41206
|
+
(devContext.result &&
|
|
41207
|
+
!Array.isArray(devContext.result) &&
|
|
41208
|
+
(!Array.isArray(devContext.params) || specifiedMethodParams)) ||
|
|
41209
|
+
(Array.isArray(devContext.result) &&
|
|
41210
|
+
((_c = devContext.result) === null || _c === void 0 ? void 0 : _c.includes(methodName))))) {
|
|
41211
|
+
log.result = result;
|
|
41212
|
+
}
|
|
41213
|
+
if (Object.keys(log).length > 1)
|
|
41214
|
+
console.log(engine, log);
|
|
41215
|
+
if (devContext.makeDeepCopy)
|
|
41216
|
+
result.deepCopyIterations = getDeepCopyIterations();
|
|
41217
|
+
}
|
|
41218
|
+
|
|
41185
41219
|
var competitionEngine = (function () {
|
|
41186
41220
|
var engine = {
|
|
41187
41221
|
getState: function (params) {
|
|
@@ -41243,40 +41277,12 @@ var competitionEngine = (function () {
|
|
|
41243
41277
|
return engine;
|
|
41244
41278
|
}
|
|
41245
41279
|
function executeFunction(tournamentRecords, method, params, methodName) {
|
|
41246
|
-
var _a, _b;
|
|
41247
41280
|
delete engine.success;
|
|
41248
41281
|
delete engine.error;
|
|
41249
41282
|
var start = Date.now();
|
|
41250
41283
|
var result = method(__assign({ tournamentRecords: tournamentRecords }, params));
|
|
41251
41284
|
var elapsed = Date.now() - start;
|
|
41252
|
-
|
|
41253
|
-
var log = { method: methodName };
|
|
41254
|
-
var logError = result.error &&
|
|
41255
|
-
(devContext.errors === true ||
|
|
41256
|
-
(Array.isArray(devContext.errors) &&
|
|
41257
|
-
devContext.errors.includes(methodName)));
|
|
41258
|
-
var exclude = Array.isArray(devContext.exclude) &&
|
|
41259
|
-
devContext.exclude.includes(methodName);
|
|
41260
|
-
if (!exclude &&
|
|
41261
|
-
![undefined, false].includes(devContext.perf) &&
|
|
41262
|
-
(isNaN(devContext.perf) || elapsed > devContext.perf))
|
|
41263
|
-
log.elapsed = elapsed;
|
|
41264
|
-
if (!exclude &&
|
|
41265
|
-
(logError ||
|
|
41266
|
-
(devContext.params && !Array.isArray(devContext.params)) ||
|
|
41267
|
-
(Array.isArray(devContext.params) &&
|
|
41268
|
-
((_a = devContext.params) === null || _a === void 0 ? void 0 : _a.includes(methodName))))) {
|
|
41269
|
-
log.params = params;
|
|
41270
|
-
}
|
|
41271
|
-
if (!exclude &&
|
|
41272
|
-
(logError ||
|
|
41273
|
-
(devContext.result && !Array.isArray(devContext.result)) ||
|
|
41274
|
-
(Array.isArray(devContext.result) &&
|
|
41275
|
-
((_b = devContext.result) === null || _b === void 0 ? void 0 : _b.includes(methodName))))) {
|
|
41276
|
-
log.result = result;
|
|
41277
|
-
}
|
|
41278
|
-
if (Object.keys(log).length > 1)
|
|
41279
|
-
console.log('ce:', log);
|
|
41285
|
+
engineLogging({ result: result, methodName: methodName, elapsed: elapsed, params: params, engine: 'ce:' });
|
|
41280
41286
|
return result;
|
|
41281
41287
|
}
|
|
41282
41288
|
function engineInvoke(method, params, methodName) {
|
|
@@ -52004,8 +52010,8 @@ function getValidSwapAction(_a) {
|
|
|
52004
52010
|
}
|
|
52005
52011
|
|
|
52006
52012
|
function positionActions$1(params) {
|
|
52007
|
-
var _a;
|
|
52008
|
-
var specifiedPolicyDefinitions = params.policyDefinitions,
|
|
52013
|
+
var _a, _b, _c;
|
|
52014
|
+
var specifiedPolicyDefinitions = params.policyDefinitions, _d = params.tournamentParticipants, tournamentParticipants = _d === void 0 ? [] : _d, _e = params.returnParticipants, returnParticipants = _e === void 0 ? true : _e, provisionalPositioning = params.provisionalPositioning, tournamentRecord = params.tournamentRecord, drawDefinition = params.drawDefinition, drawPosition = params.drawPosition, event = params.event;
|
|
52009
52015
|
if (!event)
|
|
52010
52016
|
return { error: MISSING_EVENT };
|
|
52011
52017
|
if (!drawDefinition)
|
|
@@ -52042,13 +52048,13 @@ function positionActions$1(params) {
|
|
|
52042
52048
|
structure: structure,
|
|
52043
52049
|
event: event,
|
|
52044
52050
|
}).appliedPolicies) !== null && _a !== void 0 ? _a : {};
|
|
52045
|
-
Object.assign(appliedPolicies, specifiedPolicyDefinitions
|
|
52046
|
-
var
|
|
52051
|
+
Object.assign(appliedPolicies, specifiedPolicyDefinitions !== null && specifiedPolicyDefinitions !== void 0 ? specifiedPolicyDefinitions : {});
|
|
52052
|
+
var _f = getEnabledStructures({
|
|
52047
52053
|
actionType: POSITION_ACTION,
|
|
52048
52054
|
appliedPolicies: appliedPolicies,
|
|
52049
52055
|
drawDefinition: drawDefinition,
|
|
52050
52056
|
structure: structure,
|
|
52051
|
-
}), positionActionsPolicy =
|
|
52057
|
+
}), positionActionsPolicy = _f.actionsPolicy, enabledStructures = _f.enabledStructures, actionsDisabled = _f.actionsDisabled;
|
|
52052
52058
|
var activePositionOverrides = (positionActionsPolicy === null || positionActionsPolicy === void 0 ? void 0 : positionActionsPolicy.activePositionOverrides) || [];
|
|
52053
52059
|
// targetRoundNumber will be > 1 for fed positions
|
|
52054
52060
|
var positionSourceStructureIds = (getSourceStructureIdsAndRelevantLinks({
|
|
@@ -52080,7 +52086,7 @@ function positionActions$1(params) {
|
|
|
52080
52086
|
structure.stageSequence !== 1;
|
|
52081
52087
|
var drawId = drawDefinition.drawId;
|
|
52082
52088
|
var validActions = [];
|
|
52083
|
-
var
|
|
52089
|
+
var _g = structureAssignedDrawPositions({ structure: structure }), assignedPositions = _g.assignedPositions, positionAssignments = _g.positionAssignments;
|
|
52084
52090
|
var positionAssignment = assignedPositions === null || assignedPositions === void 0 ? void 0 : assignedPositions.find(function (assignment) { return assignment.drawPosition === drawPosition; });
|
|
52085
52091
|
var drawPositions = positionAssignments === null || positionAssignments === void 0 ? void 0 : positionAssignments.map(function (assignment) { return assignment.drawPosition; });
|
|
52086
52092
|
if (!(drawPositions === null || drawPositions === void 0 ? void 0 : drawPositions.includes(drawPosition)))
|
|
@@ -52202,7 +52208,7 @@ function positionActions$1(params) {
|
|
|
52202
52208
|
drawDefinition: drawDefinition,
|
|
52203
52209
|
structure: structure,
|
|
52204
52210
|
}).seedAssignments;
|
|
52205
|
-
var
|
|
52211
|
+
var _h = (_b = seedAssignments === null || seedAssignments === void 0 ? void 0 : seedAssignments.find(function (assignment) { return assignment.participantId === participantId; })) !== null && _b !== void 0 ? _b : {}, seedNumber = _h.seedNumber, seedValue = _h.seedValue;
|
|
52206
52212
|
validActions.push({
|
|
52207
52213
|
type: SEED_VALUE,
|
|
52208
52214
|
method: SEED_VALUE_METHOD,
|
|
@@ -52230,7 +52236,7 @@ function positionActions$1(params) {
|
|
|
52230
52236
|
drawDefinition: drawDefinition,
|
|
52231
52237
|
structure: structure,
|
|
52232
52238
|
}).seedAssignments;
|
|
52233
|
-
var seedNumber = ((seedAssignments === null || seedAssignments === void 0 ? void 0 : seedAssignments.find(function (assignment) { return assignment.participantId === participantId; }))
|
|
52239
|
+
var seedNumber = ((_c = seedAssignments === null || seedAssignments === void 0 ? void 0 : seedAssignments.find(function (assignment) { return assignment.participantId === participantId; })) !== null && _c !== void 0 ? _c : {}).seedNumber;
|
|
52234
52240
|
validActions.push({
|
|
52235
52241
|
method: REMOVE_SEED_METHOD,
|
|
52236
52242
|
type: REMOVE_SEED,
|
|
@@ -65098,43 +65104,13 @@ var tournamentEngine = (function () {
|
|
|
65098
65104
|
]);
|
|
65099
65105
|
return engine;
|
|
65100
65106
|
function executeFunction(tournamentRecord, method, params, methodName) {
|
|
65101
|
-
var _a, _b;
|
|
65102
65107
|
delete engine.success;
|
|
65103
65108
|
delete engine.error;
|
|
65104
65109
|
var start = Date.now();
|
|
65105
65110
|
var augmentedParams = paramsMiddleware$1(tournamentRecord, params);
|
|
65106
65111
|
var result = method(__assign(__assign({}, augmentedParams), { tournamentRecord: tournamentRecord }));
|
|
65107
65112
|
var elapsed = Date.now() - start;
|
|
65108
|
-
|
|
65109
|
-
var log = { method: methodName };
|
|
65110
|
-
var logError = result.error &&
|
|
65111
|
-
(devContext.errors === true ||
|
|
65112
|
-
(Array.isArray(devContext.errors) &&
|
|
65113
|
-
devContext.errors.includes(methodName)));
|
|
65114
|
-
var exclude = Array.isArray(devContext.exclude) &&
|
|
65115
|
-
devContext.exclude.includes(methodName);
|
|
65116
|
-
if (!exclude &&
|
|
65117
|
-
![undefined, false].includes(devContext.perf) &&
|
|
65118
|
-
(isNaN(devContext.perf) || elapsed > devContext.perf))
|
|
65119
|
-
log.elapsed = elapsed;
|
|
65120
|
-
if (!exclude &&
|
|
65121
|
-
(logError ||
|
|
65122
|
-
(devContext.params && !Array.isArray(devContext.params)) ||
|
|
65123
|
-
(Array.isArray(devContext.params) &&
|
|
65124
|
-
((_a = devContext.params) === null || _a === void 0 ? void 0 : _a.includes(methodName))))) {
|
|
65125
|
-
log.params = params;
|
|
65126
|
-
}
|
|
65127
|
-
if (!exclude &&
|
|
65128
|
-
(logError ||
|
|
65129
|
-
(devContext.result && !Array.isArray(devContext.result)) ||
|
|
65130
|
-
(Array.isArray(devContext.result) &&
|
|
65131
|
-
((_b = devContext.result) === null || _b === void 0 ? void 0 : _b.includes(methodName))))) {
|
|
65132
|
-
log.result = result;
|
|
65133
|
-
}
|
|
65134
|
-
if (Object.keys(log).length > 1)
|
|
65135
|
-
console.log('te:', log);
|
|
65136
|
-
if (devContext.makeDeepCopy)
|
|
65137
|
-
result.deepCopyIterations = getDeepCopyIterations();
|
|
65113
|
+
engineLogging({ result: result, methodName: methodName, elapsed: elapsed, params: params, engine: 'te:' });
|
|
65138
65114
|
return result;
|
|
65139
65115
|
}
|
|
65140
65116
|
function engineInvoke(method, params, methodName) {
|
|
@@ -69909,51 +69885,52 @@ var factoryConstants = {
|
|
|
69909
69885
|
};
|
|
69910
69886
|
|
|
69911
69887
|
var utilities = {
|
|
69912
|
-
hasAttributeValues: hasAttributeValues,
|
|
69913
|
-
extractAttributes: extractAttributes,
|
|
69914
|
-
structureSort: structureSort,
|
|
69915
|
-
matchUpSort: matchUpSort,
|
|
69916
|
-
tidyScore: tidyScore,
|
|
69917
|
-
createMap: createMap,
|
|
69918
|
-
generateScoreString: generateScoreString,
|
|
69919
|
-
calculateWinCriteria: calculateWinCriteria,
|
|
69920
|
-
compareTieFormats: compareTieFormats,
|
|
69921
|
-
parseScoreString: parseScoreString,
|
|
69922
|
-
scoreHasValue: scoreHasValue,
|
|
69923
|
-
getScaleValues: getScaleValues,
|
|
69924
|
-
proConflicts: proConflicts,
|
|
69925
69888
|
addExtension: addExtension$1,
|
|
69889
|
+
calculateWinCriteria: calculateWinCriteria,
|
|
69890
|
+
categoryCanContain: categoryCanContain,
|
|
69926
69891
|
chunkArray: chunkArray,
|
|
69892
|
+
compareTieFormats: compareTieFormats,
|
|
69927
69893
|
countValues: countValues,
|
|
69894
|
+
createMap: createMap,
|
|
69928
69895
|
dateRange: dateRange,
|
|
69929
69896
|
dateTime: dateTime,
|
|
69930
|
-
roundRobinGroups: roundRobinGroups,
|
|
69931
69897
|
definedAttributes: definedAttributes,
|
|
69932
69898
|
dehydrateMatchUps: dehydrateMatchUps,
|
|
69899
|
+
extractAttributes: extractAttributes,
|
|
69933
69900
|
findExtension: findExtension$2,
|
|
69901
|
+
flattenJSON: flattenJSON,
|
|
69934
69902
|
garman: garman,
|
|
69935
|
-
getTimeItem: getTimeItem,
|
|
69936
69903
|
generateHashCode: generateHashCode,
|
|
69937
69904
|
generateRange: generateRange,
|
|
69905
|
+
generateScoreString: generateScoreString,
|
|
69938
69906
|
generateTimeCode: generateTimeCode,
|
|
69907
|
+
getCategoryAgeDetails: getCategoryAgeDetails,
|
|
69908
|
+
getScaleValues: getScaleValues,
|
|
69909
|
+
getTimeItem: getTimeItem,
|
|
69910
|
+
hasAttributeValues: hasAttributeValues,
|
|
69939
69911
|
instanceCount: instanceCount,
|
|
69940
69912
|
intersection: intersection,
|
|
69941
|
-
|
|
69913
|
+
isAdHoc: isAdHoc,
|
|
69942
69914
|
isConvertableInteger: isConvertableInteger,
|
|
69915
|
+
isNumeric: isNumeric,
|
|
69943
69916
|
isPowerOf2: isPowerOf2,
|
|
69944
69917
|
JSON2CSV: JSON2CSV,
|
|
69945
|
-
flattenJSON: flattenJSON,
|
|
69946
69918
|
makeDeepCopy: makeDeepCopy,
|
|
69919
|
+
matchUpSort: matchUpSort,
|
|
69947
69920
|
nearestPowerOf2: nearestPowerOf2,
|
|
69948
69921
|
nextPowerOf2: nextPowerOf2,
|
|
69949
69922
|
numericSort: numericSort,
|
|
69950
69923
|
overlap: overlap,
|
|
69951
|
-
|
|
69952
|
-
|
|
69924
|
+
parseScoreString: parseScoreString,
|
|
69925
|
+
participantScaleItem: participantScaleItem,
|
|
69926
|
+
proConflicts: proConflicts,
|
|
69953
69927
|
randomMember: randomMember,
|
|
69954
69928
|
randomPop: randomPop,
|
|
69929
|
+
roundRobinGroups: roundRobinGroups,
|
|
69930
|
+
scoreHasValue: scoreHasValue,
|
|
69955
69931
|
shuffleArray: shuffleArray,
|
|
69956
|
-
|
|
69932
|
+
structureSort: structureSort,
|
|
69933
|
+
tidyScore: tidyScore,
|
|
69957
69934
|
unique: unique,
|
|
69958
69935
|
UUID: UUID,
|
|
69959
69936
|
UUIDS: UUIDS,
|