This commit is contained in:
Sipke Schoorstra 2021-11-17 18:34:20 +01:00
parent a4d91c0ae0
commit ebac9ef511
3 changed files with 5 additions and 4 deletions

View file

@ -1,6 +1,6 @@
{
"name": "@elsa-workflows/elsa-workflows-studio",
"version": "2.2.11",
"version": "2.2.13",
"description": "Elsa Workflow Studio is a collection of web components to manage Elsa workflows stored on an Elsa Workflows server.",
"repository": {
"type": "git",

View file

@ -4,3 +4,4 @@ export * from './models';
export * from './services';
export * from './modules/elsa-webhooks/plugins/webhooks-plugin';
export * from './modules/elsa-workflows-settings/plugins/workflow-settings-plugin';
export * as DashboardTunnel from './data/dashboard';

View file

@ -23,7 +23,7 @@ export const createHttpClient = function(baseAddress: string) : AxiosInstance
const service = new Service(httpClient);
eventBus.emit(EventTypes.HttpClientCreated, this, {service, httpClient});
return _httpClient = httpClient;
}
@ -55,7 +55,7 @@ export const createElsaWebhooksClient = function (serverUrl: string): ElsaWebhoo
delete: async webhookId => {
await httpClient.delete(`v1/webhook-definitions/${webhookId}`);
},
}
}
}
return _elsaWebhooksClient;
@ -85,4 +85,4 @@ export interface SaveWebhookDefinitionRequest {
description?: string;
payloadTypeName?: string;
isEnabled?: boolean;
}
}