@leavittsoftware/lg-core-typescript 2.0.393 → 2.0.394
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 +14 -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,ConnectedStatusString,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,ServiceToChampion,ServiceToCompany,ConnectedStatusString,CLGameScoreboardToPlayerGroup,CLGamePrize } from './lg.core'
|
|
8
8
|
|
|
9
9
|
export interface EventEmailDto {
|
|
10
10
|
Body: string | null;
|
|
@@ -1497,6 +1497,19 @@ export interface ITEmployeeLookupSummaryDto {
|
|
|
1497
1497
|
Zip: string | null;
|
|
1498
1498
|
}
|
|
1499
1499
|
|
|
1500
|
+
export interface UpsertConnectedServicesDto {
|
|
1501
|
+
AssignToAllCompanies: boolean;
|
|
1502
|
+
CategoryId: number;
|
|
1503
|
+
Champions: Array<Partial<ServiceToChampion>> | null;
|
|
1504
|
+
Companies: Array<Partial<ServiceToCompany>> | null;
|
|
1505
|
+
Description: string | null;
|
|
1506
|
+
Id: number | null;
|
|
1507
|
+
IsActive: boolean;
|
|
1508
|
+
Name: string | null;
|
|
1509
|
+
ServiceCost: string | null;
|
|
1510
|
+
ShowLicensing: boolean;
|
|
1511
|
+
}
|
|
1512
|
+
|
|
1500
1513
|
export interface GetServiceStatsDto {
|
|
1501
1514
|
CategoryName: string | null;
|
|
1502
1515
|
Id: number;
|