Skip to content

Commit d9f005a

Browse files
SDK regeneration
1 parent c7ce988 commit d9f005a

285 files changed

Lines changed: 5663 additions & 7840 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

package.json

Lines changed: 1401 additions & 5 deletions
Large diffs are not rendered by default.

src/management/Client.ts

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -275,4 +275,35 @@ export class ManagementClient {
275275
public get verifiableCredentials(): VerifiableCredentialsClient {
276276
return (this._verifiableCredentials ??= new VerifiableCredentialsClient(this._options));
277277
}
278+
279+
/**
280+
* Make a passthrough request using the SDK's configured auth, retry, logging, etc.
281+
* This is useful for making requests to endpoints not yet supported in the SDK.
282+
* The input can be a URL string, URL object, or Request object. Relative paths are resolved against the configured base URL.
283+
*
284+
* @param {Request | string | URL} input - The URL, path, or Request object.
285+
* @param {RequestInit} init - Standard fetch RequestInit options.
286+
* @param {core.PassthroughRequest.RequestOptions} requestOptions - Per-request overrides (timeout, retries, headers, abort signal).
287+
* @returns {Promise<Response>} A standard Response object.
288+
*/
289+
public async fetch(
290+
input: Request | string | URL,
291+
init?: RequestInit,
292+
requestOptions?: core.PassthroughRequest.RequestOptions,
293+
): Promise<Response> {
294+
return core.makePassthroughRequest(
295+
input,
296+
init,
297+
{
298+
baseUrl: this._options.baseUrl ?? this._options.environment,
299+
headers: this._options.headers,
300+
timeoutInSeconds: this._options.timeoutInSeconds,
301+
maxRetries: this._options.maxRetries,
302+
fetch: this._options.fetch,
303+
logging: this._options.logging,
304+
getAuthHeaders: async () => (await this._options.authProvider.getAuthRequest()).headers,
305+
},
306+
requestOptions,
307+
);
308+
}
278309
}
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
// This file was auto-generated by Fern from our API Definition.
2+
3+
export { ActionsClient } from "./client/Client.js";
4+
export * from "./client/index.js";
5+
export * from "./resources/index.js";
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
// This file was auto-generated by Fern from our API Definition.
2+
3+
export { ExecutionsClient } from "./client/Client.js";
4+
export * from "./client/index.js";
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
// This file was auto-generated by Fern from our API Definition.
2+
3+
export { ModulesClient } from "./client/Client.js";
4+
export * from "./client/index.js";
5+
export * from "./resources/index.js";
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
// This file was auto-generated by Fern from our API Definition.
2+
3+
export { VersionsClient } from "./client/Client.js";
4+
export * from "./client/index.js";
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
// This file was auto-generated by Fern from our API Definition.
2+
3+
export { TriggersClient } from "./client/Client.js";
4+
export * from "./client/index.js";
5+
export * from "./resources/index.js";
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
// This file was auto-generated by Fern from our API Definition.
2+
3+
export { BindingsClient } from "./client/Client.js";
4+
export * from "./client/index.js";
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
// This file was auto-generated by Fern from our API Definition.
2+
3+
export { VersionsClient } from "./client/Client.js";
4+
export * from "./client/index.js";
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
// This file was auto-generated by Fern from our API Definition.
2+
3+
export { AnomalyClient } from "./client/Client.js";
4+
export * from "./client/index.js";
5+
export * from "./resources/index.js";

0 commit comments

Comments
 (0)