Skip to content

Commit 252dc81

Browse files
authored
Merge pull request #145 from ArcadeAI/release-please--branches--main--changes--next--components--arcadejs
release: 1.12.0
2 parents 7952cd6 + 0e7b7fe commit 252dc81

File tree

7 files changed

+38
-5
lines changed

7 files changed

+38
-5
lines changed

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "1.11.1"
2+
".": "1.12.0"
33
}

.stats.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 29
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/arcade-ai%2Farcade-engine-22bd9b6f4bbc6d0e1a99a42cca49ff7c7a7b5273ed29a0bea26f0bddb715a88e.yml
3-
openapi_spec_hash: 2c81404b00c503285c65836c6ff3e9f5
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/arcade-ai%2Farcade-engine-be6f90be8433b813acc6dc79a4eceb1a6577681c634c7b13299e341b6441f13b.yml
3+
openapi_spec_hash: 98600ad55c83ef5d71b3fbac3881f6d0
44
config_hash: 00b1a3fd1b197bd253cdd6b7bc360c02

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Changelog
22

3+
## 1.12.0 (2025-10-17)
4+
5+
Full Changelog: [v1.11.1...v1.12.0](https://github.com/ArcadeAI/arcade-js/compare/v1.11.1...v1.12.0)
6+
7+
### Features
8+
9+
* **api:** api update ([d5db170](https://github.com/ArcadeAI/arcade-js/commit/d5db17085139dd2057db68cc09392090490e8669))
10+
* **api:** api update ([640df98](https://github.com/ArcadeAI/arcade-js/commit/640df982365f0dfec5c32479b8e4af71e7531aae))
11+
312
## 1.11.1 (2025-10-10)
413

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

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@arcadeai/arcadejs",
3-
"version": "1.11.1",
3+
"version": "1.12.0",
44
"description": "The official TypeScript library for the Arcade API",
55
"author": "Arcade <dev@arcade.dev>",
66
"types": "dist/index.d.ts",

src/resources/admin/user-connections.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,8 @@ export interface UserConnectionResponse {
5353

5454
provider_id?: string;
5555

56+
provider_type?: string;
57+
5658
provider_user_info?: unknown;
5759

5860
scopes?: Array<string>;

src/resources/workers.ts

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -180,6 +180,8 @@ export interface WorkerResponse {
180180

181181
mcp?: WorkerResponse.Mcp;
182182

183+
requirements?: WorkerResponse.Requirements;
184+
183185
type?: 'http' | 'mcp' | 'unknown';
184186
}
185187

@@ -221,6 +223,26 @@ export namespace WorkerResponse {
221223

222224
uri?: string;
223225
}
226+
227+
export interface Requirements {
228+
authorization?: Requirements.Authorization;
229+
230+
met?: boolean;
231+
}
232+
233+
export namespace Requirements {
234+
export interface Authorization {
235+
met?: boolean;
236+
237+
oauth2?: Authorization.Oauth2;
238+
}
239+
240+
export namespace Authorization {
241+
export interface Oauth2 {
242+
met?: boolean;
243+
}
244+
}
245+
}
224246
}
225247

226248
export interface WorkerCreateParams {

src/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const VERSION = '1.11.1'; // x-release-please-version
1+
export const VERSION = '1.12.0'; // x-release-please-version

0 commit comments

Comments
 (0)