@leavittsoftware/lg-core-typescript 2.0.334 → 2.0.335
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,FailReason,ProducerCommissionRate,PreferredContactMethodTypeString,ConferenceAttendeePersonRole,Conference,ConferenceSponsorship,PhoneNumberTypesString,CompanyOwnership,TemplateContact,TimelineContact,GlobalTask,TemplateTask,TemplateServiceTask,TimelineDocumentPage,TimelineServiceTask,TimelineEnabledPage,TimelineTaskToTimelineContactAssignee,TaskReminder,TaskStatusTypeString,TimelineTaskToTimelineContactWatcher,TemplateTaskToTemplateContactAssignee,TemplateTaskToTemplateContactWatcher,TimelineTemplateToCompany,
|
|
7
|
+
import { Ams360PersonRole,Ams360SupplementalCode,Ams360EmpCode,EmploymentTypeString,Person,CrmAccount,Tv,FailReason,ProducerCommissionRate,PreferredContactMethodTypeString,ConferenceAttendeePersonRole,Conference,ConferenceSponsorship,PhoneNumberTypesString,CompanyOwnership,TemplateContact,TimelineContact,GlobalTask,TemplateTask,TemplateServiceTask,TimelineDocumentPage,TimelineServiceTask,TimelineEnabledPage,TimelineTaskToTimelineContactAssignee,TaskReminder,TaskStatusTypeString,TimelineTaskToTimelineContactWatcher,TemplateTaskToTemplateContactAssignee,TemplateTaskToTemplateContactWatcher,TimelineTemplateToCompany,PersonToItManagedApplication,ApplicationToApplicationTag,PermissionToApplication } from './lg.core'
|
|
8
8
|
|
|
9
9
|
export interface EventEmailDto {
|
|
10
10
|
Body: string | null;
|
|
@@ -1235,6 +1235,19 @@ export interface TimelineServiceTaskDto {
|
|
|
1235
1235
|
TimelineId: number;
|
|
1236
1236
|
}
|
|
1237
1237
|
|
|
1238
|
+
export interface ItManagedApplicationUpsertDto {
|
|
1239
|
+
ActiveUsers: Array<Partial<PersonToItManagedApplication>> | null;
|
|
1240
|
+
AdLicenseName: string | null;
|
|
1241
|
+
Description: string | null;
|
|
1242
|
+
Id: number | null;
|
|
1243
|
+
IsActive: boolean;
|
|
1244
|
+
IsDiscoverable: boolean;
|
|
1245
|
+
Name: string | null;
|
|
1246
|
+
Owner: string | null;
|
|
1247
|
+
Tags: Array<Partial<ApplicationToApplicationTag>> | null;
|
|
1248
|
+
URL: string | null;
|
|
1249
|
+
}
|
|
1250
|
+
|
|
1238
1251
|
export interface PermissionUpsertDto {
|
|
1239
1252
|
Applications: Array<Partial<PermissionToApplication>> | null;
|
|
1240
1253
|
Description: string | null;
|