From 1ce6e000ba2d2c560ea5e8cfec910bd04eb7f9ef Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 1 Jul 2024 10:37:14 +0000 Subject: [PATCH] chore(deps): bump the root-go-dependencies group with 6 updates Bumps the root-go-dependencies group with 6 updates: | Package | From | To | | --- | --- | --- | | [cloud.google.com/go](https://github.com/googleapis/google-cloud-go) | `0.114.0` | `0.115.0` | | [golang.org/x/oauth2](https://github.com/golang/oauth2) | `0.20.0` | `0.21.0` | | [google.golang.org/api](https://github.com/googleapis/google-api-go-client) | `0.180.0` | `0.183.0` | | [google.golang.org/genproto](https://github.com/googleapis/go-genproto) | `0.0.0-20240401170217-c3f982113cda` | `0.0.0-20240528184218-531527333157` | | [google.golang.org/genproto/googleapis/api](https://github.com/googleapis/go-genproto) | `0.0.0-20240513163218-0867130af1f8` | `0.0.0-20240604185151-ef581f913117` | | google.golang.org/protobuf | `1.34.1` | `1.34.2` | Updates `cloud.google.com/go` from 0.114.0 to 0.115.0 - [Release notes](https://github.com/googleapis/google-cloud-go/releases) - [Changelog](https://github.com/googleapis/google-cloud-go/blob/main/CHANGES.md) - [Commits](https://github.com/googleapis/google-cloud-go/compare/v0.114.0...v0.115.0) Updates `golang.org/x/oauth2` from 0.20.0 to 0.21.0 - [Commits](https://github.com/golang/oauth2/compare/v0.20.0...v0.21.0) Updates `google.golang.org/api` from 0.180.0 to 0.183.0 - [Release notes](https://github.com/googleapis/google-api-go-client/releases) - [Changelog](https://github.com/googleapis/google-api-go-client/blob/main/CHANGES.md) - [Commits](https://github.com/googleapis/google-api-go-client/compare/v0.180.0...v0.183.0) Updates `google.golang.org/genproto` from 0.0.0-20240401170217-c3f982113cda to 0.0.0-20240528184218-531527333157 - [Commits](https://github.com/googleapis/go-genproto/commits) Updates `google.golang.org/genproto/googleapis/api` from 0.0.0-20240513163218-0867130af1f8 to 0.0.0-20240604185151-ef581f913117 - [Commits](https://github.com/googleapis/go-genproto/commits) Updates `google.golang.org/protobuf` from 1.34.1 to 1.34.2 --- updated-dependencies: - dependency-name: cloud.google.com/go dependency-type: direct:production update-type: version-update:semver-minor dependency-group: root-go-dependencies - dependency-name: golang.org/x/oauth2 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: root-go-dependencies - dependency-name: google.golang.org/api dependency-type: direct:production update-type: version-update:semver-minor dependency-group: root-go-dependencies - dependency-name: google.golang.org/genproto dependency-type: direct:production update-type: version-update:semver-patch dependency-group: root-go-dependencies - dependency-name: google.golang.org/genproto/googleapis/api dependency-type: direct:production update-type: version-update:semver-patch dependency-group: root-go-dependencies - dependency-name: google.golang.org/protobuf dependency-type: direct:production update-type: version-update:semver-patch dependency-group: root-go-dependencies ... Signed-off-by: dependabot[bot] --- go.mod | 20 ++++---- go.sum | 46 +++++++++---------- .../example/v1/example_annotations.pb.go | 6 +-- .../example/v1/example_comments.pb.go | 6 +-- .../example/v1/example_datetime.pb.go | 6 +-- .../bigquery/example/v1/example_enum.pb.go | 6 +-- .../bigquery/example/v1/example_list.pb.go | 8 ++-- .../example/v1/example_longdescription.pb.go | 6 +-- .../bigquery/example/v1/example_map.pb.go | 8 ++-- .../bigquery/example/v1/example_oneof.pb.go | 12 ++--- .../example/v1/example_optional.pb.go | 8 ++-- .../bigquery/example/v1/example_struct.pb.go | 6 +-- .../example/v1/example_wrappers.pb.go | 6 +-- .../public/v1/dogecoin_transaction.pb.go | 10 ++-- .../bigquery/public/v1/film_location.pb.go | 6 +-- .../public/v1/historic_severe_storm.pb.go | 6 +-- .../public/v1/london_bicycle_rental.pb.go | 6 +-- .../public/v1/london_bicycle_station.pb.go | 6 +-- .../v1/san_fransisco_transit_stop_time.pb.go | 6 +-- .../public/v1/whos_on_first_geojson.pb.go | 6 +-- 20 files changed, 95 insertions(+), 95 deletions(-) diff --git a/go.mod b/go.mod index a15dd69..08e1a60 100644 --- a/go.mod +++ b/go.mod @@ -3,23 +3,23 @@ module go.einride.tech/protobuf-bigquery go 1.20 require ( - cloud.google.com/go v0.114.0 + cloud.google.com/go v0.115.0 cloud.google.com/go/bigquery v1.61.0 github.com/google/go-cmp v0.6.0 go.einride.tech/aip v0.67.1 - golang.org/x/oauth2 v0.20.0 - google.golang.org/api v0.180.0 - google.golang.org/genproto v0.0.0-20240401170217-c3f982113cda - google.golang.org/genproto/googleapis/api v0.0.0-20240513163218-0867130af1f8 - google.golang.org/protobuf v1.34.1 + golang.org/x/oauth2 v0.21.0 + google.golang.org/api v0.183.0 + google.golang.org/genproto v0.0.0-20240528184218-531527333157 + google.golang.org/genproto/googleapis/api v0.0.0-20240604185151-ef581f913117 + google.golang.org/protobuf v1.34.2 gotest.tools/v3 v3.5.1 ) require ( - cloud.google.com/go/auth v0.4.1 // indirect + cloud.google.com/go/auth v0.5.1 // indirect cloud.google.com/go/auth/oauth2adapt v0.2.2 // indirect cloud.google.com/go/compute/metadata v0.3.0 // indirect - cloud.google.com/go/iam v1.1.7 // indirect + cloud.google.com/go/iam v1.1.8 // indirect github.com/apache/arrow/go/v15 v15.0.2 // indirect github.com/felixge/httpsnoop v1.0.4 // indirect github.com/go-logr/logr v1.4.1 // indirect @@ -52,6 +52,6 @@ require ( golang.org/x/time v0.5.0 // indirect golang.org/x/tools v0.20.0 // indirect golang.org/x/xerrors v0.0.0-20231012003039-104605ab7028 // indirect - google.golang.org/genproto/googleapis/rpc v0.0.0-20240513163218-0867130af1f8 // indirect - google.golang.org/grpc v1.63.2 // indirect + google.golang.org/genproto/googleapis/rpc v0.0.0-20240604185151-ef581f913117 // indirect + google.golang.org/grpc v1.64.0 // indirect ) diff --git a/go.sum b/go.sum index da27b1d..f725f99 100644 --- a/go.sum +++ b/go.sum @@ -1,19 +1,19 @@ cloud.google.com/go v0.26.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw= -cloud.google.com/go v0.114.0 h1:OIPFAdfrFDFO2ve2U7r/H5SwSbBzEdrBdE7xkgwc+kY= -cloud.google.com/go v0.114.0/go.mod h1:ZV9La5YYxctro1HTPug5lXH/GefROyW8PPD4T8n9J8E= -cloud.google.com/go/auth v0.4.1 h1:Z7YNIhlWRtrnKlZke7z3GMqzvuYzdc2z98F9D1NV5Hg= -cloud.google.com/go/auth v0.4.1/go.mod h1:QVBuVEKpCn4Zp58hzRGvL0tjRGU0YqdRTdCHM1IHnro= +cloud.google.com/go v0.115.0 h1:CnFSK6Xo3lDYRoBKEcAtia6VSC837/ZkJuRduSFnr14= +cloud.google.com/go v0.115.0/go.mod h1:8jIM5vVgoAEoiVxQ/O4BFTfHqulPZgs/ufEzMcFMdWU= +cloud.google.com/go/auth v0.5.1 h1:0QNO7VThG54LUzKiQxv8C6x1YX7lUrzlAa1nVLF8CIw= +cloud.google.com/go/auth v0.5.1/go.mod h1:vbZT8GjzDf3AVqCcQmqeeM32U9HBFc32vVVAbwDsa6s= cloud.google.com/go/auth/oauth2adapt v0.2.2 h1:+TTV8aXpjeChS9M+aTtN/TjdQnzJvmzKFt//oWu7HX4= cloud.google.com/go/auth/oauth2adapt v0.2.2/go.mod h1:wcYjgpZI9+Yu7LyYBg4pqSiaRkfEK3GQcpb7C/uyF1Q= cloud.google.com/go/bigquery v1.61.0 h1:w2Goy9n6gh91LVi6B2Sc+HpBl8WbWhIyzdvVvrAuEIw= cloud.google.com/go/bigquery v1.61.0/go.mod h1:PjZUje0IocbuTOdq4DBOJLNYB0WF3pAKBHzAYyxCwFo= cloud.google.com/go/compute/metadata v0.3.0 h1:Tz+eQXMEqDIKRsmY3cHTL6FVaynIjX2QxYC4trgAKZc= cloud.google.com/go/compute/metadata v0.3.0/go.mod h1:zFmK7XCadkQkj6TtorcaGlCW1hT1fIilQDwofLpJ20k= -cloud.google.com/go/datacatalog v1.20.0 h1:BGDsEjqpAo0Ka+b9yDLXnE5k+jU3lXGMh//NsEeDMIg= -cloud.google.com/go/iam v1.1.7 h1:z4VHOhwKLF/+UYXAJDFwGtNF0b6gjsW1Pk9Ml0U/IoM= -cloud.google.com/go/iam v1.1.7/go.mod h1:J4PMPg8TtyurAUvSmPj8FF3EDgY1SPRZxcUGrn7WXGA= -cloud.google.com/go/longrunning v0.5.6 h1:xAe8+0YaWoCKr9t1+aWe+OeQgN/iJK1fEgZSXmjuEaE= -cloud.google.com/go/storage v1.40.0 h1:VEpDQV5CJxFmJ6ueWNsKxcr1QAYOXEgxDa+sBbJahPw= +cloud.google.com/go/datacatalog v1.20.1 h1:czcba5mxwRM5V//jSadyig0y+8aOHmN7gUl9GbHu59E= +cloud.google.com/go/iam v1.1.8 h1:r7umDwhj+BQyz0ScZMp4QrGXjSTI3ZINnpgU2nlB/K0= +cloud.google.com/go/iam v1.1.8/go.mod h1:GvE6lyMmfxXauzNq8NbgJbeVQNspG+tcdL/W8QO1+zE= +cloud.google.com/go/longrunning v0.5.7 h1:WLbHekDbjK1fVFD3ibpFFVoyizlLRl73I7YKuAKilhU= +cloud.google.com/go/storage v1.41.0 h1:RusiwatSu6lHeEXe3kglxakAmAbfV+rhtPqA6i8RBx0= github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU= github.com/apache/arrow/go/v15 v15.0.2 h1:60IliRbiyTWCWjERBCkO1W4Qun9svcYoZrSLcyOsMLE= github.com/apache/arrow/go/v15 v15.0.2/go.mod h1:DGXsR3ajT524njufqf95822i+KTh+yea1jass9YXgjA= @@ -127,8 +127,8 @@ golang.org/x/net v0.0.0-20201110031124-69a78807bb2b/go.mod h1:sp8m0HH+o8qH0wwXwY golang.org/x/net v0.25.0 h1:d/OCCoBEUq33pjydKrGQhw7IlUPI2Oylr+8qLx49kac= golang.org/x/net v0.25.0/go.mod h1:JkAGAh7GEvH74S6FOH42FLoXpXbE/aqXSrIQjXgsiwM= golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= -golang.org/x/oauth2 v0.20.0 h1:4mQdhULixXKP1rwYBW0vAijoXnkTG0BLCDRzfe1idMo= -golang.org/x/oauth2 v0.20.0/go.mod h1:XYTD2NtWslqkgxebSiOHnXEap4TF09sJSc7H1sXbhtI= +golang.org/x/oauth2 v0.21.0 h1:tsimM75w1tF/uws5rbeHzIWxEqElMehnc+iW793zsZs= +golang.org/x/oauth2 v0.21.0/go.mod h1:XYTD2NtWslqkgxebSiOHnXEap4TF09sJSc7H1sXbhtI= golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= @@ -158,26 +158,26 @@ golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8T golang.org/x/xerrors v0.0.0-20231012003039-104605ab7028 h1:+cNy6SZtPcJQH3LJVLOSmiC7MMxXNOb3PU/VUEz+EhU= golang.org/x/xerrors v0.0.0-20231012003039-104605ab7028/go.mod h1:NDW/Ps6MPRej6fsCIbMTohpP40sJ/P/vI1MoTEGwX90= gonum.org/v1/gonum v0.12.0 h1:xKuo6hzt+gMav00meVPUlXwSdoEJP46BR+wdxQEFK2o= -google.golang.org/api v0.180.0 h1:M2D87Yo0rGBPWpo1orwfCLehUUL6E7/TYe5gvMQWDh4= -google.golang.org/api v0.180.0/go.mod h1:51AiyoEg1MJPSZ9zvklA8VnRILPXxn1iVen9v25XHAE= +google.golang.org/api v0.183.0 h1:PNMeRDwo1pJdgNcFQ9GstuLe/noWKIc89pRWRLMvLwE= +google.golang.org/api v0.183.0/go.mod h1:q43adC5/pHoSZTx5h2mSmdF7NcyfW9JuDyIOJAgS9ZQ= google.golang.org/appengine v1.1.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM= google.golang.org/appengine v1.4.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= google.golang.org/genproto v0.0.0-20180817151627-c66870c02cf8/go.mod h1:JiN7NxoALGmiZfu7CAH4rXhgtRTLTxftemlI0sWmxmc= google.golang.org/genproto v0.0.0-20190819201941-24fa4b261c55/go.mod h1:DMBHOl98Agz4BDEuKkezgsaosCRResVns1a3J2ZsMNc= google.golang.org/genproto v0.0.0-20200526211855-cb27e3aa2013/go.mod h1:NbSheEEYHJ7i3ixzK3sjbqSGDJWnxyFXZblF3eUsNvo= -google.golang.org/genproto v0.0.0-20240401170217-c3f982113cda h1:wu/KJm9KJwpfHWhkkZGohVC6KRrc1oJNr4jwtQMOQXw= -google.golang.org/genproto v0.0.0-20240401170217-c3f982113cda/go.mod h1:g2LLCvCeCSir/JJSWosk19BR4NVxGqHUC6rxIRsd7Aw= -google.golang.org/genproto/googleapis/api v0.0.0-20240513163218-0867130af1f8 h1:W5Xj/70xIA4x60O/IFyXivR5MGqblAb8R3w26pnD6No= -google.golang.org/genproto/googleapis/api v0.0.0-20240513163218-0867130af1f8/go.mod h1:vPrPUTsDCYxXWjP7clS81mZ6/803D8K4iM9Ma27VKas= -google.golang.org/genproto/googleapis/rpc v0.0.0-20240513163218-0867130af1f8 h1:mxSlqyb8ZAHsYDCfiXN1EDdNTdvjUJSLY+OnAUtYNYA= -google.golang.org/genproto/googleapis/rpc v0.0.0-20240513163218-0867130af1f8/go.mod h1:I7Y+G38R2bu5j1aLzfFmQfTcU/WnFuqDwLZAbvKTKpM= +google.golang.org/genproto v0.0.0-20240528184218-531527333157 h1:u7WMYrIrVvs0TF5yaKwKNbcJyySYf+HAIFXxWltJOXE= +google.golang.org/genproto v0.0.0-20240528184218-531527333157/go.mod h1:ubQlAQnzejB8uZzszhrTCU2Fyp6Vi7ZE5nn0c3W8+qQ= +google.golang.org/genproto/googleapis/api v0.0.0-20240604185151-ef581f913117 h1:+rdxYoE3E5htTEWIe15GlN6IfvbURM//Jt0mmkmm6ZU= +google.golang.org/genproto/googleapis/api v0.0.0-20240604185151-ef581f913117/go.mod h1:OimBR/bc1wPO9iV4NC2bpyjy3VnAwZh5EBPQdtaE5oo= +google.golang.org/genproto/googleapis/rpc v0.0.0-20240604185151-ef581f913117 h1:1GBuWVLM/KMVUv1t1En5Gs+gFZCNd360GGb4sSxtrhU= +google.golang.org/genproto/googleapis/rpc v0.0.0-20240604185151-ef581f913117/go.mod h1:EfXuqaE1J41VCDicxHzUDm+8rk+7ZdXzHV0IhO/I6s0= google.golang.org/grpc v1.19.0/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c= google.golang.org/grpc v1.23.0/go.mod h1:Y5yQAOtifL1yxbo5wqy6BxZv8vAUGQwXBOALyacEbxg= google.golang.org/grpc v1.25.1/go.mod h1:c3i+UQWmh7LiEpx4sFZnkU36qjEYZ0imhYfXVyQciAY= google.golang.org/grpc v1.27.0/go.mod h1:qbnxyOmOxrQa7FizSgH+ReBfzJrCY1pSN7KXBS8abTk= google.golang.org/grpc v1.33.2/go.mod h1:JMHMWHQWaTccqQQlmk3MJZS+GWXOdAesneDmEnv2fbc= -google.golang.org/grpc v1.63.2 h1:MUeiw1B2maTVZthpU5xvASfTh3LDbxHd6IJ6QQVU+xM= -google.golang.org/grpc v1.63.2/go.mod h1:WAX/8DgncnokcFUldAxq7GeB5DXHDbMF+lLvDomNkRA= +google.golang.org/grpc v1.64.0 h1:KH3VH9y/MgNQg1dE7b3XfVK0GsPSIzJwdF617gUSbvY= +google.golang.org/grpc v1.64.0/go.mod h1:oxjF8E3FBnjp+/gVFYdWacaLDx9na1aqy9oovLpxQYg= google.golang.org/protobuf v0.0.0-20200109180630-ec00e32a8dfd/go.mod h1:DFci5gLYBciE7Vtevhsrf46CRTquxDuWsQurQQe4oz8= google.golang.org/protobuf v0.0.0-20200221191635-4d8936d0db64/go.mod h1:kwYJMbMJ01Woi6D6+Kah6886xMZcty6N08ah7+eCXa0= google.golang.org/protobuf v0.0.0-20200228230310-ab0ca4ff8a60/go.mod h1:cfTl7dwQJ+fmap5saPgwCLgHXTUD7jkjRqWcaiX5VyM= @@ -187,8 +187,8 @@ google.golang.org/protobuf v1.22.0/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2 google.golang.org/protobuf v1.23.0/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU= google.golang.org/protobuf v1.23.1-0.20200526195155-81db48ad09cc/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU= google.golang.org/protobuf v1.25.0/go.mod h1:9JNX74DMeImyA3h4bdi1ymwjUzf21/xIlbajtzgsN7c= -google.golang.org/protobuf v1.34.1 h1:9ddQBjfCyZPOHPUiPxpYESBLc+T8P3E+Vo4IbKZgFWg= -google.golang.org/protobuf v1.34.1/go.mod h1:c6P6GXX6sHbq/GpV6MGZEdwhWPcYBgnhAHhKbcUYpos= +google.golang.org/protobuf v1.34.2 h1:6xV6lTsCfpGD21XK49h7MhtcApnLqkfYgPcdHftf6hg= +google.golang.org/protobuf v1.34.2/go.mod h1:qYOHts0dSfpeUzUFpOMr/WGzszTmLH+DiWniOlNbLDw= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA= diff --git a/internal/examples/proto/gen/go/einride/bigquery/example/v1/example_annotations.pb.go b/internal/examples/proto/gen/go/einride/bigquery/example/v1/example_annotations.pb.go index b6c0f95..828eaf5 100644 --- a/internal/examples/proto/gen/go/einride/bigquery/example/v1/example_annotations.pb.go +++ b/internal/examples/proto/gen/go/einride/bigquery/example/v1/example_annotations.pb.go @@ -1,6 +1,6 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.1 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: einride/bigquery/example/v1/example_annotations.proto @@ -127,7 +127,7 @@ func file_einride_bigquery_example_v1_example_annotations_proto_rawDescGZIP() [] } var file_einride_bigquery_example_v1_example_annotations_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_einride_bigquery_example_v1_example_annotations_proto_goTypes = []interface{}{ +var file_einride_bigquery_example_v1_example_annotations_proto_goTypes = []any{ (*ExampleAnnotations)(nil), // 0: einride.bigquery.example.v1.ExampleAnnotations } var file_einride_bigquery_example_v1_example_annotations_proto_depIdxs = []int32{ @@ -144,7 +144,7 @@ func file_einride_bigquery_example_v1_example_annotations_proto_init() { return } if !protoimpl.UnsafeEnabled { - file_einride_bigquery_example_v1_example_annotations_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_einride_bigquery_example_v1_example_annotations_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*ExampleAnnotations); i { case 0: return &v.state diff --git a/internal/examples/proto/gen/go/einride/bigquery/example/v1/example_comments.pb.go b/internal/examples/proto/gen/go/einride/bigquery/example/v1/example_comments.pb.go index 03da5f4..c8af7f8 100644 --- a/internal/examples/proto/gen/go/einride/bigquery/example/v1/example_comments.pb.go +++ b/internal/examples/proto/gen/go/einride/bigquery/example/v1/example_comments.pb.go @@ -1,6 +1,6 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.1 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: einride/bigquery/example/v1/example_comments.proto @@ -157,7 +157,7 @@ func file_einride_bigquery_example_v1_example_comments_proto_rawDescGZIP() []byt } var file_einride_bigquery_example_v1_example_comments_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_einride_bigquery_example_v1_example_comments_proto_goTypes = []interface{}{ +var file_einride_bigquery_example_v1_example_comments_proto_goTypes = []any{ (*ExampleComments)(nil), // 0: einride.bigquery.example.v1.ExampleComments } var file_einride_bigquery_example_v1_example_comments_proto_depIdxs = []int32{ @@ -174,7 +174,7 @@ func file_einride_bigquery_example_v1_example_comments_proto_init() { return } if !protoimpl.UnsafeEnabled { - file_einride_bigquery_example_v1_example_comments_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_einride_bigquery_example_v1_example_comments_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*ExampleComments); i { case 0: return &v.state diff --git a/internal/examples/proto/gen/go/einride/bigquery/example/v1/example_datetime.pb.go b/internal/examples/proto/gen/go/einride/bigquery/example/v1/example_datetime.pb.go index aafade7..ed3ec09 100644 --- a/internal/examples/proto/gen/go/einride/bigquery/example/v1/example_datetime.pb.go +++ b/internal/examples/proto/gen/go/einride/bigquery/example/v1/example_datetime.pb.go @@ -1,6 +1,6 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.1 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: einride/bigquery/example/v1/example_datetime.proto @@ -117,7 +117,7 @@ func file_einride_bigquery_example_v1_example_datetime_proto_rawDescGZIP() []byt } var file_einride_bigquery_example_v1_example_datetime_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_einride_bigquery_example_v1_example_datetime_proto_goTypes = []interface{}{ +var file_einride_bigquery_example_v1_example_datetime_proto_goTypes = []any{ (*ExampleDateTime)(nil), // 0: einride.bigquery.example.v1.ExampleDateTime (*datetime.DateTime)(nil), // 1: google.type.DateTime } @@ -136,7 +136,7 @@ func file_einride_bigquery_example_v1_example_datetime_proto_init() { return } if !protoimpl.UnsafeEnabled { - file_einride_bigquery_example_v1_example_datetime_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_einride_bigquery_example_v1_example_datetime_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*ExampleDateTime); i { case 0: return &v.state diff --git a/internal/examples/proto/gen/go/einride/bigquery/example/v1/example_enum.pb.go b/internal/examples/proto/gen/go/einride/bigquery/example/v1/example_enum.pb.go index 5ee4460..4ad5b2f 100644 --- a/internal/examples/proto/gen/go/einride/bigquery/example/v1/example_enum.pb.go +++ b/internal/examples/proto/gen/go/einride/bigquery/example/v1/example_enum.pb.go @@ -1,6 +1,6 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.1 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: einride/bigquery/example/v1/example_enum.proto @@ -169,7 +169,7 @@ func file_einride_bigquery_example_v1_example_enum_proto_rawDescGZIP() []byte { var file_einride_bigquery_example_v1_example_enum_proto_enumTypes = make([]protoimpl.EnumInfo, 1) var file_einride_bigquery_example_v1_example_enum_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_einride_bigquery_example_v1_example_enum_proto_goTypes = []interface{}{ +var file_einride_bigquery_example_v1_example_enum_proto_goTypes = []any{ (ExampleEnum_Enum)(0), // 0: einride.bigquery.example.v1.ExampleEnum.Enum (*ExampleEnum)(nil), // 1: einride.bigquery.example.v1.ExampleEnum } @@ -188,7 +188,7 @@ func file_einride_bigquery_example_v1_example_enum_proto_init() { return } if !protoimpl.UnsafeEnabled { - file_einride_bigquery_example_v1_example_enum_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_einride_bigquery_example_v1_example_enum_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*ExampleEnum); i { case 0: return &v.state diff --git a/internal/examples/proto/gen/go/einride/bigquery/example/v1/example_list.pb.go b/internal/examples/proto/gen/go/einride/bigquery/example/v1/example_list.pb.go index b4dc803..28fc711 100644 --- a/internal/examples/proto/gen/go/einride/bigquery/example/v1/example_list.pb.go +++ b/internal/examples/proto/gen/go/einride/bigquery/example/v1/example_list.pb.go @@ -1,6 +1,6 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.1 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: einride/bigquery/example/v1/example_list.proto @@ -267,7 +267,7 @@ func file_einride_bigquery_example_v1_example_list_proto_rawDescGZIP() []byte { var file_einride_bigquery_example_v1_example_list_proto_enumTypes = make([]protoimpl.EnumInfo, 1) var file_einride_bigquery_example_v1_example_list_proto_msgTypes = make([]protoimpl.MessageInfo, 2) -var file_einride_bigquery_example_v1_example_list_proto_goTypes = []interface{}{ +var file_einride_bigquery_example_v1_example_list_proto_goTypes = []any{ (ExampleList_Enum)(0), // 0: einride.bigquery.example.v1.ExampleList.Enum (*ExampleList)(nil), // 1: einride.bigquery.example.v1.ExampleList (*ExampleList_Nested)(nil), // 2: einride.bigquery.example.v1.ExampleList.Nested @@ -290,7 +290,7 @@ func file_einride_bigquery_example_v1_example_list_proto_init() { return } if !protoimpl.UnsafeEnabled { - file_einride_bigquery_example_v1_example_list_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_einride_bigquery_example_v1_example_list_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*ExampleList); i { case 0: return &v.state @@ -302,7 +302,7 @@ func file_einride_bigquery_example_v1_example_list_proto_init() { return nil } } - file_einride_bigquery_example_v1_example_list_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_einride_bigquery_example_v1_example_list_proto_msgTypes[1].Exporter = func(v any, i int) any { switch v := v.(*ExampleList_Nested); i { case 0: return &v.state diff --git a/internal/examples/proto/gen/go/einride/bigquery/example/v1/example_longdescription.pb.go b/internal/examples/proto/gen/go/einride/bigquery/example/v1/example_longdescription.pb.go index 60d3235..3fefc9b 100644 --- a/internal/examples/proto/gen/go/einride/bigquery/example/v1/example_longdescription.pb.go +++ b/internal/examples/proto/gen/go/einride/bigquery/example/v1/example_longdescription.pb.go @@ -1,6 +1,6 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.1 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: einride/bigquery/example/v1/example_longdescription.proto @@ -118,7 +118,7 @@ func file_einride_bigquery_example_v1_example_longdescription_proto_rawDescGZIP( } var file_einride_bigquery_example_v1_example_longdescription_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_einride_bigquery_example_v1_example_longdescription_proto_goTypes = []interface{}{ +var file_einride_bigquery_example_v1_example_longdescription_proto_goTypes = []any{ (*ExampleLongDescription)(nil), // 0: einride.bigquery.example.v1.ExampleLongDescription } var file_einride_bigquery_example_v1_example_longdescription_proto_depIdxs = []int32{ @@ -135,7 +135,7 @@ func file_einride_bigquery_example_v1_example_longdescription_proto_init() { return } if !protoimpl.UnsafeEnabled { - file_einride_bigquery_example_v1_example_longdescription_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_einride_bigquery_example_v1_example_longdescription_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*ExampleLongDescription); i { case 0: return &v.state diff --git a/internal/examples/proto/gen/go/einride/bigquery/example/v1/example_map.pb.go b/internal/examples/proto/gen/go/einride/bigquery/example/v1/example_map.pb.go index 9ab97e8..ff347d0 100644 --- a/internal/examples/proto/gen/go/einride/bigquery/example/v1/example_map.pb.go +++ b/internal/examples/proto/gen/go/einride/bigquery/example/v1/example_map.pb.go @@ -1,6 +1,6 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.1 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: einride/bigquery/example/v1/example_map.proto @@ -374,7 +374,7 @@ func file_einride_bigquery_example_v1_example_map_proto_rawDescGZIP() []byte { var file_einride_bigquery_example_v1_example_map_proto_enumTypes = make([]protoimpl.EnumInfo, 1) var file_einride_bigquery_example_v1_example_map_proto_msgTypes = make([]protoimpl.MessageInfo, 11) -var file_einride_bigquery_example_v1_example_map_proto_goTypes = []interface{}{ +var file_einride_bigquery_example_v1_example_map_proto_goTypes = []any{ (ExampleMap_Enum)(0), // 0: einride.bigquery.example.v1.ExampleMap.Enum (*ExampleMap)(nil), // 1: einride.bigquery.example.v1.ExampleMap nil, // 2: einride.bigquery.example.v1.ExampleMap.StringToStringEntry @@ -415,7 +415,7 @@ func file_einride_bigquery_example_v1_example_map_proto_init() { return } if !protoimpl.UnsafeEnabled { - file_einride_bigquery_example_v1_example_map_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_einride_bigquery_example_v1_example_map_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*ExampleMap); i { case 0: return &v.state @@ -427,7 +427,7 @@ func file_einride_bigquery_example_v1_example_map_proto_init() { return nil } } - file_einride_bigquery_example_v1_example_map_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} { + file_einride_bigquery_example_v1_example_map_proto_msgTypes[9].Exporter = func(v any, i int) any { switch v := v.(*ExampleMap_Nested); i { case 0: return &v.state diff --git a/internal/examples/proto/gen/go/einride/bigquery/example/v1/example_oneof.pb.go b/internal/examples/proto/gen/go/einride/bigquery/example/v1/example_oneof.pb.go index 7cef592..1daffbc 100644 --- a/internal/examples/proto/gen/go/einride/bigquery/example/v1/example_oneof.pb.go +++ b/internal/examples/proto/gen/go/einride/bigquery/example/v1/example_oneof.pb.go @@ -1,6 +1,6 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.1 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: einride/bigquery/example/v1/example_oneof.proto @@ -299,7 +299,7 @@ func file_einride_bigquery_example_v1_example_oneof_proto_rawDescGZIP() []byte { } var file_einride_bigquery_example_v1_example_oneof_proto_msgTypes = make([]protoimpl.MessageInfo, 3) -var file_einride_bigquery_example_v1_example_oneof_proto_goTypes = []interface{}{ +var file_einride_bigquery_example_v1_example_oneof_proto_goTypes = []any{ (*ExampleOneof)(nil), // 0: einride.bigquery.example.v1.ExampleOneof (*ExampleOneof_EmptyMessage)(nil), // 1: einride.bigquery.example.v1.ExampleOneof.EmptyMessage (*ExampleOneof_Message)(nil), // 2: einride.bigquery.example.v1.ExampleOneof.Message @@ -321,7 +321,7 @@ func file_einride_bigquery_example_v1_example_oneof_proto_init() { return } if !protoimpl.UnsafeEnabled { - file_einride_bigquery_example_v1_example_oneof_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_einride_bigquery_example_v1_example_oneof_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*ExampleOneof); i { case 0: return &v.state @@ -333,7 +333,7 @@ func file_einride_bigquery_example_v1_example_oneof_proto_init() { return nil } } - file_einride_bigquery_example_v1_example_oneof_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_einride_bigquery_example_v1_example_oneof_proto_msgTypes[1].Exporter = func(v any, i int) any { switch v := v.(*ExampleOneof_EmptyMessage); i { case 0: return &v.state @@ -345,7 +345,7 @@ func file_einride_bigquery_example_v1_example_oneof_proto_init() { return nil } } - file_einride_bigquery_example_v1_example_oneof_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_einride_bigquery_example_v1_example_oneof_proto_msgTypes[2].Exporter = func(v any, i int) any { switch v := v.(*ExampleOneof_Message); i { case 0: return &v.state @@ -358,7 +358,7 @@ func file_einride_bigquery_example_v1_example_oneof_proto_init() { } } } - file_einride_bigquery_example_v1_example_oneof_proto_msgTypes[0].OneofWrappers = []interface{}{ + file_einride_bigquery_example_v1_example_oneof_proto_msgTypes[0].OneofWrappers = []any{ (*ExampleOneof_OneofEmptyMessage_1)(nil), (*ExampleOneof_OneofBool_1)(nil), (*ExampleOneof_OneofEmptyMessage_2)(nil), diff --git a/internal/examples/proto/gen/go/einride/bigquery/example/v1/example_optional.pb.go b/internal/examples/proto/gen/go/einride/bigquery/example/v1/example_optional.pb.go index 54d5993..fd7bdd3 100644 --- a/internal/examples/proto/gen/go/einride/bigquery/example/v1/example_optional.pb.go +++ b/internal/examples/proto/gen/go/einride/bigquery/example/v1/example_optional.pb.go @@ -1,6 +1,6 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.1 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: einride/bigquery/example/v1/example_optional.proto @@ -113,7 +113,7 @@ func file_einride_bigquery_example_v1_example_optional_proto_rawDescGZIP() []byt } var file_einride_bigquery_example_v1_example_optional_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_einride_bigquery_example_v1_example_optional_proto_goTypes = []interface{}{ +var file_einride_bigquery_example_v1_example_optional_proto_goTypes = []any{ (*ExampleOptional)(nil), // 0: einride.bigquery.example.v1.ExampleOptional } var file_einride_bigquery_example_v1_example_optional_proto_depIdxs = []int32{ @@ -130,7 +130,7 @@ func file_einride_bigquery_example_v1_example_optional_proto_init() { return } if !protoimpl.UnsafeEnabled { - file_einride_bigquery_example_v1_example_optional_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_einride_bigquery_example_v1_example_optional_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*ExampleOptional); i { case 0: return &v.state @@ -143,7 +143,7 @@ func file_einride_bigquery_example_v1_example_optional_proto_init() { } } } - file_einride_bigquery_example_v1_example_optional_proto_msgTypes[0].OneofWrappers = []interface{}{} + file_einride_bigquery_example_v1_example_optional_proto_msgTypes[0].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ diff --git a/internal/examples/proto/gen/go/einride/bigquery/example/v1/example_struct.pb.go b/internal/examples/proto/gen/go/einride/bigquery/example/v1/example_struct.pb.go index 83f21c5..8c4bbf8 100644 --- a/internal/examples/proto/gen/go/einride/bigquery/example/v1/example_struct.pb.go +++ b/internal/examples/proto/gen/go/einride/bigquery/example/v1/example_struct.pb.go @@ -1,6 +1,6 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.1 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: einride/bigquery/example/v1/example_struct.proto @@ -116,7 +116,7 @@ func file_einride_bigquery_example_v1_example_struct_proto_rawDescGZIP() []byte } var file_einride_bigquery_example_v1_example_struct_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_einride_bigquery_example_v1_example_struct_proto_goTypes = []interface{}{ +var file_einride_bigquery_example_v1_example_struct_proto_goTypes = []any{ (*ExampleStruct)(nil), // 0: einride.bigquery.example.v1.ExampleStruct (*structpb.Value)(nil), // 1: google.protobuf.Value } @@ -135,7 +135,7 @@ func file_einride_bigquery_example_v1_example_struct_proto_init() { return } if !protoimpl.UnsafeEnabled { - file_einride_bigquery_example_v1_example_struct_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_einride_bigquery_example_v1_example_struct_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*ExampleStruct); i { case 0: return &v.state diff --git a/internal/examples/proto/gen/go/einride/bigquery/example/v1/example_wrappers.pb.go b/internal/examples/proto/gen/go/einride/bigquery/example/v1/example_wrappers.pb.go index 8626ba6..04ec97b 100644 --- a/internal/examples/proto/gen/go/einride/bigquery/example/v1/example_wrappers.pb.go +++ b/internal/examples/proto/gen/go/einride/bigquery/example/v1/example_wrappers.pb.go @@ -1,6 +1,6 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.1 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: einride/bigquery/example/v1/example_wrappers.proto @@ -214,7 +214,7 @@ func file_einride_bigquery_example_v1_example_wrappers_proto_rawDescGZIP() []byt } var file_einride_bigquery_example_v1_example_wrappers_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_einride_bigquery_example_v1_example_wrappers_proto_goTypes = []interface{}{ +var file_einride_bigquery_example_v1_example_wrappers_proto_goTypes = []any{ (*ExampleWrappers)(nil), // 0: einride.bigquery.example.v1.ExampleWrappers (*wrapperspb.FloatValue)(nil), // 1: google.protobuf.FloatValue (*wrapperspb.DoubleValue)(nil), // 2: google.protobuf.DoubleValue @@ -249,7 +249,7 @@ func file_einride_bigquery_example_v1_example_wrappers_proto_init() { return } if !protoimpl.UnsafeEnabled { - file_einride_bigquery_example_v1_example_wrappers_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_einride_bigquery_example_v1_example_wrappers_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*ExampleWrappers); i { case 0: return &v.state diff --git a/internal/examples/proto/gen/go/einride/bigquery/public/v1/dogecoin_transaction.pb.go b/internal/examples/proto/gen/go/einride/bigquery/public/v1/dogecoin_transaction.pb.go index d15418c..41be6f0 100644 --- a/internal/examples/proto/gen/go/einride/bigquery/public/v1/dogecoin_transaction.pb.go +++ b/internal/examples/proto/gen/go/einride/bigquery/public/v1/dogecoin_transaction.pb.go @@ -1,6 +1,6 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.1 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: einride/bigquery/public/v1/dogecoin_transaction.proto @@ -492,7 +492,7 @@ func file_einride_bigquery_public_v1_dogecoin_transaction_proto_rawDescGZIP() [] } var file_einride_bigquery_public_v1_dogecoin_transaction_proto_msgTypes = make([]protoimpl.MessageInfo, 3) -var file_einride_bigquery_public_v1_dogecoin_transaction_proto_goTypes = []interface{}{ +var file_einride_bigquery_public_v1_dogecoin_transaction_proto_goTypes = []any{ (*DogecoinTransaction)(nil), // 0: einride.bigquery.public.v1.DogecoinTransaction (*DogecoinTransaction_Input)(nil), // 1: einride.bigquery.public.v1.DogecoinTransaction.Input (*DogecoinTransaction_Output)(nil), // 2: einride.bigquery.public.v1.DogecoinTransaction.Output @@ -517,7 +517,7 @@ func file_einride_bigquery_public_v1_dogecoin_transaction_proto_init() { return } if !protoimpl.UnsafeEnabled { - file_einride_bigquery_public_v1_dogecoin_transaction_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_einride_bigquery_public_v1_dogecoin_transaction_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*DogecoinTransaction); i { case 0: return &v.state @@ -529,7 +529,7 @@ func file_einride_bigquery_public_v1_dogecoin_transaction_proto_init() { return nil } } - file_einride_bigquery_public_v1_dogecoin_transaction_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_einride_bigquery_public_v1_dogecoin_transaction_proto_msgTypes[1].Exporter = func(v any, i int) any { switch v := v.(*DogecoinTransaction_Input); i { case 0: return &v.state @@ -541,7 +541,7 @@ func file_einride_bigquery_public_v1_dogecoin_transaction_proto_init() { return nil } } - file_einride_bigquery_public_v1_dogecoin_transaction_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_einride_bigquery_public_v1_dogecoin_transaction_proto_msgTypes[2].Exporter = func(v any, i int) any { switch v := v.(*DogecoinTransaction_Output); i { case 0: return &v.state diff --git a/internal/examples/proto/gen/go/einride/bigquery/public/v1/film_location.pb.go b/internal/examples/proto/gen/go/einride/bigquery/public/v1/film_location.pb.go index 968dc8c..bc1acd6 100644 --- a/internal/examples/proto/gen/go/einride/bigquery/public/v1/film_location.pb.go +++ b/internal/examples/proto/gen/go/einride/bigquery/public/v1/film_location.pb.go @@ -1,6 +1,6 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.1 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: einride/bigquery/public/v1/film_location.proto @@ -213,7 +213,7 @@ func file_einride_bigquery_public_v1_film_location_proto_rawDescGZIP() []byte { } var file_einride_bigquery_public_v1_film_location_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_einride_bigquery_public_v1_film_location_proto_goTypes = []interface{}{ +var file_einride_bigquery_public_v1_film_location_proto_goTypes = []any{ (*FilmLocation)(nil), // 0: einride.bigquery.public.v1.FilmLocation } var file_einride_bigquery_public_v1_film_location_proto_depIdxs = []int32{ @@ -230,7 +230,7 @@ func file_einride_bigquery_public_v1_film_location_proto_init() { return } if !protoimpl.UnsafeEnabled { - file_einride_bigquery_public_v1_film_location_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_einride_bigquery_public_v1_film_location_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*FilmLocation); i { case 0: return &v.state diff --git a/internal/examples/proto/gen/go/einride/bigquery/public/v1/historic_severe_storm.pb.go b/internal/examples/proto/gen/go/einride/bigquery/public/v1/historic_severe_storm.pb.go index fd5c47a..2cbd377 100644 --- a/internal/examples/proto/gen/go/einride/bigquery/public/v1/historic_severe_storm.pb.go +++ b/internal/examples/proto/gen/go/einride/bigquery/public/v1/historic_severe_storm.pb.go @@ -1,6 +1,6 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.1 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: einride/bigquery/public/v1/historic_severe_storm.proto @@ -451,7 +451,7 @@ func file_einride_bigquery_public_v1_historic_severe_storm_proto_rawDescGZIP() [ } var file_einride_bigquery_public_v1_historic_severe_storm_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_einride_bigquery_public_v1_historic_severe_storm_proto_goTypes = []interface{}{ +var file_einride_bigquery_public_v1_historic_severe_storm_proto_goTypes = []any{ (*HistoricSevereStorm)(nil), // 0: einride.bigquery.public.v1.HistoricSevereStorm (*datetime.DateTime)(nil), // 1: google.type.DateTime (*latlng.LatLng)(nil), // 2: google.type.LatLng @@ -473,7 +473,7 @@ func file_einride_bigquery_public_v1_historic_severe_storm_proto_init() { return } if !protoimpl.UnsafeEnabled { - file_einride_bigquery_public_v1_historic_severe_storm_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_einride_bigquery_public_v1_historic_severe_storm_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*HistoricSevereStorm); i { case 0: return &v.state diff --git a/internal/examples/proto/gen/go/einride/bigquery/public/v1/london_bicycle_rental.pb.go b/internal/examples/proto/gen/go/einride/bigquery/public/v1/london_bicycle_rental.pb.go index 413964b..c2b885e 100644 --- a/internal/examples/proto/gen/go/einride/bigquery/public/v1/london_bicycle_rental.pb.go +++ b/internal/examples/proto/gen/go/einride/bigquery/public/v1/london_bicycle_rental.pb.go @@ -1,6 +1,6 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.1 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: einride/bigquery/public/v1/london_bicycle_rental.proto @@ -267,7 +267,7 @@ func file_einride_bigquery_public_v1_london_bicycle_rental_proto_rawDescGZIP() [ } var file_einride_bigquery_public_v1_london_bicycle_rental_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_einride_bigquery_public_v1_london_bicycle_rental_proto_goTypes = []interface{}{ +var file_einride_bigquery_public_v1_london_bicycle_rental_proto_goTypes = []any{ (*LondonBicycleRental)(nil), // 0: einride.bigquery.public.v1.LondonBicycleRental (*durationpb.Duration)(nil), // 1: google.protobuf.Duration (*timestamppb.Timestamp)(nil), // 2: google.protobuf.Timestamp @@ -290,7 +290,7 @@ func file_einride_bigquery_public_v1_london_bicycle_rental_proto_init() { return } if !protoimpl.UnsafeEnabled { - file_einride_bigquery_public_v1_london_bicycle_rental_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_einride_bigquery_public_v1_london_bicycle_rental_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*LondonBicycleRental); i { case 0: return &v.state diff --git a/internal/examples/proto/gen/go/einride/bigquery/public/v1/london_bicycle_station.pb.go b/internal/examples/proto/gen/go/einride/bigquery/public/v1/london_bicycle_station.pb.go index 9c714d0..001bd12 100644 --- a/internal/examples/proto/gen/go/einride/bigquery/public/v1/london_bicycle_station.pb.go +++ b/internal/examples/proto/gen/go/einride/bigquery/public/v1/london_bicycle_station.pb.go @@ -1,6 +1,6 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.1 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: einride/bigquery/public/v1/london_bicycle_station.proto @@ -231,7 +231,7 @@ func file_einride_bigquery_public_v1_london_bicycle_station_proto_rawDescGZIP() } var file_einride_bigquery_public_v1_london_bicycle_station_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_einride_bigquery_public_v1_london_bicycle_station_proto_goTypes = []interface{}{ +var file_einride_bigquery_public_v1_london_bicycle_station_proto_goTypes = []any{ (*LondonBicycleStation)(nil), // 0: einride.bigquery.public.v1.LondonBicycleStation (*date.Date)(nil), // 1: google.type.Date } @@ -251,7 +251,7 @@ func file_einride_bigquery_public_v1_london_bicycle_station_proto_init() { return } if !protoimpl.UnsafeEnabled { - file_einride_bigquery_public_v1_london_bicycle_station_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_einride_bigquery_public_v1_london_bicycle_station_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*LondonBicycleStation); i { case 0: return &v.state diff --git a/internal/examples/proto/gen/go/einride/bigquery/public/v1/san_fransisco_transit_stop_time.pb.go b/internal/examples/proto/gen/go/einride/bigquery/public/v1/san_fransisco_transit_stop_time.pb.go index d4b4f18..f673680 100644 --- a/internal/examples/proto/gen/go/einride/bigquery/public/v1/san_fransisco_transit_stop_time.pb.go +++ b/internal/examples/proto/gen/go/einride/bigquery/public/v1/san_fransisco_transit_stop_time.pb.go @@ -1,6 +1,6 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.1 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: einride/bigquery/public/v1/san_fransisco_transit_stop_time.proto @@ -206,7 +206,7 @@ func file_einride_bigquery_public_v1_san_fransisco_transit_stop_time_proto_rawDe } var file_einride_bigquery_public_v1_san_fransisco_transit_stop_time_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_einride_bigquery_public_v1_san_fransisco_transit_stop_time_proto_goTypes = []interface{}{ +var file_einride_bigquery_public_v1_san_fransisco_transit_stop_time_proto_goTypes = []any{ (*SanFransiscoTransitStopTime)(nil), // 0: einride.bigquery.public.v1.SanFransiscoTransitStopTime (*timeofday.TimeOfDay)(nil), // 1: google.type.TimeOfDay } @@ -226,7 +226,7 @@ func file_einride_bigquery_public_v1_san_fransisco_transit_stop_time_proto_init( return } if !protoimpl.UnsafeEnabled { - file_einride_bigquery_public_v1_san_fransisco_transit_stop_time_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_einride_bigquery_public_v1_san_fransisco_transit_stop_time_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*SanFransiscoTransitStopTime); i { case 0: return &v.state diff --git a/internal/examples/proto/gen/go/einride/bigquery/public/v1/whos_on_first_geojson.pb.go b/internal/examples/proto/gen/go/einride/bigquery/public/v1/whos_on_first_geojson.pb.go index c3eb7b8..41a77f2 100644 --- a/internal/examples/proto/gen/go/einride/bigquery/public/v1/whos_on_first_geojson.pb.go +++ b/internal/examples/proto/gen/go/einride/bigquery/public/v1/whos_on_first_geojson.pb.go @@ -1,6 +1,6 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.1 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: einride/bigquery/public/v1/whos_on_first_geojson.proto @@ -195,7 +195,7 @@ func file_einride_bigquery_public_v1_whos_on_first_geojson_proto_rawDescGZIP() [ } var file_einride_bigquery_public_v1_whos_on_first_geojson_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_einride_bigquery_public_v1_whos_on_first_geojson_proto_goTypes = []interface{}{ +var file_einride_bigquery_public_v1_whos_on_first_geojson_proto_goTypes = []any{ (*WhosOnFirstGeoJson)(nil), // 0: einride.bigquery.public.v1.WhosOnFirstGeoJson (*structpb.Struct)(nil), // 1: google.protobuf.Struct (*timestamppb.Timestamp)(nil), // 2: google.protobuf.Timestamp @@ -216,7 +216,7 @@ func file_einride_bigquery_public_v1_whos_on_first_geojson_proto_init() { return } if !protoimpl.UnsafeEnabled { - file_einride_bigquery_public_v1_whos_on_first_geojson_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_einride_bigquery_public_v1_whos_on_first_geojson_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*WhosOnFirstGeoJson); i { case 0: return &v.state