tods-competition-factory 1.6.23 → 1.6.25
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/generate.d.ts +3 -1
- package/dist/forge/generate.mjs +2 -2
- package/dist/forge/generate.mjs.map +1 -1
- package/dist/forge/query.d.ts +3 -1
- package/dist/forge/query.mjs.map +1 -1
- package/dist/forge/transform.d.ts +3 -1
- package/dist/forge/transform.mjs.map +1 -1
- package/dist/forge/utilities.mjs.map +1 -1
- package/dist/index.mjs +67 -23
- package/dist/index.mjs.map +1 -1
- package/dist/tods-competition-factory.development.cjs.js +104 -47
- 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 +5 -5
|
@@ -86,6 +86,7 @@ interface Event {
|
|
|
86
86
|
eventId: string;
|
|
87
87
|
eventLevel?: TournamentLevelEnum;
|
|
88
88
|
eventName?: string;
|
|
89
|
+
eventOrder?: number;
|
|
89
90
|
eventRank?: string;
|
|
90
91
|
eventType?: TypeEnum;
|
|
91
92
|
extensions?: Extension[];
|
|
@@ -1306,12 +1307,13 @@ declare const POLICY_TYPE_PARTICIPANT = "participant";
|
|
|
1306
1307
|
declare const POLICY_TYPE_PROGRESSION = "progression";
|
|
1307
1308
|
declare const POLICY_TYPE_SCHEDULING = "scheduling";
|
|
1308
1309
|
declare const POLICY_TYPE_AVOIDANCE = "avoidance";
|
|
1310
|
+
declare const POLICY_TYPE_DISPLAY = "display";
|
|
1309
1311
|
declare const POLICY_TYPE_SCORING = "scoring";
|
|
1310
1312
|
declare const POLICY_TYPE_SEEDING = "seeding";
|
|
1311
1313
|
declare const POLICY_TYPE_FEED_IN = "feedIn";
|
|
1312
1314
|
declare const POLICY_TYPE_AUDIT = "audit";
|
|
1313
1315
|
declare const POLICY_TYPE_DRAWS = "draws";
|
|
1314
|
-
type ValidPolicyTypes = typeof POLICY_TYPE_VOLUNTARY_CONSOLATION | typeof POLICY_TYPE_COMPETITIVE_BANDS | typeof POLICY_TYPE_ROUND_ROBIN_TALLY | typeof POLICY_TYPE_POSITION_ACTIONS | typeof POLICY_TYPE_MATCHUP_ACTIONS | typeof POLICY_TYPE_RANKING_POINTS | typeof POLICY_TYPE_ROUND_NAMING | typeof POLICY_TYPE_PARTICIPANT | typeof POLICY_TYPE_PROGRESSION | typeof POLICY_TYPE_SCHEDULING | typeof POLICY_TYPE_AVOIDANCE | typeof POLICY_TYPE_FEED_IN | typeof POLICY_TYPE_SCORING | typeof POLICY_TYPE_SEEDING | typeof POLICY_TYPE_AUDIT | typeof POLICY_TYPE_DRAWS;
|
|
1316
|
+
type ValidPolicyTypes = typeof POLICY_TYPE_VOLUNTARY_CONSOLATION | typeof POLICY_TYPE_COMPETITIVE_BANDS | typeof POLICY_TYPE_ROUND_ROBIN_TALLY | typeof POLICY_TYPE_POSITION_ACTIONS | typeof POLICY_TYPE_MATCHUP_ACTIONS | typeof POLICY_TYPE_RANKING_POINTS | typeof POLICY_TYPE_ROUND_NAMING | typeof POLICY_TYPE_PARTICIPANT | typeof POLICY_TYPE_PROGRESSION | typeof POLICY_TYPE_SCHEDULING | typeof POLICY_TYPE_AVOIDANCE | typeof POLICY_TYPE_DISPLAY | typeof POLICY_TYPE_FEED_IN | typeof POLICY_TYPE_SCORING | typeof POLICY_TYPE_SEEDING | typeof POLICY_TYPE_AUDIT | typeof POLICY_TYPE_DRAWS;
|
|
1315
1317
|
|
|
1316
1318
|
type PolicyDefinitions = {
|
|
1317
1319
|
[key in ValidPolicyTypes]?: {
|