Skip to content

Commit d0bc36b

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

File tree

1 file changed

+3
-3
lines changed
  • packages/google-cloud-oslogin/src

1 file changed

+3
-3
lines changed

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

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

19-
import * as v1beta from './v1beta';
2019
import * as v1 from './v1';
20+
import * as v1beta from './v1beta';
2121

2222
const OsLoginServiceClient = v1.OsLoginServiceClient;
2323
type OsLoginServiceClient = v1.OsLoginServiceClient;
2424

25-
export {v1beta, v1, OsLoginServiceClient};
26-
export default {v1beta, v1, OsLoginServiceClient};
25+
export {v1, v1beta, OsLoginServiceClient};
26+
export default {v1, v1beta, OsLoginServiceClient};
2727
import * as protos from '../protos/protos';
2828
export {protos};

0 commit comments

Comments
 (0)