From 4e6f1e802046a3fbea5d84415015a73e4e4e4f6f 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 (#110) 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-osconfig/src/index.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/google-cloud-osconfig/src/index.ts b/packages/google-cloud-osconfig/src/index.ts index 2f5b7e6c190..0035f7ef758 100644 --- a/packages/google-cloud-osconfig/src/index.ts +++ b/packages/google-cloud-osconfig/src/index.ts @@ -16,13 +16,13 @@ // ** https://github.com/googleapis/synthtool ** // ** All changes to this file may be overwritten. ** -import * as v1alpha from './v1alpha'; import * as v1 from './v1'; +import * as v1alpha from './v1alpha'; const OsConfigServiceClient = v1.OsConfigServiceClient; type OsConfigServiceClient = v1.OsConfigServiceClient; -export {v1alpha, v1, OsConfigServiceClient}; -export default {v1alpha, v1, OsConfigServiceClient}; +export {v1, v1alpha, OsConfigServiceClient}; +export default {v1, v1alpha, OsConfigServiceClient}; import * as protos from '../protos/protos'; export {protos};