feat(core): Live reload node/credential descriptions in development (no-changelog) (#4939)

This commit is contained in:
Valya
2023-02-08 18:26:07 +00:00
committed by GitHub
parent f23fb92696
commit 9c1f827dad
10 changed files with 134 additions and 155 deletions

View File

@@ -615,7 +615,8 @@ export type IPushData =
| PushDataConsoleMessage
| PushDataReloadNodeType
| PushDataRemoveNodeType
| PushDataTestWebhook;
| PushDataTestWebhook
| PushDataNodeDescriptionUpdated;
type PushDataExecutionFinished = {
data: IPushDataExecutionFinished;
@@ -657,6 +658,11 @@ type PushDataTestWebhook = {
type: 'testWebhookDeleted' | 'testWebhookReceived';
};
type PushDataNodeDescriptionUpdated = {
data: undefined;
type: 'nodeDescriptionUpdated';
};
export interface IPushDataExecutionFinished {
data: IRun;
executionId: string;