@leavittsoftware/lg-core-typescript 2.0.386 → 2.0.390
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/api2.leavitt.com.ts +40 -1
- package/lg.apfc.ts +1 -0
- package/lg.core.repository.ts +2 -0
- package/package.json +1 -1
package/api2.leavitt.com.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
// </auto-generated>
|
|
5
5
|
// ----------------------
|
|
6
6
|
import { BenefitPointCustomer,Ams360Customer } from './elasticsearch'
|
|
7
|
-
import { Ams360PersonRole,Ams360SupplementalCode,Ams360EmpCode,EmploymentTypeString,Person,CrmAccount,Tv,PreferredContactMethodTypeString,ConferenceAttendeePersonRole,Conference,ConferenceSponsorship,CompanyOwnership,TemplateContact,TimelineContact,GlobalTask,TemplateTask,TemplateServiceTask,TimelineDocumentPage,TimelineServiceTask,TimelineEnabledPage,TimelineTaskToTimelineContactAssignee,TaskReminder,TaskStatusTypeString,TimelineTaskToTimelineContactWatcher,TemplateTaskToTemplateContactAssignee,TemplateTaskToTemplateContactWatcher,TimelineTemplateToCompany,ApplicationToApplicationTag,PermissionToApplication,ProducerCommissionRate,DifferedCompensation,Expectation,FailReason,GuidingPrinciple,PLGameScoreboardToPlayerGroup,PrizeDistributionOptionString,PLGamePrize,PhoneNumberTypesString,CLGameScoreboardToPlayerGroup,CLGamePrize } from './lg.core'
|
|
7
|
+
import { Ams360PersonRole,Ams360SupplementalCode,Ams360EmpCode,EmploymentTypeString,Person,CrmAccount,Tv,PreferredContactMethodTypeString,ConferenceAttendeePersonRole,Conference,ConferenceSponsorship,CompanyOwnership,TemplateContact,TimelineContact,GlobalTask,TemplateTask,TemplateServiceTask,TimelineDocumentPage,TimelineServiceTask,TimelineEnabledPage,TimelineTaskToTimelineContactAssignee,TaskReminder,TaskStatusTypeString,TimelineTaskToTimelineContactWatcher,TemplateTaskToTemplateContactAssignee,TemplateTaskToTemplateContactWatcher,TimelineTemplateToCompany,ApplicationToApplicationTag,PermissionToApplication,ProducerCommissionRate,DifferedCompensation,Expectation,FailReason,GuidingPrinciple,PLGameScoreboardToPlayerGroup,PrizeDistributionOptionString,PLGamePrize,PhoneNumberTypesString,ConnectedStatusString,CLGameScoreboardToPlayerGroup,CLGamePrize } from './lg.core'
|
|
8
8
|
|
|
9
9
|
export interface EventEmailDto {
|
|
10
10
|
Body: string | null;
|
|
@@ -1435,6 +1435,14 @@ export interface ITEmployeeLookupEmailDto {
|
|
|
1435
1435
|
IsPrimary: boolean;
|
|
1436
1436
|
}
|
|
1437
1437
|
|
|
1438
|
+
export interface ITEmployeeLookupSearchDto {
|
|
1439
|
+
CompanyName: string | null;
|
|
1440
|
+
FirstName: string | null;
|
|
1441
|
+
Id: number;
|
|
1442
|
+
IsTerminated: boolean;
|
|
1443
|
+
LastName: string | null;
|
|
1444
|
+
}
|
|
1445
|
+
|
|
1438
1446
|
export interface ITEmployeeLookupPhoneDto {
|
|
1439
1447
|
AreaCode: string | null;
|
|
1440
1448
|
LineNumber: string | null;
|
|
@@ -1489,6 +1497,36 @@ export interface ITEmployeeLookupSummaryDto {
|
|
|
1489
1497
|
Zip: string | null;
|
|
1490
1498
|
}
|
|
1491
1499
|
|
|
1500
|
+
export interface GetServiceStatsDto {
|
|
1501
|
+
CategoryName: string | null;
|
|
1502
|
+
Id: number;
|
|
1503
|
+
Name: string | null;
|
|
1504
|
+
NotDicussedCount: number;
|
|
1505
|
+
NotInterestedCount: number;
|
|
1506
|
+
UsingCount: number;
|
|
1507
|
+
}
|
|
1508
|
+
|
|
1509
|
+
export interface CompanyBreakdownDto {
|
|
1510
|
+
AgencyPartnerId: number;
|
|
1511
|
+
AgencyPartnerName: string | null;
|
|
1512
|
+
CompanyId: number;
|
|
1513
|
+
CompanyName: string | null;
|
|
1514
|
+
ServiceToCompanyId: number;
|
|
1515
|
+
Status: ConnectedStatusString;
|
|
1516
|
+
}
|
|
1517
|
+
|
|
1518
|
+
export interface GetLicensingBreakdownByCompanyDto {
|
|
1519
|
+
AgreementEndDate: string | null;
|
|
1520
|
+
AgreementStartDate: string | null;
|
|
1521
|
+
CompanyId: number;
|
|
1522
|
+
CompanyName: string | null;
|
|
1523
|
+
CostPerLicense: Partial<number> | null;
|
|
1524
|
+
NumOfLicenses: number | null;
|
|
1525
|
+
ServiceToCompanyId: number;
|
|
1526
|
+
Status: ConnectedStatusString;
|
|
1527
|
+
TotalCost: Partial<number> | null;
|
|
1528
|
+
}
|
|
1529
|
+
|
|
1492
1530
|
export interface CLGameScoreboardDto {
|
|
1493
1531
|
CLGameId: number;
|
|
1494
1532
|
Id: number | null;
|
|
@@ -1505,6 +1543,7 @@ export interface CLGameScoreboardDto {
|
|
|
1505
1543
|
}
|
|
1506
1544
|
|
|
1507
1545
|
export interface CLGamePrizePayoutDto {
|
|
1546
|
+
EmailAddress: string | null;
|
|
1508
1547
|
FirstName: string | null;
|
|
1509
1548
|
GrandPrizeName: string | null;
|
|
1510
1549
|
LastName: string | null;
|
package/lg.apfc.ts
CHANGED
package/lg.core.repository.ts
CHANGED
|
@@ -400,6 +400,7 @@ export interface CLGameDivisionBreakdownDto {
|
|
|
400
400
|
}
|
|
401
401
|
|
|
402
402
|
export interface CLGamePlayerBreakdownDto {
|
|
403
|
+
EmailAddress: string | null;
|
|
403
404
|
FirstName: string | null;
|
|
404
405
|
GrandPrizeName: string | null;
|
|
405
406
|
IsTeamCaptain: boolean;
|
|
@@ -432,6 +433,7 @@ export interface CLGameTeamBreakdownDto {
|
|
|
432
433
|
export interface CLGameTopPlayerDto {
|
|
433
434
|
AgencyId: number | null;
|
|
434
435
|
AgencyName: string | null;
|
|
436
|
+
EmailAddress: string | null;
|
|
435
437
|
FirstName: string | null;
|
|
436
438
|
GrandPrizeName: string | null;
|
|
437
439
|
IsSubsidized: boolean;
|