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

feat: Automated regeneration of FirebaseAppDistribution client #11417

Closed
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
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ defmodule GoogleApi.FirebaseAppDistribution.V1 do
API client metadata for GoogleApi.FirebaseAppDistribution.V1.
"""

@discovery_revision "20240312"
@discovery_revision "20240605"

def discovery_revision(), do: @discovery_revision
end
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ defmodule GoogleApi.FirebaseAppDistribution.V1.Model.GdataMedia do
* `diffVersionResponse` (*type:* `GoogleApi.FirebaseAppDistribution.V1.Model.GdataDiffVersionResponse.t`, *default:* `nil`) - Set if reference_type is DIFF_VERSION_RESPONSE.
* `downloadParameters` (*type:* `GoogleApi.FirebaseAppDistribution.V1.Model.GdataDownloadParameters.t`, *default:* `nil`) - Parameters for a media download.
* `filename` (*type:* `String.t`, *default:* `nil`) - Original file name
* `hash` (*type:* `String.t`, *default:* `nil`) - Deprecated, use one of explicit hash type fields instead. These two hash related fields will only be populated on Scotty based media uploads and will contain the content of the hash group in the NotificationRequest: http://cs/#google3/uploader/service/proto/upload_listener.proto&q=class:Hash Hex encoded hash value of the uploaded media.
* `hash` (*type:* `String.t`, *default:* `nil`) - Deprecated, use one of explicit hash type fields instead. These two hash related fields will only be populated on Scotty based media uploads and will contain the content of the hash group in the NotificationRequest: http://cs/#google3/blobstore2/api/scotty/service/proto/upload_listener.proto&q=class:Hash Hex encoded hash value of the uploaded media.
* `hashVerified` (*type:* `boolean()`, *default:* `nil`) - For Scotty uploads only. If a user sends a hash code and the backend has requested that Scotty verify the upload against the client hash, Scotty will perform the check on behalf of the backend and will reject it if the hashes don't match. This is set to true if Scotty performed this verification.
* `inline` (*type:* `String.t`, *default:* `nil`) - Media data, set if reference_type is INLINE
* `isPotentialRetry` (*type:* `boolean()`, *default:* `nil`) - |is_potential_retry| is set false only when Scotty is certain that it has not sent the request before. When a client resumes an upload, this field must be set true in agent calls, because Scotty cannot be certain that it has never sent the request before due to potential failure in the session state persistence.
Expand Down
2 changes: 1 addition & 1 deletion clients/firebase_app_distribution/mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
defmodule GoogleApi.FirebaseAppDistribution.Mixfile do
use Mix.Project

@version "0.2.0"
@version "0.2.1"

def project() do
[
Expand Down
Loading