@leavittsoftware/lg-core-typescript 2.16.0 → 2.17.0
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 +11 -8
- package/lg.core.repository.ts +2 -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":"AAuvBA,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
|
@@ -48,14 +48,6 @@ export interface FileExplorerFolderDto {
|
|
|
48
48
|
Name: string | null;
|
|
49
49
|
}
|
|
50
50
|
|
|
51
|
-
export interface RecaptchaResponseDtoV3 {
|
|
52
|
-
Action: string | null;
|
|
53
|
-
ErrorCodes: Array<string> | null;
|
|
54
|
-
Hostname: string | null;
|
|
55
|
-
Score: Partial<number>;
|
|
56
|
-
Success: boolean;
|
|
57
|
-
}
|
|
58
|
-
|
|
59
51
|
export interface FruitHolderDto {
|
|
60
52
|
FirstName: string | null;
|
|
61
53
|
GroupSource: Array<string> | null;
|
|
@@ -200,6 +192,7 @@ export interface BopQuoteDto {
|
|
|
200
192
|
IsTest: boolean;
|
|
201
193
|
Name: string | null;
|
|
202
194
|
PhoneNumber: string | null;
|
|
195
|
+
RecaptchaUserResponse: string | null;
|
|
203
196
|
SpectrumClassCode: string | null;
|
|
204
197
|
State: string | null;
|
|
205
198
|
Street1: string | null;
|
|
@@ -207,6 +200,13 @@ export interface BopQuoteDto {
|
|
|
207
200
|
Zip: string | null;
|
|
208
201
|
}
|
|
209
202
|
|
|
203
|
+
export interface HartfordEmailQuoteDto {
|
|
204
|
+
CallUsPhoneNumber: string | null;
|
|
205
|
+
EmailAddress: string | null;
|
|
206
|
+
QuoteRequestSessionIds: Array<string> | null;
|
|
207
|
+
RecaptchaUserResponse: string | null;
|
|
208
|
+
}
|
|
209
|
+
|
|
210
210
|
export interface SpectrumDto {
|
|
211
211
|
AnswerSet: Array<Partial<AnswerSetDto>> | null;
|
|
212
212
|
ClassName: string | null;
|
|
@@ -228,6 +228,7 @@ export interface WorkersCompQuoteDto {
|
|
|
228
228
|
Name: string | null;
|
|
229
229
|
NumberOfEmployees: number;
|
|
230
230
|
PhoneNumber: string | null;
|
|
231
|
+
RecaptchaUserResponse: string | null;
|
|
231
232
|
SpectrumClassCode: string | null;
|
|
232
233
|
State: string | null;
|
|
233
234
|
Street1: string | null;
|
|
@@ -684,7 +685,9 @@ export interface AgencySearchInfo {
|
|
|
684
685
|
}
|
|
685
686
|
|
|
686
687
|
export interface CompanyDetailsDto {
|
|
688
|
+
AcquisitionDate: string | null;
|
|
687
689
|
DbaName: string | null;
|
|
690
|
+
Ein: string | null;
|
|
688
691
|
Fax: string | null;
|
|
689
692
|
FolderPath: string | null;
|
|
690
693
|
HrName: string | null;
|
package/lg.core.repository.ts
CHANGED