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
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.10.0"
".": "1.11.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: 29
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/arcade-ai%2Farcade-engine-e67b8e285739a9a3998fbe39b5eb97fac5bb8f571781d4f5d242b3824d4d743e.yml
openapi_spec_hash: bd661c93deb864b606bfc2d2ee110a1f
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/arcade-ai%2Farcade-engine-b1433c9d499d0eee441fab12578e7c11fe2f67bbf6f9fd5f894086b21f41dd30.yml
openapi_spec_hash: 95d25454996689921708f43481d6cdcc
config_hash: 00b1a3fd1b197bd253cdd6b7bc360c02
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Changelog

## 1.11.0 (2025-09-20)

Full Changelog: [v1.10.0...v1.11.0](https://github.com/ArcadeAI/arcade-js/compare/v1.10.0...v1.11.0)

### Features

* **api:** api update ([2774d49](https://github.com/ArcadeAI/arcade-js/commit/2774d494ee56c8204f2110294cde4421cd92808c))


### Chores

* do not install brew dependencies in ./scripts/bootstrap by default ([22535ef](https://github.com/ArcadeAI/arcade-js/commit/22535ef346a33b239bd0337abe136ffd0a42b956))

## 1.10.0 (2025-09-11)

Full Changelog: [v1.9.1...v1.10.0](https://github.com/ArcadeAI/arcade-js/compare/v1.9.1...v1.10.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": "@arcadeai/arcadejs",
"version": "1.10.0",
"version": "1.11.0",
"description": "The official TypeScript library for the Arcade API",
"author": "Arcade <[email protected]>",
"types": "dist/index.d.ts",
Expand Down
14 changes: 11 additions & 3 deletions scripts/bootstrap
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,18 @@ set -e

cd "$(dirname "$0")/.."

if [ -f "Brewfile" ] && [ "$(uname -s)" = "Darwin" ] && [ "$SKIP_BREW" != "1" ]; then
if [ -f "Brewfile" ] && [ "$(uname -s)" = "Darwin" ] && [ "$SKIP_BREW" != "1" ] && [ -t 0 ]; then
brew bundle check >/dev/null 2>&1 || {
echo "==> Installing Homebrew dependencies…"
brew bundle
echo -n "==> Install Homebrew dependencies? (y/N): "
read -r response
case "$response" in
[yY][eE][sS]|[yY])
brew bundle
;;
*)
;;
esac
echo
}
fi

Expand Down
26 changes: 0 additions & 26 deletions src/resources/workers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -180,8 +180,6 @@ export interface WorkerResponse {

mcp?: WorkerResponse.Mcp;

oxp?: WorkerResponse.Oxp;

type?: 'http' | 'mcp' | 'unknown';
}

Expand Down Expand Up @@ -223,30 +221,6 @@ export namespace WorkerResponse {

uri?: string;
}

export interface Oxp {
retry?: number;

secret?: Oxp.Secret;

timeout?: number;

uri?: string;
}

export namespace Oxp {
export interface Secret {
binding?: 'static' | 'tenant' | 'project' | 'account';

editable?: boolean;

exists?: boolean;

hint?: string;

value?: string;
}
}
}

export interface WorkerCreateParams {
Expand Down
2 changes: 1 addition & 1 deletion src/version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const VERSION = '1.10.0'; // x-release-please-version
export const VERSION = '1.11.0'; // x-release-please-version