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.21.0 #75

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.20.0"
".": "1.21.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: 50
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/julep-ai-inc-dash%2Fjulep-1813737b45f2ae2b159cfe40a4054f6bc4e9d0f31c45ff87416ebaf0fc855321.yml
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/julep-ai-inc-dash%2Fjulep-50a86478c624d6801cd15b4e9c3f4ab7ad25ee172fa36ee3992944cc63d013b3.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.21.0 (2024-10-29)

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

### Features

* **api:** api update ([#74](https://github.com/julep-ai/node-sdk/issues/74)) ([fe47374](https://github.com/julep-ai/node-sdk/commit/fe47374b8db478d1bc2c68c7ed42746cc2b17eba))

## 1.20.0 (2024-10-26)

Full Changelog: [v1.19.0...v1.20.0](https://github.com/julep-ai/node-sdk/compare/v1.19.0...v1.20.0)
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ Note that requests which time out will be [retried twice by default](#retries).
## Auto-pagination

List methods in the Julep API are paginated.
You can use `for await … of` syntax to iterate through items across all pages:
You can use the `for await … of` syntax to iterate through items across all pages:

```ts
async function fetchAllAgents(params) {
Expand All @@ -169,7 +169,7 @@ async function fetchAllAgents(params) {
}
```

Alternatively, you can make request a single page at a time:
Alternatively, you can request a single page at a time:

```ts
let page = await client.agents.list({ limit: 100 });
Expand Down
1 change: 0 additions & 1 deletion api.md
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,6 @@ Methods:
Types:

- <code><a href="./src/resources/tasks.ts">Task</a></code>
- <code><a href="./src/resources/tasks.ts">Tool</a></code>

Methods:

Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@julep/sdk",
"version": "1.20.0",
"version": "1.21.0",
"description": "The official TypeScript library for the Julep API",
"author": "Julep <[email protected]>",
"types": "dist/index.d.ts",
Expand All @@ -10,7 +10,7 @@
"license": "Apache-2.0",
"packageManager": "[email protected]",
"files": [
"*"
"**/*"
],
"private": false,
"scripts": {
Expand Down
1 change: 0 additions & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,6 @@ export namespace Julep {

export import Tasks = API.Tasks;
export import Task = API.Task;
export import Tool = API.Tool;
export import TasksOffsetPagination = API.TasksOffsetPagination;
export import TaskCreateParams = API.TaskCreateParams;
export import TaskListParams = API.TaskListParams;
Expand Down
Loading