Skip to content

Commit 327a963

Browse files
chore: make generate_index_ts() deterministic (#496)
Fixes googleapis/synthtool#1103 Source-Link: googleapis/synthtool@c3e41da Post-Processor: gcr.io/repo-automation-bots/owlbot-nodejs:latest@sha256:e37a815333a6f3e14d8532efe90cba8aa0d34210f8c0fdbdd9e6a34dcbe51e96
1 parent e810f12 commit 327a963

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

packages/google-cloud-asset/src/index.ts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,22 +16,22 @@
1616
// ** https://github.com/googleapis/synthtool **
1717
// ** All changes to this file may be overwritten. **
1818

19+
import * as v1 from './v1';
20+
import * as v1p1beta1 from './v1p1beta1';
21+
import * as v1p2beta1 from './v1p2beta1';
1922
import * as v1p4beta1 from './v1p4beta1';
2023
import * as v1p5beta1 from './v1p5beta1';
21-
import * as v1p2beta1 from './v1p2beta1';
22-
import * as v1p1beta1 from './v1p1beta1';
23-
import * as v1 from './v1';
2424

2525
const AssetServiceClient = v1.AssetServiceClient;
2626
type AssetServiceClient = v1.AssetServiceClient;
2727

28-
export {v1p4beta1, v1p5beta1, v1p2beta1, v1p1beta1, v1, AssetServiceClient};
28+
export {v1, v1p1beta1, v1p2beta1, v1p4beta1, v1p5beta1, AssetServiceClient};
2929
export default {
30+
v1,
31+
v1p1beta1,
32+
v1p2beta1,
3033
v1p4beta1,
3134
v1p5beta1,
32-
v1p2beta1,
33-
v1p1beta1,
34-
v1,
3535
AssetServiceClient,
3636
};
3737
import * as protos from '../protos/protos';

0 commit comments

Comments
 (0)