We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7747948 commit a1b2d91Copy full SHA for a1b2d91
lib/firefly.ts
@@ -510,6 +510,10 @@ export default class FireFly extends HttpBase {
510
return this.getMany<FireFlyContractListenerResponse[]>('/contracts/listeners', filter, options);
511
}
512
513
+ async deleteContractListener(id: string, options?: FireFlyDeleteOptions) {
514
+ await this.deleteOne(`/contracts/listeners/${id}`, options);
515
+ }
516
+
517
getContractAPIListeners(
518
apiName: string,
519
eventPath: string,
0 commit comments