From 7c8667c9f994c2b4773737e9a35c7def9f3cec91 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:12 +0000 Subject: [PATCH] chore: make generate_index_ts() deterministic (#369) 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-scheduler/src/index.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/google-cloud-scheduler/src/index.ts b/packages/google-cloud-scheduler/src/index.ts index f13563404b4..e41cac38954 100644 --- a/packages/google-cloud-scheduler/src/index.ts +++ b/packages/google-cloud-scheduler/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 CloudSchedulerClient = v1.CloudSchedulerClient; type CloudSchedulerClient = v1.CloudSchedulerClient; -export {v1beta1, v1, CloudSchedulerClient}; -export default {v1beta1, v1, CloudSchedulerClient}; +export {v1, v1beta1, CloudSchedulerClient}; +export default {v1, v1beta1, CloudSchedulerClient}; import * as protos from '../protos/protos'; export {protos};