From 0e55524febe71d01f60a9f648f115d19b9393efe Mon Sep 17 00:00:00 2001 From: "gcf-owl-bot[bot]" <78513119+gcf-owl-bot[bot]@users.noreply.github.com> Date: Sat, 29 May 2021 20:54:04 +0000 Subject: [PATCH] chore: make generate_index_ts() deterministic (#558) Fixes https://github.com/googleapis/synthtool/issues/1103 Source-Link: https://github.com/googleapis/synthtool/commit/c3e41da0fa256ad7f6b4bc76b9d069dedecdfef4 Post-Processor: gcr.io/repo-automation-bots/owlbot-nodejs:latest@sha256:e37a815333a6f3e14d8532efe90cba8aa0d34210f8c0fdbdd9e6a34dcbe51e96 --- .../src/index.ts | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/packages/google-cloud-videointelligence/src/index.ts b/packages/google-cloud-videointelligence/src/index.ts index efb3f709ff6..b8426bb62e6 100644 --- a/packages/google-cloud-videointelligence/src/index.ts +++ b/packages/google-cloud-videointelligence/src/index.ts @@ -16,29 +16,29 @@ // ** https://github.com/googleapis/synthtool ** // ** All changes to this file may be overwritten. ** +import * as v1 from './v1'; import * as v1beta2 from './v1beta2'; -import * as v1p3beta1 from './v1p3beta1'; -import * as v1p2beta1 from './v1p2beta1'; import * as v1p1beta1 from './v1p1beta1'; -import * as v1 from './v1'; +import * as v1p2beta1 from './v1p2beta1'; +import * as v1p3beta1 from './v1p3beta1'; const VideoIntelligenceServiceClient = v1.VideoIntelligenceServiceClient; type VideoIntelligenceServiceClient = v1.VideoIntelligenceServiceClient; export { + v1, v1beta2, - v1p3beta1, - v1p2beta1, v1p1beta1, - v1, + v1p2beta1, + v1p3beta1, VideoIntelligenceServiceClient, }; export default { + v1, v1beta2, - v1p3beta1, - v1p2beta1, v1p1beta1, - v1, + v1p2beta1, + v1p3beta1, VideoIntelligenceServiceClient, }; import * as protos from '../protos/protos';