fix(client): add webhookUrl to subscribe options (#67)

* fix(client): add webhookUrl to subscribe options

* chore(client): bump version for release
This commit is contained in:
Daniel Rochetti 2024-06-04 15:20:32 -07:00 committed by GitHub
parent cd2089768d
commit 8fc0b726c2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 7 additions and 1 deletions

View File

@ -1,7 +1,7 @@
{
"name": "@fal-ai/serverless-client",
"description": "The fal serverless JS/TS client",
"version": "0.10.2",
"version": "0.10.3",
"license": "MIT",
"repository": {
"type": "git",

View File

@ -187,6 +187,12 @@ type QueueSubscribeOptions = {
* Defaults to `false`.
*/
logs?: boolean;
/**
* The URL to send a webhook notification to when the request is completed.
* @see WebHookResponse
*/
webhookUrl?: string;
};
/**