@leavittsoftware/lg-core-typescript 2.0.352 → 2.0.356
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/elasticsearch.js.map +1 -1
- package/elasticsearch.ts +2 -0
- package/lg.core.repository.ts +14 -1
- package/package.json +1 -1
package/elasticsearch.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"elasticsearch.js","sourceRoot":"","sources":["elasticsearch.ts"],"names":[],"mappings":"AAAA,yBAAyB;AACzB,mBAAmB;AACnB,uCAAuC;AACvC,oBAAoB;AACpB,yBAAyB;
|
|
1
|
+
{"version":3,"file":"elasticsearch.js","sourceRoot":"","sources":["elasticsearch.ts"],"names":[],"mappings":"AAAA,yBAAyB;AACzB,mBAAmB;AACnB,uCAAuC;AACvC,oBAAoB;AACpB,yBAAyB;AAmVzB,MAAM,CAAN,IAAY,WAIX;AAJD,WAAY,WAAW;IACnB,6CAAQ,CAAA;IACR,mDAAW,CAAA;IACX,mDAAW,CAAA;AACf,CAAC,EAJW,WAAW,KAAX,WAAW,QAItB;AAID,MAAM,CAAN,IAAY,SAWX;AAXD,WAAY,SAAS;IACjB,2DAAiB,CAAA;IACjB,mDAAa,CAAA;IACb,iEAAoB,CAAA;IACpB,uCAAO,CAAA;IACP,yCAAQ,CAAA;IACR,yCAAQ,CAAA;IACR,6CAAU,CAAA;IACV,2CAAS,CAAA;IACT,yCAAQ,CAAA;IACR,2CAAS,CAAA;AACb,CAAC,EAXW,SAAS,KAAT,SAAS,QAWpB;AAID,MAAM,CAAN,IAAY,aAMX;AAND,WAAY,aAAa;IACrB,mEAAiB,CAAA;IACjB,2DAAa,CAAA;IACb,uDAAW,CAAA;IACX,uDAAW,CAAA;IACX,uDAAW,CAAA;AACf,CAAC,EANW,aAAa,KAAb,aAAa,QAMxB"}
|
package/elasticsearch.ts
CHANGED
|
@@ -81,6 +81,7 @@ export interface Contact {
|
|
|
81
81
|
Phones: Array<Partial<Phone>> | null;
|
|
82
82
|
Primary: boolean;
|
|
83
83
|
Title: string | null;
|
|
84
|
+
Type: string | null;
|
|
84
85
|
WorkPhone: string | null;
|
|
85
86
|
}
|
|
86
87
|
|
|
@@ -196,6 +197,7 @@ export interface CrmAccounts {
|
|
|
196
197
|
Account: Partial<Account> | null;
|
|
197
198
|
DeletedDate: string | null;
|
|
198
199
|
LastVisitedBy: string | null;
|
|
200
|
+
SourceType: string | null;
|
|
199
201
|
UpdatedDate: string | null;
|
|
200
202
|
}
|
|
201
203
|
|
package/lg.core.repository.ts
CHANGED
|
@@ -404,9 +404,14 @@ export interface BenefitPointContactDto {
|
|
|
404
404
|
ContactId: string | null;
|
|
405
405
|
ContactLastName: string | null;
|
|
406
406
|
ContactTitle: string | null;
|
|
407
|
+
ElasticScore: number | null;
|
|
407
408
|
Email: string | null;
|
|
408
409
|
FullName: string | null;
|
|
409
|
-
|
|
410
|
+
HomePhone: string | null;
|
|
411
|
+
MainPhone: string | null;
|
|
412
|
+
MobilePhone: string | null;
|
|
413
|
+
Type: string | null;
|
|
414
|
+
WorkPhone: string | null;
|
|
410
415
|
}
|
|
411
416
|
|
|
412
417
|
export interface BenefitPointCustomerDto {
|
|
@@ -419,6 +424,7 @@ export interface BenefitPointCustomerDto {
|
|
|
419
424
|
ContactId: string | null;
|
|
420
425
|
ContactLastName: string | null;
|
|
421
426
|
ContactTitle: string | null;
|
|
427
|
+
ElasticScore: number | null;
|
|
422
428
|
Email: string | null;
|
|
423
429
|
Name: string | null;
|
|
424
430
|
Phone: string | null;
|
|
@@ -455,6 +461,7 @@ export interface CallManagerCrmPhoneNumberDto {
|
|
|
455
461
|
ContactFirstName: string | null;
|
|
456
462
|
ContactLastName: string | null;
|
|
457
463
|
ContactTitle: string | null;
|
|
464
|
+
ElasticScore: number | null;
|
|
458
465
|
Email: string | null;
|
|
459
466
|
Id: number;
|
|
460
467
|
Name: string | null;
|
|
@@ -465,6 +472,7 @@ export interface CallManagerCrmPhoneNumberDto {
|
|
|
465
472
|
|
|
466
473
|
export interface CallManagerCompanySearchDto {
|
|
467
474
|
CompanyId: number;
|
|
475
|
+
ElasticScore: number | null;
|
|
468
476
|
Name: string | null;
|
|
469
477
|
Phone: string | null;
|
|
470
478
|
ShortName: string | null;
|
|
@@ -475,6 +483,7 @@ export interface CrmSearchDto {
|
|
|
475
483
|
ContactFirstName: string | null;
|
|
476
484
|
ContactLastName: string | null;
|
|
477
485
|
ContactTitle: string | null;
|
|
486
|
+
ElasticScore: number | null;
|
|
478
487
|
IsContact: boolean;
|
|
479
488
|
Name: string | null;
|
|
480
489
|
Phone: string | null;
|
|
@@ -484,6 +493,7 @@ export interface CrmSearchDto {
|
|
|
484
493
|
export interface AmsClientSearchDto {
|
|
485
494
|
AgencyName: string | null;
|
|
486
495
|
CompanyName: string | null;
|
|
496
|
+
ElasticScore: number | null;
|
|
487
497
|
FirstName: string | null;
|
|
488
498
|
HomePhone: string | null;
|
|
489
499
|
LastName: string | null;
|
|
@@ -508,6 +518,7 @@ export interface CallManagerAmsClientPhoneNumberDto {
|
|
|
508
518
|
AgencyName: string | null;
|
|
509
519
|
City: string | null;
|
|
510
520
|
CompanyName: string | null;
|
|
521
|
+
ElasticScore: number | null;
|
|
511
522
|
Email: string | null;
|
|
512
523
|
FirstName: string | null;
|
|
513
524
|
LastName: string | null;
|
|
@@ -521,6 +532,7 @@ export interface CallManagerAmsClientPhoneNumberDto {
|
|
|
521
532
|
export interface CallManagerEmployeePhoneNumberDto {
|
|
522
533
|
City: string | null;
|
|
523
534
|
CompanyName: string | null;
|
|
535
|
+
ElasticScore: number | null;
|
|
524
536
|
Email: string | null;
|
|
525
537
|
FirstName: string | null;
|
|
526
538
|
LastName: string | null;
|
|
@@ -533,6 +545,7 @@ export interface CallManagerEmployeePhoneNumberDto {
|
|
|
533
545
|
|
|
534
546
|
export interface CallManagerEmployeeDto {
|
|
535
547
|
CompanyName: string | null;
|
|
548
|
+
ElasticScore: number | null;
|
|
536
549
|
Extension: string | null;
|
|
537
550
|
FirstName: string | null;
|
|
538
551
|
HomePhone: string | null;
|