Skip to content
Open
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
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
runs-on: ${{ github.repository == 'stainless-sdks/warp-api-typescript' && 'depot-ubuntu-24.04' || 'ubuntu-latest' }}
if: github.event_name == 'push' || github.event.pull_request.head.repo.fork
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Set up Node
uses: actions/setup-node@v4
Expand All @@ -46,7 +46,7 @@ jobs:
contents: read
id-token: write
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Set up Node
uses: actions/setup-node@v4
Expand Down Expand Up @@ -84,7 +84,7 @@ jobs:
runs-on: ${{ github.repository == 'stainless-sdks/warp-api-typescript' && 'depot-ubuntu-24.04' || 'ubuntu-latest' }}
if: github.event_name == 'push' || github.event.pull_request.head.repo.fork
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Set up Node
uses: actions/setup-node@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-npm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Set up Node
uses: actions/setup-node@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-doctor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
if: github.repository == 'warpdotdev/warp-sdk-typescript' && (github.event_name == 'push' || github.event_name == 'workflow_dispatch' || startsWith(github.head_ref, 'release-please') || github.head_ref == 'next')

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Check release environment
run: |
Expand Down
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.3.0"
".": "0.4.0"
}
4 changes: 2 additions & 2 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
configured_endpoints: 3
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/warp-bnavetta%2Fwarp-api-c4c5f89f67a73e4d17377d2b96fc201a63cd5458cbebaa23e78f92b59b90cc5b.yml
openapi_spec_hash: 931c6189a4fc4ee320963646b1b7edbe
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/warp-bnavetta%2Fwarp-api-678afb4efd7b655ded420e66621722701b018bcfce2423ec9beb4e575108c05c.yml
openapi_spec_hash: 4f8537526fc20ec33facbc86e1abd571
config_hash: 9c6b93a5f4b658b946f0ab7fcfedbaa3
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
# Changelog

## 0.4.0 (2026-01-16)

Full Changelog: [v0.3.0...v0.4.0](https://github.com/warpdotdev/warp-sdk-typescript/compare/v0.3.0...v0.4.0)

### Features

* **api:** created at filter in list view ([7594f38](https://github.com/warpdotdev/warp-sdk-typescript/commit/7594f384c04394aa1088c3c132579da450f60e23))


### Chores

* break long lines in snippets into multiline ([98aa96c](https://github.com/warpdotdev/warp-sdk-typescript/commit/98aa96ceed31e121df6b97593289bbc663178a8c))
* **internal:** update `actions/checkout` version ([a7cc203](https://github.com/warpdotdev/warp-sdk-typescript/commit/a7cc2030b6b76b88a3b0824d0bb0329779b0e5f2))
* **internal:** update lock file ([7bfcb75](https://github.com/warpdotdev/warp-sdk-typescript/commit/7bfcb758c3bd90a63d48b03c95ee362eb43aa7a8))
* **internal:** upgrade babel, qs, js-yaml ([6f26eb0](https://github.com/warpdotdev/warp-sdk-typescript/commit/6f26eb04ad4dc02fdfd2d686d8f559345ce9dbfa))
* **internal:** upgrade brace-expansion and @babel/helpers ([d446259](https://github.com/warpdotdev/warp-sdk-typescript/commit/d4462597cd87304f04d0c2a8452fdba579939e4b))

## 0.3.0 (2026-01-05)

Full Changelog: [v0.2.0...v0.3.0](https://github.com/warpdotdev/warp-sdk-typescript/compare/v0.2.0...v0.3.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": "warp-agent-sdk",
"version": "0.3.0",
"version": "0.4.0",
"description": "The official TypeScript library for the Warp API API",
"author": "Warp API <>",
"types": "dist/index.d.ts",
Expand Down
Loading