Skip to content

Commit

Permalink
Merge pull request #40 from meraki/develop
Browse files Browse the repository at this point in the history
## [3.0.8] - 2024-08-05
  • Loading branch information
fmunozmiranda authored Aug 5, 2024
2 parents a85564b + 7fc284d commit e12156d
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
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

0 comments on commit e12156d

Please sign in to comment.