From 02c93058cad4be1cbb508479cfd4427deffd184a Mon Sep 17 00:00:00 2001 From: unmultimedio <4431392+unmultimedio@users.noreply.github.com> Date: Thu, 9 Oct 2025 12:06:34 +0000 Subject: [PATCH] Detected new managed modules references --- ...d88b02551358f5324432af0e8290f5d19e0a7a6e7f | 265 ++++++++++++++++++ ...bf3b8e70cb3d16470e8cc4423007678fb6d89d36d4 | 46 +++ modules/sync/googleapis/googleapis/state.json | 64 +++++ modules/sync/state.json | 2 +- 4 files changed, 376 insertions(+), 1 deletion(-) create mode 100644 modules/sync/googleapis/googleapis/cas/075087745ce43e41f9c43d2c9131958f8e8a05722fcfe0e2701b5dcef0aa5a32040c2f9feae97a3377004ed88b02551358f5324432af0e8290f5d19e0a7a6e7f create mode 100644 modules/sync/googleapis/googleapis/cas/b3ac4d383db09f92ab0ca85d12bff8c49eddf7031bd3a854c260b6ac4ed6a2bb85b52b3393c316d28f8038bf3b8e70cb3d16470e8cc4423007678fb6d89d36d4 diff --git a/modules/sync/googleapis/googleapis/cas/075087745ce43e41f9c43d2c9131958f8e8a05722fcfe0e2701b5dcef0aa5a32040c2f9feae97a3377004ed88b02551358f5324432af0e8290f5d19e0a7a6e7f b/modules/sync/googleapis/googleapis/cas/075087745ce43e41f9c43d2c9131958f8e8a05722fcfe0e2701b5dcef0aa5a32040c2f9feae97a3377004ed88b02551358f5324432af0e8290f5d19e0a7a6e7f new file mode 100644 index 00000000..63df207d --- /dev/null +++ b/modules/sync/googleapis/googleapis/cas/075087745ce43e41f9c43d2c9131958f8e8a05722fcfe0e2701b5dcef0aa5a32040c2f9feae97a3377004ed88b02551358f5324432af0e8290f5d19e0a7a6e7f @@ -0,0 +1,265 @@ +// Copyright 2025 Google LLC +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +syntax = "proto3"; + +package google.longrunning; + +import "google/api/annotations.proto"; +import "google/api/client.proto"; +import "google/api/field_behavior.proto"; +import "google/protobuf/any.proto"; +import "google/protobuf/descriptor.proto"; +import "google/protobuf/duration.proto"; +import "google/protobuf/empty.proto"; +import "google/rpc/status.proto"; + +option csharp_namespace = "Google.LongRunning"; +option go_package = "cloud.google.com/go/longrunning/autogen/longrunningpb;longrunningpb"; +option java_multiple_files = true; +option java_outer_classname = "OperationsProto"; +option java_package = "com.google.longrunning"; +option objc_class_prefix = "GLRUN"; +option php_namespace = "Google\\LongRunning"; + +extend google.protobuf.MethodOptions { + // Additional information regarding long-running operations. + // In particular, this specifies the types that are returned from + // long-running operations. + // + // Required for methods that return `google.longrunning.Operation`; invalid + // otherwise. + google.longrunning.OperationInfo operation_info = 1049; +} + +// Manages long-running operations with an API service. +// +// When an API method normally takes long time to complete, it can be designed +// to return [Operation][google.longrunning.Operation] to the client, and the +// client can use this interface to receive the real response asynchronously by +// polling the operation resource, or pass the operation resource to another API +// (such as Pub/Sub API) to receive the response. Any API service that returns +// long-running operations should implement the `Operations` interface so +// developers can have a consistent client experience. +service Operations { + option (google.api.default_host) = "longrunning.googleapis.com"; + + // Lists operations that match the specified filter in the request. If the + // server doesn't support this method, it returns `UNIMPLEMENTED`. + rpc ListOperations(ListOperationsRequest) returns (ListOperationsResponse) { + option (google.api.http) = { + get: "/v1/{name=operations}" + }; + option (google.api.method_signature) = "name,filter"; + } + + // Gets the latest state of a long-running operation. Clients can use this + // method to poll the operation result at intervals as recommended by the API + // service. + rpc GetOperation(GetOperationRequest) returns (Operation) { + option (google.api.http) = { + get: "/v1/{name=operations/**}" + }; + option (google.api.method_signature) = "name"; + } + + // Deletes a long-running operation. This method indicates that the client is + // no longer interested in the operation result. It does not cancel the + // operation. If the server doesn't support this method, it returns + // `google.rpc.Code.UNIMPLEMENTED`. + rpc DeleteOperation(DeleteOperationRequest) returns (google.protobuf.Empty) { + option (google.api.http) = { + delete: "/v1/{name=operations/**}" + }; + option (google.api.method_signature) = "name"; + } + + // Starts asynchronous cancellation on a long-running operation. The server + // makes a best effort to cancel the operation, but success is not + // guaranteed. If the server doesn't support this method, it returns + // `google.rpc.Code.UNIMPLEMENTED`. Clients can use + // [Operations.GetOperation][google.longrunning.Operations.GetOperation] or + // other methods to check whether the cancellation succeeded or whether the + // operation completed despite cancellation. On successful cancellation, + // the operation is not deleted; instead, it becomes an operation with + // an [Operation.error][google.longrunning.Operation.error] value with a + // [google.rpc.Status.code][google.rpc.Status.code] of `1`, corresponding to + // `Code.CANCELLED`. + rpc CancelOperation(CancelOperationRequest) returns (google.protobuf.Empty) { + option (google.api.http) = { + post: "/v1/{name=operations/**}:cancel" + body: "*" + }; + option (google.api.method_signature) = "name"; + } + + // Waits until the specified long-running operation is done or reaches at most + // a specified timeout, returning the latest state. If the operation is + // already done, the latest state is immediately returned. If the timeout + // specified is greater than the default HTTP/RPC timeout, the HTTP/RPC + // timeout is used. If the server does not support this method, it returns + // `google.rpc.Code.UNIMPLEMENTED`. + // Note that this method is on a best-effort basis. It may return the latest + // state before the specified timeout (including immediately), meaning even an + // immediate response is no guarantee that the operation is done. + rpc WaitOperation(WaitOperationRequest) returns (Operation) {} +} + +// This resource represents a long-running operation that is the result of a +// network API call. +message Operation { + // The server-assigned name, which is only unique within the same service that + // originally returns it. If you use the default HTTP mapping, the + // `name` should be a resource name ending with `operations/{unique_id}`. + string name = 1; + + // Service-specific metadata associated with the operation. It typically + // contains progress information and common metadata such as create time. + // Some services might not provide such metadata. Any method that returns a + // long-running operation should document the metadata type, if any. + google.protobuf.Any metadata = 2; + + // If the value is `false`, it means the operation is still in progress. + // If `true`, the operation is completed, and either `error` or `response` is + // available. + bool done = 3; + + // The operation result, which can be either an `error` or a valid `response`. + // If `done` == `false`, neither `error` nor `response` is set. + // If `done` == `true`, exactly one of `error` or `response` can be set. + // Some services might not provide the result. + oneof result { + // The error result of the operation in case of failure or cancellation. + google.rpc.Status error = 4; + + // The normal, successful response of the operation. If the original + // method returns no data on success, such as `Delete`, the response is + // `google.protobuf.Empty`. If the original method is standard + // `Get`/`Create`/`Update`, the response should be the resource. For other + // methods, the response should have the type `XxxResponse`, where `Xxx` + // is the original method name. For example, if the original method name + // is `TakeSnapshot()`, the inferred response type is + // `TakeSnapshotResponse`. + google.protobuf.Any response = 5; + } +} + +// The request message for +// [Operations.GetOperation][google.longrunning.Operations.GetOperation]. +message GetOperationRequest { + // The name of the operation resource. + string name = 1; +} + +// The request message for +// [Operations.ListOperations][google.longrunning.Operations.ListOperations]. +message ListOperationsRequest { + // The name of the operation's parent resource. + string name = 4; + + // The standard list filter. + string filter = 1; + + // The standard list page size. + int32 page_size = 2; + + // The standard list page token. + string page_token = 3; + + // When set to `true`, operations that are reachable are returned as normal, + // and those that are unreachable are returned in the + // [ListOperationsResponse.unreachable] field. + // + // This can only be `true` when reading across collections e.g. when `parent` + // is set to `"projects/example/locations/-"`. + // + // This field is not by default supported and will result in an + // `UNIMPLEMENTED` error if set unless explicitly documented otherwise in + // service or product specific documentation. + bool return_partial_success = 5; +} + +// The response message for +// [Operations.ListOperations][google.longrunning.Operations.ListOperations]. +message ListOperationsResponse { + // A list of operations that matches the specified filter in the request. + repeated Operation operations = 1; + + // The standard List next-page token. + string next_page_token = 2; + + // Unordered list. Unreachable resources. Populated when the request sets + // `ListOperationsRequest.return_partial_success` and reads across + // collections e.g. when attempting to list all resources across all supported + // locations. + repeated string unreachable = 3 + [(google.api.field_behavior) = UNORDERED_LIST]; +} + +// The request message for +// [Operations.CancelOperation][google.longrunning.Operations.CancelOperation]. +message CancelOperationRequest { + // The name of the operation resource to be cancelled. + string name = 1; +} + +// The request message for +// [Operations.DeleteOperation][google.longrunning.Operations.DeleteOperation]. +message DeleteOperationRequest { + // The name of the operation resource to be deleted. + string name = 1; +} + +// The request message for +// [Operations.WaitOperation][google.longrunning.Operations.WaitOperation]. +message WaitOperationRequest { + // The name of the operation resource to wait on. + string name = 1; + + // The maximum duration to wait before timing out. If left blank, the wait + // will be at most the time permitted by the underlying HTTP/RPC protocol. + // If RPC context deadline is also specified, the shorter one will be used. + google.protobuf.Duration timeout = 2; +} + +// A message representing the message types used by a long-running operation. +// +// Example: +// +// rpc Export(ExportRequest) returns (google.longrunning.Operation) { +// option (google.longrunning.operation_info) = { +// response_type: "ExportResponse" +// metadata_type: "ExportMetadata" +// }; +// } +message OperationInfo { + // Required. The message name of the primary return type for this + // long-running operation. + // This type will be used to deserialize the LRO's response. + // + // If the response is in a different package from the rpc, a fully-qualified + // message name must be used (e.g. `google.protobuf.Struct`). + // + // Note: Altering this value constitutes a breaking change. + string response_type = 1; + + // Required. The message name of the metadata type for this long-running + // operation. + // + // If the response is in a different package from the rpc, a fully-qualified + // message name must be used (e.g. `google.protobuf.Struct`). + // + // Note: Altering this value constitutes a breaking change. + string metadata_type = 2; +} diff --git a/modules/sync/googleapis/googleapis/cas/b3ac4d383db09f92ab0ca85d12bff8c49eddf7031bd3a854c260b6ac4ed6a2bb85b52b3393c316d28f8038bf3b8e70cb3d16470e8cc4423007678fb6d89d36d4 b/modules/sync/googleapis/googleapis/cas/b3ac4d383db09f92ab0ca85d12bff8c49eddf7031bd3a854c260b6ac4ed6a2bb85b52b3393c316d28f8038bf3b8e70cb3d16470e8cc4423007678fb6d89d36d4 new file mode 100644 index 00000000..93354f9b --- /dev/null +++ b/modules/sync/googleapis/googleapis/cas/b3ac4d383db09f92ab0ca85d12bff8c49eddf7031bd3a854c260b6ac4ed6a2bb85b52b3393c316d28f8038bf3b8e70cb3d16470e8cc4423007678fb6d89d36d4 @@ -0,0 +1,46 @@ +shake256:faedd41bb62749fa9e3e87f183fe58065f0d4ccf60e4d347727c04544ccdd08a43f1703d8f2cd31613fe1a767d63c33b280f34df99eda6ad2b25dfec4c4ead81 LICENSE +shake256:a483c3b87b116f15dedc9b0183ce54ba921720bccf1a90dd85362cdca7312af2891689079874a214d1f9c4c8e50050542a8e3d0cc21f13d9fdae14f9dbf284be buf.md +shake256:b5c1d200e09f9de6dd66a0ab1c03cb0935d347d64bd9c73a3d44b10c1de9b396a30780cb623af34c96681e54a931be5903ad1e20c662cc02017f312db2cd55cf buf.yaml +shake256:787fb3dd972f71d2e6c8efa4491ab950d0fc951e4e53360684e36e54cc8825289b56115f2aa2d39e86374364997be90a1b5569a22befaf61ed01a68a2c479b31 google/api/annotations.proto +shake256:7783ab583c3ffb844faac2d757a35bf3e90acb98550f54c6d79a264faa8e6e47e217f377c4e5b77d79472a34a472d9aeedf371f0fb2cc4ba650c86568084aded google/api/client.proto +shake256:9b9c4c5bd72d6d649da60d3d9b24b16a9535411ce73e47d22c475d2e8437095b2f7cbd8823e8ac7a237838e76daed32124651c6b4144302e45ea143bfb68624b google/api/expr/v1alpha1/checked.proto +shake256:de425c43fbee60514d30321f148481e942a53fbb8619b6d96e46f8969affa38e074f4d9194c21eed7bed2a13964fc61687f0daf6d06999126c39958d33793cb5 google/api/expr/v1alpha1/eval.proto +shake256:b44d8c8de74757e48969d9c6495fa2723b773b6c0e10bafbea5d0f23128c9bcb5982dfa5a4d28185a140287f2d18f4ea4f3745636ba2094f2c529738b5e88956 google/api/expr/v1alpha1/explain.proto +shake256:e2fefad26ca4981dc4e48ca80a02b4abc54a8b8c959bc24e67f045ed31b3d2a4b86e959879c0ecde4682b304c8979814ebf92409606cf2b265c4f2a0b36935a0 google/api/expr/v1alpha1/syntax.proto +shake256:136a91d18a0eef68cea1ffb3b953bb36b2ccf16566fee27de0632a9e0102847946335f5a66c6ea22ceba1b1359fbb49381d01ff3eb34b91f813853e4e4a047f3 google/api/expr/v1alpha1/value.proto +shake256:122f61655f22a652ba9b21b958aa2ab9f0271dc5643ac9fd56aba35bc242401434774dcab17d1959731a2a8cea4e5cf5733db85e7ff00fb2c06b376b328a1abb google/api/expr/v1beta1/decl.proto +shake256:104865cd0455f290a67e205a7ff6dc31813149e04ccb8c53628d4af3e27d5f3996c6fcc014370d85e04baa15abee4a58ac62c9b75d018c5d8ee7133b2b642adc google/api/expr/v1beta1/eval.proto +shake256:11074bddc428e42e2ff38c450d8f4c3c79d2da3eba92f0cc824101f518b647be9a3805600303d2776f9fbd47a0c7e4e9687983f7f7422e4c437653e9ca49147d google/api/expr/v1beta1/expr.proto +shake256:7d4d476c25793cb3933057ce4c919940e945c505d9e631a7a7e26f7e065883f65649299928d8128a1dbd5524fd5cf0ae1ddcbb70826428ca91703f0160e8a646 google/api/expr/v1beta1/source.proto +shake256:10e42edbba83eed94ba590703bbd5455ac9fe7316c3b1543d9d8098871a3f5889b73473af8e7b09e891ee98253df588da31b42ac99ecd82a9bdf95eacbad77a3 google/api/expr/v1beta1/value.proto +shake256:6ca503d9098e54b830d80d00d773fced6d397105ff585f3d54754dafc054da2d4b63fe28f0a0237d8f4c463a424dfebb4f4af0cd8ef6d646e1e07ce2bb712151 google/api/field_behavior.proto +shake256:148aff9321abff4590a24298d95b5014c678fe3ef0095f66e01ef629a48592c4ff3caa3e57f0d9796e5c295365a0c925da5f3496e329d4c7be11d0c180a63fc8 google/api/field_info.proto +shake256:d3b1c017f463d0feba5f3ad2542a848dbbb579a529ca5cf87c31998524a130e018ae7f49068e548c8f8d8ad65531ae62d39e20e6295dd1dea602d7f82c566e35 google/api/http.proto +shake256:dd6d973319995ee38cd9a7f2ca4136fcc2016f99340a527716ad5db7a00dfabb235e2a76faa492c7ef3450b2e8bd787166733d406ca325a4b0cc87ff76aa79e9 google/api/httpbody.proto +shake256:84597758baf393c3e41840afb380a7e045c37aaf408242b10d8b81dab81a574266304dc1abaac66d438764b05348e42a576fc48bd0434360184e842e5ea87847 google/api/launch_stage.proto +shake256:c4f77a2faceba9735de7ddc051e60d4723f56465215fa10397ffb91e5cc9b73b622869ecea3bfd3caa6d50559ef2198888dfad80c332c34ef75061c6586b8179 google/api/resource.proto +shake256:a35ddced9302bb599347345b4152bcde905a1c10d7226cd0f6118770a4ce421794a85be6fb2e8ca5544b2390d840204517829a9ad1b7edcbe5ed65c22daecc4e google/api/visibility.proto +shake256:783e49a0b711efa5b0327edabaaaf3720eb2c9f16b7544f3073c368ab8dfe93c4d20973ce9b125728e8d58a994777d372d05ea2880215285c38f176e6f63494f google/bytestream/bytestream.proto +shake256:fa78a9954d3747c0150d19673e5a58023982572222230e4f90bc0a246e278c6b56e0adc10d83e7cdf526160078c21306c98fa728485882da421af6e496776d3e google/geo/type/viewport.proto +shake256:075087745ce43e41f9c43d2c9131958f8e8a05722fcfe0e2701b5dcef0aa5a32040c2f9feae97a3377004ed88b02551358f5324432af0e8290f5d19e0a7a6e7f google/longrunning/operations.proto +shake256:9e88d524728053544d09dace4e0ed1a3196f804de186bcd61d0460bbbc1806b1b2312da9fe186f786ce231f8c79823d4643e1e6adb31c4c40a61dd63aea7f394 google/rpc/code.proto +shake256:50f76a3026a61a7a8f2fb9d4aa05f0bda0a5990e273047758e2b1c0495e2b5800d896b50513c39f8bfde8000c45a4347a8e9c279eb9427851bea56b4740d566c google/rpc/context/attribute_context.proto +shake256:fb9b27176689332fcef4b96f6cf1fd8e0ca3567e7d0b46b6ae210cb3aef4649b4d67c6d851f7546f9626a8fac3001d53307fb4a8499f1e1fa39487f9d1d5429b google/rpc/error_details.proto +shake256:f6cab4ab90aa4be34c8a43e90d00252b70c9813443c2135df6924dd98575002152354ccc4a152b8347c97e84d99216a2e13a7346270418f7726302b2c6f7c22f google/rpc/status.proto +shake256:166440440c1bd594766f6a92c2c1cf2aa1f58d348e1f7febcbd0417f3057a1bcc750c157cd0655da714ecc42c23a1bcf27af95636e09cc27e7917569b76936e9 google/type/calendar_period.proto +shake256:67ead0f2a71a03464e81a0655a5ddb0eea3008cfeb06c92c7350c3fac147e72a18457ee746b2fa501bafe165c45e78dadc7cf54536b3b2a8840199658a200dcb google/type/color.proto +shake256:269c0230c83092a8ccaa4f0d9ac9d3edafa744feb84ee71a419e5ea3bb3e5a43197ebd0afe96421b8bdd6af4db3e0508854c3fa09d2b2269318542149428de25 google/type/date.proto +shake256:cc278b6cb6fffadb8f4e85bdc30084c39ebd72245eed3d1444845d797b8f56edaf442f54990dbae7d7d907355844e9a0588fd63b4fe358b1c2b82ada4e68d9b4 google/type/datetime.proto +shake256:18bbe6c9926632870a902c8b13cf7a81ee7e488ddb80e0de77eb65adde31cc4e61c0235e9711b4ab2db92a62bdae9c9361edad92315dde6fb85b599212037b8c google/type/dayofweek.proto +shake256:dbdb8bca1e0d4652556b0f725cb8b75f1d1ebcb3214ec0b7dde2c0fbbdea9d8327e5e13c9c9bdc7e1c45b1c09f370b3c430172de5cb8595dee6982ae12519c37 google/type/decimal.proto +shake256:e414090b3a9b2b57164f6d4496085d37ac301277b77d578b4c637d14e76806e958ae1dddc120171ba6622ff8888f8958ec5414ea89ed856ee04a92b4ff6a231d google/type/expr.proto +shake256:9ee5ea8082fa3866e43f3514444c589ee8bc07d8ba98c9829d5d33a002d8dc7b83a3f17c67fdcbaea1ef4f04104d50fbf4c19ae107024d3ec8f862253a9a2477 google/type/fraction.proto +shake256:7fe215c1c4987ecbfe761c6f8aaea68fc95e7ed311dfa4222cc056cbffbb9cc3cd1662e802fcc9d10e46c3636e7ce7463ff56f5f3fd45596d09d673df39231ae google/type/interval.proto +shake256:4c3c5c425ae8d1c81a3c75e4cdaf803fa73ead53deea4bbb0d1497a987b5a8983dd30d1584b4c1e2d044140a044618afe7eb70fd1ac6a4c920442894ee5be23e google/type/latlng.proto +shake256:3fa2c38707aed3300e70902934a55630bbc40686b1ea24c8b8cca5713add09087c65b6f91a365982d6ef02098a3c852a4196c94dc0c21fba5008b7341eaaad5c google/type/localized_text.proto +shake256:c296ea64cacbb5f333edf4ac50401026dcdc270e5faa0747636aaef8a37ba3e057c6fe2f7cff6adbce319443867d6dcd6ea175bc2e1583eb5a5117383e70cb6d google/type/money.proto +shake256:7ba5652d7b0d41b72a02103b3164d247937b176a3c98744a1f345348c67e5a53a5cd673edf57646b7b12fde5afed40f480432bf5a80f24d3fbe32729192828e1 google/type/month.proto +shake256:890e1c545bc37b30f69f2811f0982504c5aae66f73fdd90efc2aabd504fa254177205a944b41b3bb517acb43c8ab73ca8e922139fb1cd0561a0928ee09c73bc3 google/type/phone_number.proto +shake256:3191b0134da95315759c395e666bf891572d230fcbed1870dc0f078bba50f15ebafd6523a49e9000fa5844ad4afcbbfceafa50e58572425befdb02ce7387a144 google/type/postal_address.proto +shake256:30d772d9165b775d2f3daa757ec7048f15c4ce4bd05f7938395380868b6fdb233f57ad372148eedbaa3419c7e9cb1c5f03daa3ce75b310a74b4760ee3d0b6b49 google/type/quaternion.proto +shake256:05356f4e98446d07e8a42181c3859ed2ea6ddc2dbb8c89d1e70b8487d0279b271e5a8086bc50619634fe376b0945a2731b552d4997b2a2d80d95a2851f1df281 google/type/timeofday.proto diff --git a/modules/sync/googleapis/googleapis/state.json b/modules/sync/googleapis/googleapis/state.json index ea5b9c32..ed26ac25 100644 --- a/modules/sync/googleapis/googleapis/state.json +++ b/modules/sync/googleapis/googleapis/state.json @@ -20287,6 +20287,70 @@ { "name": "2193a2bfcecb92b92aad7a4d81baa428cafd7dfd", "digest": "e619113001d6e284ee8a92b1561e5d4ea89a47b28bf0410815cb2fa23914df8be9f1a6a98dcf069f5bc2d829a2cfb1ac614863be45cd4f8a5ad8606c5f200224" + }, + { + "name": "2e9cd5b62464a88f3317a7b6aec2e92c47b86629", + "digest": "e619113001d6e284ee8a92b1561e5d4ea89a47b28bf0410815cb2fa23914df8be9f1a6a98dcf069f5bc2d829a2cfb1ac614863be45cd4f8a5ad8606c5f200224" + }, + { + "name": "7f0c1e5d7a45598b92d2f08e02000f005b757194", + "digest": "e619113001d6e284ee8a92b1561e5d4ea89a47b28bf0410815cb2fa23914df8be9f1a6a98dcf069f5bc2d829a2cfb1ac614863be45cd4f8a5ad8606c5f200224" + }, + { + "name": "f2c6bca4357152d27d238159cd1cf7ddedb659c9", + "digest": "e619113001d6e284ee8a92b1561e5d4ea89a47b28bf0410815cb2fa23914df8be9f1a6a98dcf069f5bc2d829a2cfb1ac614863be45cd4f8a5ad8606c5f200224" + }, + { + "name": "1b141494162fee2993345d056cf709ebf1d0402c", + "digest": "b3ac4d383db09f92ab0ca85d12bff8c49eddf7031bd3a854c260b6ac4ed6a2bb85b52b3393c316d28f8038bf3b8e70cb3d16470e8cc4423007678fb6d89d36d4" + }, + { + "name": "a53e1e09d16d311ff6064d237abed3ddd7a5d1fe", + "digest": "b3ac4d383db09f92ab0ca85d12bff8c49eddf7031bd3a854c260b6ac4ed6a2bb85b52b3393c316d28f8038bf3b8e70cb3d16470e8cc4423007678fb6d89d36d4" + }, + { + "name": "6e79e73204aed17b11e724beebb9cf11f36ea57d", + "digest": "b3ac4d383db09f92ab0ca85d12bff8c49eddf7031bd3a854c260b6ac4ed6a2bb85b52b3393c316d28f8038bf3b8e70cb3d16470e8cc4423007678fb6d89d36d4" + }, + { + "name": "c1c2f3e01e494b6fa004ff543cec2a8d84120717", + "digest": "b3ac4d383db09f92ab0ca85d12bff8c49eddf7031bd3a854c260b6ac4ed6a2bb85b52b3393c316d28f8038bf3b8e70cb3d16470e8cc4423007678fb6d89d36d4" + }, + { + "name": "e09f19ac81db6c064f1d20d02d47752cb340104a", + "digest": "b3ac4d383db09f92ab0ca85d12bff8c49eddf7031bd3a854c260b6ac4ed6a2bb85b52b3393c316d28f8038bf3b8e70cb3d16470e8cc4423007678fb6d89d36d4" + }, + { + "name": "d9a16f2feec3d0f03899e48007a02ce154fc919d", + "digest": "b3ac4d383db09f92ab0ca85d12bff8c49eddf7031bd3a854c260b6ac4ed6a2bb85b52b3393c316d28f8038bf3b8e70cb3d16470e8cc4423007678fb6d89d36d4" + }, + { + "name": "2954ae6003c9cfb49ef49c4cbc2e12dc43a97546", + "digest": "b3ac4d383db09f92ab0ca85d12bff8c49eddf7031bd3a854c260b6ac4ed6a2bb85b52b3393c316d28f8038bf3b8e70cb3d16470e8cc4423007678fb6d89d36d4" + }, + { + "name": "d06cf27a47074d1de3fde6f0ca48680a96229306", + "digest": "b3ac4d383db09f92ab0ca85d12bff8c49eddf7031bd3a854c260b6ac4ed6a2bb85b52b3393c316d28f8038bf3b8e70cb3d16470e8cc4423007678fb6d89d36d4" + }, + { + "name": "50a2632056a4678661e5ee309ceb83d00f5ddbf5", + "digest": "b3ac4d383db09f92ab0ca85d12bff8c49eddf7031bd3a854c260b6ac4ed6a2bb85b52b3393c316d28f8038bf3b8e70cb3d16470e8cc4423007678fb6d89d36d4" + }, + { + "name": "1a87094dab8a6f051433c517a2418aee522655f4", + "digest": "b3ac4d383db09f92ab0ca85d12bff8c49eddf7031bd3a854c260b6ac4ed6a2bb85b52b3393c316d28f8038bf3b8e70cb3d16470e8cc4423007678fb6d89d36d4" + }, + { + "name": "4d8abb3f02f14d2906b2bb1f478e17afd95ec4fc", + "digest": "b3ac4d383db09f92ab0ca85d12bff8c49eddf7031bd3a854c260b6ac4ed6a2bb85b52b3393c316d28f8038bf3b8e70cb3d16470e8cc4423007678fb6d89d36d4" + }, + { + "name": "7b2b58ff4fb3eee3c0923af35fdee90134fabe3b", + "digest": "b3ac4d383db09f92ab0ca85d12bff8c49eddf7031bd3a854c260b6ac4ed6a2bb85b52b3393c316d28f8038bf3b8e70cb3d16470e8cc4423007678fb6d89d36d4" + }, + { + "name": "7186b66aac6d5b1f9eec99d394e472d216e4ff73", + "digest": "b3ac4d383db09f92ab0ca85d12bff8c49eddf7031bd3a854c260b6ac4ed6a2bb85b52b3393c316d28f8038bf3b8e70cb3d16470e8cc4423007678fb6d89d36d4" } ] } \ No newline at end of file diff --git a/modules/sync/state.json b/modules/sync/state.json index 75102244..1adf2fa6 100644 --- a/modules/sync/state.json +++ b/modules/sync/state.json @@ -42,7 +42,7 @@ }, { "module_name": "googleapis/googleapis", - "latest_reference": "2193a2bfcecb92b92aad7a4d81baa428cafd7dfd" + "latest_reference": "7186b66aac6d5b1f9eec99d394e472d216e4ff73" }, { "module_name": "googlechrome/lighthouse",