firebase / firebase-ios-sdk

Firebase SDK for Apple App Development
https://firebase.google.com
Apache License 2.0
5.56k stars 1.45k forks source link

[Vertex AI] Cleanup Decodable impl from BlockThreshold #13673

Closed andrewheard closed 1 day ago

andrewheard commented 1 day ago

Removed the extraneous public init(from decoder: Decoder) throws implementation from SafetySetting.BlockThreshold. This type is now Encodable-only as of https://github.com/firebase/firebase-ios-sdk/pull/13666 since it is only used in requests.

Removed extraneous cases unknown and unspecified from the BlockThreshold enum. Considering this non-breaking since any requests using unknown or unspecified will results in errors from the backend.

no-changelog