Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

## [5.0.16] - 2023-10-24 #67

Merged
merged 1 commit into from
Oct 25, 2023
Merged
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
9 changes: 7 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [5.0.16] - 2023-10-24
### Changed
- Add `BapiSyncResponse` to `ResponseTaskGetBusinessAPIExecutionDetails`.

## [5.0.15] - 2023-10-24
### Changed
Handle `200 code` with a `Rate Limit` error.
- Handle `200 code` with a `Rate Limit` error.

## [5.0.14] - 2023-10-12
### Changed
Expand Down Expand Up @@ -562,4 +566,5 @@ Services removed on Cisco DNA Center 2.3.3.0's API:
[5.0.13]: https://github.com/cisco-en-programmability/dnacenter-go-sdk/compare/v5.0.12...v5.0.13
[5.0.14]: https://github.com/cisco-en-programmability/dnacenter-go-sdk/compare/v5.0.13...v5.0.14
[5.0.15]: https://github.com/cisco-en-programmability/dnacenter-go-sdk/compare/v5.0.14...v5.0.15
[Unreleased]: https://github.com/cisco-en-programmability/dnacenter-go-sdk/compare/v5.0.15...main
[5.0.16]: https://github.com/cisco-en-programmability/dnacenter-go-sdk/compare/v5.0.14...v5.0.16
[Unreleased]: https://github.com/cisco-en-programmability/dnacenter-go-sdk/compare/v5.0.16...main
1 change: 1 addition & 0 deletions sdk/task.go
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ type ResponseTaskGetBusinessAPIExecutionDetails struct {
TimeDuration *int `json:"timeDuration,omitempty"` // Time taken for Business API Execution (Milliseconds)
Status string `json:"status,omitempty"` // Execution status of the Business API
BapiError string `json:"bapiError,omitempty"` // Bapi Error
BapiSyncResponse string `json:"bapiSyncResponse,omitempty"` // Bapi Sync Response
RuntimeInstanceID string `json:"runtimeInstanceId,omitempty"` // Pod Id in which the Business API is executed
}
type ResponseTaskGetTasks struct {
Expand Down
Loading