@drodil/backstage-plugin-qeta-common 1.18.8 → 1.19.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 +5 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -117,8 +117,12 @@ interface TagResponse {
|
|
|
117
117
|
tag: string;
|
|
118
118
|
questionsCount: number;
|
|
119
119
|
}
|
|
120
|
+
interface EntityResponse {
|
|
121
|
+
entityRef: string;
|
|
122
|
+
questionsCount: number;
|
|
123
|
+
}
|
|
120
124
|
type AttachmentResponseBody = Attachment | ErrorResponse;
|
|
121
125
|
type QuestionResponse = Question;
|
|
122
126
|
type AnswerResponse = Answer;
|
|
123
127
|
|
|
124
|
-
export { Answer, AnswerRequest, AnswerResponse, AnswerResponseBody, Attachment, AttachmentResponseBody, Comment, QetaDocument, QetaEntity, Question, QuestionAnswerEntity, QuestionRequest, QuestionResponse, QuestionResponseBody, QuestionsResponse, QuestionsResponseBody, Statistic, StatisticResponse, StatisticsOptions, StatisticsRequestParameters, TagResponse, Vote, qetaCreateAnswerPermission, qetaCreateQuestionPermission, qetaPermissions, qetaReadPermission };
|
|
128
|
+
export { Answer, AnswerRequest, AnswerResponse, AnswerResponseBody, Attachment, AttachmentResponseBody, Comment, EntityResponse, QetaDocument, QetaEntity, Question, QuestionAnswerEntity, QuestionRequest, QuestionResponse, QuestionResponseBody, QuestionsResponse, QuestionsResponseBody, Statistic, StatisticResponse, StatisticsOptions, StatisticsRequestParameters, TagResponse, Vote, qetaCreateAnswerPermission, qetaCreateQuestionPermission, qetaPermissions, qetaReadPermission };
|