elections-types 1.1.2 → 1.1.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.
@@ -71,7 +71,7 @@ export class FederalElectionAux extends FederalElection {
71
71
  }
72
72
  super(federal_election);
73
73
  this.federal_election_candidates = federal_election.federal_election_candidates;
74
- this.federal_election_committees = federal_election.committees;
74
+ this.federal_election_committees = federal_election.federal_election_committees;
75
75
  this.federal_election_file_expenditures = federal_election.federal_election_file_expenditures;
76
76
  }
77
77
  static is(federal_election) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "elections-types",
3
- "version": "1.1.2",
3
+ "version": "1.1.3",
4
4
  "main": "dist/src/index.js",
5
5
  "types": "dist/src/index.d.ts",
6
6
  "directories": {
@@ -87,7 +87,7 @@ export class FederalElectionAux extends FederalElection {
87
87
  }
88
88
  super(federal_election)
89
89
  this.federal_election_candidates = federal_election.federal_election_candidates
90
- this.federal_election_committees = federal_election.committees
90
+ this.federal_election_committees = federal_election.federal_election_committees
91
91
  this.federal_election_file_expenditures = federal_election.federal_election_file_expenditures
92
92
  }
93
93