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 TravelImpactModel client #12427

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
2 changes: 1 addition & 1 deletion clients/travel_impact_model/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Install this package from [Hex](https://hex.pm) by adding

```elixir
def deps do
[{:google_api_travel_impact_model, "~> 0.2"}]
[{:google_api_travel_impact_model, "~> 0.3"}]
end
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ defmodule GoogleApi.TravelImpactModel.V1 do
API client metadata for GoogleApi.TravelImpactModel.V1.
"""

@discovery_revision "20240310"
@discovery_revision "20241027"

def discovery_revision(), do: @discovery_revision
end
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ defmodule GoogleApi.TravelImpactModel.V1.Model.FlightWithEmissions do

## Attributes

* `emissionsGramsPerPax` (*type:* `GoogleApi.TravelImpactModel.V1.Model.EmissionsGramsPerPax.t`, *default:* `nil`) - Optional. Per-passenger emission estimate numbers. Will not be present if emissions could not be computed. For the list of reasons why emissions could not be computed, see ComputeFlightEmissions. Note this field is currently equivalent to ttw_emissions_grams_per_pax until TIM version 1.X.0 which will update this to be total wtw emissions aka wtt_emissions_grams_per_pax + ttw_emissions_grams_per_pax.
* `emissionsGramsPerPax` (*type:* `GoogleApi.TravelImpactModel.V1.Model.EmissionsGramsPerPax.t`, *default:* `nil`) - Optional. Per-passenger emission estimate numbers. Will not be present if emissions could not be computed. For the list of reasons why emissions could not be computed, see ComputeFlightEmissions. This field uses wtw emissions aka ttw_emissions_grams_per_pax + wtt_emissions_grams_per_pax.
* `flight` (*type:* `GoogleApi.TravelImpactModel.V1.Model.Flight.t`, *default:* `nil`) - Required. Matches the flight identifiers in the request. Note: all IATA codes are capitalized.
"""

Expand Down
4 changes: 2 additions & 2 deletions clients/travel_impact_model/mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
defmodule GoogleApi.TravelImpactModel.Mixfile do
use Mix.Project

@version "0.2.0"
@version "0.3.0"

def project() do
[
Expand Down Expand Up @@ -56,7 +56,7 @@ defmodule GoogleApi.TravelImpactModel.Mixfile do
[
files: ["lib", "mix.exs", "README*", "LICENSE"],
maintainers: ["Jeff Ching", "Daniel Azuma"],
licenses: ["Apache 2.0"],
licenses: ["Apache-2.0"],
links: %{
"GitHub" => "https://github.com/googleapis/elixir-google-api/tree/master/clients/travel_impact_model",
"Homepage" => "https://developers.google.com/travel/impact-model"
Expand Down
Loading