Add aggregate results by entityRef
Signed-off-by: Roohn <tol.ronald@gmail.com>
This commit is contained in:
@@ -10,9 +10,7 @@ export interface EntityRatingsData {
|
||||
// (undocumented)
|
||||
entityTitle?: string;
|
||||
// (undocumented)
|
||||
ratings: {
|
||||
[ratingValue: string]: number;
|
||||
};
|
||||
ratings: Ratings;
|
||||
}
|
||||
|
||||
// @public (undocumented)
|
||||
@@ -38,4 +36,10 @@ export interface Rating {
|
||||
// (undocumented)
|
||||
userRef: string;
|
||||
}
|
||||
|
||||
// @public (undocumented)
|
||||
export interface Ratings {
|
||||
// (undocumented)
|
||||
[ratingValue: string]: number;
|
||||
}
|
||||
```
|
||||
|
||||
@@ -40,13 +40,18 @@ export interface FeedbackResponse {
|
||||
userRef: string;
|
||||
}
|
||||
|
||||
/**
|
||||
* @public
|
||||
*/
|
||||
export interface Ratings {
|
||||
[ratingValue: string]: number;
|
||||
}
|
||||
|
||||
/**
|
||||
* @public
|
||||
*/
|
||||
export interface EntityRatingsData {
|
||||
entityRef: string;
|
||||
entityTitle?: string;
|
||||
ratings: {
|
||||
[ratingValue: string]: number;
|
||||
};
|
||||
ratings: Ratings;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user