Skip to content

🌿 Fern Regeneration -- July 23, 2025 #49

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pipedream/sdk",
"version": "2.0.0",
"version": "1.7.1",
"private": false,
"repository": "github:PipedreamHQ/pipedream-sdk-typescript",
"type": "commonjs",
Expand Down
10 changes: 5 additions & 5 deletions reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -1827,7 +1827,7 @@ await client.projects.retrieveInfo();

## Proxy

<details><summary><code>client.proxy.<a href="/src/api/resources/proxy/client/Client.ts">get</a>(url64, { ...params }) -> Pipedream.ProxyResponse | undefined</code></summary>
<details><summary><code>client.proxy.<a href="/src/api/resources/proxy/client/Client.ts">get</a>(url64, { ...params }) -> Record<string, unknown></code></summary>
<dl>
<dd>

Expand Down Expand Up @@ -1886,7 +1886,7 @@ await client.proxy.get("url_64", {
</dl>
</details>

<details><summary><code>client.proxy.<a href="/src/api/resources/proxy/client/Client.ts">post</a>(url64, { ...params }) -> Pipedream.ProxyResponse | undefined</code></summary>
<details><summary><code>client.proxy.<a href="/src/api/resources/proxy/client/Client.ts">post</a>(url64, { ...params }) -> Record<string, unknown></code></summary>
<dl>
<dd>

Expand Down Expand Up @@ -1948,7 +1948,7 @@ await client.proxy.post("url_64", {
</dl>
</details>

<details><summary><code>client.proxy.<a href="/src/api/resources/proxy/client/Client.ts">put</a>(url64, { ...params }) -> Pipedream.ProxyResponse | undefined</code></summary>
<details><summary><code>client.proxy.<a href="/src/api/resources/proxy/client/Client.ts">put</a>(url64, { ...params }) -> Record<string, unknown></code></summary>
<dl>
<dd>

Expand Down Expand Up @@ -2010,7 +2010,7 @@ await client.proxy.put("url_64", {
</dl>
</details>

<details><summary><code>client.proxy.<a href="/src/api/resources/proxy/client/Client.ts">delete</a>(url64, { ...params }) -> Pipedream.ProxyResponse | undefined</code></summary>
<details><summary><code>client.proxy.<a href="/src/api/resources/proxy/client/Client.ts">delete</a>(url64, { ...params }) -> Record<string, unknown></code></summary>
<dl>
<dd>

Expand Down Expand Up @@ -2069,7 +2069,7 @@ await client.proxy.delete("url_64", {
</dl>
</details>

<details><summary><code>client.proxy.<a href="/src/api/resources/proxy/client/Client.ts">patch</a>(url64, { ...params }) -> Pipedream.ProxyResponse | undefined</code></summary>
<details><summary><code>client.proxy.<a href="/src/api/resources/proxy/client/Client.ts">patch</a>(url64, { ...params }) -> Record<string, unknown></code></summary>
<dl>
<dd>

Expand Down
19 changes: 1 addition & 18 deletions src/api/resources/proxy/client/requests/ProxyDeleteRequest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,23 +2,14 @@
* This file was auto-generated by Fern from our API Definition.
*/

import * as core from "../../../../../core/index.js";

/**
* @example
* {
* url: "https://api.example.com/endpoint",
* external_user_id: "external_user_id",
* account_id: "account_id",
* params: { page: "1", limit: "10" },
* headers: { "X-Custom-Header": "value" }
* account_id: "account_id"
* }
*/
export interface ProxyDeleteRequest {
/**
* Target URL to proxy request to
*/
url: string;
/**
* The external user ID for the proxy request
*/
Expand All @@ -27,12 +18,4 @@ export interface ProxyDeleteRequest {
* The account ID to use for authentication
*/
account_id: string;
/**
* Query parameters to forward
*/
params?: Record<string, string | string[] | object | object[] | null>;
/**
* Additional headers to include (will be prefixed with 'x-pd-proxy-')
*/
headers?: Record<string, string | core.Supplier<string | undefined> | undefined>;
}
19 changes: 1 addition & 18 deletions src/api/resources/proxy/client/requests/ProxyGetRequest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,23 +2,14 @@
* This file was auto-generated by Fern from our API Definition.
*/

import * as core from "../../../../../core/index.js";

/**
* @example
* {
* url: "https://api.example.com/endpoint",
* external_user_id: "external_user_id",
* account_id: "account_id",
* params: { page: "1", limit: "10" },
* headers: { "X-Custom-Header": "value" }
* account_id: "account_id"
* }
*/
export interface ProxyGetRequest {
/**
* Target URL to proxy request to
*/
url: string;
/**
* The external user ID for the proxy request
*/
Expand All @@ -27,12 +18,4 @@ export interface ProxyGetRequest {
* The account ID to use for authentication
*/
account_id: string;
/**
* Query parameters to forward
*/
params?: Record<string, string | string[] | object | object[] | null>;
/**
* Additional headers to include (will be prefixed with 'x-pd-proxy-')
*/
headers?: Record<string, string | core.Supplier<string | undefined> | undefined>;
}
19 changes: 1 addition & 18 deletions src/api/resources/proxy/client/requests/ProxyPatchRequest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,26 +2,17 @@
* This file was auto-generated by Fern from our API Definition.
*/

import * as core from "../../../../../core/index.js";

/**
* @example
* {
* url: "https://api.example.com/endpoint",
* external_user_id: "external_user_id",
* account_id: "account_id",
* body: {
* "key": "value"
* },
* params: { page: "1", limit: "10" },
* headers: { "X-Custom-Header": "value" }
* }
* }
*/
export interface ProxyPatchRequest {
/**
* Target URL to proxy request to
*/
url: string;
/**
* The external user ID for the proxy request
*/
Expand All @@ -34,12 +25,4 @@ export interface ProxyPatchRequest {
* Request body to forward to the target API
*/
body: Record<string, unknown>;
/**
* Query parameters to forward
*/
params?: Record<string, string | string[] | object | object[] | null>;
/**
* Additional headers to include (will be prefixed with 'x-pd-proxy-')
*/
headers?: Record<string, string | core.Supplier<string | undefined> | undefined>;
}
19 changes: 1 addition & 18 deletions src/api/resources/proxy/client/requests/ProxyPostRequest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,26 +2,17 @@
* This file was auto-generated by Fern from our API Definition.
*/

import * as core from "../../../../../core/index.js";

/**
* @example
* {
* url: "https://api.example.com/endpoint",
* external_user_id: "external_user_id",
* account_id: "account_id",
* body: {
* "key": "value"
* },
* params: { page: "1", limit: "10" },
* headers: { "X-Custom-Header": "value" }
* }
* }
*/
export interface ProxyPostRequest {
/**
* Target URL to proxy request to
*/
url: string;
/**
* The external user ID for the proxy request
*/
Expand All @@ -34,12 +25,4 @@ export interface ProxyPostRequest {
* Request body to forward to the target API
*/
body: Record<string, unknown>;
/**
* Query parameters to forward
*/
params?: Record<string, string | string[] | object | object[] | null>;
/**
* Additional headers to include (will be prefixed with 'x-pd-proxy-')
*/
headers?: Record<string, string | core.Supplier<string | undefined> | undefined>;
}
19 changes: 1 addition & 18 deletions src/api/resources/proxy/client/requests/ProxyPutRequest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,26 +2,17 @@
* This file was auto-generated by Fern from our API Definition.
*/

import * as core from "../../../../../core/index.js";

/**
* @example
* {
* url: "https://api.example.com/endpoint",
* external_user_id: "external_user_id",
* account_id: "account_id",
* body: {
* "key": "value"
* },
* params: { page: "1", limit: "10" },
* headers: { "X-Custom-Header": "value" }
* }
* }
*/
export interface ProxyPutRequest {
/**
* Target URL to proxy request to
*/
url: string;
/**
* The external user ID for the proxy request
*/
Expand All @@ -34,12 +25,4 @@ export interface ProxyPutRequest {
* Request body to forward to the target API
*/
body: Record<string, unknown>;
/**
* Query parameters to forward
*/
params?: Record<string, string | string[] | object | object[] | null>;
/**
* Additional headers to include (will be prefixed with 'x-pd-proxy-')
*/
headers?: Record<string, string | core.Supplier<string | undefined> | undefined>;
}
11 changes: 10 additions & 1 deletion src/api/types/ProxyResponse.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,13 @@
* This file was auto-generated by Fern from our API Definition.
*/

export type ProxyResponse = unknown;
/**
* The parsed response body from a proxied API request
*/
export interface ProxyResponse {
/** HTTP status code */
status?: number;
/** Response headers */
headers?: Record<string, unknown>;
body?: unknown;
}
Loading