Skip to content

Commit 8c4b450

Browse files
authored
Resolve VCSWP-28066 (#65)
* Fix response status code for Make A Call * Resolve dependabot vulnerabilities
1 parent dbfeec1 commit 8c4b450

12 files changed

Lines changed: 92 additions & 66 deletions

File tree

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,14 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
99

1010
None
1111

12+
<a name="5.4.1"></a>
13+
14+
## [5.4.1] - 2026-05-13
15+
16+
### Changed
17+
18+
- Response status code for Make A Call should be 202 instead of 200
19+
1220
<a name="5.4.0"></a>
1321

1422
## [5.4.0] - 2026-04-06

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ FreeClimb is a cloud-based application programming interface (API) that puts the
44
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
55

66
- API version: 1.0.0
7-
- Package version: 5.4.0
7+
- Package version: 5.4.1
88
- Generator version: 7.9.0
99
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
1010
For more information, please visit [https://www.freeclimb.com/support/](https://www.freeclimb.com/support/)

docs/DefaultApi.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4549,7 +4549,7 @@ Name | Type | Description | Notes
45494549

45504550
| Status code | Description | Response headers |
45514551
|-------------|-------------|------------------|
4552-
**200** | Call that was created | - |
4552+
**202** | Call that was created | - |
45534553

45544554
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
45554555

freeclimb/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
""" # noqa: E501
1616

1717

18-
__version__ = "5.4.0"
18+
__version__ = "5.4.1"
1919

2020
# import apis into sdk package
2121
from freeclimb.api.default_api import DefaultApi as DefaultApi

freeclimb/api/default_api.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16366,7 +16366,7 @@ def make_a_call(
1636616366
)
1636716367

1636816368
_response_types_map: Dict[str, Optional[str]] = {
16369-
"200": "CallResult",
16369+
"202": "CallResult",
1637016370
}
1637116371
response_data = self.api_client.call_api(
1637216372
*_param, _request_timeout=_request_timeout
@@ -16435,7 +16435,7 @@ def make_a_call_with_http_info(
1643516435
)
1643616436

1643716437
_response_types_map: Dict[str, Optional[str]] = {
16438-
"200": "CallResult",
16438+
"202": "CallResult",
1643916439
}
1644016440
response_data = self.api_client.call_api(
1644116441
*_param, _request_timeout=_request_timeout
@@ -16504,7 +16504,7 @@ def make_a_call_without_preload_content(
1650416504
)
1650516505

1650616506
_response_types_map: Dict[str, Optional[str]] = {
16507-
"200": "CallResult",
16507+
"202": "CallResult",
1650816508
}
1650916509
response_data = self.api_client.call_api(
1651016510
*_param, _request_timeout=_request_timeout

freeclimb/api_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ def __init__(
8888
self.default_headers[header_name] = header_value
8989
self.cookie = cookie
9090
# Set default User-Agent.
91-
self.user_agent = "OpenAPI-Generator/5.4.0/python"
91+
self.user_agent = "OpenAPI-Generator/5.4.1/python"
9292
self.client_side_validation = configuration.client_side_validation
9393

9494
def __enter__(self):

freeclimb/configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -427,7 +427,7 @@ def to_debug_report(self):
427427
"OS: {env}\n"
428428
"Python Version: {pyversion}\n"
429429
"Version of the API: 1.0.0\n"
430-
"SDK Package Version: 5.4.0".format(env=sys.platform, pyversion=sys.version)
430+
"SDK Package Version: 5.4.1".format(env=sys.platform, pyversion=sys.version)
431431
)
432432

433433
def get_host_settings(self):

openapi.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6145,7 +6145,7 @@
61456145
},
61466146
"deprecated": false,
61476147
"responses": {
6148-
"200": {
6148+
"202": {
61496149
"description": "Call that was created",
61506150
"content": {
61516151
"application/json": {

package.json

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,19 @@
22
"dependencies": {
33
"@stoplight/json": "3.21.7",
44
"@stoplight/prism-cli": "5.14.2",
5-
"fast-xml-parser": "^5.3.8",
5+
"fast-xml-parser": "^5.7.0",
66
"jsonpath-plus": "^10.3.0"
77
},
88
"resolutions": {
9-
"@stoplight/json": "3.20.0"
9+
"@stoplight/json": "3.20.0",
10+
"lodash": "^4.18.0",
11+
"fast-xml-parser": "^5.7.0",
12+
"fast-xml-builder": "^1.1.7",
13+
"picomatch": "^4.0.4",
14+
"fast-uri": "^3.1.2",
15+
"ajv": "^8.18.0",
16+
"yaml": "^1.10.3",
17+
"js-yaml": "^3.14.2",
18+
"@tootallnate/once": "^3.0.1"
1019
}
1120
}

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "freeclimb"
3-
version = "5.4.0"
3+
version = "5.4.1"
44
description = "FreeClimb API"
55
authors = ["FreeClimb API Support <support@freeclimb.com>"]
66
license = "NoLicense"

0 commit comments

Comments
 (0)