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