From d48e2f83b28d92fb39665a70178f0e64948268a0 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:52:09 +0000 Subject: [PATCH] chore: make generate_index_ts() deterministic (#451) 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 --- packages/google-cloud-oslogin/src/index.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/google-cloud-oslogin/src/index.ts b/packages/google-cloud-oslogin/src/index.ts index df0c9ee9e242..433e819d12e2 100644 --- a/packages/google-cloud-oslogin/src/index.ts +++ b/packages/google-cloud-oslogin/src/index.ts @@ -16,13 +16,13 @@ // ** https://github.com/googleapis/synthtool ** // ** All changes to this file may be overwritten. ** -import * as v1beta from './v1beta'; import * as v1 from './v1'; +import * as v1beta from './v1beta'; const OsLoginServiceClient = v1.OsLoginServiceClient; type OsLoginServiceClient = v1.OsLoginServiceClient; -export {v1beta, v1, OsLoginServiceClient}; -export default {v1beta, v1, OsLoginServiceClient}; +export {v1, v1beta, OsLoginServiceClient}; +export default {v1, v1beta, OsLoginServiceClient}; import * as protos from '../protos/protos'; export {protos};