volleyballsimtypes 0.0.216 → 0.0.217

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.
@@ -38,6 +38,9 @@ class CompetitionModel extends sequelize_1.Model {
38
38
  include: [{
39
39
  model: _1.IterationModel,
40
40
  as: 'Iteration'
41
+ }, {
42
+ model: _1.DivisionSeasonModel,
43
+ as: 'DivisionSeason'
41
44
  }]
42
45
  },
43
46
  indexes: [{
@@ -1,5 +1,5 @@
1
1
  import { DataTypes, Model } from 'sequelize';
2
- import { IterationModel } from '.';
2
+ import { DivisionSeasonModel, IterationModel } from '.';
3
3
  import { StatusDataType } from '../common';
4
4
  export class CompetitionModel extends Model {
5
5
  static initModel(sequelize) {
@@ -35,6 +35,9 @@ export class CompetitionModel extends Model {
35
35
  include: [{
36
36
  model: IterationModel,
37
37
  as: 'Iteration'
38
+ }, {
39
+ model: DivisionSeasonModel,
40
+ as: 'DivisionSeason'
38
41
  }]
39
42
  },
40
43
  indexes: [{
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "volleyballsimtypes",
3
- "version": "0.0.216",
3
+ "version": "0.0.217",
4
4
  "description": "vbsim types",
5
5
  "main": "./dist/cjs/src/index.js",
6
6
  "module": "./dist/esm/src/index.js",