@leavittsoftware/lg-core-typescript 2.0.469 → 2.0.470
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 +6 -0
- package/api3.leavitt.com.js.map +1 -1
- package/api3.leavitt.com.ts +33 -0
- package/lg.net.core.ts +1 -1
- package/package.json +1 -1
package/api3.leavitt.com.js
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
export var SearchSource;
|
|
2
|
+
(function (SearchSource) {
|
|
3
|
+
SearchSource[SearchSource["BenefitPoint"] = 0] = "BenefitPoint";
|
|
4
|
+
SearchSource[SearchSource["AMS360"] = 1] = "AMS360";
|
|
5
|
+
SearchSource[SearchSource["CRM"] = 2] = "CRM";
|
|
6
|
+
})(SearchSource || (SearchSource = {}));
|
|
1
7
|
export var CompanyRoleType;
|
|
2
8
|
(function (CompanyRoleType) {
|
|
3
9
|
CompanyRoleType[CompanyRoleType["LLCCompanyRole"] = 0] = "LLCCompanyRole";
|
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":"AAwaA,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
|
@@ -189,6 +189,31 @@ export interface UpdateDocumentDto {
|
|
|
189
189
|
UpdatedDocuments: Array<Partial<Document>> | null;
|
|
190
190
|
}
|
|
191
191
|
|
|
192
|
+
export interface SearchDto {
|
|
193
|
+
AccountId: string | null;
|
|
194
|
+
AccountName: string | null;
|
|
195
|
+
Address1: string | null;
|
|
196
|
+
Address2: string | null;
|
|
197
|
+
AgencyId: number | null;
|
|
198
|
+
AgencyName: string | null;
|
|
199
|
+
City: string | null;
|
|
200
|
+
ContactFirstName: string | null;
|
|
201
|
+
ContactLastName: string | null;
|
|
202
|
+
ContactTitle: string | null;
|
|
203
|
+
ElasticScore: number | null;
|
|
204
|
+
Email: string | null;
|
|
205
|
+
MainPhone: string | null;
|
|
206
|
+
PolicyNumbers: Array<string> | null;
|
|
207
|
+
ProducerId: number | null;
|
|
208
|
+
ProducerName: string | null;
|
|
209
|
+
ProducerPhone: string | null;
|
|
210
|
+
Source: SearchSourceString;
|
|
211
|
+
State: string | null;
|
|
212
|
+
Title: string | null;
|
|
213
|
+
Type: string | null;
|
|
214
|
+
Zip: string | null;
|
|
215
|
+
}
|
|
216
|
+
|
|
192
217
|
export interface GetOverallServiceUsageDto {
|
|
193
218
|
ImplementationSuccessRate: Partial<number>;
|
|
194
219
|
ServicesImplemented: number;
|
|
@@ -397,6 +422,14 @@ export interface IDatabaseAttachment {
|
|
|
397
422
|
Size: number;
|
|
398
423
|
}
|
|
399
424
|
|
|
425
|
+
export enum SearchSource {
|
|
426
|
+
BenefitPoint = 0,
|
|
427
|
+
AMS360 = 1,
|
|
428
|
+
CRM = 2
|
|
429
|
+
}
|
|
430
|
+
|
|
431
|
+
export type SearchSourceString = keyof typeof SearchSource;
|
|
432
|
+
|
|
400
433
|
export enum CompanyRoleType {
|
|
401
434
|
LLCCompanyRole = 0,
|
|
402
435
|
AgencyRole = 1,
|
package/lg.net.core.ts
CHANGED
|
@@ -1551,9 +1551,9 @@ export interface Ams360GlGroupCode {
|
|
|
1551
1551
|
export interface Ams360Instance {
|
|
1552
1552
|
Ams360InstanceToGlDivisionCodes: Array<Partial<Ams360InstanceToGlDivisionCode>> | null;
|
|
1553
1553
|
Ams360SupplementalCodes: Array<Partial<Ams360SupplementalCode>> | null;
|
|
1554
|
+
Company: Partial<Company> | null;
|
|
1554
1555
|
EndDate: string | null;
|
|
1555
1556
|
Id: number;
|
|
1556
|
-
IdNavigation: Partial<Company> | null;
|
|
1557
1557
|
IsExpired: boolean | null;
|
|
1558
1558
|
Roles: Array<Partial<Role>> | null;
|
|
1559
1559
|
StartDate: string;
|