@leavittsoftware/lg-core-typescript 2.0.388 → 2.0.389
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 +31 -1
- 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;
|
|
@@ -1497,6 +1497,36 @@ export interface ITEmployeeLookupSummaryDto {
|
|
|
1497
1497
|
Zip: string | null;
|
|
1498
1498
|
}
|
|
1499
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
|
+
|
|
1500
1530
|
export interface CLGameScoreboardDto {
|
|
1501
1531
|
CLGameId: number;
|
|
1502
1532
|
Id: number | null;
|