Cleanup
This commit is contained in:
parent
a4d91c0ae0
commit
ebac9ef511
|
|
@ -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",
|
||||
|
|
|
|||
|
|
@ -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';
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue