@drodil/backstage-plugin-qeta-common 2.13.1 → 2.15.0
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/dist/index.d.ts +8 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -193,9 +193,17 @@ interface UserEntitiesResponse {
|
|
|
193
193
|
}
|
|
194
194
|
interface ImpactResponse {
|
|
195
195
|
impact: number;
|
|
196
|
+
lastWeekImpact: number;
|
|
196
197
|
}
|
|
197
198
|
interface StatisticsResponse {
|
|
198
199
|
statistics: Stat[];
|
|
200
|
+
summary: {
|
|
201
|
+
totalQuestions: number;
|
|
202
|
+
totalAnswers: number;
|
|
203
|
+
totalVotes: number;
|
|
204
|
+
totalComments: number;
|
|
205
|
+
totalViews: number;
|
|
206
|
+
};
|
|
199
207
|
}
|
|
200
208
|
|
|
201
209
|
declare const TAGS_REGEX: RegExp;
|