Skip to content

Commit

Permalink
chore: make generate_index_ts() deterministic (#49)
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] authored May 29, 2021
1 parent ce95231 commit 6c34d8d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/google-cloud-websecurityscanner/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@
// ** 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';
import * as v1beta from './v1beta';

const WebSecurityScannerClient = v1beta.WebSecurityScannerClient;
type WebSecurityScannerClient = v1beta.WebSecurityScannerClient;

export {v1alpha, v1, v1beta, WebSecurityScannerClient};
export default {v1alpha, v1, v1beta, WebSecurityScannerClient};
export {v1, v1alpha, v1beta, WebSecurityScannerClient};
export default {v1, v1alpha, v1beta, WebSecurityScannerClient};
import * as protos from '../protos/protos';
export {protos};

0 comments on commit 6c34d8d

Please sign in to comment.