camunda-community-hub / zeebe-client-node-js

Node.js client library for Zeebe Microservices Orchestration Engine
https://camunda-community-hub.github.io/zeebe-client-node-js/
Apache License 2.0
152 stars 38 forks source link

Fixes #242 #243

Closed mrsateeshp closed 2 years ago

mrsateeshp commented 3 years ago

fix: resolveIncident(incidentKey) is not working

change argument type for resolveIncident method to match the Gateway's API

BREAKING CHANGE: input argument for zbClient.resolveIncident is changed.

To migrate the code, follow the example below:

Before:

zbClient.resolveIncident(incidentKey);

After:

zbClient.resolveIncident({incidentKey: incidentKey});

Fixes #242

CLAassistant commented 3 years ago

CLA assistant check
All committers have signed the CLA.

mrsateeshp commented 2 years ago

@jwulf - can this pull request be reviewed please?

jwulf commented 2 years ago

Thank you for the PR.