@leavittsoftware/lg-core-typescript 2.10.1 → 2.11.1
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.
- package/api3.leavitt.com.js.map +1 -1
- package/api3.leavitt.com.ts +28 -0
- package/package.json +1 -1
package/api3.leavitt.com.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"api3.leavitt.com.js","sourceRoot":"","sources":["api3.leavitt.com.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"api3.leavitt.com.js","sourceRoot":"","sources":["api3.leavitt.com.ts"],"names":[],"mappings":"AA6uBA,MAAM,CAAN,IAAY,aAMX;AAND,WAAY,aAAa;IACrB,qDAAU,CAAA;IACV,yDAAY,CAAA;IACZ,uEAAmB,CAAA;IACnB,qDAAU,CAAA;IACV,mEAAiB,CAAA;AACrB,CAAC,EANW,aAAa,KAAb,aAAa,QAMxB;AAID,MAAM,CAAN,IAAY,YAIX;AAJD,WAAY,YAAY;IACpB,+DAAgB,CAAA;IAChB,mDAAU,CAAA;IACV,6CAAO,CAAA;AACX,CAAC,EAJW,YAAY,KAAZ,YAAY,QAIvB;AAID,MAAM,CAAN,IAAY,eAIX;AAJD,WAAY,eAAe;IACvB,yEAAkB,CAAA;IAClB,iEAAc,CAAA;IACd,iFAAsB,CAAA;AAC1B,CAAC,EAJW,eAAe,KAAf,eAAe,QAI1B"}
|
package/api3.leavitt.com.ts
CHANGED
|
@@ -186,6 +186,19 @@ export interface NaicsSummaryDto {
|
|
|
186
186
|
TotalPremiums: number;
|
|
187
187
|
}
|
|
188
188
|
|
|
189
|
+
export interface BopQuoteDto {
|
|
190
|
+
BusinessStartYear: number;
|
|
191
|
+
City: string | null;
|
|
192
|
+
IsTest: boolean;
|
|
193
|
+
Name: string | null;
|
|
194
|
+
PhoneNumber: string | null;
|
|
195
|
+
SpectrumClassCode: string | null;
|
|
196
|
+
State: string | null;
|
|
197
|
+
Street1: string | null;
|
|
198
|
+
Street2: string | null;
|
|
199
|
+
Zip: string | null;
|
|
200
|
+
}
|
|
201
|
+
|
|
189
202
|
export interface SpectrumDto {
|
|
190
203
|
AnswerSet: Array<Partial<AnswerSetDto>> | null;
|
|
191
204
|
ClassName: string | null;
|
|
@@ -200,6 +213,21 @@ export interface AnswerSetDto {
|
|
|
200
213
|
SpectrumCode: string | null;
|
|
201
214
|
}
|
|
202
215
|
|
|
216
|
+
export interface WorkersCompDto {
|
|
217
|
+
BusinessStartYear: number;
|
|
218
|
+
City: string | null;
|
|
219
|
+
IsTest: boolean;
|
|
220
|
+
Name: string | null;
|
|
221
|
+
NumberOfEmployees: number;
|
|
222
|
+
PhoneNumber: string | null;
|
|
223
|
+
SpectrumClassCode: string | null;
|
|
224
|
+
State: string | null;
|
|
225
|
+
Street1: string | null;
|
|
226
|
+
Street2: string | null;
|
|
227
|
+
TotalEmployeePayroll: Partial<number>;
|
|
228
|
+
Zip: string | null;
|
|
229
|
+
}
|
|
230
|
+
|
|
203
231
|
export interface CampaignSummaryDto {
|
|
204
232
|
Attempted: number;
|
|
205
233
|
Completed: number;
|