@@ -65,8 +65,8 @@ export class Proxy {
6565 * @example
6666 * await client.proxy.get({
6767 * url: "https://api.example.com/endpoint",
68- * external_user_id : "external_user_id",
69- * account_id : "account_id",
68+ * externalUserId : "external_user_id",
69+ * accountId : "account_id",
7070 * params: { key: "value" },
7171 * headers: { "X-Custom-Header": "value" }
7272 * })
@@ -82,7 +82,7 @@ export class Proxy {
8282 request : Pipedream . ProxyGetRequest ,
8383 requestOptions ?: Proxy . RequestOptions ,
8484 ) : Promise < core . WithRawResponse < Pipedream . ProxyResponse | undefined > > {
85- const { url, external_user_id : externalUserId , account_id : accountId , params, headers } = request ;
85+ const { url, externalUserId, accountId, params, headers } = request ;
8686 const url64 = base64Encode ( url ) ;
8787 const transformedHeaders = this . transformProxyHeaders ( headers ) ;
8888 const _queryParams : Record < string , string | string [ ] | object | object [ ] | null > = {
@@ -150,8 +150,8 @@ export class Proxy {
150150 * @example
151151 * await client.proxy.post({
152152 * url: "https://api.example.com/endpoint",
153- * external_user_id : "external_user_id",
154- * account_id : "account_id",
153+ * externalUserId : "external_user_id",
154+ * accountId : "account_id",
155155 * body: { "key": "value" },
156156 * params: { key: "value" },
157157 * headers: { "X-Custom-Header": "value" }
@@ -168,7 +168,7 @@ export class Proxy {
168168 request : Pipedream . ProxyPostRequest ,
169169 requestOptions ?: Proxy . RequestOptions ,
170170 ) : Promise < core . WithRawResponse < Pipedream . ProxyResponse | undefined > > {
171- const { url, external_user_id : externalUserId , account_id : accountId , body, params, headers } = request ;
171+ const { url, externalUserId, accountId, body, params, headers } = request ;
172172 const url64 = base64Encode ( url ) ;
173173 const transformedHeaders = this . transformProxyHeaders ( headers ) ;
174174 const _queryParams : Record < string , string | string [ ] | object | object [ ] | null > = {
@@ -239,8 +239,8 @@ export class Proxy {
239239 * @example
240240 * await client.proxy.put({
241241 * url: "https://api.example.com/endpoint",
242- * external_user_id : "external_user_id",
243- * account_id : "account_id",
242+ * externalUserId : "external_user_id",
243+ * accountId : "account_id",
244244 * body: { "key": "value" },
245245 * params: { key: "value" },
246246 * headers: { "X-Custom-Header": "value" }
@@ -257,7 +257,7 @@ export class Proxy {
257257 request : Pipedream . ProxyPutRequest ,
258258 requestOptions ?: Proxy . RequestOptions ,
259259 ) : Promise < core . WithRawResponse < Pipedream . ProxyResponse | undefined > > {
260- const { url, external_user_id : externalUserId , account_id : accountId , body, params, headers } = request ;
260+ const { url, externalUserId, accountId, body, params, headers } = request ;
261261 const url64 = base64Encode ( url ) ;
262262 const transformedHeaders = this . transformProxyHeaders ( headers ) ;
263263 const _queryParams : Record < string , string | string [ ] | object | object [ ] | null > = {
@@ -328,8 +328,8 @@ export class Proxy {
328328 * @example
329329 * await client.proxy.delete({
330330 * url: "https://api.example.com/endpoint",
331- * external_user_id : "external_user_id",
332- * account_id : "account_id",
331+ * externalUserId : "external_user_id",
332+ * accountId : "account_id",
333333 * params: { key: "value" },
334334 * headers: { "X-Custom-Header": "value" }
335335 * })
@@ -345,7 +345,7 @@ export class Proxy {
345345 request : Pipedream . ProxyDeleteRequest ,
346346 requestOptions ?: Proxy . RequestOptions ,
347347 ) : Promise < core . WithRawResponse < Pipedream . ProxyResponse | undefined > > {
348- const { url, external_user_id : externalUserId , account_id : accountId , params, headers } = request ;
348+ const { url, externalUserId, accountId, params, headers } = request ;
349349 const url64 = base64Encode ( url ) ;
350350 const transformedHeaders = this . transformProxyHeaders ( headers ) ;
351351 const _queryParams : Record < string , string | string [ ] | object | object [ ] | null > = {
@@ -413,8 +413,8 @@ export class Proxy {
413413 * @example
414414 * await client.proxy.patch({
415415 * url: "https://api.example.com/endpoint",
416- * external_user_id : "external_user_id",
417- * account_id : "account_id",
416+ * externalUserId : "external_user_id",
417+ * accountId : "account_id",
418418 * body: { "key": "value" },
419419 * params: { key: "value" },
420420 * headers: { "X-Custom-Header": "value" }
@@ -431,7 +431,7 @@ export class Proxy {
431431 request : Pipedream . ProxyPatchRequest ,
432432 requestOptions ?: Proxy . RequestOptions ,
433433 ) : Promise < core . WithRawResponse < Pipedream . ProxyResponse | undefined > > {
434- const { url, external_user_id : externalUserId , account_id : accountId , body, params, headers } = request ;
434+ const { url, externalUserId, accountId, body, params, headers } = request ;
435435 const url64 = base64Encode ( url ) ;
436436 const transformedHeaders = this . transformProxyHeaders ( headers ) ;
437437 const _queryParams : Record < string , string | string [ ] | object | object [ ] | null > = {
0 commit comments