@leavittsoftware/lg-core-typescript 2.0.403 → 2.0.406

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.
@@ -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,ServiceToChampion,ServiceToCompany,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,CLGameScoreboardToPlayerGroup,CLGamePrize } from './lg.core'
8
8
 
9
9
  export interface EventEmailDto {
10
10
  Body: string | null;
@@ -1497,50 +1497,6 @@ 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
-
1513
- export interface GetServiceStatsDto {
1514
- CategoryName: string | null;
1515
- Id: number;
1516
- Name: string | null;
1517
- NotDicussedCount: number;
1518
- NotInterestedCount: number;
1519
- UsingCount: number;
1520
- }
1521
-
1522
- export interface CompanyBreakdownDto {
1523
- AgencyPartnerId: number;
1524
- AgencyPartnerName: string | null;
1525
- CompanyId: number;
1526
- CompanyName: string | null;
1527
- ServiceToCompanyId: number;
1528
- Status: ConnectedStatusString;
1529
- UpdatedDate: string | null;
1530
- }
1531
-
1532
- export interface GetLicensingBreakdownByCompanyDto {
1533
- AgreementEndDate: string | null;
1534
- AgreementStartDate: string | null;
1535
- CompanyId: number;
1536
- CompanyName: string | null;
1537
- CostPerLicense: Partial<number> | null;
1538
- NumOfLicenses: number | null;
1539
- ServiceToCompanyId: number;
1540
- Status: ConnectedStatusString;
1541
- TotalCost: Partial<number> | null;
1542
- }
1543
-
1544
1500
  export interface CLGameScoreboardDto {
1545
1501
  CLGameId: number;
1546
1502
  Id: number | null;
@@ -34,6 +34,11 @@ export interface CompanyBreakdownDto {
34
34
  UpdatedDate: string | null;
35
35
  }
36
36
 
37
+ export interface CoOwnerAvailableServiceCountDto {
38
+ Available: number;
39
+ Using: number;
40
+ }
41
+
37
42
  export interface GetLicensingBreakdownByCompanyDto {
38
43
  AgreementEndDate: string | null;
39
44
  AgreementStartDate: string | null;
@@ -56,6 +61,12 @@ export interface GetServiceCompanyStatsDto {
56
61
  UpdatedDate: string | null;
57
62
  }
58
63
 
64
+ export interface GetServicesCountDto {
65
+ Count: number;
66
+ ServiceId: number;
67
+ ServiceName: string | null;
68
+ }
69
+
59
70
  export interface GetServiceStatsDto {
60
71
  CategoryName: string | null;
61
72
  Id: number;
package/lg.net.core.ts CHANGED
@@ -2933,12 +2933,6 @@ export interface CrmAccountMondayItem {
2933
2933
  SpreadSheetItemId: number | null;
2934
2934
  }
2935
2935
 
2936
- export interface PersonMondayAccount {
2937
- Id: number;
2938
- MondayId: number;
2939
- Person: Partial<Person> | null;
2940
- }
2941
-
2942
2936
  export interface GpNomination {
2943
2937
  AwardedByPerson: Partial<Person> | null;
2944
2938
  AwardedByPersonId: number | null;
@@ -4253,6 +4247,12 @@ export interface SurgeViewerToPeopleGroup {
4253
4247
  SurgeId: number;
4254
4248
  }
4255
4249
 
4250
+ export interface PersonMondayAccount {
4251
+ Id: number;
4252
+ MondayId: number;
4253
+ Person: Partial<Person> | null;
4254
+ }
4255
+
4256
4256
  export interface CrmActivityPlanner {
4257
4257
  ActivityPlannerId: string;
4258
4258
  ActivityPlannerName: string | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@leavittsoftware/lg-core-typescript",
3
- "version": "2.0.403",
3
+ "version": "2.0.406",
4
4
  "description": "Typescript of lg core",
5
5
  "main": "lg.core.js",
6
6
  "files": [