Skip to content

Commit

Permalink
chore: make generate_index_ts() deterministic (#496)
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 5f3d634 commit 602b698
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions packages/google-cloud-asset/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,22 +16,22 @@
// ** https://github.com/googleapis/synthtool **
// ** All changes to this file may be overwritten. **

import * as v1 from './v1';
import * as v1p1beta1 from './v1p1beta1';
import * as v1p2beta1 from './v1p2beta1';
import * as v1p4beta1 from './v1p4beta1';
import * as v1p5beta1 from './v1p5beta1';
import * as v1p2beta1 from './v1p2beta1';
import * as v1p1beta1 from './v1p1beta1';
import * as v1 from './v1';

const AssetServiceClient = v1.AssetServiceClient;
type AssetServiceClient = v1.AssetServiceClient;

export {v1p4beta1, v1p5beta1, v1p2beta1, v1p1beta1, v1, AssetServiceClient};
export {v1, v1p1beta1, v1p2beta1, v1p4beta1, v1p5beta1, AssetServiceClient};
export default {
v1,
v1p1beta1,
v1p2beta1,
v1p4beta1,
v1p5beta1,
v1p2beta1,
v1p1beta1,
v1,
AssetServiceClient,
};
import * as protos from '../protos/protos';
Expand Down

0 comments on commit 602b698

Please sign in to comment.