Skip to content

Commit cccc7d5

Browse files
authored
build: fix package name, rerun synthtool (#16)
1 parent 8b9ba8f commit cccc7d5

File tree

8 files changed

+13
-121
lines changed

8 files changed

+13
-121
lines changed

packages/google-devtools-artifactregistry/.jsdoc.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ module.exports = {
4343
copyright: 'Copyright 2021 Google LLC',
4444
includeDate: false,
4545
sourceFiles: false,
46-
systemName: 'artifactregistry',
46+
systemName: '@google-cloud/artifact-registry',
4747
theme: 'lumen',
4848
default: {
4949
outputSourceFiles: false

packages/google-devtools-artifactregistry/protos/protos.d.ts

+1-14
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/google-devtools-artifactregistry/protos/protos.js

+1-84
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/google-devtools-artifactregistry/protos/protos.json

+2-14
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/google-devtools-artifactregistry/src/v1beta2/gapic_metadata.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"comment": "This file maps proto services/RPCs to the corresponding library clients/methods",
44
"language": "typescript",
55
"protoPackage": "google.devtools.artifactregistry.v1beta2",
6-
"libraryPackage": "artifactregistry",
6+
"libraryPackage": "@google-cloud/artifact-registry",
77
"services": {
88
"ArtifactRegistry": {
99
"clients": {

packages/google-devtools-artifactregistry/synth.metadata

+5-5
Original file line numberDiff line numberDiff line change
@@ -3,23 +3,23 @@
33
{
44
"git": {
55
"name": ".",
6-
"remote": "https://github.com/googleapis/nodejs-artifact-registry.git",
7-
"sha": "b33d4661cea3deae6e625c3b69faac179307aaa4"
6+
"remote": "git@github.com:googleapis/nodejs-artifact-registry.git",
7+
"sha": "d26e985a0d54a8ef51ce1d862d71007588a6fd9b"
88
}
99
},
1010
{
1111
"git": {
1212
"name": "googleapis",
1313
"remote": "https://github.com/googleapis/googleapis.git",
14-
"sha": "16e91be3603953bcfc0f87aa369e3eb7d1b2cbaf",
15-
"internalRef": "345608665"
14+
"sha": "80fafbce83f1d95c3616c7b3f50504a4ad251bfd",
15+
"internalRef": "359594504"
1616
}
1717
},
1818
{
1919
"git": {
2020
"name": "synthtool",
2121
"remote": "https://github.com/googleapis/synthtool.git",
22-
"sha": "318e351e26ba65b2b3cfa3f61b3b64e3540c3525"
22+
"sha": "8c5628b86cfa8386de7b8fc1675e6b528b552d57"
2323
}
2424
}
2525
],

packages/google-devtools-artifactregistry/system-test/fixtures/sample/src/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
// ** All changes to this file may be overwritten. **
1818

1919
/* eslint-disable node/no-missing-require, no-unused-vars */
20-
const artifactregistry = require('artifactregistry');
20+
const artifactregistry = require('@google-cloud/artifact-registry');
2121

2222
function main() {
2323
const artifactRegistryClient = new artifactregistry.ArtifactRegistryClient();

packages/google-devtools-artifactregistry/system-test/fixtures/sample/src/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
// ** https://github.com/googleapis/gapic-generator-typescript **
1717
// ** All changes to this file may be overwritten. **
1818

19-
import {ArtifactRegistryClient} from 'artifactregistry';
19+
import {ArtifactRegistryClient} from '@google-cloud/artifact-registry';
2020

2121
// check that the client class type name can be used
2222
function doStuffWithArtifactRegistryClient(client: ArtifactRegistryClient) {

0 commit comments

Comments
 (0)