@drodil/backstage-plugin-qeta-common 3.53.3 → 3.55.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 +6 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -546,6 +546,9 @@ interface Answer extends PostAnswerEntity {
|
|
|
546
546
|
interface Collection extends CollectionEntity {
|
|
547
547
|
tags?: string[];
|
|
548
548
|
entities?: string[];
|
|
549
|
+
users?: string[];
|
|
550
|
+
postTags?: string[];
|
|
551
|
+
postEntities?: string[];
|
|
549
552
|
posts?: Post[];
|
|
550
553
|
canEdit?: boolean;
|
|
551
554
|
canDelete?: boolean;
|
|
@@ -636,6 +639,9 @@ interface CollectionRequest {
|
|
|
636
639
|
description?: string;
|
|
637
640
|
images: number[];
|
|
638
641
|
headerImage?: string;
|
|
642
|
+
tags?: string[];
|
|
643
|
+
entities?: string[];
|
|
644
|
+
users?: string[];
|
|
639
645
|
}
|
|
640
646
|
interface PostRequest {
|
|
641
647
|
title: string;
|