@leavittsoftware/lg-core-typescript 2.0.353 → 2.0.357
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 +11 -0
- 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,11 +404,13 @@ 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;
|
|
410
411
|
MainPhone: string | null;
|
|
411
412
|
MobilePhone: string | null;
|
|
413
|
+
Type: string | null;
|
|
412
414
|
WorkPhone: string | null;
|
|
413
415
|
}
|
|
414
416
|
|
|
@@ -422,6 +424,7 @@ export interface BenefitPointCustomerDto {
|
|
|
422
424
|
ContactId: string | null;
|
|
423
425
|
ContactLastName: string | null;
|
|
424
426
|
ContactTitle: string | null;
|
|
427
|
+
ElasticScore: number | null;
|
|
425
428
|
Email: string | null;
|
|
426
429
|
Name: string | null;
|
|
427
430
|
Phone: string | null;
|
|
@@ -458,6 +461,7 @@ export interface CallManagerCrmPhoneNumberDto {
|
|
|
458
461
|
ContactFirstName: string | null;
|
|
459
462
|
ContactLastName: string | null;
|
|
460
463
|
ContactTitle: string | null;
|
|
464
|
+
ElasticScore: number | null;
|
|
461
465
|
Email: string | null;
|
|
462
466
|
Id: number;
|
|
463
467
|
Name: string | null;
|
|
@@ -468,6 +472,7 @@ export interface CallManagerCrmPhoneNumberDto {
|
|
|
468
472
|
|
|
469
473
|
export interface CallManagerCompanySearchDto {
|
|
470
474
|
CompanyId: number;
|
|
475
|
+
ElasticScore: number | null;
|
|
471
476
|
Name: string | null;
|
|
472
477
|
Phone: string | null;
|
|
473
478
|
ShortName: string | null;
|
|
@@ -478,6 +483,8 @@ export interface CrmSearchDto {
|
|
|
478
483
|
ContactFirstName: string | null;
|
|
479
484
|
ContactLastName: string | null;
|
|
480
485
|
ContactTitle: string | null;
|
|
486
|
+
ElasticScore: number | null;
|
|
487
|
+
FullName: string | null;
|
|
481
488
|
IsContact: boolean;
|
|
482
489
|
Name: string | null;
|
|
483
490
|
Phone: string | null;
|
|
@@ -487,6 +494,7 @@ export interface CrmSearchDto {
|
|
|
487
494
|
export interface AmsClientSearchDto {
|
|
488
495
|
AgencyName: string | null;
|
|
489
496
|
CompanyName: string | null;
|
|
497
|
+
ElasticScore: number | null;
|
|
490
498
|
FirstName: string | null;
|
|
491
499
|
HomePhone: string | null;
|
|
492
500
|
LastName: string | null;
|
|
@@ -511,6 +519,7 @@ export interface CallManagerAmsClientPhoneNumberDto {
|
|
|
511
519
|
AgencyName: string | null;
|
|
512
520
|
City: string | null;
|
|
513
521
|
CompanyName: string | null;
|
|
522
|
+
ElasticScore: number | null;
|
|
514
523
|
Email: string | null;
|
|
515
524
|
FirstName: string | null;
|
|
516
525
|
LastName: string | null;
|
|
@@ -524,6 +533,7 @@ export interface CallManagerAmsClientPhoneNumberDto {
|
|
|
524
533
|
export interface CallManagerEmployeePhoneNumberDto {
|
|
525
534
|
City: string | null;
|
|
526
535
|
CompanyName: string | null;
|
|
536
|
+
ElasticScore: number | null;
|
|
527
537
|
Email: string | null;
|
|
528
538
|
FirstName: string | null;
|
|
529
539
|
LastName: string | null;
|
|
@@ -536,6 +546,7 @@ export interface CallManagerEmployeePhoneNumberDto {
|
|
|
536
546
|
|
|
537
547
|
export interface CallManagerEmployeeDto {
|
|
538
548
|
CompanyName: string | null;
|
|
549
|
+
ElasticScore: number | null;
|
|
539
550
|
Extension: string | null;
|
|
540
551
|
FirstName: string | null;
|
|
541
552
|
HomePhone: string | null;
|