@leavittsoftware/lg-core-typescript 2.0.399 → 2.0.400
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/api3.leavitt.com.ts +16 -0
- package/lg.net.core.ts +1 -0
- package/package.json +1 -1
package/api3.leavitt.com.ts
CHANGED
|
@@ -18,6 +18,12 @@ export interface UpsertConnectedServicesDto {
|
|
|
18
18
|
ShowLicensing: boolean;
|
|
19
19
|
}
|
|
20
20
|
|
|
21
|
+
export interface AgencyPartnerDto {
|
|
22
|
+
FirstName: string | null;
|
|
23
|
+
Id: number;
|
|
24
|
+
LastName: string | null;
|
|
25
|
+
}
|
|
26
|
+
|
|
21
27
|
export interface CompanyBreakdownDto {
|
|
22
28
|
AgencyPartnerId: number;
|
|
23
29
|
AgencyPartnerName: string | null;
|
|
@@ -44,6 +50,16 @@ export interface GetLicensingBreakdownByCompanyDto {
|
|
|
44
50
|
TotalCost: Partial<number> | null;
|
|
45
51
|
}
|
|
46
52
|
|
|
53
|
+
export interface GetServiceCompanyStatsDto {
|
|
54
|
+
AgencyPartners: Array<Partial<AgencyPartnerDto>> | null;
|
|
55
|
+
CompanyId: number;
|
|
56
|
+
CompanyName: string | null;
|
|
57
|
+
CompanyStartDate: string;
|
|
58
|
+
ServicesInUseCount: number;
|
|
59
|
+
ServicesNotDiscussedCount: number;
|
|
60
|
+
UpdatedDate: string | null;
|
|
61
|
+
}
|
|
62
|
+
|
|
47
63
|
export interface GetServiceStatsDto {
|
|
48
64
|
CategoryName: string | null;
|
|
49
65
|
Id: number;
|
package/lg.net.core.ts
CHANGED
|
@@ -872,6 +872,7 @@ export interface Company {
|
|
|
872
872
|
Name: string | null;
|
|
873
873
|
PhoneNumbers: Array<Partial<PhoneNumber>> | null;
|
|
874
874
|
Roles: Array<Partial<CompanyRole>> | null;
|
|
875
|
+
Services: Array<Partial<ServiceToCompany>> | null;
|
|
875
876
|
StartDate: string;
|
|
876
877
|
Stationeries: Array<Partial<Stationery>> | null;
|
|
877
878
|
TimelineTemplateToCompanies: Array<Partial<TimelineTemplateToCompany>> | null;
|