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

## [3.0.8] - 2024-08-05 #40

Merged
merged 1 commit into from
Aug 5, 2024
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
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [3.0.8] - 2024-08-05
### Changed
- update switch.go ResponseItemOrganizationsGetOrganizationDevices.Imei is now a *float64.
- update wireless.go ResponseWirelessGetDeviceWirelessRadioSettingsFiveGhzSettings.ChannelWidth is now a string.

## [3.0.7] - 2024-07-23
### Changed
- update switch.go areaId is now an *int.
Expand Down Expand Up @@ -1383,4 +1388,5 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
[3.0.5]: https://github.com/meraki/dashboard-api-go/compare/v3.0.4...3.0.5
[3.0.6]: https://github.com/meraki/dashboard-api-go/compare/v3.0.5...3.0.6
[3.0.7]: https://github.com/meraki/dashboard-api-go/compare/v3.0.6...3.0.7
[Unreleased]: https://github.com/meraki/dashboard-api-go/compare/v3.0.7...main
[3.0.8]: https://github.com/meraki/dashboard-api-go/compare/v3.0.7...3.0.8
[Unreleased]: https://github.com/meraki/dashboard-api-go/compare/v3.0.8...main
2 changes: 1 addition & 1 deletion sdk/organizations.go
Original file line number Diff line number Diff line change
Expand Up @@ -1245,7 +1245,7 @@ type ResponseItemOrganizationsGetOrganizationDevices struct {
Address string `json:"address,omitempty"` // Physical address of the device
Details *[]ResponseItemOrganizationsGetOrganizationDevicesDetails `json:"details,omitempty"` // Additional device information
Firmware string `json:"firmware,omitempty"` // Firmware version of the device
Imei string `json:"imei,omitempty"` // IMEI of the device, if applicable
Imei *float64 `json:"imei,omitempty"` // IMEI of the device, if applicable
LanIP string `json:"lanIp,omitempty"` // LAN IP address of the device
Lat *float64 `json:"lat,omitempty"` // Latitude of the device
Lng *float64 `json:"lng,omitempty"` // Longitude of the device
Expand Down
6 changes: 3 additions & 3 deletions sdk/wireless.go
Original file line number Diff line number Diff line change
Expand Up @@ -299,9 +299,9 @@ type ResponseWirelessGetDeviceWirelessRadioSettings struct {
TwoFourGhzSettings *ResponseWirelessGetDeviceWirelessRadioSettingsTwoFourGhzSettings `json:"twoFourGhzSettings,omitempty"` //
}
type ResponseWirelessGetDeviceWirelessRadioSettingsFiveGhzSettings struct {
Channel *int `json:"channel,omitempty"` //
ChannelWidth *int `json:"channelWidth,omitempty"` //
TargetPower *int `json:"targetPower,omitempty"` //
Channel *int `json:"channel,omitempty"` //
ChannelWidth string `json:"channelWidth,omitempty"` //
TargetPower *int `json:"targetPower,omitempty"` //
}
type ResponseWirelessGetDeviceWirelessRadioSettingsTwoFourGhzSettings struct {
Channel *int `json:"channel,omitempty"` //
Expand Down
Loading