@leavittsoftware/lg-core-typescript 2.0.427 → 2.0.428
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 +3 -0
- package/package.json +1 -1
package/api3.leavitt.com.ts
CHANGED
|
@@ -109,13 +109,16 @@ export interface GetServicesCountDto {
|
|
|
109
109
|
|
|
110
110
|
export interface GetServiceStatsDto {
|
|
111
111
|
CategoryName: string | null;
|
|
112
|
+
ChampionMeetingCount: number;
|
|
112
113
|
Id: number;
|
|
113
114
|
ImplementationSuccessRate: Partial<number>;
|
|
115
|
+
ImplementingCount: number;
|
|
114
116
|
Name: string | null;
|
|
115
117
|
NotDiscussedCount: number;
|
|
116
118
|
NotInterestedCount: number;
|
|
117
119
|
ServicesImplemented: number;
|
|
118
120
|
ServicesOffered: number;
|
|
121
|
+
TrainingCount: number;
|
|
119
122
|
UsingCount: number;
|
|
120
123
|
}
|
|
121
124
|
|