@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.
Files changed (2) hide show
  1. package/dist/index.d.ts +8 -0
  2. 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;
package/package.json CHANGED
@@ -7,7 +7,7 @@
7
7
  "frontend",
8
8
  "backstage.io"
9
9
  ],
10
- "version": "2.13.1",
10
+ "version": "2.15.0",
11
11
  "main": "dist/index.cjs.js",
12
12
  "types": "dist/index.d.ts",
13
13
  "prepublishOnly": "yarn tsc && yarn build",