Skip to content
This repository has been archived by the owner on Dec 19, 2023. It is now read-only.

Commit

Permalink
fix: make generate_index_ts() deterministic (#1104)
Browse files Browse the repository at this point in the history
Fixes googleapis/synthtool#1103
Source-Link: googleapis/synthtool@c3e41da
Post-Processor: gcr.io/repo-automation-bots/owlbot-nodejs:latest@sha256:e37a815333a6f3e14d8532efe90cba8aa0d34210f8c0fdbdd9e6a34dcbe51e96
  • Loading branch information
gcf-owl-bot[bot] committed May 27, 2021
1 parent 5e9a78e commit 62c4251
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/.OwlBot.lock.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
docker:
image: gcr.io/repo-automation-bots/owlbot-nodejs:latest
digest: sha256:f4734af778c3d0eb58a6db0078907a87f2e53f3c7a6422363fc37ee52e02b25a
digest: sha256:e37a815333a6f3e14d8532efe90cba8aa0d34210f8c0fdbdd9e6a34dcbe51e96
6 changes: 3 additions & 3 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 TextToSpeechClient = v1.TextToSpeechClient;
type TextToSpeechClient = v1.TextToSpeechClient;

export {v1beta1, v1, TextToSpeechClient};
export default {v1beta1, v1, TextToSpeechClient};
export {v1, v1beta1, TextToSpeechClient};
export default {v1, v1beta1, TextToSpeechClient};
import * as protos from '../protos/protos';
export {protos};

0 comments on commit 62c4251

Please sign in to comment.