Skip to content

Commit 48f0f6d

Browse files
committed
Undo accidental change (but params are not right)
1 parent 442ef95 commit 48f0f6d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/api/resources/accounts/client/Client.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -193,10 +193,10 @@ export class Accounts {
193193
request: Pipedream.CreateAccountOpts,
194194
requestOptions?: Accounts.RequestOptions,
195195
): Promise<core.WithRawResponse<Pipedream.Account>> {
196-
const { app, externalUserId, oauthAppId, ..._body } = request;
196+
const { appId, externalUserId, oauthAppId, ..._body } = request;
197197
const _queryParams: Record<string, string | string[] | object | object[] | null> = {};
198-
if (app != null) {
199-
_queryParams["app"] = app;
198+
if (appId != null) {
199+
_queryParams["app_id"] = appId;
200200
}
201201

202202
if (externalUserId != null) {

0 commit comments

Comments
 (0)