@drodil/backstage-plugin-qeta-common 2.10.3 → 2.12.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 +4 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -177,6 +177,9 @@ interface UserEntitiesResponse {
|
|
|
177
177
|
entityRefs: string[];
|
|
178
178
|
count: number;
|
|
179
179
|
}
|
|
180
|
+
interface ImpactResponse {
|
|
181
|
+
impact: number;
|
|
182
|
+
}
|
|
180
183
|
|
|
181
184
|
declare const TAGS_REGEX: RegExp;
|
|
182
185
|
declare const filterTags: (input?: null | string | string[]) => string[] | undefined;
|
|
@@ -184,4 +187,4 @@ declare const filterTags: (input?: null | string | string[]) => string[] | undef
|
|
|
184
187
|
declare const truncate: (str: string, n: number) => string;
|
|
185
188
|
declare const removeMarkdownFormatting: (text: string) => string;
|
|
186
189
|
|
|
187
|
-
export { ANSWER_RESOURCE_TYPE, type Answer, type AnswerFilter, type AnswerRequest, type AnswerResponse, type AnswerResponseBody, type AnswersResponse, type AnswersResponseBody, type Attachment, type AttachmentResponseBody, COMMENT_RESOURCE_TYPE, type Comment, type CommentFilter, type EntityResponse, QUESTION_RESOURCE_TYPE, type QetaAnswerStatsSignal, type QetaDocument, type QetaEntity, type QetaQuestionStatsSignal, type QetaSignal, type Question, type QuestionAnswerEntity, type QuestionFilter, type QuestionRequest, type QuestionResponse, type QuestionResponseBody, type QuestionsResponse, type QuestionsResponseBody, type Statistic, type StatisticResponse, type StatisticsOptions, type StatisticsRequestParameters, TAGS_REGEX, type TagResponse, type UserEntitiesResponse, type UserTagsResponse, type Vote, filterTags, isQetaPermission, qetaCreateAnswerPermission, qetaCreateCommentPermission, qetaCreateQuestionPermission, qetaDeleteAnswerPermission, qetaDeleteCommentPermission, qetaDeleteQuestionPermission, qetaEditAnswerPermission, qetaEditCommentPermission, qetaEditQuestionPermission, qetaPermissions, qetaReadAnswerPermission, qetaReadCommentPermission, qetaReadQuestionPermission, removeMarkdownFormatting, truncate };
|
|
190
|
+
export { ANSWER_RESOURCE_TYPE, type Answer, type AnswerFilter, type AnswerRequest, type AnswerResponse, type AnswerResponseBody, type AnswersResponse, type AnswersResponseBody, type Attachment, type AttachmentResponseBody, COMMENT_RESOURCE_TYPE, type Comment, type CommentFilter, type EntityResponse, type ImpactResponse, QUESTION_RESOURCE_TYPE, type QetaAnswerStatsSignal, type QetaDocument, type QetaEntity, type QetaQuestionStatsSignal, type QetaSignal, type Question, type QuestionAnswerEntity, type QuestionFilter, type QuestionRequest, type QuestionResponse, type QuestionResponseBody, type QuestionsResponse, type QuestionsResponseBody, type Statistic, type StatisticResponse, type StatisticsOptions, type StatisticsRequestParameters, TAGS_REGEX, type TagResponse, type UserEntitiesResponse, type UserTagsResponse, type Vote, filterTags, isQetaPermission, qetaCreateAnswerPermission, qetaCreateCommentPermission, qetaCreateQuestionPermission, qetaDeleteAnswerPermission, qetaDeleteCommentPermission, qetaDeleteQuestionPermission, qetaEditAnswerPermission, qetaEditCommentPermission, qetaEditQuestionPermission, qetaPermissions, qetaReadAnswerPermission, qetaReadCommentPermission, qetaReadQuestionPermission, removeMarkdownFormatting, truncate };
|