tods-competition-factory 1.8.1 → 1.8.3
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 +11 -3
- package/dist/forge/generate.mjs +50 -42
- package/dist/forge/generate.mjs.map +1 -1
- package/dist/forge/query.mjs +12 -12
- package/dist/forge/query.mjs.map +1 -1
- package/dist/forge/transform.mjs.map +1 -1
- package/dist/index.mjs +265 -64
- package/dist/index.mjs.map +1 -1
- package/dist/tods-competition-factory.development.cjs.js +302 -104
- 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/forge/query.mjs
CHANGED
|
@@ -1363,20 +1363,20 @@ const ROUND_ROBIN_WITH_PLAYOFF = "ROUND_ROBIN_WITH_PLAYOFF";
|
|
|
1363
1363
|
const DECIDER = "DECIDER";
|
|
1364
1364
|
const BACKDRAW = "BACKDRAW";
|
|
1365
1365
|
const COMPASS_ATTRIBUTES = {
|
|
1366
|
-
0: { name: "
|
|
1367
|
-
"0-1": { name: "
|
|
1368
|
-
"0-2": { name: "
|
|
1369
|
-
"0-3": { name: "
|
|
1370
|
-
"0-1-1": { name: "
|
|
1371
|
-
"0-1-2": { name: "
|
|
1372
|
-
"0-2-1": { name: "
|
|
1373
|
-
"0-1-1-1": { name: "
|
|
1366
|
+
0: { name: "East", abbreviation: "E" },
|
|
1367
|
+
"0-1": { name: "West", abbreviation: "W" },
|
|
1368
|
+
"0-2": { name: "North", abbreviation: "N" },
|
|
1369
|
+
"0-3": { name: "Northeast", abbreviation: "NE" },
|
|
1370
|
+
"0-1-1": { name: "South", abbreviation: "S" },
|
|
1371
|
+
"0-1-2": { name: "Southwest", abbreviation: "SW" },
|
|
1372
|
+
"0-2-1": { name: "Northwest", abbreviation: "NW" },
|
|
1373
|
+
"0-1-1-1": { name: "Southeast", abbreviation: "SE" }
|
|
1374
1374
|
};
|
|
1375
1375
|
const OLYMPIC_ATTRIBUTES = {
|
|
1376
|
-
0: { name: "
|
|
1377
|
-
"0-1": { name: "
|
|
1378
|
-
"0-2": { name: "
|
|
1379
|
-
"0-1-1": { name: "
|
|
1376
|
+
0: { name: "East", abbreviation: "E" },
|
|
1377
|
+
"0-1": { name: "West", abbreviation: "W" },
|
|
1378
|
+
"0-2": { name: "North", abbreviation: "N" },
|
|
1379
|
+
"0-1-1": { name: "South", abbreviation: "S" }
|
|
1380
1380
|
};
|
|
1381
1381
|
const WIN_RATIO$1 = "WIN_RATIO";
|
|
1382
1382
|
const ROUND_OUTCOME = "ROUND_OUTCOME";
|