File tree Expand file tree Collapse file tree 7 files changed +38
-5
lines changed
Expand file tree Collapse file tree 7 files changed +38
-5
lines changed Original file line number Diff line number Diff line change 11{
2- "." : " 1.11.1 "
2+ "." : " 1.12.0 "
33}
Original file line number Diff line number Diff line change 11configured_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
44config_hash : 00b1a3fd1b197bd253cdd6b7bc360c02
Original file line number Diff line number Diff line change 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
514Full Changelog: [ v1.11.0...v1.11.1] ( https://github.com/ArcadeAI/arcade-js/compare/v1.11.0...v1.11.1 )
Original file line number Diff line number Diff line change 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" ,
Original file line number Diff line number Diff 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 > ;
Original file line number Diff line number Diff 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
226248export interface WorkerCreateParams {
Original file line number Diff line number Diff line change 1- export const VERSION = '1.11.1 ' ; // x-release-please-version
1+ export const VERSION = '1.12.0 ' ; // x-release-please-version
You can’t perform that action at this time.
0 commit comments