Skip to content

Commit d462e51

Browse files
release: 1.10.0 (#154)
* feat(api): api update * release: 1.10.0 --------- Co-authored-by: stainless-app[bot] <142633134+stainless-app[bot]@users.noreply.github.com>
1 parent 6c5f8d8 commit d462e51

File tree

9 files changed

+59
-5
lines changed

9 files changed

+59
-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.9.0"
2+
".": "1.10.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-f59a2fe653b8ffaf4db2369ed4faaf97babf6525836c332bfcf3bbaf253de229.yml
3-
openapi_spec_hash: 2597723172f71e3be691d3dda87fcea8
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/arcade-ai%2Farcade-engine-0a15ddd7e03addf08468ff36ac294458f86a3a990277a71870e4bc293635bef9.yml
3+
openapi_spec_hash: 8640228f8a86e5dc464dfa2c8205a2a7
44
config_hash: 70cdb57c982c578d1961657c07b8b397

CHANGELOG.md

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

3+
## 1.10.0 (2025-11-06)
4+
5+
Full Changelog: [v1.9.0...v1.10.0](https://github.com/ArcadeAI/arcade-py/compare/v1.9.0...v1.10.0)
6+
7+
### Features
8+
9+
* **api:** api update ([292b436](https://github.com/ArcadeAI/arcade-py/commit/292b436a221bbc89d27633e42f40c7ecc88f6bed))
10+
311
## 1.9.0 (2025-11-04)
412

513
Full Changelog: [v1.8.0...v1.9.0](https://github.com/ArcadeAI/arcade-py/compare/v1.8.0...v1.9.0)

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "arcadepy"
3-
version = "1.9.0"
3+
version = "1.10.0"
44
description = "The official Python library for the Arcade API"
55
dynamic = ["readme"]
66
license = "MIT"

src/arcadepy/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
22

33
__title__ = "arcadepy"
4-
__version__ = "1.9.0" # x-release-please-version
4+
__version__ = "1.10.0" # x-release-please-version

src/arcadepy/types/admin/auth_provider_create_params.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,8 @@ class AuthProviderCreateParams(TypedDict, total=False):
3939
class Oauth2AuthorizeRequest(TypedDict, total=False):
4040
endpoint: Required[str]
4141

42+
auth_header_value_format: str
43+
4244
auth_method: str
4345

4446
method: str
@@ -61,6 +63,8 @@ class Oauth2Pkce(TypedDict, total=False):
6163
class Oauth2RefreshRequest(TypedDict, total=False):
6264
endpoint: Required[str]
6365

66+
auth_header_value_format: str
67+
6468
auth_method: str
6569

6670
method: str
@@ -85,6 +89,8 @@ class Oauth2TokenIntrospectionRequest(TypedDict, total=False):
8589

8690
triggers: Required[Oauth2TokenIntrospectionRequestTriggers]
8791

92+
auth_header_value_format: str
93+
8894
auth_method: str
8995

9096
method: str
@@ -101,6 +107,8 @@ class Oauth2TokenIntrospectionRequest(TypedDict, total=False):
101107
class Oauth2TokenRequest(TypedDict, total=False):
102108
endpoint: Required[str]
103109

110+
auth_header_value_format: str
111+
104112
auth_method: str
105113

106114
method: str
@@ -125,6 +133,8 @@ class Oauth2UserInfoRequest(TypedDict, total=False):
125133

126134
triggers: Required[Oauth2UserInfoRequestTriggers]
127135

136+
auth_header_value_format: str
137+
128138
auth_method: str
129139

130140
method: str

src/arcadepy/types/admin/auth_provider_patch_params.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,8 @@ class AuthProviderPatchParams(TypedDict, total=False):
3434

3535

3636
class Oauth2AuthorizeRequest(TypedDict, total=False):
37+
auth_header_value_format: str
38+
3739
auth_method: str
3840

3941
endpoint: str
@@ -56,6 +58,8 @@ class Oauth2Pkce(TypedDict, total=False):
5658

5759

5860
class Oauth2RefreshRequest(TypedDict, total=False):
61+
auth_header_value_format: str
62+
5963
auth_method: str
6064

6165
endpoint: str
@@ -72,6 +76,8 @@ class Oauth2RefreshRequest(TypedDict, total=False):
7276

7377

7478
class Oauth2TokenRequest(TypedDict, total=False):
79+
auth_header_value_format: str
80+
7581
auth_method: str
7682

7783
endpoint: str
@@ -94,6 +100,8 @@ class Oauth2UserInfoRequestTriggers(TypedDict, total=False):
94100

95101

96102
class Oauth2UserInfoRequest(TypedDict, total=False):
103+
auth_header_value_format: str
104+
97105
auth_method: str
98106

99107
endpoint: str

src/arcadepy/types/admin/auth_provider_response.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@ class Binding(BaseModel):
2828

2929

3030
class Oauth2AuthorizeRequest(BaseModel):
31+
auth_header_value_format: Optional[str] = None
32+
3133
auth_method: Optional[str] = None
3234

3335
endpoint: Optional[str] = None
@@ -64,6 +66,8 @@ class Oauth2Pkce(BaseModel):
6466

6567

6668
class Oauth2RefreshRequest(BaseModel):
69+
auth_header_value_format: Optional[str] = None
70+
6771
auth_method: Optional[str] = None
6872

6973
endpoint: Optional[str] = None
@@ -88,6 +92,8 @@ class Oauth2TokenIntrospectionRequestTriggers(BaseModel):
8892

8993

9094
class Oauth2TokenIntrospectionRequest(BaseModel):
95+
auth_header_value_format: Optional[str] = None
96+
9197
auth_method: Optional[str] = None
9298

9399
enabled: Optional[bool] = None
@@ -110,6 +116,8 @@ class Oauth2TokenIntrospectionRequest(BaseModel):
110116

111117

112118
class Oauth2TokenRequest(BaseModel):
119+
auth_header_value_format: Optional[str] = None
120+
113121
auth_method: Optional[str] = None
114122

115123
endpoint: Optional[str] = None
@@ -134,6 +142,8 @@ class Oauth2UserInfoRequestTriggers(BaseModel):
134142

135143

136144
class Oauth2UserInfoRequest(BaseModel):
145+
auth_header_value_format: Optional[str] = None
146+
137147
auth_method: Optional[str] = None
138148

139149
endpoint: Optional[str] = None

tests/api_resources/admin/test_auth_providers.py

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ def test_method_create_with_all_params(self, client: Arcade) -> None:
3737
"client_id": "client_id",
3838
"authorize_request": {
3939
"endpoint": "endpoint",
40+
"auth_header_value_format": "auth_header_value_format",
4041
"auth_method": "auth_method",
4142
"method": "method",
4243
"params": {"foo": "string"},
@@ -51,6 +52,7 @@ def test_method_create_with_all_params(self, client: Arcade) -> None:
5152
},
5253
"refresh_request": {
5354
"endpoint": "endpoint",
55+
"auth_header_value_format": "auth_header_value_format",
5456
"auth_method": "auth_method",
5557
"method": "method",
5658
"params": {"foo": "string"},
@@ -65,6 +67,7 @@ def test_method_create_with_all_params(self, client: Arcade) -> None:
6567
"on_token_grant": True,
6668
"on_token_refresh": True,
6769
},
70+
"auth_header_value_format": "auth_header_value_format",
6871
"auth_method": "auth_method",
6972
"method": "method",
7073
"params": {"foo": "string"},
@@ -74,6 +77,7 @@ def test_method_create_with_all_params(self, client: Arcade) -> None:
7477
},
7578
"token_request": {
7679
"endpoint": "endpoint",
80+
"auth_header_value_format": "auth_header_value_format",
7781
"auth_method": "auth_method",
7882
"method": "method",
7983
"params": {"foo": "string"},
@@ -87,6 +91,7 @@ def test_method_create_with_all_params(self, client: Arcade) -> None:
8791
"on_token_grant": True,
8892
"on_token_refresh": True,
8993
},
94+
"auth_header_value_format": "auth_header_value_format",
9095
"auth_method": "auth_method",
9196
"method": "method",
9297
"params": {"foo": "string"},
@@ -241,6 +246,7 @@ def test_method_patch_with_all_params(self, client: Arcade) -> None:
241246
description="description",
242247
oauth2={
243248
"authorize_request": {
249+
"auth_header_value_format": "auth_header_value_format",
244250
"auth_method": "auth_method",
245251
"endpoint": "endpoint",
246252
"method": "method",
@@ -256,6 +262,7 @@ def test_method_patch_with_all_params(self, client: Arcade) -> None:
256262
"enabled": True,
257263
},
258264
"refresh_request": {
265+
"auth_header_value_format": "auth_header_value_format",
259266
"auth_method": "auth_method",
260267
"endpoint": "endpoint",
261268
"method": "method",
@@ -266,6 +273,7 @@ def test_method_patch_with_all_params(self, client: Arcade) -> None:
266273
},
267274
"scope_delimiter": ",",
268275
"token_request": {
276+
"auth_header_value_format": "auth_header_value_format",
269277
"auth_method": "auth_method",
270278
"endpoint": "endpoint",
271279
"method": "method",
@@ -275,6 +283,7 @@ def test_method_patch_with_all_params(self, client: Arcade) -> None:
275283
"response_map": {"foo": "string"},
276284
},
277285
"user_info_request": {
286+
"auth_header_value_format": "auth_header_value_format",
278287
"auth_method": "auth_method",
279288
"endpoint": "endpoint",
280289
"method": "method",
@@ -348,6 +357,7 @@ async def test_method_create_with_all_params(self, async_client: AsyncArcade) ->
348357
"client_id": "client_id",
349358
"authorize_request": {
350359
"endpoint": "endpoint",
360+
"auth_header_value_format": "auth_header_value_format",
351361
"auth_method": "auth_method",
352362
"method": "method",
353363
"params": {"foo": "string"},
@@ -362,6 +372,7 @@ async def test_method_create_with_all_params(self, async_client: AsyncArcade) ->
362372
},
363373
"refresh_request": {
364374
"endpoint": "endpoint",
375+
"auth_header_value_format": "auth_header_value_format",
365376
"auth_method": "auth_method",
366377
"method": "method",
367378
"params": {"foo": "string"},
@@ -376,6 +387,7 @@ async def test_method_create_with_all_params(self, async_client: AsyncArcade) ->
376387
"on_token_grant": True,
377388
"on_token_refresh": True,
378389
},
390+
"auth_header_value_format": "auth_header_value_format",
379391
"auth_method": "auth_method",
380392
"method": "method",
381393
"params": {"foo": "string"},
@@ -385,6 +397,7 @@ async def test_method_create_with_all_params(self, async_client: AsyncArcade) ->
385397
},
386398
"token_request": {
387399
"endpoint": "endpoint",
400+
"auth_header_value_format": "auth_header_value_format",
388401
"auth_method": "auth_method",
389402
"method": "method",
390403
"params": {"foo": "string"},
@@ -398,6 +411,7 @@ async def test_method_create_with_all_params(self, async_client: AsyncArcade) ->
398411
"on_token_grant": True,
399412
"on_token_refresh": True,
400413
},
414+
"auth_header_value_format": "auth_header_value_format",
401415
"auth_method": "auth_method",
402416
"method": "method",
403417
"params": {"foo": "string"},
@@ -552,6 +566,7 @@ async def test_method_patch_with_all_params(self, async_client: AsyncArcade) ->
552566
description="description",
553567
oauth2={
554568
"authorize_request": {
569+
"auth_header_value_format": "auth_header_value_format",
555570
"auth_method": "auth_method",
556571
"endpoint": "endpoint",
557572
"method": "method",
@@ -567,6 +582,7 @@ async def test_method_patch_with_all_params(self, async_client: AsyncArcade) ->
567582
"enabled": True,
568583
},
569584
"refresh_request": {
585+
"auth_header_value_format": "auth_header_value_format",
570586
"auth_method": "auth_method",
571587
"endpoint": "endpoint",
572588
"method": "method",
@@ -577,6 +593,7 @@ async def test_method_patch_with_all_params(self, async_client: AsyncArcade) ->
577593
},
578594
"scope_delimiter": ",",
579595
"token_request": {
596+
"auth_header_value_format": "auth_header_value_format",
580597
"auth_method": "auth_method",
581598
"endpoint": "endpoint",
582599
"method": "method",
@@ -586,6 +603,7 @@ async def test_method_patch_with_all_params(self, async_client: AsyncArcade) ->
586603
"response_map": {"foo": "string"},
587604
},
588605
"user_info_request": {
606+
"auth_header_value_format": "auth_header_value_format",
589607
"auth_method": "auth_method",
590608
"endpoint": "endpoint",
591609
"method": "method",

0 commit comments

Comments
 (0)