Skip to content

Commit

Permalink
fix(quoteSummary/assetProfile): make *Risk fields optional
Browse files Browse the repository at this point in the history
  • Loading branch information
gadicc committed Feb 3, 2021
1 parent e0169d1 commit 08561c7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 12 deletions.
6 changes: 0 additions & 6 deletions schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -96,12 +96,6 @@
"longBusinessSummary",
"fullTimeEmployees",
"companyOfficers",
"auditRisk",
"boardRisk",
"compensationRisk",
"shareHolderRightsRisk",
"overallRisk",
"governanceEpochDate",
"maxAge"
],
"type": "object"
Expand Down
12 changes: 6 additions & 6 deletions src/modules/quoteSummary-iface.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,12 +57,12 @@ export interface AssetProfile {
longBusinessSummary: string;
fullTimeEmployees: number;
companyOfficers: CompanyOfficer[];
auditRisk: number;
boardRisk: number;
compensationRisk: number;
shareHolderRightsRisk: number;
overallRisk: number;
governanceEpochDate: Date;
auditRisk?: number;
boardRisk?: number;
compensationRisk?: number;
shareHolderRightsRisk?: number;
overallRisk?: number;
governanceEpochDate?: Date;
compensationAsOfEpochDate?: Date;
maxAge: number;
address2?: string;
Expand Down

0 comments on commit 08561c7

Please sign in to comment.