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

chore: make generate_index_ts() deterministic #124

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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,8 +16,8 @@
// ** https://github.com/googleapis/synthtool **
// ** All changes to this file may be overwritten. **

import * as v3beta1 from './v3beta1';
import * as v3 from './v3';
import * as v3beta1 from './v3beta1';

const AgentsClient = v3.AgentsClient;
type AgentsClient = v3.AgentsClient;
Expand Down Expand Up @@ -49,8 +49,8 @@ const WebhooksClient = v3.WebhooksClient;
type WebhooksClient = v3.WebhooksClient;

export {
v3beta1,
v3,
v3beta1,
AgentsClient,
EntityTypesClient,
EnvironmentsClient,
Expand All @@ -67,8 +67,8 @@ export {
WebhooksClient,
};
export default {
v3beta1,
v3,
v3beta1,
AgentsClient,
EntityTypesClient,
EnvironmentsClient,
Expand Down