From 86dd91d50f1aa6337f25b7797d94468501e58d01 Mon Sep 17 00:00:00 2001 From: Owl Bot Date: Thu, 27 May 2021 23:08:04 +0000 Subject: [PATCH] fix: make `generate_index_ts()` deterministic (#1104) 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 --- .github/.OwlBot.lock.yaml | 2 +- src/index.ts | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/.OwlBot.lock.yaml b/.github/.OwlBot.lock.yaml index 043a606..4b151b1 100644 --- a/.github/.OwlBot.lock.yaml +++ b/.github/.OwlBot.lock.yaml @@ -1,3 +1,3 @@ docker: image: gcr.io/repo-automation-bots/owlbot-nodejs:latest - digest: sha256:f4734af778c3d0eb58a6db0078907a87f2e53f3c7a6422363fc37ee52e02b25a + digest: sha256:e37a815333a6f3e14d8532efe90cba8aa0d34210f8c0fdbdd9e6a34dcbe51e96 diff --git a/src/index.ts b/src/index.ts index 48e5381..021aa3b 100644 --- a/src/index.ts +++ b/src/index.ts @@ -16,13 +16,13 @@ // ** https://github.com/googleapis/synthtool ** // ** All changes to this file may be overwritten. ** -import * as v1beta1 from './v1beta1'; import * as v1 from './v1'; +import * as v1beta1 from './v1beta1'; const RecaptchaEnterpriseServiceClient = v1.RecaptchaEnterpriseServiceClient; type RecaptchaEnterpriseServiceClient = v1.RecaptchaEnterpriseServiceClient; -export {v1beta1, v1, RecaptchaEnterpriseServiceClient}; -export default {v1beta1, v1, RecaptchaEnterpriseServiceClient}; +export {v1, v1beta1, RecaptchaEnterpriseServiceClient}; +export default {v1, v1beta1, RecaptchaEnterpriseServiceClient}; import * as protos from '../protos/protos'; export {protos};