Skip to content
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

release: 1.51.0 #191

Merged
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 .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "1.50.0"
".": "1.51.0"
}
2 changes: 1 addition & 1 deletion .stats.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
configured_endpoints: 52
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/julep-ai-inc-dash%2Fjulep-a707ace7212c4b8c3a63c93c36a42e1f77d7ca0969d1c2258560d0021c473a8a.yml
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/julep-ai-inc-dash%2Fjulep-ea124be3fdbca158d246aecc6f6870c5ca44a27a7a27543b29c1bcaeb93e51bc.yml
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 1.51.0 (2025-01-16)

Full Changelog: [v1.50.0...v1.51.0](https://github.com/julep-ai/node-sdk/compare/v1.50.0...v1.51.0)

### Features

* **api:** api update ([#190](https://github.com/julep-ai/node-sdk/issues/190)) ([c25ad71](https://github.com/julep-ai/node-sdk/commit/c25ad7149b4b3f96ae147ba2b3f05989189fe849))

## 1.50.0 (2025-01-16)

Full Changelog: [v1.49.0...v1.50.0](https://github.com/julep-ai/node-sdk/compare/v1.49.0...v1.50.0)
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@julep/sdk",
"version": "1.50.0",
"version": "1.51.0",
"description": "The official TypeScript library for the Julep API",
"author": "Julep <[email protected]>",
"types": "dist/index.d.ts",
Expand Down
144 changes: 0 additions & 144 deletions src/resources/agents/tools.ts
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,6 @@ export interface ToolListResponse {
| ToolListResponse.BrowserbaseGetSessionIntegrationDef
| ToolListResponse.BrowserbaseCompleteSessionIntegrationDef
| ToolListResponse.BrowserbaseGetSessionLiveURLsIntegrationDef
| ToolListResponse.BrowserbaseGetSessionConnectURLIntegrationDef
| ToolListResponse.RemoteBrowserIntegrationDef
| ToolListResponse.LlamaParseIntegrationDef
| ToolListResponse.FfmpegIntegrationDef
Expand Down Expand Up @@ -667,41 +666,6 @@ export namespace ToolListResponse {
}
}

/**
* browserbase get session connect url integration definition
*/
export interface BrowserbaseGetSessionConnectURLIntegrationDef {
arguments?: BrowserbaseGetSessionConnectURLIntegrationDef.Arguments | null;

method?: 'get_connect_url';

provider?: 'browserbase';

/**
* The setup parameters for the browserbase integration
*/
setup?: BrowserbaseGetSessionConnectURLIntegrationDef.Setup | null;
}

export namespace BrowserbaseGetSessionConnectURLIntegrationDef {
export interface Arguments {
id: string;
}

/**
* The setup parameters for the browserbase integration
*/
export interface Setup {
api_key: string;

project_id: string;

api_url?: string | null;

connect_url?: string | null;
}
}

/**
* The integration definition for the remote browser
*/
Expand Down Expand Up @@ -1038,7 +1002,6 @@ export interface ToolCreateParams {
| ToolCreateParams.BrowserbaseGetSessionIntegrationDef
| ToolCreateParams.BrowserbaseCompleteSessionIntegrationDef
| ToolCreateParams.BrowserbaseGetSessionLiveURLsIntegrationDef
| ToolCreateParams.BrowserbaseGetSessionConnectURLIntegrationDef
| ToolCreateParams.RemoteBrowserIntegrationDef
| ToolCreateParams.LlamaParseIntegrationDef
| ToolCreateParams.FfmpegIntegrationDef
Expand Down Expand Up @@ -1569,41 +1532,6 @@ export namespace ToolCreateParams {
}
}

/**
* browserbase get session connect url integration definition
*/
export interface BrowserbaseGetSessionConnectURLIntegrationDef {
arguments?: BrowserbaseGetSessionConnectURLIntegrationDef.Arguments | null;

method?: 'get_connect_url';

provider?: 'browserbase';

/**
* The setup parameters for the browserbase integration
*/
setup?: BrowserbaseGetSessionConnectURLIntegrationDef.Setup | null;
}

export namespace BrowserbaseGetSessionConnectURLIntegrationDef {
export interface Arguments {
id: string;
}

/**
* The setup parameters for the browserbase integration
*/
export interface Setup {
api_key: string;

project_id: string;

api_url?: string | null;

connect_url?: string | null;
}
}

/**
* The integration definition for the remote browser
*/
Expand Down Expand Up @@ -1929,7 +1857,6 @@ export interface ToolUpdateParams {
| ToolUpdateParams.BrowserbaseGetSessionIntegrationDefUpdate
| ToolUpdateParams.BrowserbaseCompleteSessionIntegrationDefUpdate
| ToolUpdateParams.BrowserbaseGetSessionLiveURLsIntegrationDefUpdate
| ToolUpdateParams.BrowserbaseGetSessionConnectURLIntegrationDefUpdate
| ToolUpdateParams.RemoteBrowserIntegrationDefUpdate
| ToolUpdateParams.LlamaParseIntegrationDefUpdate
| ToolUpdateParams.FfmpegIntegrationDefUpdate
Expand Down Expand Up @@ -2472,41 +2399,6 @@ export namespace ToolUpdateParams {
}
}

/**
* browserbase get session connect url integration definition
*/
export interface BrowserbaseGetSessionConnectURLIntegrationDefUpdate {
arguments?: BrowserbaseGetSessionConnectURLIntegrationDefUpdate.Arguments | null;

method?: 'get_connect_url';

provider?: 'browserbase';

/**
* The setup parameters for the browserbase integration
*/
setup?: BrowserbaseGetSessionConnectURLIntegrationDefUpdate.Setup | null;
}

export namespace BrowserbaseGetSessionConnectURLIntegrationDefUpdate {
export interface Arguments {
id?: string | null;
}

/**
* The setup parameters for the browserbase integration
*/
export interface Setup {
api_key?: string | null;

api_url?: string | null;

connect_url?: string | null;

project_id?: string | null;
}
}

/**
* The integration definition for the remote browser
*/
Expand Down Expand Up @@ -2851,7 +2743,6 @@ export interface ToolResetParams {
| ToolResetParams.BrowserbaseGetSessionIntegrationDef
| ToolResetParams.BrowserbaseCompleteSessionIntegrationDef
| ToolResetParams.BrowserbaseGetSessionLiveURLsIntegrationDef
| ToolResetParams.BrowserbaseGetSessionConnectURLIntegrationDef
| ToolResetParams.RemoteBrowserIntegrationDef
| ToolResetParams.LlamaParseIntegrationDef
| ToolResetParams.FfmpegIntegrationDef
Expand Down Expand Up @@ -3382,41 +3273,6 @@ export namespace ToolResetParams {
}
}

/**
* browserbase get session connect url integration definition
*/
export interface BrowserbaseGetSessionConnectURLIntegrationDef {
arguments?: BrowserbaseGetSessionConnectURLIntegrationDef.Arguments | null;

method?: 'get_connect_url';

provider?: 'browserbase';

/**
* The setup parameters for the browserbase integration
*/
setup?: BrowserbaseGetSessionConnectURLIntegrationDef.Setup | null;
}

export namespace BrowserbaseGetSessionConnectURLIntegrationDef {
export interface Arguments {
id: string;
}

/**
* The setup parameters for the browserbase integration
*/
export interface Setup {
api_key: string;

project_id: string;

api_url?: string | null;

connect_url?: string | null;
}
}

/**
* The integration definition for the remote browser
*/
Expand Down
Loading
Loading