@drodil/backstage-plugin-qeta-common 3.47.2 → 3.48.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 +4 -0
  2. package/package.json +2 -2
package/dist/index.d.ts CHANGED
@@ -104,6 +104,7 @@ interface AnswersQuery extends PaginatedQuery {
104
104
  fromDate?: string;
105
105
  toDate?: string;
106
106
  ids?: number[];
107
+ questionId?: number;
107
108
  checkAccess?: boolean;
108
109
  }
109
110
  interface TagsQuery extends PaginatedQuery {
@@ -412,6 +413,7 @@ interface Post extends PostAnswerEntity {
412
413
  images?: number[];
413
414
  status: PostStatus;
414
415
  published?: Date;
416
+ collectionIds?: number[];
415
417
  }
416
418
  type NewPostEvent = {
417
419
  post: Post;
@@ -481,6 +483,8 @@ interface Vote {
481
483
  interface Comment extends QetaEntity {
482
484
  expert?: boolean;
483
485
  status: AnswerCommentStatus;
486
+ postId?: number;
487
+ answerId?: number;
484
488
  }
485
489
  interface Attachment {
486
490
  id: number;
package/package.json CHANGED
@@ -7,7 +7,7 @@
7
7
  "frontend",
8
8
  "backstage.io"
9
9
  ],
10
- "version": "3.47.2",
10
+ "version": "3.48.0",
11
11
  "main": "dist/index.cjs.js",
12
12
  "types": "dist/index.d.ts",
13
13
  "prepublishOnly": "yarn tsc && yarn build",
@@ -61,7 +61,7 @@
61
61
  "@backstage/catalog-model": "^1.7.6"
62
62
  },
63
63
  "devDependencies": {
64
- "@backstage/cli": "^0.34.5",
64
+ "@backstage/cli": "^0.35.0",
65
65
  "@types/lodash": "^4.14.199",
66
66
  "@types/qs": "^6"
67
67
  },