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 fcde7cf commit 58a5845Copy full SHA for 58a5845
packages/sdk/package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "@pipedream/sdk",
3
- "version": "0.1.8",
+ "version": "0.1.9",
4
"description": "Pipedream SDK",
5
"main": "dist/server/index.js",
6
"module": "dist/server/index.js",
packages/sdk/src/server/index.ts
@@ -61,6 +61,12 @@ export type ConnectTokenCreateOpts = {
61
* An optional webhook uri that Pipedream can invoke on success or failure of connection requests.
62
*/
63
webhook_uri?: string;
64
+
65
+ /**
66
+ * Specify the environment ('production' or 'development') to use for the account connection flow.
67
+ * Defaults to 'production'.
68
+ */
69
+ environment_name?: string;
70
};
71
72
export type AppInfo = {
0 commit comments