We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 29c4dcd commit 653b81dCopy full SHA for 653b81d
packages/sdk/package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "@pipedream/sdk",
3
- "version": "0.1.7",
+ "version": "0.1.8",
4
"description": "Pipedream SDK",
5
"main": "dist/server/index.js",
6
"module": "dist/server/index.js",
packages/sdk/src/server/index.ts
@@ -56,6 +56,11 @@ export type ConnectTokenCreateOpts = {
56
* The optional url to redirect the user to upon failed connection.
57
*/
58
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;
64
};
65
66
export type AppInfo = {
0 commit comments