@@ -65,8 +65,8 @@ export class Proxy {
65
65
* @example
66
66
* await client.proxy.get({
67
67
* 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",
70
70
* params: { key: "value" },
71
71
* headers: { "X-Custom-Header": "value" }
72
72
* })
@@ -82,7 +82,7 @@ export class Proxy {
82
82
request : Pipedream . ProxyGetRequest ,
83
83
requestOptions ?: Proxy . RequestOptions ,
84
84
) : 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 ;
86
86
const url64 = base64Encode ( url ) ;
87
87
const transformedHeaders = this . transformProxyHeaders ( headers ) ;
88
88
const _queryParams : Record < string , string | string [ ] | object | object [ ] | null > = {
@@ -150,8 +150,8 @@ export class Proxy {
150
150
* @example
151
151
* await client.proxy.post({
152
152
* 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",
155
155
* body: { "key": "value" },
156
156
* params: { key: "value" },
157
157
* headers: { "X-Custom-Header": "value" }
@@ -168,7 +168,7 @@ export class Proxy {
168
168
request : Pipedream . ProxyPostRequest ,
169
169
requestOptions ?: Proxy . RequestOptions ,
170
170
) : 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 ;
172
172
const url64 = base64Encode ( url ) ;
173
173
const transformedHeaders = this . transformProxyHeaders ( headers ) ;
174
174
const _queryParams : Record < string , string | string [ ] | object | object [ ] | null > = {
@@ -239,8 +239,8 @@ export class Proxy {
239
239
* @example
240
240
* await client.proxy.put({
241
241
* 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",
244
244
* body: { "key": "value" },
245
245
* params: { key: "value" },
246
246
* headers: { "X-Custom-Header": "value" }
@@ -257,7 +257,7 @@ export class Proxy {
257
257
request : Pipedream . ProxyPutRequest ,
258
258
requestOptions ?: Proxy . RequestOptions ,
259
259
) : 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 ;
261
261
const url64 = base64Encode ( url ) ;
262
262
const transformedHeaders = this . transformProxyHeaders ( headers ) ;
263
263
const _queryParams : Record < string , string | string [ ] | object | object [ ] | null > = {
@@ -328,8 +328,8 @@ export class Proxy {
328
328
* @example
329
329
* await client.proxy.delete({
330
330
* 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",
333
333
* params: { key: "value" },
334
334
* headers: { "X-Custom-Header": "value" }
335
335
* })
@@ -345,7 +345,7 @@ export class Proxy {
345
345
request : Pipedream . ProxyDeleteRequest ,
346
346
requestOptions ?: Proxy . RequestOptions ,
347
347
) : 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 ;
349
349
const url64 = base64Encode ( url ) ;
350
350
const transformedHeaders = this . transformProxyHeaders ( headers ) ;
351
351
const _queryParams : Record < string , string | string [ ] | object | object [ ] | null > = {
@@ -413,8 +413,8 @@ export class Proxy {
413
413
* @example
414
414
* await client.proxy.patch({
415
415
* 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",
418
418
* body: { "key": "value" },
419
419
* params: { key: "value" },
420
420
* headers: { "X-Custom-Header": "value" }
@@ -431,7 +431,7 @@ export class Proxy {
431
431
request : Pipedream . ProxyPatchRequest ,
432
432
requestOptions ?: Proxy . RequestOptions ,
433
433
) : 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 ;
435
435
const url64 = base64Encode ( url ) ;
436
436
const transformedHeaders = this . transformProxyHeaders ( headers ) ;
437
437
const _queryParams : Record < string , string | string [ ] | object | object [ ] | null > = {
0 commit comments