Skip to content

Commit 653b81d

Browse files
authored
Add webhook_uri to webhook_uri (#14296)
1 parent 29c4dcd commit 653b81d

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

packages/sdk/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pipedream/sdk",
3-
"version": "0.1.7",
3+
"version": "0.1.8",
44
"description": "Pipedream SDK",
55
"main": "dist/server/index.js",
66
"module": "dist/server/index.js",

packages/sdk/src/server/index.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,11 @@ export type ConnectTokenCreateOpts = {
5656
* The optional url to redirect the user to upon failed connection.
5757
*/
5858
error_redirect_uri?: string;
59+
60+
/**
61+
* An optional webhook uri that Pipedream can invoke on success or failure of connection requests.
62+
*/
63+
webhook_uri?: string;
5964
};
6065

6166
export type AppInfo = {

0 commit comments

Comments
 (0)