add changeset

Signed-off-by: Kiss Miklos <miklos@roadie.io>
This commit is contained in:
Kiss Miklos
2022-09-07 13:58:39 +02:00
parent 858833a4d5
commit 6e63bc43f2
2 changed files with 6 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-catalog-backend': minor
---
Added refresh function to the EntityProviderConnection to be able to schedule refreshes from entity providers.
+1
View File
@@ -36,6 +36,7 @@ export interface EntityProviderConnection {
* Applies either a full or delta update to the catalog engine.
*/
applyMutation(mutation: EntityProviderMutation): Promise<void>;
refresh(keys: string[]): Promise<void>;
}
/**