volleyballsimtypes 0.0.403 → 0.0.404

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.
@@ -10,7 +10,8 @@ export declare enum CourtPosition {
10
10
  RIGHT_FRONT = 2,
11
11
  LEFT_BACK = 5,
12
12
  MIDDLE_BACK = 6,
13
- RIGHT_BACK = 1
13
+ RIGHT_BACK = 1,
14
+ RESERVE_LIBERO = 8
14
15
  }
15
16
  export declare enum CourtTarget {
16
17
  NO_TARGET = 0,
@@ -23,6 +23,10 @@ var CourtPosition;
23
23
  CourtPosition[CourtPosition["LEFT_BACK"] = 5] = "LEFT_BACK";
24
24
  CourtPosition[CourtPosition["MIDDLE_BACK"] = 6] = "MIDDLE_BACK";
25
25
  CourtPosition[CourtPosition["RIGHT_BACK"] = 1] = "RIGHT_BACK";
26
+ // The off-court member of the libero pair: the second libero held in reserve, or the starting libero
27
+ // once the second libero is swapped in for a set. Distinct from NOT_IN_COURT so it is never counted as
28
+ // one of the (max 6) bench subs.
29
+ CourtPosition[CourtPosition["RESERVE_LIBERO"] = 8] = "RESERVE_LIBERO";
26
30
  })(CourtPosition || (exports.CourtPosition = CourtPosition = {}));
27
31
  var CourtTarget;
28
32
  (function (CourtTarget) {
@@ -10,7 +10,8 @@ export declare enum CourtPosition {
10
10
  RIGHT_FRONT = 2,
11
11
  LEFT_BACK = 5,
12
12
  MIDDLE_BACK = 6,
13
- RIGHT_BACK = 1
13
+ RIGHT_BACK = 1,
14
+ RESERVE_LIBERO = 8
14
15
  }
15
16
  export declare enum CourtTarget {
16
17
  NO_TARGET = 0,
@@ -14,6 +14,10 @@ export var CourtPosition;
14
14
  CourtPosition[CourtPosition["LEFT_BACK"] = 5] = "LEFT_BACK";
15
15
  CourtPosition[CourtPosition["MIDDLE_BACK"] = 6] = "MIDDLE_BACK";
16
16
  CourtPosition[CourtPosition["RIGHT_BACK"] = 1] = "RIGHT_BACK";
17
+ // The off-court member of the libero pair: the second libero held in reserve, or the starting libero
18
+ // once the second libero is swapped in for a set. Distinct from NOT_IN_COURT so it is never counted as
19
+ // one of the (max 6) bench subs.
20
+ CourtPosition[CourtPosition["RESERVE_LIBERO"] = 8] = "RESERVE_LIBERO";
17
21
  })(CourtPosition || (CourtPosition = {}));
18
22
  export var CourtTarget;
19
23
  (function (CourtTarget) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "volleyballsimtypes",
3
- "version": "0.0.403",
3
+ "version": "0.0.404",
4
4
  "description": "vbsim types",
5
5
  "main": "./dist/cjs/src/index.js",
6
6
  "module": "./dist/esm/src/index.js",