Skip to content
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
10 changes: 0 additions & 10 deletions .eslintrc.js

This file was deleted.

22 changes: 11 additions & 11 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@ jobs:
lint:
timeout-minutes: 10
name: lint
runs-on: ${{ github.repository == 'stainless-sdks/arcade-engine-node' && 'depot-ubuntu-24.04' || 'ubuntu-latest' }}
runs-on: ${{ github.repository == 'stainless-sdks/arcade-engine-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
with:
node-version: '18'
node-version: '20'

- name: Bootstrap
run: ./scripts/bootstrap
Expand All @@ -35,18 +35,18 @@ jobs:
build:
timeout-minutes: 5
name: build
runs-on: ${{ github.repository == 'stainless-sdks/arcade-engine-node' && 'depot-ubuntu-24.04' || 'ubuntu-latest' }}
runs-on: ${{ github.repository == 'stainless-sdks/arcade-engine-typescript' && 'depot-ubuntu-24.04' || 'ubuntu-latest' }}
if: github.event_name == 'push' || github.event.pull_request.head.repo.fork
permissions:
contents: read
id-token: write
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: '18'
node-version: '20'

- name: Bootstrap
run: ./scripts/bootstrap
Expand All @@ -55,14 +55,14 @@ jobs:
run: ./scripts/build

- name: Get GitHub OIDC Token
if: github.repository == 'stainless-sdks/arcade-engine-node'
if: github.repository == 'stainless-sdks/arcade-engine-typescript'
id: github-oidc
uses: actions/github-script@v6
uses: actions/github-script@v8
with:
script: core.setOutput('github_token', await core.getIDToken());

- name: Upload tarball
if: github.repository == 'stainless-sdks/arcade-engine-node'
if: github.repository == 'stainless-sdks/arcade-engine-typescript'
env:
URL: https://pkg.stainless.com/s
AUTH: ${{ steps.github-oidc.outputs.github_token }}
Expand All @@ -71,10 +71,10 @@ jobs:
test:
timeout-minutes: 10
name: test
runs-on: ${{ github.repository == 'stainless-sdks/arcade-engine-node' && 'depot-ubuntu-24.04' || 'ubuntu-latest' }}
runs-on: ${{ github.repository == 'stainless-sdks/arcade-engine-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 == 'ArcadeAI/arcade-js' && (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 @@
{
".": "1.16.0"
".": "2.0.0"
}
6 changes: 3 additions & 3 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
configured_endpoints: 30
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/arcade-ai%2Farcade-engine-7ecb40b6650ff002eed02efd1b59c630abe1fb9eb70c9c916c15b115260e5003.yml
openapi_spec_hash: 2e5c04d1a50afcd0bdbd9737cec227c9
config_hash: b31a3f1bbe9abcc7bb144942d88ad1b6
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/arcade-ai%2Farcade-engine-ba1aa76b54891af8c72220bd811d652cb2e743c4f86b8a589dd6cb2938b09f1c.yml
openapi_spec_hash: 10de3e6e4b87644087c976b62b571405
config_hash: d40bcd601176b9a9b96d93b35da975b3
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# Changelog

## 2.0.0 (2026-01-27)

Full Changelog: [v1.16.0...v2.0.0](https://github.com/ArcadeAI/arcade-js/compare/v1.16.0...v2.0.0)

### Features

* **api:** api update ([7cd3f79](https://github.com/ArcadeAI/arcade-js/commit/7cd3f792463bbb5b59c18fa17188054dd550eff2))
* complete typescript migration ([#156](https://github.com/ArcadeAI/arcade-js/issues/156)) ([37cb22c](https://github.com/ArcadeAI/arcade-js/commit/37cb22ca58f06a1d634980a7c56c8ca32edd82d4))


### Chores

* break long lines in snippets into multiline ([849f4ab](https://github.com/ArcadeAI/arcade-js/commit/849f4abb2e4fb9a4883c4c956016ae3fcb8cc865))
* **ci:** upgrade `actions/github-script` ([816d0dc](https://github.com/ArcadeAI/arcade-js/commit/816d0dcc4b80c4f072246141700472e7c542c3cb))
* **internal:** update `actions/checkout` version ([4d7660f](https://github.com/ArcadeAI/arcade-js/commit/4d7660f04fff9feee30d9f2a5e2c258db3a55cd5))
* **internal:** upgrade babel, qs, js-yaml ([3027d67](https://github.com/ArcadeAI/arcade-js/commit/3027d677183afb53900af7caf2d22bda2cb2ff05))
* resolve module exports for lib ([c6b975e](https://github.com/ArcadeAI/arcade-js/commit/c6b975ee89990301fee80813801332d4ab4d4a6e))
* upgrade lock file ([01e8fdf](https://github.com/ArcadeAI/arcade-js/commit/01e8fdfff2930856cada1fd72e65257bbec017a9))

## 1.16.0 (2025-12-13)

Full Changelog: [v1.15.0...v1.16.0](https://github.com/ArcadeAI/arcade-js/compare/v1.15.0...v1.16.0)
Expand Down
Loading