@drodil/backstage-plugin-qeta-common 3.20.1 → 3.20.3
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 +3 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -413,6 +413,7 @@ interface Collection extends CollectionEntity {
|
|
|
413
413
|
canEdit?: boolean;
|
|
414
414
|
canDelete?: boolean;
|
|
415
415
|
images: number[];
|
|
416
|
+
postsCount: number;
|
|
416
417
|
followers: number;
|
|
417
418
|
}
|
|
418
419
|
interface Vote {
|
|
@@ -443,7 +444,7 @@ interface QetaPostDocument extends QetaSearchDocument {
|
|
|
443
444
|
score: number;
|
|
444
445
|
postType: PostType;
|
|
445
446
|
entityRefs?: string[];
|
|
446
|
-
answerCount
|
|
447
|
+
answerCount: number;
|
|
447
448
|
created: Date;
|
|
448
449
|
views: number;
|
|
449
450
|
tags?: string[];
|
|
@@ -454,6 +455,7 @@ interface QetaCollectionDocument extends QetaSearchDocument {
|
|
|
454
455
|
owner: string;
|
|
455
456
|
created: Date;
|
|
456
457
|
headerImage?: string;
|
|
458
|
+
postsCount: number;
|
|
457
459
|
}
|
|
458
460
|
interface CustomError {
|
|
459
461
|
message: string;
|