cemiar-epic-service-common 1.0.76 → 1.0.78

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.
@@ -19,4 +19,12 @@ export interface Broker {
19
19
  Status: string;
20
20
  Fax: string;
21
21
  Address: string;
22
+ Roles: BrokerRole[];
22
23
  }
24
+ interface BrokerRole {
25
+ Description: string;
26
+ EmployeeLookupCode: string;
27
+ Role: string;
28
+ Code: string;
29
+ }
30
+ export {};
@@ -14,6 +14,7 @@ interface Location {
14
14
  SecurityUpgrades: RatingSecurityUpgrades;
15
15
  Discounts: DiscountsSurcharge[];
16
16
  Rating: Rating;
17
+ CoveragesDeductibles: CoveragesDeductible;
17
18
  }
18
19
  export interface Additionnal {
19
20
  Code: string;
@@ -110,4 +111,25 @@ export interface TotalLivingAreaSqFtSqMtOption {
110
111
  OptionName: string;
111
112
  Value: number;
112
113
  }
114
+ export interface CoverageItem {
115
+ CoverageCode: string;
116
+ CoverageDescription: string;
117
+ DeductibleAmount: string;
118
+ DeductiblePercentage: number | null;
119
+ DeductibleTypeCode: string;
120
+ EditionDate: string | null;
121
+ FormNumber: string;
122
+ Limit: string;
123
+ Premium: number | null;
124
+ Rate: number | null;
125
+ RequestedDeclined: string;
126
+ TypeOf1Code: string;
127
+ TypeOf2Code: string;
128
+ }
129
+ export interface CoveragesDeductible {
130
+ CoverageItems: CoverageItem[];
131
+ EstimatedBasePremium: number | null;
132
+ PackageFormAndTypeCode: string;
133
+ RatingPlanCode: string;
134
+ }
113
135
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cemiar-epic-service-common",
3
- "version": "1.0.76",
3
+ "version": "1.0.78",
4
4
  "description": "Cemiar package to handle epic service",
5
5
  "engines": {
6
6
  "npm": ">=9.5.1",