@leavittsoftware/lg-core-typescript 2.0.353 → 2.0.354
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/lg.core.repository.ts +9 -0
- package/package.json +1 -1
package/lg.core.repository.ts
CHANGED
|
@@ -404,6 +404,7 @@ 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;
|
|
@@ -422,6 +423,7 @@ export interface BenefitPointCustomerDto {
|
|
|
422
423
|
ContactId: string | null;
|
|
423
424
|
ContactLastName: string | null;
|
|
424
425
|
ContactTitle: string | null;
|
|
426
|
+
ElasticScore: number | null;
|
|
425
427
|
Email: string | null;
|
|
426
428
|
Name: string | null;
|
|
427
429
|
Phone: string | null;
|
|
@@ -458,6 +460,7 @@ export interface CallManagerCrmPhoneNumberDto {
|
|
|
458
460
|
ContactFirstName: string | null;
|
|
459
461
|
ContactLastName: string | null;
|
|
460
462
|
ContactTitle: string | null;
|
|
463
|
+
ElasticScore: number | null;
|
|
461
464
|
Email: string | null;
|
|
462
465
|
Id: number;
|
|
463
466
|
Name: string | null;
|
|
@@ -468,6 +471,7 @@ export interface CallManagerCrmPhoneNumberDto {
|
|
|
468
471
|
|
|
469
472
|
export interface CallManagerCompanySearchDto {
|
|
470
473
|
CompanyId: number;
|
|
474
|
+
ElasticScore: number | null;
|
|
471
475
|
Name: string | null;
|
|
472
476
|
Phone: string | null;
|
|
473
477
|
ShortName: string | null;
|
|
@@ -478,6 +482,7 @@ export interface CrmSearchDto {
|
|
|
478
482
|
ContactFirstName: string | null;
|
|
479
483
|
ContactLastName: string | null;
|
|
480
484
|
ContactTitle: string | null;
|
|
485
|
+
ElasticScore: number | null;
|
|
481
486
|
IsContact: boolean;
|
|
482
487
|
Name: string | null;
|
|
483
488
|
Phone: string | null;
|
|
@@ -487,6 +492,7 @@ export interface CrmSearchDto {
|
|
|
487
492
|
export interface AmsClientSearchDto {
|
|
488
493
|
AgencyName: string | null;
|
|
489
494
|
CompanyName: string | null;
|
|
495
|
+
ElasticScore: number | null;
|
|
490
496
|
FirstName: string | null;
|
|
491
497
|
HomePhone: string | null;
|
|
492
498
|
LastName: string | null;
|
|
@@ -511,6 +517,7 @@ export interface CallManagerAmsClientPhoneNumberDto {
|
|
|
511
517
|
AgencyName: string | null;
|
|
512
518
|
City: string | null;
|
|
513
519
|
CompanyName: string | null;
|
|
520
|
+
ElasticScore: number | null;
|
|
514
521
|
Email: string | null;
|
|
515
522
|
FirstName: string | null;
|
|
516
523
|
LastName: string | null;
|
|
@@ -524,6 +531,7 @@ export interface CallManagerAmsClientPhoneNumberDto {
|
|
|
524
531
|
export interface CallManagerEmployeePhoneNumberDto {
|
|
525
532
|
City: string | null;
|
|
526
533
|
CompanyName: string | null;
|
|
534
|
+
ElasticScore: number | null;
|
|
527
535
|
Email: string | null;
|
|
528
536
|
FirstName: string | null;
|
|
529
537
|
LastName: string | null;
|
|
@@ -536,6 +544,7 @@ export interface CallManagerEmployeePhoneNumberDto {
|
|
|
536
544
|
|
|
537
545
|
export interface CallManagerEmployeeDto {
|
|
538
546
|
CompanyName: string | null;
|
|
547
|
+
ElasticScore: number | null;
|
|
539
548
|
Extension: string | null;
|
|
540
549
|
FirstName: string | null;
|
|
541
550
|
HomePhone: string | null;
|