|
|
@ -20,7 +20,7 @@ export type AggregatedQuestionEncounter = {
|
|
|
|
companyCounts: Record<string, number>;
|
|
|
|
companyCounts: Record<string, number>;
|
|
|
|
locationCounts: Record<string, number>;
|
|
|
|
locationCounts: Record<string, number>;
|
|
|
|
roleCounts: Record<string, number>;
|
|
|
|
roleCounts: Record<string, number>;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
export type AnswerComment = {
|
|
|
|
export type AnswerComment = {
|
|
|
|
content: string;
|
|
|
|
content: string;
|
|
|
@ -54,9 +54,9 @@ export type QuestionComment = {
|
|
|
|
export enum SortOrder {
|
|
|
|
export enum SortOrder {
|
|
|
|
ASC = 'asc',
|
|
|
|
ASC = 'asc',
|
|
|
|
DESC = 'desc',
|
|
|
|
DESC = 'desc',
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
export enum SortType {
|
|
|
|
export enum SortType {
|
|
|
|
TOP,
|
|
|
|
TOP,
|
|
|
|
NEW,
|
|
|
|
NEW,
|
|
|
|
};
|
|
|
|
}
|
|
|
|