unified protocol message names around new spring index to spring/index

This commit is contained in:
Martin Lippert
2023-05-10 13:59:38 +02:00
parent 6d0e4587aa
commit 2dfcdd0f29
4 changed files with 5 additions and 5 deletions

View File

@@ -63,7 +63,7 @@ export class ApiManager {
client.onNotification(SpringModelUpdatedNotification.type, () => this.onSpringModelUpdateEmitter.fire());
const beansRequestType = new RequestType<BeansParams, Bean[], void>('spring/beans');
const beansRequestType = new RequestType<BeansParams, Bean[], void>('spring/index/beans');
const beans = (params: BeansParams) => {
return client.sendRequest(beansRequestType, params);
}