chore(review): address comments

Signed-off-by: Phil Kuang <pkuang@factset.com>
This commit is contained in:
Phil Kuang
2023-02-13 09:38:48 -05:00
parent a3c86a7ed2
commit dfbe698743
11 changed files with 42 additions and 32 deletions
+11 -12
View File
@@ -16,17 +16,7 @@ export interface EntityRatingsData {
}
// @public (undocumented)
export interface Rating {
// (undocumented)
entityRef: string;
// (undocumented)
rating: string;
// (undocumented)
userRef: string;
}
// @public (undocumented)
interface Response_2 {
export interface FeedbackResponse {
// (undocumented)
comments?: string;
// (undocumented)
@@ -38,5 +28,14 @@ interface Response_2 {
// (undocumented)
userRef: string;
}
export { Response_2 as Response };
// @public (undocumented)
export interface Rating {
// (undocumented)
entityRef: string;
// (undocumented)
rating: string;
// (undocumented)
userRef: string;
}
```
+1 -1
View File
@@ -1,7 +1,7 @@
{
"name": "@backstage/plugin-entity-feedback-common",
"description": "Common functionalities for the entity-feedback plugin",
"version": "0.1.0",
"version": "0.0.0",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
+1 -1
View File
@@ -32,7 +32,7 @@ export interface Rating {
/**
* @public
*/
export interface Response {
export interface FeedbackResponse {
entityRef: string;
response?: string;
comments?: string;