Skip to content

Commit

Permalink
Merge pull request #3564 from googleapis/nodejs-area120-tables-migration
Browse files Browse the repository at this point in the history
migrate code from googleapis/nodejs-area120-tables
  • Loading branch information
sofisl authored Nov 18, 2022
2 parents 00f7bbc + c273956 commit f1b7b9f
Show file tree
Hide file tree
Showing 53 changed files with 35,927 additions and 0 deletions.
1 change: 1 addition & 0 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"packages/gapic-node-templating": "0.0.0",
"packages/google-analytics-data": "3.1.1",
"packages/google-api-apikeys": "0.1.3",
"packages/google-area120-tables": "2.1.2",
"packages/google-api-servicecontrol": "2.0.3",
"packages/google-api-servicemanagement": "1.1.3",
"packages/google-api-serviceusage": "2.1.2",
Expand Down
23 changes: 23 additions & 0 deletions packages/google-area120-tables/.OwlBot.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Copyright 2021 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

deep-remove-regex:
- /owl-bot-staging

deep-copy-regex:
- source: /google/area120/tables/(.*)/.*-nodejs
dest: /owl-bot-staging/google-area120-tables/$1

begin-after-commit-hash: fb91803ccef5d7c695139b22788b309e2197856b

7 changes: 7 additions & 0 deletions packages/google-area120-tables/.eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
**/node_modules
**/coverage
test/fixtures
build/
docs/
protos/
samples/generated/
3 changes: 3 additions & 0 deletions packages/google-area120-tables/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"extends": "./node_modules/gts"
}
4 changes: 4 additions & 0 deletions packages/google-area120-tables/.gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
*.ts text eol=lf
*.js text eol=lf
protos/* linguist-generated
**/api-extractor.json linguist-language=JSON-with-Comments
14 changes: 14 additions & 0 deletions packages/google-area120-tables/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
**/*.log
**/node_modules
.coverage
coverage
.nyc_output
docs/
out/
build/
system-test/secrets.js
system-test/*key.json
*.lock
.DS_Store
package-lock.json
__pycache__
55 changes: 55 additions & 0 deletions packages/google-area120-tables/.jsdoc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
// Copyright 2022 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
// ** This file is automatically generated by gapic-generator-typescript. **
// ** https://github.com/googleapis/gapic-generator-typescript **
// ** All changes to this file may be overwritten. **

'use strict';

module.exports = {
opts: {
readme: './README.md',
package: './package.json',
template: './node_modules/jsdoc-fresh',
recurse: true,
verbose: true,
destination: './docs/'
},
plugins: [
'plugins/markdown',
'jsdoc-region-tag'
],
source: {
excludePattern: '(^|\\/|\\\\)[._]',
include: [
'build/src',
'protos'
],
includePattern: '\\.js$'
},
templates: {
copyright: 'Copyright 2022 Google LLC',
includeDate: false,
sourceFiles: false,
systemName: '@google/area120-tables',
theme: 'lumen',
default: {
outputSourceFiles: false
}
},
markdown: {
idInHeadings: true
}
};
29 changes: 29 additions & 0 deletions packages/google-area120-tables/.mocharc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
// Copyright 2022 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
const config = {
"enable-source-maps": true,
"throw-deprecation": true,
"timeout": 10000,
"recursive": true
}
if (process.env.MOCHA_THROW_DEPRECATION === 'false') {
delete config['throw-deprecation'];
}
if (process.env.MOCHA_REPORTER) {
config.reporter = process.env.MOCHA_REPORTER;
}
if (process.env.MOCHA_REPORTER_OUTPUT) {
config['reporter-option'] = `output=${process.env.MOCHA_REPORTER_OUTPUT}`;
}
module.exports = config
24 changes: 24 additions & 0 deletions packages/google-area120-tables/.nycrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"report-dir": "./.coverage",
"reporter": ["text", "lcov"],
"exclude": [
"**/*-test",
"**/.coverage",
"**/apis",
"**/benchmark",
"**/conformance",
"**/docs",
"**/samples",
"**/scripts",
"**/protos",
"**/test",
"**/*.d.ts",
".jsdoc.js",
"**/.jsdoc.js",
"karma.conf.js",
"webpack-tests.config.js",
"webpack.config.js"
],
"exclude-after-remap": false,
"all": true
}
6 changes: 6 additions & 0 deletions packages/google-area120-tables/.prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
**/node_modules
**/coverage
test/fixtures
build/
docs/
protos/
17 changes: 17 additions & 0 deletions packages/google-area120-tables/.prettierrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
// Copyright 2022 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

module.exports = {
...require('gts/.prettierrc.json')
}
17 changes: 17 additions & 0 deletions packages/google-area120-tables/.repo-metadata.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"language": "nodejs",
"repo": "googleapis/google-cloud-node",
"name": "area120tables",
"issue_tracker": "",
"default_version": "v1alpha1",
"api_id": "area120tables.googleapis.com",
"distribution_name": "@google/area120-tables",
"requires_billing": true,
"product_documentation": "https://area120.google.com/",
"codeowner_team": "@googleapis/area120-tables",
"name_pretty": "Area120 Tables API",
"client_documentation": "https://cloud.google.com/nodejs/docs/reference/area120-tables/latest",
"release_level": "preview",
"api_shortname": "area120tables",
"library_type": "GAPIC_AUTO"
}
142 changes: 142 additions & 0 deletions packages/google-area120-tables/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,142 @@
# Changelog

## [2.1.2](https://github.com/googleapis/nodejs-area120-tables/compare/v2.1.1...v2.1.2) (2022-11-10)


### Bug Fixes

* **deps:** Use google-gax v3.5.2 ([#167](https://github.com/googleapis/nodejs-area120-tables/issues/167)) ([e227ceb](https://github.com/googleapis/nodejs-area120-tables/commit/e227cebfa22aaca82b4f1e40112e36f8a5bd17f4))
* Preserve default values in x-goog-request-params header ([#160](https://github.com/googleapis/nodejs-area120-tables/issues/160)) ([f07849a](https://github.com/googleapis/nodejs-area120-tables/commit/f07849ae3496daa11c089e7f2a85287d3c66a13f))
* Regenerated protos JS and TS definitions ([#170](https://github.com/googleapis/nodejs-area120-tables/issues/170)) ([284297f](https://github.com/googleapis/nodejs-area120-tables/commit/284297f80752818dbb259a631385ba6c2c84284f))

## [2.1.1](https://github.com/googleapis/nodejs-area120-tables/compare/v2.1.0...v2.1.1) (2022-09-01)


### Bug Fixes

* Allow passing gax instance to client constructor ([#158](https://github.com/googleapis/nodejs-area120-tables/issues/158)) ([1660fa1](https://github.com/googleapis/nodejs-area120-tables/commit/1660fa19243b4199a92ad38b01c3a835f5347c99))
* Better support for fallback mode ([#153](https://github.com/googleapis/nodejs-area120-tables/issues/153)) ([69283b1](https://github.com/googleapis/nodejs-area120-tables/commit/69283b1abf7538382fea4af27935a13abf1800b8))
* Change import long to require ([#154](https://github.com/googleapis/nodejs-area120-tables/issues/154)) ([941e24a](https://github.com/googleapis/nodejs-area120-tables/commit/941e24abe395bb3145d65193bb5a313d9e88141a))
* Do not import the whole google-gax from proto JS ([#1553](https://github.com/googleapis/nodejs-area120-tables/issues/1553)) ([#157](https://github.com/googleapis/nodejs-area120-tables/issues/157)) ([06f14b9](https://github.com/googleapis/nodejs-area120-tables/commit/06f14b9581890a9428423c9b3b0719387013890f))
* Remove pip install statements ([#1546](https://github.com/googleapis/nodejs-area120-tables/issues/1546)) ([#156](https://github.com/googleapis/nodejs-area120-tables/issues/156)) ([e6e1981](https://github.com/googleapis/nodejs-area120-tables/commit/e6e19814573fff8d73776d455f85c81e0c0d2891))

## [2.1.0](https://github.com/googleapis/nodejs-area120-tables/compare/v2.0.0...v2.1.0) (2022-06-29)


### Features

* support regapic LRO ([#147](https://github.com/googleapis/nodejs-area120-tables/issues/147)) ([2909e6d](https://github.com/googleapis/nodejs-area120-tables/commit/2909e6da18f99021b4f81eb60e991ab020e65e5f))

## [2.0.0](https://github.com/googleapis/nodejs-area120-tables/compare/v1.3.0...v2.0.0) (2022-05-17)


### ⚠ BREAKING CHANGES

* update library to use Node 12 (#142)

### Build System

* update library to use Node 12 ([#142](https://github.com/googleapis/nodejs-area120-tables/issues/142)) ([d21b849](https://github.com/googleapis/nodejs-area120-tables/commit/d21b8496ae140038f7e34e630a7978653ce9d92f))

## [1.3.0](https://www.github.com/googleapis/nodejs-area120-tables/compare/v1.2.8...v1.3.0) (2021-08-23)


### Features

* turns on self-signed JWT feature flag ([#91](https://www.github.com/googleapis/nodejs-area120-tables/issues/91)) ([9e385e6](https://www.github.com/googleapis/nodejs-area120-tables/commit/9e385e6d0aa042960879b39c1159b330c1ce356d))

### [1.2.8](https://www.github.com/googleapis/nodejs-area120-tables/compare/v1.2.7...v1.2.8) (2021-08-17)


### Bug Fixes

* **deps:** google-gax v2.24.1 ([#88](https://www.github.com/googleapis/nodejs-area120-tables/issues/88)) ([2067908](https://www.github.com/googleapis/nodejs-area120-tables/commit/2067908f6e2a8eabc3872f03c5538c07a4e59792))

### [1.2.7](https://www.github.com/googleapis/nodejs-area120-tables/compare/v1.2.6...v1.2.7) (2021-08-11)


### Bug Fixes

* **build:** migrate to using main branch ([#86](https://www.github.com/googleapis/nodejs-area120-tables/issues/86)) ([e5a7379](https://www.github.com/googleapis/nodejs-area120-tables/commit/e5a7379282b014d44deec4e5c6191dc8537f7a89))

### [1.2.6](https://www.github.com/googleapis/nodejs-area120-tables/compare/v1.2.5...v1.2.6) (2021-07-16)


### Bug Fixes

* Updating WORKSPACE files to use the newest version of the Typescript generator. ([#78](https://www.github.com/googleapis/nodejs-area120-tables/issues/78)) ([b598d8b](https://www.github.com/googleapis/nodejs-area120-tables/commit/b598d8b97cedb9b5de38c805ed0e8a8263b20e06))

### [1.2.5](https://www.github.com/googleapis/nodejs-area120-tables/compare/v1.2.4...v1.2.5) (2021-07-12)


### Bug Fixes

* **deps:** google-gax v2.17.1 ([#76](https://www.github.com/googleapis/nodejs-area120-tables/issues/76)) ([050b1bd](https://www.github.com/googleapis/nodejs-area120-tables/commit/050b1bd4682ec3f8a8211a6f3a781fc4c045ae37))

### [1.2.4](https://www.github.com/googleapis/nodejs-area120-tables/compare/v1.2.3...v1.2.4) (2021-06-29)


### Bug Fixes

* **deps:** google-gax v2.17.0 with mTLS ([#73](https://www.github.com/googleapis/nodejs-area120-tables/issues/73)) ([9d19f45](https://www.github.com/googleapis/nodejs-area120-tables/commit/9d19f45724f4cf1ef3b6e5f98658d4560669239a))

### [1.2.3](https://www.github.com/googleapis/nodejs-area120-tables/compare/v1.2.2...v1.2.3) (2021-06-22)


### Bug Fixes

* make request optional in all cases ([#67](https://www.github.com/googleapis/nodejs-area120-tables/issues/67)) ([904e384](https://www.github.com/googleapis/nodejs-area120-tables/commit/904e384bff960f0742cf940efd236a4c63c8672e))

### [1.2.2](https://www.github.com/googleapis/nodejs-area120-tables/compare/v1.2.1...v1.2.2) (2021-05-25)


### Bug Fixes

* GoogleAdsError missing using generator version after 1.3.0 ([#60](https://www.github.com/googleapis/nodejs-area120-tables/issues/60)) ([c4dd5b2](https://www.github.com/googleapis/nodejs-area120-tables/commit/c4dd5b28d22eacc2cd34b36519c4abbebb5fa840))

### [1.2.1](https://www.github.com/googleapis/nodejs-area120-tables/compare/v1.2.0...v1.2.1) (2021-05-12)


### Bug Fixes

* **deps:** require google-gax v2.12.0 ([#52](https://www.github.com/googleapis/nodejs-area120-tables/issues/52)) ([68312da](https://www.github.com/googleapis/nodejs-area120-tables/commit/68312daba169bc6697864614cafaef65a9cf1dbf))
* use require() to load JSON protos ([#55](https://www.github.com/googleapis/nodejs-area120-tables/issues/55)) ([ca90de3](https://www.github.com/googleapis/nodejs-area120-tables/commit/ca90de30da4cea5c73a67def7f7290c48bf6d7d5))

## [1.2.0](https://www.github.com/googleapis/nodejs-area120-tables/compare/v1.1.0...v1.2.0) (2021-03-02)


### Features

* Added ListWorkspaces, GetWorkspace, BatchDeleteRows APIs. ([#34](https://www.github.com/googleapis/nodejs-area120-tables/issues/34)) ([e9094fd](https://www.github.com/googleapis/nodejs-area120-tables/commit/e9094fda635c2ade5e72212bd7f10698eaf9a939))

## [1.1.0](https://www.github.com/googleapis/nodejs-area120-tables/compare/v1.0.2...v1.1.0) (2021-01-09)


### Features

* adds style enumeration ([#27](https://www.github.com/googleapis/nodejs-area120-tables/issues/27)) ([61589a9](https://www.github.com/googleapis/nodejs-area120-tables/commit/61589a9f06674b8723fbe3b68022ebee58df9faf))

### [1.0.2](https://www.github.com/googleapis/nodejs-area120-tables/compare/v1.0.1...v1.0.2) (2020-11-24)


### Bug Fixes

* better fallback feature detection, linting, use optional chaining for window.fetch feature detection, mark window as global for linter ([#21](https://www.github.com/googleapis/nodejs-area120-tables/issues/21)) ([bc9a40c](https://www.github.com/googleapis/nodejs-area120-tables/commit/bc9a40c42311fa2a6748a9841bc632d3fe87705b))

### [1.0.1](https://www.github.com/googleapis/nodejs-area120-tables/compare/v1.0.0...v1.0.1) (2020-11-07)


### Bug Fixes

* do not modify options object, use defaultScopes ([#14](https://www.github.com/googleapis/nodejs-area120-tables/issues/14)) ([6048dfa](https://www.github.com/googleapis/nodejs-area120-tables/commit/6048dfa0aa715b1cdd6d9ee309cedd6a4a4e1eb9))

## 1.0.0 (2020-09-19)


### ⚠ BREAKING CHANGES

* stub out initial samples (#2)

### Features

* stub out initial samples ([#2](https://www.github.com/googleapis/nodejs-area120-tables/issues/2)) ([3753448](https://www.github.com/googleapis/nodejs-area120-tables/commit/3753448c287adcd7f6e8b0454509553ea3d80c99))
Loading

0 comments on commit f1b7b9f

Please sign in to comment.