@leavittsoftware/lg-core-typescript 2.0.426 → 2.0.429
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 +29 -1
- package/package.json +1 -1
package/api3.leavitt.com.ts
CHANGED
|
@@ -3,7 +3,32 @@
|
|
|
3
3
|
// generated using a custom program
|
|
4
4
|
// </auto-generated>
|
|
5
5
|
// ----------------------
|
|
6
|
-
import { SignatureTemplateToCompany,ServiceToChampion,ServiceToCompany,ConnectedStatusString } from './lg.net.core'
|
|
6
|
+
import { SignatureValue,SignatureTemplateToCompany,ServiceToChampion,ServiceToCompany,ConnectedStatusString } from './lg.net.core'
|
|
7
|
+
|
|
8
|
+
export interface GetSignaturePrefillDataDto {
|
|
9
|
+
AgencyOrDepartment: string | null;
|
|
10
|
+
City: string | null;
|
|
11
|
+
EmailAddress: string | null;
|
|
12
|
+
Name: string | null;
|
|
13
|
+
PersonId: number | null;
|
|
14
|
+
Phone: string | null;
|
|
15
|
+
PhoneCell: string | null;
|
|
16
|
+
PhoneFax: string | null;
|
|
17
|
+
PhoneOffice: string | null;
|
|
18
|
+
State: string | null;
|
|
19
|
+
Street: string | null;
|
|
20
|
+
Title: string | null;
|
|
21
|
+
Zip: string | null;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
export interface SignatureDto {
|
|
25
|
+
Id: number | null;
|
|
26
|
+
Name: string | null;
|
|
27
|
+
PersonId: number;
|
|
28
|
+
SignatureTemplateId: number;
|
|
29
|
+
SignatureValues: Array<Partial<SignatureValue>> | null;
|
|
30
|
+
UpdatedDate: string | null;
|
|
31
|
+
}
|
|
7
32
|
|
|
8
33
|
export interface SignatureTemplateDto {
|
|
9
34
|
AvailableToAll: boolean;
|
|
@@ -100,13 +125,16 @@ export interface GetServicesCountDto {
|
|
|
100
125
|
|
|
101
126
|
export interface GetServiceStatsDto {
|
|
102
127
|
CategoryName: string | null;
|
|
128
|
+
ChampionMeetingCount: number;
|
|
103
129
|
Id: number;
|
|
104
130
|
ImplementationSuccessRate: Partial<number>;
|
|
131
|
+
ImplementingCount: number;
|
|
105
132
|
Name: string | null;
|
|
106
133
|
NotDiscussedCount: number;
|
|
107
134
|
NotInterestedCount: number;
|
|
108
135
|
ServicesImplemented: number;
|
|
109
136
|
ServicesOffered: number;
|
|
137
|
+
TrainingCount: number;
|
|
110
138
|
UsingCount: number;
|
|
111
139
|
}
|
|
112
140
|
|