@drodil/backstage-plugin-qeta-common 2.9.1 → 2.10.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
|
@@ -173,6 +173,10 @@ interface UserTagsResponse {
|
|
|
173
173
|
tags: string[];
|
|
174
174
|
count: number;
|
|
175
175
|
}
|
|
176
|
+
interface UserEntitiesResponse {
|
|
177
|
+
entityRefs: string[];
|
|
178
|
+
count: number;
|
|
179
|
+
}
|
|
176
180
|
|
|
177
181
|
declare const TAGS_REGEX: RegExp;
|
|
178
182
|
declare const filterTags: (input?: null | string | string[]) => string[] | undefined;
|
|
@@ -180,4 +184,4 @@ declare const filterTags: (input?: null | string | string[]) => string[] | undef
|
|
|
180
184
|
declare const truncate: (str: string, n: number) => string;
|
|
181
185
|
declare const removeMarkdownFormatting: (text: string) => string;
|
|
182
186
|
|
|
183
|
-
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 UserTagsResponse, type Vote, filterTags, isQetaPermission, qetaCreateAnswerPermission, qetaCreateCommentPermission, qetaCreateQuestionPermission, qetaDeleteAnswerPermission, qetaDeleteCommentPermission, qetaDeleteQuestionPermission, qetaEditAnswerPermission, qetaEditCommentPermission, qetaEditQuestionPermission, qetaPermissions, qetaReadAnswerPermission, qetaReadCommentPermission, qetaReadQuestionPermission, removeMarkdownFormatting, truncate };
|
|
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 };
|