volleyballsimtypes 0.0.102 → 0.0.103

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.
@@ -1,6 +1,6 @@
1
1
  import * as Sequelize from 'sequelize';
2
2
  import { Model } from 'sequelize';
3
- import { MatchId, MatchModel, MatchSetStatsId, MatchSetStatsModel, PlayerId, PlayerModel, RallyId, RallyModel, SetPositionAttributes, SetPositionId, SetPositionModel } from '.';
3
+ import { MatchId, MatchModel, MatchSetStatsAttributes, MatchSetStatsId, MatchSetStatsModel, PlayerId, PlayerModel, RallyAttributes, RallyId, RallyModel, SetPositionAttributes, SetPositionId, SetPositionModel } from '.';
4
4
  export interface MatchSetAttributes {
5
5
  match_set_id: string;
6
6
  match_id: string;
@@ -9,6 +9,8 @@ export interface MatchSetAttributes {
9
9
  home_score: number;
10
10
  away_score: number;
11
11
  setPositions?: SetPositionAttributes[];
12
+ Rallies?: RallyAttributes[];
13
+ MatchSetStats?: MatchSetStatsAttributes[];
12
14
  }
13
15
  export type MatchSetPk = 'match_set_id';
14
16
  export type MatchSetId = MatchSetModel[MatchSetPk];
@@ -1,6 +1,6 @@
1
1
  import * as Sequelize from 'sequelize';
2
2
  import { Model } from 'sequelize';
3
- import { MatchId, MatchModel, MatchSetStatsId, MatchSetStatsModel, PlayerId, PlayerModel, RallyId, RallyModel, SetPositionAttributes, SetPositionId, SetPositionModel } from '.';
3
+ import { MatchId, MatchModel, MatchSetStatsAttributes, MatchSetStatsId, MatchSetStatsModel, PlayerId, PlayerModel, RallyAttributes, RallyId, RallyModel, SetPositionAttributes, SetPositionId, SetPositionModel } from '.';
4
4
  export interface MatchSetAttributes {
5
5
  match_set_id: string;
6
6
  match_id: string;
@@ -9,6 +9,8 @@ export interface MatchSetAttributes {
9
9
  home_score: number;
10
10
  away_score: number;
11
11
  setPositions?: SetPositionAttributes[];
12
+ Rallies?: RallyAttributes[];
13
+ MatchSetStats?: MatchSetStatsAttributes[];
12
14
  }
13
15
  export type MatchSetPk = 'match_set_id';
14
16
  export type MatchSetId = MatchSetModel[MatchSetPk];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "volleyballsimtypes",
3
- "version": "0.0.102",
3
+ "version": "0.0.103",
4
4
  "description": "vbsim types",
5
5
  "main": "./dist/cjs/src/index.js",
6
6
  "module": "./dist/esm/src/index.js",