From e2235f06e467db210ea2c27704a1df2dbbe6dc6f Mon Sep 17 00:00:00 2001 From: Sofia Leon Date: Tue, 29 Oct 2024 17:04:59 -0700 Subject: [PATCH 1/6] try removing compodoc --- .jsdoc.js | 2 +- package.json | 4 +++- src/generator/docs.ts | 7 +++---- 3 files changed, 7 insertions(+), 6 deletions(-) diff --git a/.jsdoc.js b/.jsdoc.js index 8fa631f6de..6f9d0019df 100644 --- a/.jsdoc.js +++ b/.jsdoc.js @@ -27,7 +27,7 @@ module.exports = { plugins: ['plugins/markdown', 'jsdoc-region-tag'], source: { excludePattern: '(^|\\/|\\\\)[._]', - include: ['src'], + include: ['build/src'], includePattern: '\\.js$', }, templates: { diff --git a/package.json b/package.json index 37e42d7ed3..eff5733388 100644 --- a/package.json +++ b/package.json @@ -59,7 +59,6 @@ "googleapis-common": "^7.0.0" }, "devDependencies": { - "@compodoc/compodoc": "1.1.23", "@types/execa": "^2.0.0", "@types/mocha": "^9.0.0", "@types/mv": "^2.1.0", @@ -80,6 +79,9 @@ "execa": "^5.0.0", "gaxios": "^6.0.3", "gts": "^5.0.0", + "jsdoc": "^4.0.0", + "jsdoc-fresh": "^3.0.0", + "jsdoc-region-tag": "^3.0.0", "js-green-licenses": "^4.0.0", "linkinator": "^4.0.0", "mocha": "^9.2.2", diff --git a/src/generator/docs.ts b/src/generator/docs.ts index 85f2211ca6..fd72500b8b 100644 --- a/src/generator/docs.ts +++ b/src/generator/docs.ts @@ -58,10 +58,9 @@ export async function main() { .add(() => gfs.execa(process.execPath, [ '--max-old-space-size=8192', - './node_modules/.bin/compodoc', - `src/apis/${dir}`, - '-d', - `./docs/${dir}`, + './node_modules/.bin/jsdoc', + '-c', + `.jsdoc.js`, ]) ) .then(() => { From 84eb6aa832b77481832c84c996fbac47ad9bad0c Mon Sep 17 00:00:00 2001 From: Sofia Leon Date: Wed, 30 Oct 2024 19:12:15 +0000 Subject: [PATCH 2/6] chore: remove compodoc and replace with jsdoc --- .jsdoc.js | 2 +- package.json | 4 ++-- src/generator/docs.ts | 9 +++++---- 3 files changed, 8 insertions(+), 7 deletions(-) diff --git a/.jsdoc.js b/.jsdoc.js index 6f9d0019df..bb6e766f69 100644 --- a/.jsdoc.js +++ b/.jsdoc.js @@ -43,4 +43,4 @@ module.exports = { markdown: { idInHeadings: true, }, -}; +}; \ No newline at end of file diff --git a/package.json b/package.json index eff5733388..90852ff62c 100644 --- a/package.json +++ b/package.json @@ -19,7 +19,7 @@ "prepare": "npm run compile", "test": "c8 mocha build/test", "predocs": "npm run build-tools", - "docs": "node build/src/generator/docs", + "docs": "npm run compile && node build/src/generator/docs", "predocs2": "npm run compile", "docs-extract": "node --max-old-space-size=8192 ./node_modules/@microsoft/api-extractor/bin/api-extractor run --local --verbose", "docs-md": "node --max-old-space-size=8192 ./node_modules/@microsoft/api-documenter/bin/api-documenter markdown --input-folder build/docs --output-folder docs", @@ -79,10 +79,10 @@ "execa": "^5.0.0", "gaxios": "^6.0.3", "gts": "^5.0.0", + "js-green-licenses": "^4.0.0", "jsdoc": "^4.0.0", "jsdoc-fresh": "^3.0.0", "jsdoc-region-tag": "^3.0.0", - "js-green-licenses": "^4.0.0", "linkinator": "^4.0.0", "mocha": "^9.2.2", "mv": "^2.1.1", diff --git a/src/generator/docs.ts b/src/generator/docs.ts index fd72500b8b..234ab3e2c3 100644 --- a/src/generator/docs.ts +++ b/src/generator/docs.ts @@ -19,10 +19,11 @@ import * as path from 'path'; import {promisify} from 'util'; import Q from 'p-queue'; -const srcPath = path.join(__dirname, '../../../src'); +const rootPath = path.join(__dirname, '../../..'); +const srcPath = path.join(rootPath, 'src'); const apiPath = path.join(srcPath, 'apis'); const templatePath = path.join(srcPath, 'generator/templates/index.html.njk'); -const docsPath = path.join(__dirname, '../../../docs'); +const docsPath = path.join(rootPath, 'docs'); const indexPath = path.join(docsPath, 'index.html'); export const gfs = { @@ -53,14 +54,14 @@ export async function main() { const q = new Q({concurrency: 50}); console.log(`Generating docs for ${dirs.length} APIs...`); let i = 0; - const promises = dirs.map(dir => { + const promises = dirs.map(async dir => { return q .add(() => gfs.execa(process.execPath, [ '--max-old-space-size=8192', './node_modules/.bin/jsdoc', '-c', - `.jsdoc.js`, + '.jsdoc.js', ]) ) .then(() => { From b4025e60365734e1dba025333a6a4a09ab5a3454 Mon Sep 17 00:00:00 2001 From: Sofia Leon Date: Wed, 30 Oct 2024 19:15:56 +0000 Subject: [PATCH 3/6] remove async --- src/generator/docs.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/generator/docs.ts b/src/generator/docs.ts index 234ab3e2c3..d3ce59987b 100644 --- a/src/generator/docs.ts +++ b/src/generator/docs.ts @@ -54,7 +54,7 @@ export async function main() { const q = new Q({concurrency: 50}); console.log(`Generating docs for ${dirs.length} APIs...`); let i = 0; - const promises = dirs.map(async dir => { + const promises = dirs.map(dir => { return q .add(() => gfs.execa(process.execPath, [ From a1b7c3c8ca1ae0a830e3e67ec28596b15f3da6a0 Mon Sep 17 00:00:00 2001 From: "release-please[bot]" <55107282+release-please[bot]@users.noreply.github.com> Date: Wed, 30 Oct 2024 20:43:04 +0000 Subject: [PATCH 4/6] chore: release main --- .release-please-manifest.json | 2 +- CHANGELOG.md | 178 ++++++++++++++++++ package.json | 2 +- samples/package.json | 2 +- src/apis/adexchangebuyer2/CHANGELOG.md | 7 + src/apis/adexchangebuyer2/package.json | 2 +- src/apis/admin/CHANGELOG.md | 7 + src/apis/admin/package.json | 2 +- src/apis/adsensehost/CHANGELOG.md | 7 + src/apis/adsensehost/package.json | 2 +- src/apis/analyticsadmin/CHANGELOG.md | 7 + src/apis/analyticsadmin/package.json | 2 +- src/apis/analyticshub/CHANGELOG.md | 8 + src/apis/analyticshub/package.json | 2 +- .../androiddeviceprovisioning/CHANGELOG.md | 7 + .../androiddeviceprovisioning/package.json | 2 +- src/apis/androidmanagement/CHANGELOG.md | 8 + src/apis/androidmanagement/package.json | 2 +- src/apis/androidpublisher/CHANGELOG.md | 11 ++ src/apis/androidpublisher/package.json | 2 +- .../authorizedbuyersmarketplace/CHANGELOG.md | 7 + .../authorizedbuyersmarketplace/package.json | 2 +- src/apis/bigtableadmin/CHANGELOG.md | 12 ++ src/apis/bigtableadmin/package.json | 2 +- .../businessprofileperformance/CHANGELOG.md | 7 + .../businessprofileperformance/package.json | 2 +- src/apis/calendar/CHANGELOG.md | 7 + src/apis/calendar/package.json | 2 +- src/apis/chat/CHANGELOG.md | 12 ++ src/apis/chat/package.json | 2 +- src/apis/chromeuxreport/CHANGELOG.md | 11 ++ src/apis/chromeuxreport/package.json | 2 +- src/apis/civicinfo/CHANGELOG.md | 7 + src/apis/civicinfo/package.json | 2 +- src/apis/classroom/CHANGELOG.md | 7 + src/apis/classroom/package.json | 2 +- src/apis/cloudasset/CHANGELOG.md | 11 ++ src/apis/cloudasset/package.json | 2 +- src/apis/cloudidentity/CHANGELOG.md | 7 + src/apis/cloudidentity/package.json | 2 +- src/apis/cloudkms/CHANGELOG.md | 7 + src/apis/cloudkms/package.json | 2 +- src/apis/connectors/CHANGELOG.md | 7 + src/apis/connectors/package.json | 2 +- src/apis/dfareporting/CHANGELOG.md | 7 + src/apis/dfareporting/package.json | 2 +- src/apis/displayvideo/CHANGELOG.md | 7 + src/apis/displayvideo/package.json | 2 +- src/apis/drive/CHANGELOG.md | 7 + src/apis/drive/package.json | 2 +- src/apis/firebase/CHANGELOG.md | 7 + src/apis/firebase/package.json | 2 +- src/apis/firebaseappcheck/CHANGELOG.md | 7 + src/apis/firebaseappcheck/package.json | 2 +- src/apis/firebaseml/CHANGELOG.md | 7 + src/apis/firebaseml/package.json | 2 +- src/apis/healthcare/CHANGELOG.md | 7 + src/apis/healthcare/package.json | 2 +- src/apis/monitoring/CHANGELOG.md | 7 + src/apis/monitoring/package.json | 2 +- .../CHANGELOG.md | 7 + .../package.json | 2 +- src/apis/mybusinesslodging/CHANGELOG.md | 7 + src/apis/mybusinesslodging/package.json | 2 +- src/apis/networkservices/CHANGELOG.md | 11 ++ src/apis/networkservices/package.json | 2 +- src/apis/notebooks/CHANGELOG.md | 7 + src/apis/notebooks/package.json | 2 +- src/apis/pagespeedonline/CHANGELOG.md | 7 + src/apis/pagespeedonline/package.json | 2 +- src/apis/places/CHANGELOG.md | 7 + src/apis/places/package.json | 2 +- src/apis/playdeveloperreporting/CHANGELOG.md | 7 + src/apis/playdeveloperreporting/package.json | 2 +- src/apis/privateca/CHANGELOG.md | 7 + src/apis/privateca/package.json | 2 +- src/apis/realtimebidding/CHANGELOG.md | 7 + src/apis/realtimebidding/package.json | 2 +- .../serviceconsumermanagement/CHANGELOG.md | 7 + .../serviceconsumermanagement/package.json | 2 +- src/apis/servicenetworking/CHANGELOG.md | 12 ++ src/apis/servicenetworking/package.json | 2 +- src/apis/sheets/CHANGELOG.md | 7 + src/apis/sheets/package.json | 2 +- src/apis/sqladmin/CHANGELOG.md | 8 + src/apis/sqladmin/package.json | 2 +- src/apis/storage/CHANGELOG.md | 7 + src/apis/storage/package.json | 2 +- src/apis/sts/CHANGELOG.md | 7 + src/apis/sts/package.json | 2 +- src/apis/testing/CHANGELOG.md | 7 + src/apis/testing/package.json | 2 +- src/apis/vpcaccess/CHANGELOG.md | 7 + src/apis/vpcaccess/package.json | 2 +- src/apis/workflowexecutions/CHANGELOG.md | 7 + src/apis/workflowexecutions/package.json | 2 +- src/apis/workstations/CHANGELOG.md | 7 + src/apis/workstations/package.json | 2 +- src/apis/youtube/CHANGELOG.md | 11 ++ src/apis/youtube/package.json | 2 +- 100 files changed, 603 insertions(+), 51 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 4d13698fe0..d85078f72f 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1 +1 @@ -{".":"144.0.0","src/apis/abusiveexperiencereport":"1.0.7","src/apis/acceleratedmobilepageurl":"1.0.7","src/apis/accesscontextmanager":"7.4.0","src/apis/adexchangebuyer":"1.0.5","src/apis/adexchangebuyer2":"4.2.2","src/apis/adexperiencereport":"1.0.7","src/apis/admin":"23.0.0","src/apis/admob":"2.5.5","src/apis/adsense":"10.0.0","src/apis/adsensehost":"5.0.7","src/apis/alertcenter":"9.5.0","src/apis/analytics":"7.0.7","src/apis/analyticsreporting":"1.0.7","src/apis/androiddeviceprovisioning":"6.3.2","src/apis/androidenterprise":"5.9.0","src/apis/androidmanagement":"17.9.0","src/apis/androidpublisher":"22.0.0","src/apis/appsactivity":"1.0.5","src/apis/bigtableadmin":"23.0.0","src/apis/blogger":"1.1.7","src/apis/books":"4.0.0","src/apis/calendar":"9.7.9","src/apis/chat":"32.0.0","src/apis/chromemanagement":"15.3.0","src/apis/chromepolicy":"9.1.5","src/apis/chromeuxreport":"1.5.2","src/apis/civicinfo":"15.0.0","src/apis/classroom":"4.4.0","src/apis/cloudidentity":"16.0.0","src/apis/cloudkms":"17.0.0","src/apis/cloudsearch":"14.4.0","src/apis/cloudshell":"2.0.6","src/apis/cloudtasks":"15.0.2","src/apis/composer":"9.2.0","src/apis/content":"31.0.0","src/apis/customsearch":"3.2.0","src/apis/dataflow":"15.0.0","src/apis/datafusion":"9.0.0","src/apis/datamigration":"6.3.0","src/apis/deploymentmanager":"14.0.0","src/apis/dfareporting":"11.0.0","src/apis/digitalassetlinks":"1.0.7","src/apis/discovery":"1.7.0","src/apis/displayvideo":"25.0.0","src/apis/docs":"3.3.0","src/apis/domainsrdap":"1.0.10","src/apis/doubleclickbidmanager":"10.0.3","src/apis/doubleclicksearch":"4.0.3","src/apis/drive":"8.14.0","src/apis/driveactivity":"2.0.9","src/apis/eventarc":"6.2.1","src/apis/factchecktools":"1.2.0","src/apis/fcm":"5.0.10","src/apis/file":"8.0.0","src/apis/firebase":"6.4.2","src/apis/firebasedatabase":"2.0.8","src/apis/firebasedynamiclinks":"1.2.0","src/apis/firebasehosting":"9.0.0","src/apis/firebaseml":"10.0.0","src/apis/firebaserules":"1.2.2","src/apis/firebasestorage":"6.1.2","src/apis/fitness":"2.0.7","src/apis/games":"8.0.0","src/apis/gamesConfiguration":"2.0.7","src/apis/gamesManagement":"2.0.7","src/apis/genomics":"3.0.7","src/apis/gmail":"12.0.0","src/apis/gmailpostmastertools":"1.1.2","src/apis/groupsmigration":"1.0.7","src/apis/groupssettings":"3.0.11","src/apis/healthcare":"23.1.0","src/apis/homegraph":"4.0.9","src/apis/iam":"23.0.0","src/apis/iap":"8.2.0","src/apis/identitytoolkit":"11.0.0","src/apis/indexing":"2.0.2","src/apis/kgsearch":"1.0.7","src/apis/libraryagent":"1.0.7","src/apis/licensing":"1.0.7","src/apis/lifesciences":"2.0.6","src/apis/localservices":"4.0.0","src/apis/manufacturers":"5.6.0","src/apis/ml":"3.0.11","src/apis/mybusinessaccountmanagement":"3.0.10","src/apis/networkmanagement":"10.1.0","src/apis/oauth2":"1.0.7","src/apis/ondemandscanning":"15.0.0","src/apis/pagespeedonline":"1.4.0","src/apis/people":"3.0.9","src/apis/playablelocations":"1.0.5","src/apis/playcustomapp":"1.0.5","src/apis/plus":"1.0.3","src/apis/policysimulator":"12.0.0","src/apis/poly":"1.0.5","src/apis/prod_tt_sasportal":"17.0.3","src/apis/pubsublite":"2.1.7","src/apis/realtimebidding":"4.4.0","src/apis/recommendationengine":"3.4.2","src/apis/remotebuildexecution":"3.0.3","src/apis/reseller":"4.0.5","src/apis/run":"18.1.0","src/apis/safebrowsing":"10.0.0","src/apis/sasportal":"18.0.3","src/apis/script":"5.0.0","src/apis/searchconsole":"1.0.5","src/apis/serviceconsumermanagement":"20.0.0","src/apis/servicenetworking":"21.1.0","src/apis/serviceusage":"14.0.0","src/apis/sheets":"9.3.1","src/apis/siteVerification":"2.0.5","src/apis/slides":"1.2.0","src/apis/smartdevicemanagement":"3.0.2","src/apis/sourcerepo":"4.0.7","src/apis/sql":"1.0.3","src/apis/sqladmin":"24.0.0","src/apis/storage":"15.6.0","src/apis/storagetransfer":"7.2.0","src/apis/streetviewpublish":"4.0.5","src/apis/sts":"9.0.0","src/apis/tagmanager":"5.3.0","src/apis/testing":"10.0.0","src/apis/toolresults":"3.3.2","src/apis/tpu":"5.0.0","src/apis/trafficdirector":"4.0.0","src/apis/vault":"3.8.0","src/apis/vectortile":"1.0.3","src/apis/verifiedaccess":"3.4.0","src/apis/webfonts":"1.4.0","src/apis/webmasters":"1.0.3","src/apis/workflowexecutions":"7.10.0","src/apis/youtube":"20.0.0","src/apis/youtubeAnalytics":"2.0.5","src/apis/youtubereporting":"1.0.5","src/apis/forms":"2.0.7","src/apis/authorizedbuyersmarketplace":"8.0.0","src/apis/businessprofileperformance":"1.1.8","src/apis/cloudsupport":"11.0.0","src/apis/connectors":"20.0.0","src/apis/datapipelines":"1.0.7","src/apis/drivelabels":"7.0.2","src/apis/fcmdata":"1.6.0","src/apis/firebaseappcheck":"5.14.0","src/apis/ideahub":"1.0.7","src/apis/mybusinessbusinesscalls":"4.0.5","src/apis/mybusinessbusinessinformation":"4.0.9","src/apis/mybusinesslodging":"3.0.2","src/apis/mybusinessnotifications":"1.0.7","src/apis/mybusinessplaceactions":"1.0.7","src/apis/mybusinessqanda":"1.0.7","src/apis/mybusinessverifications":"2.0.2","src/apis/networkservices":"20.0.0","src/apis/paymentsresellersubscription":"10.0.4","src/apis/playdeveloperreporting":"5.4.3","src/apis/playintegrity":"13.0.0","src/apis/policyanalyzer":"1.2.0","src/apis/runtimeconfig":"4.0.0","src/apis/travelimpactmodel":"2.0.2","src/apis/versionhistory":"1.3.0","src/apis/workloadmanager":"16.0.0","src/apis/workstations":"11.0.0","src/apis/ids":"1.3.0","src/apis/places":"9.4.1","src/apis/vpcaccess":"1.5.2","src/apis/privateca":"4.2.0","src/apis/datalabeling":"2.0.2","src/apis/cloudasset":"7.4.1","src/apis/tasks":"7.0.0","src/apis/datalineage":"1.0.3","src/apis/transcoder":"4.0.2","src/apis/clouderrorreporting":"3.2.0","src/apis/kmsinventory":"4.0.0","src/apis/websecurityscanner":"1.0.5","src/apis/apigateway":"1.0.6","src/apis/analyticshub":"9.0.0","src/apis/notebooks":"8.5.0","src/apis/bigqueryconnection":"1.5.0","src/apis/recommender":"4.2.1","src/apis/analyticsadmin":"11.0.1","src/apis/servicedirectory":"3.0.5","src/apis/monitoring":"9.0.0","src/apis/gkebackup":"8.1.0","src/apis/workflows":"1.9.0","src/apis/jobs":"4.0.0","src/apis/containeranalysis":"11.0.0","src/apis/orgpolicy":"4.0.0","src/apis/documentai":"8.4.0","src/apis/datastream":"6.6.0","src/apis/assuredworkloads":"10.0.1","src/apis/logging":"8.0.0","src/apis/domains":"1.8.0","src/apis/gkehub":"16.0.0","src/apis/vision":"1.5.2","src/apis/policytroubleshooter":"1.0.8","src/apis/gameservices":"1.3.0","src/apis/acmedns":"1.0.7","src/apis/discoveryengine":"15.0.0","src/apis/secretmanager":"1.3.2","src/apis/bigquery":"14.0.0","src/apis/cloudfunctions":"4.3.1","src/apis/vmmigration":"11.0.0","src/apis/certificatemanager":"4.2.0","src/apis/baremetalsolution":"1.0.3","src/apis/accessapproval":"1.11.0","src/apis/container":"12.0.0","src/apis/publicca":"1.0.5","src/apis/batch":"9.6.0","src/apis/datacatalog":"6.0.0","src/apis/managedidentities":"3.0.6","src/apis/bigquerydatatransfer":"1.6.0","src/apis/apikeys":"1.0.7","src/apis/dns":"6.0.0","src/apis/memcache":"3.3.0","src/apis/cloudscheduler":"1.1.7","src/apis/dialogflow":"13.0.0","src/apis/contentwarehouse":"9.3.0","src/apis/speech":"1.5.0","src/apis/contactcenterinsights":"11.0.0","src/apis/oslogin":"3.0.5","src/apis/texttospeech":"1.4.2","src/apis/readerrevenuesubscriptionlinking":"1.0.5","src/apis/compute":"21.0.0","src/apis/cloudtrace":"1.1.6","src/apis/dataplex":"11.0.0","src/apis/advisorynotifications":"3.2.0","src/apis/language":"4.0.0","src/apis/retail":"12.0.1","src/apis/cloudresourcemanager":"1.3.0","src/apis/osconfig":"4.1.1","src/apis/essentialcontacts":"1.1.0","src/apis/appengine":"8.1.0","src/apis/checks":"4.0.2","src/apis/cloudchannel":"1.5.0","src/apis/translate":"3.3.0","src/apis/bigqueryreservation":"3.0.0","src/apis/apigeeregistry":"2.0.2","src/apis/redis":"12.0.0","src/apis/clouddebugger":"1.0.3","src/apis/servicecontrol":"4.2.0","src/apis/videointelligence":"1.2.4","src/apis/cloudbuild":"11.0.0","src/apis/dlp":"13.0.0","src/apis/networksecurity":"8.2.0","src/apis/binaryauthorization":"6.2.0","src/apis/securitycenter":"9.1.0","src/apis/cloudprofiler":"4.0.0","src/apis/dataproc":"9.1.0","src/apis/pubsub":"6.0.0","src/apis/dataform":"6.0.0","src/apis/servicemanagement":"2.0.2","src/apis/searchads360":"6.1.0","src/apis/firebaseappdistribution":"3.0.0","src/apis/billingbudgets":"1.3.2","src/apis/cloudiot":"1.0.2","src/apis/area120tables":"1.0.4","src/apis/beyondcorp":"14.0.0","src/apis/networkconnectivity":"8.3.0","src/apis/analyticsdata":"1.5.2","src/apis/spanner":"7.4.1","src/apis/artifactregistry":"12.1.0","src/apis/firestore":"11.0.0","src/apis/recaptchaenterprise":"6.3.0","src/apis/clouddeploy":"7.0.0","src/apis/datastore":"4.0.0","src/apis/integrations":"1.0.2","src/apis/iamcredentials":"4.0.0","src/apis/resourcesettings":"1.0.4","src/apis/aiplatform":"16.0.0","src/apis/webrisk":"1.0.3","src/apis/gkeonprem":"7.1.0","src/apis/blockchainnodeengine":"6.1.0","src/apis/migrationcenter":"7.0.0","src/apis/contactcenteraiplatform":"7.0.0","src/apis/cloudbilling":"4.0.2","src/apis/metastore":"8.0.0","src/apis/rapidmigrationassessment":"0.1.1","src/apis/playgrouping":"0.1.1","src/apis/alloydb":"11.1.0","src/apis/backupdr":"5.0.0","src/apis/vmwareengine":"1.1.0","src/apis/biglake":"0.1.1","src/apis/looker":"2.1.0","src/apis/bigquerydatapolicy":"0.2.0","src/apis/walletobjects":"6.0.0","src/apis/apphub":"2.1.0","src/apis/dataportability":"3.0.0","src/apis/workspaceevents":"1.0.2","src/apis/marketingplatformadmin":"0.2.2","src/apis/solar":"0.2.0","src/apis/config":"0.2.1","src/apis/cloudcontrolspartner":"0.3.1","src/apis/addressvalidation":"0.1.1","src/apis/developerconnect":"0.1.0","src/apis/merchantapi":"1.1.0","src/apis/meet":"0.1.1","src/apis/pollen":"0.1.1","src/apis/airquality":"0.1.0","src/apis/apim":"0.2.0","src/apis/adsenseplatform":"0.1.0","src/apis/keep":"0.1.0","src/apis/css":"0.1.0"} \ No newline at end of file +{".":"145.0.0","src/apis/abusiveexperiencereport":"1.0.7","src/apis/acceleratedmobilepageurl":"1.0.7","src/apis/accesscontextmanager":"7.5.0","src/apis/adexchangebuyer":"1.0.5","src/apis/adexchangebuyer2":"4.2.3","src/apis/adexperiencereport":"1.0.7","src/apis/admin":"23.0.1","src/apis/admob":"2.5.5","src/apis/adsense":"10.0.0","src/apis/adsensehost":"5.0.8","src/apis/alertcenter":"9.5.0","src/apis/analytics":"7.0.7","src/apis/analyticsreporting":"1.0.7","src/apis/androiddeviceprovisioning":"6.4.0","src/apis/androidenterprise":"5.9.0","src/apis/androidmanagement":"17.10.0","src/apis/androidpublisher":"23.0.0","src/apis/appsactivity":"1.0.5","src/apis/bigtableadmin":"24.0.0","src/apis/blogger":"1.1.7","src/apis/books":"4.0.0","src/apis/calendar":"9.7.10","src/apis/chat":"32.1.0","src/apis/chromemanagement":"15.3.0","src/apis/chromepolicy":"9.1.5","src/apis/chromeuxreport":"2.0.0","src/apis/civicinfo":"15.1.0","src/apis/classroom":"4.4.1","src/apis/cloudidentity":"16.0.1","src/apis/cloudkms":"17.0.1","src/apis/cloudsearch":"14.4.0","src/apis/cloudshell":"2.0.6","src/apis/cloudtasks":"15.0.2","src/apis/composer":"9.2.0","src/apis/content":"31.0.0","src/apis/customsearch":"3.2.0","src/apis/dataflow":"15.0.0","src/apis/datafusion":"9.0.0","src/apis/datamigration":"6.4.0","src/apis/deploymentmanager":"14.0.0","src/apis/dfareporting":"11.1.0","src/apis/digitalassetlinks":"1.0.7","src/apis/discovery":"1.7.0","src/apis/displayvideo":"25.0.1","src/apis/docs":"3.3.0","src/apis/domainsrdap":"1.0.10","src/apis/doubleclickbidmanager":"10.0.3","src/apis/doubleclicksearch":"4.0.3","src/apis/drive":"8.15.0","src/apis/driveactivity":"2.0.9","src/apis/eventarc":"6.3.0","src/apis/factchecktools":"1.2.0","src/apis/fcm":"5.0.10","src/apis/file":"8.1.0","src/apis/firebase":"6.5.0","src/apis/firebasedatabase":"2.0.8","src/apis/firebasedynamiclinks":"1.2.0","src/apis/firebasehosting":"9.0.0","src/apis/firebaseml":"10.1.0","src/apis/firebaserules":"1.2.2","src/apis/firebasestorage":"6.1.2","src/apis/fitness":"2.0.7","src/apis/games":"8.0.0","src/apis/gamesConfiguration":"2.0.7","src/apis/gamesManagement":"2.0.7","src/apis/genomics":"3.0.7","src/apis/gmail":"12.0.0","src/apis/gmailpostmastertools":"1.1.2","src/apis/groupsmigration":"1.0.7","src/apis/groupssettings":"3.0.11","src/apis/healthcare":"23.2.0","src/apis/homegraph":"4.0.9","src/apis/iam":"23.0.0","src/apis/iap":"8.2.1","src/apis/identitytoolkit":"11.0.0","src/apis/indexing":"2.0.2","src/apis/kgsearch":"1.0.7","src/apis/libraryagent":"1.0.7","src/apis/licensing":"1.0.7","src/apis/lifesciences":"2.0.6","src/apis/localservices":"4.0.0","src/apis/manufacturers":"5.6.0","src/apis/ml":"3.0.11","src/apis/mybusinessaccountmanagement":"3.0.10","src/apis/networkmanagement":"10.2.0","src/apis/oauth2":"1.0.7","src/apis/ondemandscanning":"15.0.0","src/apis/pagespeedonline":"1.5.0","src/apis/people":"3.0.9","src/apis/playablelocations":"1.0.5","src/apis/playcustomapp":"1.0.5","src/apis/plus":"1.0.3","src/apis/policysimulator":"12.0.0","src/apis/poly":"1.0.5","src/apis/prod_tt_sasportal":"17.0.3","src/apis/pubsublite":"2.1.7","src/apis/realtimebidding":"4.4.1","src/apis/recommendationengine":"3.4.2","src/apis/remotebuildexecution":"3.0.3","src/apis/reseller":"4.0.5","src/apis/run":"18.2.0","src/apis/safebrowsing":"10.0.0","src/apis/sasportal":"18.0.3","src/apis/script":"5.0.0","src/apis/searchconsole":"1.0.5","src/apis/serviceconsumermanagement":"20.1.0","src/apis/servicenetworking":"21.2.0","src/apis/serviceusage":"14.1.0","src/apis/sheets":"9.3.2","src/apis/siteVerification":"2.0.5","src/apis/slides":"1.2.0","src/apis/smartdevicemanagement":"3.0.2","src/apis/sourcerepo":"4.0.7","src/apis/sql":"1.0.3","src/apis/sqladmin":"24.1.0","src/apis/storage":"15.7.0","src/apis/storagetransfer":"7.2.1","src/apis/streetviewpublish":"4.0.5","src/apis/sts":"9.0.1","src/apis/tagmanager":"5.3.0","src/apis/testing":"10.1.0","src/apis/toolresults":"3.3.2","src/apis/tpu":"5.1.0","src/apis/trafficdirector":"4.0.0","src/apis/vault":"3.8.0","src/apis/vectortile":"1.0.3","src/apis/verifiedaccess":"3.4.0","src/apis/webfonts":"1.4.0","src/apis/webmasters":"1.0.3","src/apis/workflowexecutions":"7.10.1","src/apis/youtube":"21.0.0","src/apis/youtubeAnalytics":"2.0.5","src/apis/youtubereporting":"1.0.5","src/apis/forms":"2.0.7","src/apis/authorizedbuyersmarketplace":"8.0.1","src/apis/businessprofileperformance":"1.1.9","src/apis/cloudsupport":"11.0.0","src/apis/connectors":"20.1.0","src/apis/datapipelines":"1.0.7","src/apis/drivelabels":"7.0.2","src/apis/fcmdata":"1.6.0","src/apis/firebaseappcheck":"5.14.1","src/apis/ideahub":"1.0.7","src/apis/mybusinessbusinesscalls":"4.0.5","src/apis/mybusinessbusinessinformation":"4.0.10","src/apis/mybusinesslodging":"3.0.3","src/apis/mybusinessnotifications":"1.0.7","src/apis/mybusinessplaceactions":"1.0.7","src/apis/mybusinessqanda":"1.0.7","src/apis/mybusinessverifications":"2.0.2","src/apis/networkservices":"21.0.0","src/apis/paymentsresellersubscription":"10.0.4","src/apis/playdeveloperreporting":"5.4.4","src/apis/playintegrity":"13.0.0","src/apis/policyanalyzer":"1.2.0","src/apis/runtimeconfig":"4.0.0","src/apis/travelimpactmodel":"2.0.2","src/apis/versionhistory":"1.3.0","src/apis/workloadmanager":"16.0.0","src/apis/workstations":"11.0.1","src/apis/ids":"1.3.0","src/apis/places":"9.5.0","src/apis/vpcaccess":"1.6.0","src/apis/privateca":"4.2.1","src/apis/datalabeling":"2.0.2","src/apis/cloudasset":"8.0.0","src/apis/tasks":"7.0.0","src/apis/datalineage":"1.0.3","src/apis/transcoder":"4.0.2","src/apis/clouderrorreporting":"3.2.0","src/apis/kmsinventory":"4.0.0","src/apis/websecurityscanner":"1.0.5","src/apis/apigateway":"1.0.6","src/apis/analyticshub":"9.0.1","src/apis/notebooks":"8.5.1","src/apis/bigqueryconnection":"1.5.0","src/apis/recommender":"4.2.1","src/apis/analyticsadmin":"11.0.2","src/apis/servicedirectory":"3.0.5","src/apis/monitoring":"9.1.0","src/apis/gkebackup":"8.1.0","src/apis/workflows":"1.9.1","src/apis/jobs":"4.0.0","src/apis/containeranalysis":"11.1.0","src/apis/orgpolicy":"4.0.0","src/apis/documentai":"9.0.0","src/apis/datastream":"6.7.0","src/apis/assuredworkloads":"10.1.0","src/apis/logging":"8.1.0","src/apis/domains":"1.8.0","src/apis/gkehub":"16.1.0","src/apis/vision":"1.5.3","src/apis/policytroubleshooter":"1.0.8","src/apis/gameservices":"1.3.0","src/apis/acmedns":"1.0.7","src/apis/discoveryengine":"16.0.0","src/apis/secretmanager":"1.3.3","src/apis/bigquery":"14.1.0","src/apis/cloudfunctions":"5.0.0","src/apis/vmmigration":"11.0.1","src/apis/certificatemanager":"4.2.0","src/apis/baremetalsolution":"1.0.3","src/apis/accessapproval":"1.11.0","src/apis/container":"12.1.0","src/apis/publicca":"1.0.5","src/apis/batch":"9.7.0","src/apis/datacatalog":"6.0.0","src/apis/managedidentities":"3.0.6","src/apis/bigquerydatatransfer":"1.7.0","src/apis/apikeys":"1.0.7","src/apis/dns":"6.0.0","src/apis/memcache":"3.4.0","src/apis/cloudscheduler":"1.2.0","src/apis/dialogflow":"13.1.0","src/apis/contentwarehouse":"9.3.0","src/apis/speech":"1.5.0","src/apis/contactcenterinsights":"12.0.0","src/apis/oslogin":"3.0.5","src/apis/texttospeech":"1.5.0","src/apis/readerrevenuesubscriptionlinking":"1.0.5","src/apis/compute":"21.1.0","src/apis/cloudtrace":"1.1.6","src/apis/dataplex":"12.0.0","src/apis/advisorynotifications":"3.2.0","src/apis/language":"4.1.0","src/apis/retail":"12.1.0","src/apis/cloudresourcemanager":"1.3.0","src/apis/osconfig":"4.1.2","src/apis/essentialcontacts":"1.1.0","src/apis/appengine":"8.2.0","src/apis/checks":"4.1.0","src/apis/cloudchannel":"2.0.0","src/apis/translate":"3.3.0","src/apis/bigqueryreservation":"3.0.1","src/apis/apigeeregistry":"2.0.2","src/apis/redis":"13.0.0","src/apis/clouddebugger":"1.0.3","src/apis/servicecontrol":"4.2.0","src/apis/videointelligence":"1.2.4","src/apis/cloudbuild":"11.0.1","src/apis/dlp":"13.1.0","src/apis/networksecurity":"8.3.0","src/apis/binaryauthorization":"6.2.0","src/apis/securitycenter":"10.0.0","src/apis/cloudprofiler":"4.0.0","src/apis/dataproc":"9.2.0","src/apis/pubsub":"6.1.0","src/apis/dataform":"6.1.0","src/apis/servicemanagement":"2.1.0","src/apis/searchads360":"6.2.0","src/apis/firebaseappdistribution":"3.1.0","src/apis/billingbudgets":"1.3.2","src/apis/cloudiot":"1.0.2","src/apis/area120tables":"1.0.4","src/apis/beyondcorp":"15.0.0","src/apis/networkconnectivity":"8.4.0","src/apis/analyticsdata":"1.5.2","src/apis/spanner":"7.5.0","src/apis/artifactregistry":"13.0.0","src/apis/firestore":"11.1.0","src/apis/recaptchaenterprise":"6.4.0","src/apis/clouddeploy":"7.1.0","src/apis/datastore":"4.0.0","src/apis/integrations":"1.0.2","src/apis/iamcredentials":"4.0.0","src/apis/resourcesettings":"1.0.4","src/apis/aiplatform":"16.1.0","src/apis/webrisk":"1.0.3","src/apis/gkeonprem":"7.1.0","src/apis/blockchainnodeengine":"6.1.0","src/apis/migrationcenter":"8.0.0","src/apis/contactcenteraiplatform":"7.1.0","src/apis/cloudbilling":"4.0.3","src/apis/metastore":"8.0.0","src/apis/rapidmigrationassessment":"0.1.1","src/apis/playgrouping":"0.1.1","src/apis/alloydb":"11.2.0","src/apis/backupdr":"5.1.0","src/apis/vmwareengine":"1.1.0","src/apis/biglake":"0.1.1","src/apis/looker":"2.2.0","src/apis/bigquerydatapolicy":"0.2.0","src/apis/walletobjects":"6.1.0","src/apis/apphub":"2.1.0","src/apis/dataportability":"3.0.0","src/apis/workspaceevents":"1.0.3","src/apis/marketingplatformadmin":"0.2.2","src/apis/solar":"0.2.0","src/apis/config":"0.2.1","src/apis/cloudcontrolspartner":"0.3.2","src/apis/addressvalidation":"0.1.1","src/apis/developerconnect":"0.2.0","src/apis/merchantapi":"2.0.0","src/apis/meet":"0.1.1","src/apis/pollen":"0.1.1","src/apis/airquality":"0.1.1","src/apis/apim":"0.2.0","src/apis/adsenseplatform":"0.1.0","src/apis/keep":"0.1.0","src/apis/css":"0.2.0","src/apis/oracledatabase":"0.1.0","src/apis/firebasedataconnect":"0.1.0"} \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index f8b8dc82fd..5183557715 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,184 @@ [1]: https://www.npmjs.com/package/googleapis?activeTab=versions +## [145.0.0](https://github.com/googleapis/google-api-nodejs-client/compare/googleapis-v144.0.0...googleapis-v145.0.0) (2024-10-30) + + +### ⚠ BREAKING CHANGES + +* **youtube:** This release has breaking changes. +* **securitycenter:** This release has breaking changes. +* **redis:** This release has breaking changes. +* **networkservices:** This release has breaking changes. +* **migrationcenter:** This release has breaking changes. +* **merchantapi:** This release has breaking changes. +* **documentai:** This release has breaking changes. +* **discoveryengine:** This release has breaking changes. +* **dataplex:** This release has breaking changes. +* **contactcenterinsights:** This release has breaking changes. +* **cloudfunctions:** This release has breaking changes. +* **cloudchannel:** This release has breaking changes. +* **chromeuxreport:** This release has breaking changes. +* **beyondcorp:** This release has breaking changes. +* **artifactregistry:** This release has breaking changes. +* **androidpublisher:** This release has breaking changes. +* **cloudasset:** This release has breaking changes. +* **bigtableadmin:** This release has breaking changes. + +### Features + +* **accesscontextmanager:** update the API ([a99ade3](https://github.com/googleapis/google-api-nodejs-client/commit/a99ade3ec8f0090e75e85c8641e4353aefac6219)) +* **aiplatform:** update the API ([cc53b10](https://github.com/googleapis/google-api-nodejs-client/commit/cc53b10a3e91b094907d1b7c2ea78b211a9240c6)) +* **alloydb:** update the API ([6b01160](https://github.com/googleapis/google-api-nodejs-client/commit/6b0116002daeb523dfcaf62cec2c24467f2c0ee5)) +* **alloydb:** update the API ([8666c6c](https://github.com/googleapis/google-api-nodejs-client/commit/8666c6c86b331f42d034f8baa0431f47d5dad039)) +* **androiddeviceprovisioning:** update the API ([6f2e7b4](https://github.com/googleapis/google-api-nodejs-client/commit/6f2e7b41bc6fecc4f8d8fd6fe47217f27cd547de)) +* **androidmanagement:** update the API ([c74b1f2](https://github.com/googleapis/google-api-nodejs-client/commit/c74b1f2bb7917bcf7d7781bf578cf0162c044e92)) +* **androidmanagement:** update the API ([fcffb8f](https://github.com/googleapis/google-api-nodejs-client/commit/fcffb8fc4f39a54d3540e9284791c775fcc6a141)) +* **androidpublisher:** update the API ([011238e](https://github.com/googleapis/google-api-nodejs-client/commit/011238ec85f4bfdbb33216b92af60d447893c8cf)) +* **appengine:** update the API ([2110d96](https://github.com/googleapis/google-api-nodejs-client/commit/2110d96100bd9cdd9aef6b322c93b8ec060f0aad)) +* **artifactregistry:** update the API ([8ce8449](https://github.com/googleapis/google-api-nodejs-client/commit/8ce844916907d9b381cc00258757c7cfbcf3ee5f)) +* **artifactregistry:** update the API ([42a7442](https://github.com/googleapis/google-api-nodejs-client/commit/42a7442e75c7c9edf4e8f0effe6cb13fa36df193)) +* **assuredworkloads:** update the API ([f9ffc89](https://github.com/googleapis/google-api-nodejs-client/commit/f9ffc89418f9e01fbadfdb89fabdcfb6583399bc)) +* **backupdr:** update the API ([623bc3c](https://github.com/googleapis/google-api-nodejs-client/commit/623bc3c89a413eba28cacc8e24a86db9be58bce7)) +* **batch:** update the API ([cfbab2e](https://github.com/googleapis/google-api-nodejs-client/commit/cfbab2e00d8df437f929382aed9431532fdb4023)) +* **beyondcorp:** update the API ([c56953e](https://github.com/googleapis/google-api-nodejs-client/commit/c56953e8e21ac571b1bcc7a8b0984b532a9a3290)) +* **bigquerydatatransfer:** update the API ([1c6359c](https://github.com/googleapis/google-api-nodejs-client/commit/1c6359c4477d7a9c48c2d591ee7cc5cfff3fc6b0)) +* **bigquery:** update the API ([6ca0027](https://github.com/googleapis/google-api-nodejs-client/commit/6ca00276facbb58a97d4e0cc219e4464c976227a)) +* **bigtableadmin:** update the API ([d2f7565](https://github.com/googleapis/google-api-nodejs-client/commit/d2f7565f2ccdcfcdfbc731fb410aed27ca7a038e)) +* **bigtableadmin:** update the API ([454cff7](https://github.com/googleapis/google-api-nodejs-client/commit/454cff707f5d8741c461ae40aa227c63b43af37a)) +* **chat:** update the API ([0e9cbfa](https://github.com/googleapis/google-api-nodejs-client/commit/0e9cbfa2f5b08224a647e3f385f3c37c4159eb64)) +* **checks:** update the API ([d58f064](https://github.com/googleapis/google-api-nodejs-client/commit/d58f064f91451600a0113edefd1b6b113e39536f)) +* **chromeuxreport:** update the API ([79ddbf0](https://github.com/googleapis/google-api-nodejs-client/commit/79ddbf083680ed1ad771814d8e1c34048e186a61)) +* **civicinfo:** update the API ([16a5cce](https://github.com/googleapis/google-api-nodejs-client/commit/16a5cce16e1ff5933dd88c2199df60ff22211e63)) +* **cloudasset:** update the API ([ea0679e](https://github.com/googleapis/google-api-nodejs-client/commit/ea0679ee289c3630ef31b077d6eb4a60bd6709a9)) +* **cloudchannel:** update the API ([e0f22bb](https://github.com/googleapis/google-api-nodejs-client/commit/e0f22bb634a3af6e07616b9741322787a70278fc)) +* **cloudchannel:** update the API ([7815a30](https://github.com/googleapis/google-api-nodejs-client/commit/7815a30fc8e146e0800f125242d20f2203f0ee3e)) +* **clouddeploy:** update the API ([2ca080b](https://github.com/googleapis/google-api-nodejs-client/commit/2ca080b3a7504a57545f466677e73deeeb3a5d8e)) +* **cloudfunctions:** update the API ([05a90c1](https://github.com/googleapis/google-api-nodejs-client/commit/05a90c1d0794776d76838f3ed5cd20153456a488)) +* **cloudscheduler:** update the API ([91f5187](https://github.com/googleapis/google-api-nodejs-client/commit/91f5187352b60cb22bed1681107b959c2f52361b)) +* **compute:** update the API ([d17c4da](https://github.com/googleapis/google-api-nodejs-client/commit/d17c4da1b00762ba782cc4970eb10882bc6837bf)) +* **connectors:** update the API ([f22271c](https://github.com/googleapis/google-api-nodejs-client/commit/f22271c5ab3278c85844508c39bb2bb8aa7b0948)) +* **contactcenteraiplatform:** update the API ([941255e](https://github.com/googleapis/google-api-nodejs-client/commit/941255e9470392bbb89a2326ae3a3ce2e3e327e1)) +* **contactcenterinsights:** update the API ([00ff65c](https://github.com/googleapis/google-api-nodejs-client/commit/00ff65c2bc52543c0f3de0339edc4e75936d4055)) +* **containeranalysis:** update the API ([40cb106](https://github.com/googleapis/google-api-nodejs-client/commit/40cb10646a1bf2be6e2013a59021f3b2213095ff)) +* **container:** update the API ([6305f3c](https://github.com/googleapis/google-api-nodejs-client/commit/6305f3ce7f35b9b148fed4d9eccf1cd1a1784f6e)) +* **css:** update the API ([aeb221c](https://github.com/googleapis/google-api-nodejs-client/commit/aeb221c78867cc9e259f6dbef9cb6b371b144729)) +* **dataform:** update the API ([2f0ca2e](https://github.com/googleapis/google-api-nodejs-client/commit/2f0ca2e8744485661f12bb38c87f9b394e13fad7)) +* **datamigration:** update the API ([66a587e](https://github.com/googleapis/google-api-nodejs-client/commit/66a587ecfa833c837b09f34f5f731fe13a36108d)) +* **dataplex:** update the API ([9b2e079](https://github.com/googleapis/google-api-nodejs-client/commit/9b2e0790fde457e3b2dce1835cad16fe9cc460a5)) +* **dataproc:** update the API ([93a5615](https://github.com/googleapis/google-api-nodejs-client/commit/93a56159cbe4a0544f256b813575da95b450705b)) +* **datastream:** update the API ([5ef63aa](https://github.com/googleapis/google-api-nodejs-client/commit/5ef63aa502092b81f266103ad64eac4db7b05d5b)) +* **developerconnect:** update the API ([7871df4](https://github.com/googleapis/google-api-nodejs-client/commit/7871df43a59af2dfd9e6d3a1d306e2345789ee98)) +* **dfareporting:** update the API ([10a83f9](https://github.com/googleapis/google-api-nodejs-client/commit/10a83f9ba95006df4c1142f3bcbff48a86b9c4ba)) +* **dialogflow:** update the API ([924c09b](https://github.com/googleapis/google-api-nodejs-client/commit/924c09b43218ae066b0ab74e05f8d141151ab528)) +* **discoveryengine:** update the API ([43414b4](https://github.com/googleapis/google-api-nodejs-client/commit/43414b421c472f6fb176746cfc31c17588eec02d)) +* **dlp:** update the API ([24861fd](https://github.com/googleapis/google-api-nodejs-client/commit/24861fdd152272da7323e31252a0ec447565c253)) +* **documentai:** update the API ([5dd74eb](https://github.com/googleapis/google-api-nodejs-client/commit/5dd74ebf677bef836a8337aaecc6eb69b7085500)) +* **drive:** update the API ([1827fa2](https://github.com/googleapis/google-api-nodejs-client/commit/1827fa203d963dbb2524888264f2e735b3c351b7)) +* **eventarc:** update the API ([a770614](https://github.com/googleapis/google-api-nodejs-client/commit/a770614e4baa362722fdc6b34794b2018c7c59a8)) +* **file:** update the API ([748b48e](https://github.com/googleapis/google-api-nodejs-client/commit/748b48ef6e76438bdea374b199c23129e24f5a62)) +* **file:** update the API ([e0820ea](https://github.com/googleapis/google-api-nodejs-client/commit/e0820ea3a61c2e1a1c2a774723048f298108526d)) +* **firebaseappdistribution:** update the API ([8488ea7](https://github.com/googleapis/google-api-nodejs-client/commit/8488ea738ea6b28849ee2d208fc9c8ddc7896ecf)) +* **firebaseml:** update the API ([8ff1ed2](https://github.com/googleapis/google-api-nodejs-client/commit/8ff1ed23c4e406f51254b3b1c3fb0f6db596e7c9)) +* **firebase:** update the API ([d85644b](https://github.com/googleapis/google-api-nodejs-client/commit/d85644b76a03ca70c3063a678357fbc94ced69dd)) +* **firestore:** update the API ([dd53a88](https://github.com/googleapis/google-api-nodejs-client/commit/dd53a88a1104b1e7af5a58b5a5853c2e98e5286b)) +* **firestore:** update the API ([5b9e25b](https://github.com/googleapis/google-api-nodejs-client/commit/5b9e25b0f63b6a06766eefa2b03d8430027641e6)) +* **gkehub:** update the API ([44de751](https://github.com/googleapis/google-api-nodejs-client/commit/44de75112ee86c2bafc2fc4db991765034df2129)) +* **gkehub:** update the API ([c68ab6f](https://github.com/googleapis/google-api-nodejs-client/commit/c68ab6f0ddd5ad3864d7e58138f90cb4a845b1b6)) +* **healthcare:** update the API ([851bba1](https://github.com/googleapis/google-api-nodejs-client/commit/851bba19f73f656f97fcbf224538de4001a08c03)) +* **language:** update the API ([923b951](https://github.com/googleapis/google-api-nodejs-client/commit/923b951d3ebe7523ac2ea6e88e9dd810cd9478eb)) +* **logging:** update the API ([195ac69](https://github.com/googleapis/google-api-nodejs-client/commit/195ac69647342a7f36cf73ff8c3b1f6a60f4c35b)) +* **looker:** update the API ([6fd286b](https://github.com/googleapis/google-api-nodejs-client/commit/6fd286bc9346eb14824915e3f5a766149400b734)) +* **memcache:** update the API ([e830d15](https://github.com/googleapis/google-api-nodejs-client/commit/e830d154266e49757d2c624ab98e8e2065e941dc)) +* **merchantapi:** update the API ([2628015](https://github.com/googleapis/google-api-nodejs-client/commit/2628015d283599b953ee125aa65ad59185dcc061)) +* **migrationcenter:** update the API ([058349a](https://github.com/googleapis/google-api-nodejs-client/commit/058349ac84b6698fb6187f7d8d7959e76034d9c4)) +* **migrationcenter:** update the API ([c7351aa](https://github.com/googleapis/google-api-nodejs-client/commit/c7351aa2969f79a8664260e7afd65bdf605dfdbf)) +* **monitoring:** update the API ([17ef8ee](https://github.com/googleapis/google-api-nodejs-client/commit/17ef8eed784d515c5292efe7f1fa0934fa5f8e2e)) +* **networkconnectivity:** update the API ([748ab35](https://github.com/googleapis/google-api-nodejs-client/commit/748ab352f05bb911511501b69aacc14cc1830103)) +* **networkmanagement:** update the API ([9180bb9](https://github.com/googleapis/google-api-nodejs-client/commit/9180bb91a08b365f54711b9b3556cee7b0665060)) +* **networkmanagement:** update the API ([83b879c](https://github.com/googleapis/google-api-nodejs-client/commit/83b879c49cf9ba851a61fb81d03296f7aa152afc)) +* **networksecurity:** update the API ([349d271](https://github.com/googleapis/google-api-nodejs-client/commit/349d2715c4afd188ea81378c89836dd88027585f)) +* **networkservices:** update the API ([35a4402](https://github.com/googleapis/google-api-nodejs-client/commit/35a4402cb3e63a66603e1c2f429e1ddf9b7b67a0)) +* **pagespeedonline:** update the API ([20d9d57](https://github.com/googleapis/google-api-nodejs-client/commit/20d9d57ef10acb3b11a2b4d6fb91f66f96412d27)) +* **places:** update the API ([751cdc5](https://github.com/googleapis/google-api-nodejs-client/commit/751cdc53a34561e33c2aab84d0eb06f3972c6f5a)) +* **pubsub:** update the API ([36809dc](https://github.com/googleapis/google-api-nodejs-client/commit/36809dcc1820abf18bf6acf964ebbf1315cac655)) +* **recaptchaenterprise:** update the API ([1ab5713](https://github.com/googleapis/google-api-nodejs-client/commit/1ab571312e75b925db9279d288fa940fea09adea)) +* **redis:** update the API ([6f56f8c](https://github.com/googleapis/google-api-nodejs-client/commit/6f56f8c1dc6df84fa23184bafcedfd022badf98c)) +* regenerate index files ([2ffc897](https://github.com/googleapis/google-api-nodejs-client/commit/2ffc897437962a6fc186361ddf7a75ab6a82bd75)) +* regenerate index files ([10b434d](https://github.com/googleapis/google-api-nodejs-client/commit/10b434d9c3d48241282fe1ded16588f12f14bb9d)) +* **retail:** update the API ([ee326f7](https://github.com/googleapis/google-api-nodejs-client/commit/ee326f7812dfb6ebbd955a2c13a5990f0e5bd9ea)) +* **run:** update the API ([a68919f](https://github.com/googleapis/google-api-nodejs-client/commit/a68919f789bbd6258d9fd3e4fe4aa595e7b35bb5)) +* **searchads360:** update the API ([5d3283e](https://github.com/googleapis/google-api-nodejs-client/commit/5d3283e785c592c97d49eb49b268d5b2a22d31eb)) +* **securitycenter:** update the API ([9a161ab](https://github.com/googleapis/google-api-nodejs-client/commit/9a161abee383fb4a17dbd6ea203c3e7650f06a5d)) +* **serviceconsumermanagement:** update the API ([70bd2b3](https://github.com/googleapis/google-api-nodejs-client/commit/70bd2b3554e931e101ddca8c9d6b8d2b698db8f6)) +* **servicemanagement:** update the API ([5c81793](https://github.com/googleapis/google-api-nodejs-client/commit/5c81793182c383a8d3095815cc7a12f8a7701d84)) +* **servicemanagement:** update the API ([8c1c238](https://github.com/googleapis/google-api-nodejs-client/commit/8c1c2380bbbc0280b161ebb4c92b5b37a838be95)) +* **servicenetworking:** update the API ([524ddae](https://github.com/googleapis/google-api-nodejs-client/commit/524ddae5a824da5f5741c8fd9a3827c430a70d0b)) +* **serviceusage:** update the API ([6e1037d](https://github.com/googleapis/google-api-nodejs-client/commit/6e1037de478666cd053fe82f59c3b30c7c6545be)) +* **spanner:** update the API ([f2669c6](https://github.com/googleapis/google-api-nodejs-client/commit/f2669c6b37e934ac4f543b8560fcfb9bf6268c6b)) +* **sqladmin:** update the API ([3c85e30](https://github.com/googleapis/google-api-nodejs-client/commit/3c85e30276f6bf23f274890cadad731f9e021db9)) +* **sqladmin:** update the API ([300f8df](https://github.com/googleapis/google-api-nodejs-client/commit/300f8dfca2e412516fdb8e37e5c02c611c0d802c)) +* **storage:** update the API ([e40cb95](https://github.com/googleapis/google-api-nodejs-client/commit/e40cb950668f9881f13abd468ea36f18e6767b69)) +* **testing:** update the API ([89acbc3](https://github.com/googleapis/google-api-nodejs-client/commit/89acbc39bdde866596132de464a2b70a64988936)) +* **texttospeech:** update the API ([bd7926f](https://github.com/googleapis/google-api-nodejs-client/commit/bd7926f6a86ba09e8dd25a49f245354881d19564)) +* **tpu:** update the API ([d313c50](https://github.com/googleapis/google-api-nodejs-client/commit/d313c50ab1acce7c0c0e8f5db913b66acb8cf747)) +* **vpcaccess:** update the API ([460b5b6](https://github.com/googleapis/google-api-nodejs-client/commit/460b5b63e8cceb473eac1b02e92a16b3b8887c92)) +* **walletobjects:** update the API ([1df0546](https://github.com/googleapis/google-api-nodejs-client/commit/1df0546a889b1e70c81dca4065c25387c52c37a4)) +* **youtube:** update the API ([b11ea5d](https://github.com/googleapis/google-api-nodejs-client/commit/b11ea5dbfad9a3ad6b95d5e63ce826881f703204)) + + +### Bug Fixes + +* **adexchangebuyer2:** update the API ([75e0a4e](https://github.com/googleapis/google-api-nodejs-client/commit/75e0a4e792b531881ddba6f087dca364d14697c6)) +* **admin:** update the API ([ecaf712](https://github.com/googleapis/google-api-nodejs-client/commit/ecaf7121298fde4953811d266c1d607a1cc50f93)) +* **adsensehost:** update the API ([0fac12c](https://github.com/googleapis/google-api-nodejs-client/commit/0fac12c8f580067eaff17ec17a0a247b9217d0ba)) +* **airquality:** update the API ([4da4418](https://github.com/googleapis/google-api-nodejs-client/commit/4da44189d3284403ef7c02bb42bde377ddf8220c)) +* **analyticsadmin:** update the API ([7a7a7d4](https://github.com/googleapis/google-api-nodejs-client/commit/7a7a7d4ef1d7253919161cdfd3370222b64f561a)) +* **analyticshub:** update the API ([e82f3d3](https://github.com/googleapis/google-api-nodejs-client/commit/e82f3d3a647af2c7528f419adc866f1777dfbefc)) +* **analyticshub:** update the API ([dc9cac0](https://github.com/googleapis/google-api-nodejs-client/commit/dc9cac09c85fde7721f21b6565d999ccb2e9bf3a)) +* **authorizedbuyersmarketplace:** update the API ([d34a16e](https://github.com/googleapis/google-api-nodejs-client/commit/d34a16e11f83170d7ada5805d694a356c50e2420)) +* **batch:** update the API ([2ebc243](https://github.com/googleapis/google-api-nodejs-client/commit/2ebc243bc5f78bd12ac2b69fdbea4cc37aa6ab6e)) +* **bigqueryreservation:** update the API ([156818a](https://github.com/googleapis/google-api-nodejs-client/commit/156818a600e87b5bb5067aee24009c8c410bef54)) +* **businessprofileperformance:** update the API ([ece71e5](https://github.com/googleapis/google-api-nodejs-client/commit/ece71e560f7bf74d6e823304ee1501c5a981e971)) +* **calendar:** update the API ([8edd6d7](https://github.com/googleapis/google-api-nodejs-client/commit/8edd6d72a9e322f9e6d330a2d0a2b26c3d9bea2b)) +* **chat:** update the API ([efa4237](https://github.com/googleapis/google-api-nodejs-client/commit/efa4237b45562a41b2f9fdb15970b578c52bdebb)) +* **classroom:** update the API ([c9a2815](https://github.com/googleapis/google-api-nodejs-client/commit/c9a2815911c0d31630196839765f0314400f260e)) +* **cloudbilling:** update the API ([f533be2](https://github.com/googleapis/google-api-nodejs-client/commit/f533be2bafae11ff556205a58b84c79dd377ed1e)) +* **cloudbuild:** update the API ([16cacdc](https://github.com/googleapis/google-api-nodejs-client/commit/16cacdcfb2cba2f4023a889a347feb06b7f209a8)) +* **cloudcontrolspartner:** update the API ([d4cda75](https://github.com/googleapis/google-api-nodejs-client/commit/d4cda750587fd539b97ccc06789d22c335232121)) +* **cloudidentity:** update the API ([702423d](https://github.com/googleapis/google-api-nodejs-client/commit/702423d1967a8190cfe79f5fe5f57f124a6fda91)) +* **cloudkms:** update the API ([777deed](https://github.com/googleapis/google-api-nodejs-client/commit/777deedda818e54efd009104fd9686ce3341192a)) +* **dialogflow:** update the API ([635d129](https://github.com/googleapis/google-api-nodejs-client/commit/635d12952ad6c4a59a18f24453b97dfb8f56b8d2)) +* **displayvideo:** update the API ([bce6c6d](https://github.com/googleapis/google-api-nodejs-client/commit/bce6c6de140ccb630af8ae2ef040096a0a6fba59)) +* **dlp:** update the API ([c227be2](https://github.com/googleapis/google-api-nodejs-client/commit/c227be2055b763cac8183dac1231adb7a5d25484)) +* **firebaseappcheck:** update the API ([d851555](https://github.com/googleapis/google-api-nodejs-client/commit/d8515556e0d25e1bb12a123d2cb597d92dcd6153)) +* **firebasedataconnect:** update the API ([7e57a2a](https://github.com/googleapis/google-api-nodejs-client/commit/7e57a2a5737053b48b51d68c0bf698aa4214d748)) +* **iap:** update the API ([4e8d031](https://github.com/googleapis/google-api-nodejs-client/commit/4e8d03101adaaa8686ac8d3f4d502d204e187cec)) +* **merchantapi:** update the API ([b0544b5](https://github.com/googleapis/google-api-nodejs-client/commit/b0544b564fcdf13236bd39280afab71b78e88cd5)) +* **mybusinessbusinessinformation:** update the API ([f08ec6e](https://github.com/googleapis/google-api-nodejs-client/commit/f08ec6e52c1d321afab253b2a25f9fffd12bad30)) +* **mybusinesslodging:** update the API ([ccafbfe](https://github.com/googleapis/google-api-nodejs-client/commit/ccafbfe63a38a3b0d7ca9d5c900d6d7a4fc36214)) +* **notebooks:** update the API ([820337f](https://github.com/googleapis/google-api-nodejs-client/commit/820337f5cd11f456b3cbfd21f54a7497548bfb81)) +* **oracledatabase:** update the API ([e361d31](https://github.com/googleapis/google-api-nodejs-client/commit/e361d31ccd5bfeb92bd259ddc4b4d894422815b4)) +* **osconfig:** update the API ([0f56c0f](https://github.com/googleapis/google-api-nodejs-client/commit/0f56c0fc6f64fcac660d03500258b7a0815d7c18)) +* **osconfig:** update the API ([16514a1](https://github.com/googleapis/google-api-nodejs-client/commit/16514a162e8aeb6589e98c55c2bf5dda939bffb8)) +* **playdeveloperreporting:** update the API ([0ffc422](https://github.com/googleapis/google-api-nodejs-client/commit/0ffc422acd31eed5b774efbef82375afb2116bfa)) +* **privateca:** update the API ([ecf5c60](https://github.com/googleapis/google-api-nodejs-client/commit/ecf5c60be112f44d6d77ca52f90e7f17f77a314f)) +* **realtimebidding:** update the API ([34c7bcb](https://github.com/googleapis/google-api-nodejs-client/commit/34c7bcb997279bbbb7285d24e2a88df455928e1c)) +* **recaptchaenterprise:** update the API ([7451e3a](https://github.com/googleapis/google-api-nodejs-client/commit/7451e3a79657d2366e709f985b2e46d18d28f241)) +* **run:** update the API ([515cb27](https://github.com/googleapis/google-api-nodejs-client/commit/515cb27c897b38e167b2f6899def280d20090316)) +* **secretmanager:** update the API ([1e532c1](https://github.com/googleapis/google-api-nodejs-client/commit/1e532c174eafc6ea1b960c43173c371f56433bef)) +* **servicenetworking:** update the API ([acaf25f](https://github.com/googleapis/google-api-nodejs-client/commit/acaf25f76bcb206b0ce760cdec5fe5312157edf0)) +* **sheets:** update the API ([26e077f](https://github.com/googleapis/google-api-nodejs-client/commit/26e077f421b91ed2dbf883f47e5c9ad7ed55821b)) +* **storagetransfer:** update the API ([921c64d](https://github.com/googleapis/google-api-nodejs-client/commit/921c64d13ba28ea71931140ff35af4f5a7a8f48c)) +* **sts:** update the API ([73354e6](https://github.com/googleapis/google-api-nodejs-client/commit/73354e622ae72c652557752e57c7bcc62adb09ad)) +* **vision:** update the API ([374ced4](https://github.com/googleapis/google-api-nodejs-client/commit/374ced45ff5bd565ba7c35dc3489b4f5fc58cfc8)) +* **vmmigration:** update the API ([fd0c642](https://github.com/googleapis/google-api-nodejs-client/commit/fd0c642f2ee280a024aa87f539151c5d229f3015)) +* **vmmigration:** update the API ([a00e01a](https://github.com/googleapis/google-api-nodejs-client/commit/a00e01a4400ca06d7ca83edfdb65b71138ac4b92)) +* **workflowexecutions:** update the API ([d4a855b](https://github.com/googleapis/google-api-nodejs-client/commit/d4a855b1ad4e4d1ae9b8ca5e1eda2f92198d8962)) +* **workflows:** update the API ([3a83269](https://github.com/googleapis/google-api-nodejs-client/commit/3a8326961559508c46b39f6469d7cdb9613d515a)) +* **workspaceevents:** update the API ([385c705](https://github.com/googleapis/google-api-nodejs-client/commit/385c70576c2fd094a0ed7f7f93fe2b751143b246)) +* **workstations:** update the API ([332cca5](https://github.com/googleapis/google-api-nodejs-client/commit/332cca5067767705cf75bef717315e1417a78ca4)) + ## [144.0.0](https://github.com/googleapis/google-api-nodejs-client/compare/googleapis-v143.0.0...googleapis-v144.0.0) (2024-08-30) diff --git a/package.json b/package.json index 90852ff62c..c969a13de9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "googleapis", - "version": "144.0.0", + "version": "145.0.0", "repository": "googleapis/google-api-nodejs-client", "license": "Apache-2.0", "description": "Google APIs Client Library for Node.js", diff --git a/samples/package.json b/samples/package.json index 3b392e6ca0..b0c7a60525 100644 --- a/samples/package.json +++ b/samples/package.json @@ -18,7 +18,7 @@ "dependencies": { "@google-cloud/local-auth": "^3.0.0", "express": "^4.17.1", - "googleapis": "^144.0.0", + "googleapis": "^145.0.0", "googleapis-common": "^7.0.0", "nconf": "^0.12.0", "open": "^8.0.0", diff --git a/src/apis/adexchangebuyer2/CHANGELOG.md b/src/apis/adexchangebuyer2/CHANGELOG.md index 9747fc83bb..f3f5e22714 100644 --- a/src/apis/adexchangebuyer2/CHANGELOG.md +++ b/src/apis/adexchangebuyer2/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [4.2.3](https://github.com/googleapis/google-api-nodejs-client/compare/adexchangebuyer2-v4.2.2...adexchangebuyer2-v4.2.3) (2024-10-30) + + +### Bug Fixes + +* **adexchangebuyer2:** update the API ([75e0a4e](https://github.com/googleapis/google-api-nodejs-client/commit/75e0a4e792b531881ddba6f087dca364d14697c6)) + ## [4.2.2](https://github.com/googleapis/google-api-nodejs-client/compare/adexchangebuyer2-v4.2.1...adexchangebuyer2-v4.2.2) (2024-05-02) diff --git a/src/apis/adexchangebuyer2/package.json b/src/apis/adexchangebuyer2/package.json index e7bf048ab9..96630848ad 100644 --- a/src/apis/adexchangebuyer2/package.json +++ b/src/apis/adexchangebuyer2/package.json @@ -1,6 +1,6 @@ { "name": "@googleapis/adexchangebuyer2", - "version": "4.2.2", + "version": "4.2.3", "description": "adexchangebuyer2", "main": "build/index.js", "types": "build/index.d.ts", diff --git a/src/apis/admin/CHANGELOG.md b/src/apis/admin/CHANGELOG.md index e114ca1a46..7fb6d0c97c 100644 --- a/src/apis/admin/CHANGELOG.md +++ b/src/apis/admin/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [23.0.1](https://github.com/googleapis/google-api-nodejs-client/compare/admin-v23.0.0...admin-v23.0.1) (2024-10-30) + + +### Bug Fixes + +* **admin:** update the API ([ecaf712](https://github.com/googleapis/google-api-nodejs-client/commit/ecaf7121298fde4953811d266c1d607a1cc50f93)) + ## [23.0.0](https://github.com/googleapis/google-api-nodejs-client/compare/admin-v22.0.0...admin-v23.0.0) (2024-08-16) diff --git a/src/apis/admin/package.json b/src/apis/admin/package.json index 8bff3137b6..5ad9a5bdaf 100644 --- a/src/apis/admin/package.json +++ b/src/apis/admin/package.json @@ -1,6 +1,6 @@ { "name": "@googleapis/admin", - "version": "23.0.0", + "version": "23.0.1", "description": "admin", "main": "build/index.js", "types": "build/index.d.ts", diff --git a/src/apis/adsensehost/CHANGELOG.md b/src/apis/adsensehost/CHANGELOG.md index a15e5c43aa..a64fdabbbf 100644 --- a/src/apis/adsensehost/CHANGELOG.md +++ b/src/apis/adsensehost/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [5.0.8](https://github.com/googleapis/google-api-nodejs-client/compare/adsensehost-v5.0.7...adsensehost-v5.0.8) (2024-10-30) + + +### Bug Fixes + +* **adsensehost:** update the API ([0fac12c](https://github.com/googleapis/google-api-nodejs-client/commit/0fac12c8f580067eaff17ec17a0a247b9217d0ba)) + ## [5.0.7](https://github.com/googleapis/google-api-nodejs-client/compare/adsensehost-v5.0.6...adsensehost-v5.0.7) (2024-05-02) diff --git a/src/apis/adsensehost/package.json b/src/apis/adsensehost/package.json index 73d072f433..ae51e69c53 100644 --- a/src/apis/adsensehost/package.json +++ b/src/apis/adsensehost/package.json @@ -1,6 +1,6 @@ { "name": "@googleapis/adsensehost", - "version": "5.0.7", + "version": "5.0.8", "description": "adsensehost", "main": "build/index.js", "types": "build/index.d.ts", diff --git a/src/apis/analyticsadmin/CHANGELOG.md b/src/apis/analyticsadmin/CHANGELOG.md index dfb95bde99..6f0c573956 100644 --- a/src/apis/analyticsadmin/CHANGELOG.md +++ b/src/apis/analyticsadmin/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [11.0.2](https://github.com/googleapis/google-api-nodejs-client/compare/analyticsadmin-v11.0.1...analyticsadmin-v11.0.2) (2024-10-30) + + +### Bug Fixes + +* **analyticsadmin:** update the API ([7a7a7d4](https://github.com/googleapis/google-api-nodejs-client/commit/7a7a7d4ef1d7253919161cdfd3370222b64f561a)) + ## [11.0.1](https://github.com/googleapis/google-api-nodejs-client/compare/analyticsadmin-v11.0.0...analyticsadmin-v11.0.1) (2024-08-30) diff --git a/src/apis/analyticsadmin/package.json b/src/apis/analyticsadmin/package.json index e68aeb136b..dd24c6ca87 100644 --- a/src/apis/analyticsadmin/package.json +++ b/src/apis/analyticsadmin/package.json @@ -1,6 +1,6 @@ { "name": "@googleapis/analyticsadmin", - "version": "11.0.1", + "version": "11.0.2", "description": "analyticsadmin", "main": "build/index.js", "types": "build/index.d.ts", diff --git a/src/apis/analyticshub/CHANGELOG.md b/src/apis/analyticshub/CHANGELOG.md index 12df47b045..535cf5cff5 100644 --- a/src/apis/analyticshub/CHANGELOG.md +++ b/src/apis/analyticshub/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [9.0.1](https://github.com/googleapis/google-api-nodejs-client/compare/analyticshub-v9.0.0...analyticshub-v9.0.1) (2024-10-30) + + +### Bug Fixes + +* **analyticshub:** update the API ([e82f3d3](https://github.com/googleapis/google-api-nodejs-client/commit/e82f3d3a647af2c7528f419adc866f1777dfbefc)) +* **analyticshub:** update the API ([dc9cac0](https://github.com/googleapis/google-api-nodejs-client/commit/dc9cac09c85fde7721f21b6565d999ccb2e9bf3a)) + ## [9.0.0](https://github.com/googleapis/google-api-nodejs-client/compare/analyticshub-v8.0.0...analyticshub-v9.0.0) (2024-08-16) diff --git a/src/apis/analyticshub/package.json b/src/apis/analyticshub/package.json index 15f542867e..8417a978c0 100644 --- a/src/apis/analyticshub/package.json +++ b/src/apis/analyticshub/package.json @@ -1,6 +1,6 @@ { "name": "@googleapis/analyticshub", - "version": "9.0.0", + "version": "9.0.1", "description": "analyticshub", "main": "build/index.js", "types": "build/index.d.ts", diff --git a/src/apis/androiddeviceprovisioning/CHANGELOG.md b/src/apis/androiddeviceprovisioning/CHANGELOG.md index f5a421e5ba..52e72edbf9 100644 --- a/src/apis/androiddeviceprovisioning/CHANGELOG.md +++ b/src/apis/androiddeviceprovisioning/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [6.4.0](https://github.com/googleapis/google-api-nodejs-client/compare/androiddeviceprovisioning-v6.3.2...androiddeviceprovisioning-v6.4.0) (2024-10-30) + + +### Features + +* **androiddeviceprovisioning:** update the API ([6f2e7b4](https://github.com/googleapis/google-api-nodejs-client/commit/6f2e7b41bc6fecc4f8d8fd6fe47217f27cd547de)) + ## [6.3.2](https://github.com/googleapis/google-api-nodejs-client/compare/androiddeviceprovisioning-v6.3.1...androiddeviceprovisioning-v6.3.2) (2024-05-02) diff --git a/src/apis/androiddeviceprovisioning/package.json b/src/apis/androiddeviceprovisioning/package.json index f643fd55ed..5b01be4187 100644 --- a/src/apis/androiddeviceprovisioning/package.json +++ b/src/apis/androiddeviceprovisioning/package.json @@ -1,6 +1,6 @@ { "name": "@googleapis/androiddeviceprovisioning", - "version": "6.3.2", + "version": "6.4.0", "description": "androiddeviceprovisioning", "main": "build/index.js", "types": "build/index.d.ts", diff --git a/src/apis/androidmanagement/CHANGELOG.md b/src/apis/androidmanagement/CHANGELOG.md index 528fed0e7c..87f530a10e 100644 --- a/src/apis/androidmanagement/CHANGELOG.md +++ b/src/apis/androidmanagement/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [17.10.0](https://github.com/googleapis/google-api-nodejs-client/compare/androidmanagement-v17.9.0...androidmanagement-v17.10.0) (2024-10-30) + + +### Features + +* **androidmanagement:** update the API ([c74b1f2](https://github.com/googleapis/google-api-nodejs-client/commit/c74b1f2bb7917bcf7d7781bf578cf0162c044e92)) +* **androidmanagement:** update the API ([fcffb8f](https://github.com/googleapis/google-api-nodejs-client/commit/fcffb8fc4f39a54d3540e9284791c775fcc6a141)) + ## [17.9.0](https://github.com/googleapis/google-api-nodejs-client/compare/androidmanagement-v17.8.0...androidmanagement-v17.9.0) (2024-08-27) diff --git a/src/apis/androidmanagement/package.json b/src/apis/androidmanagement/package.json index 4aa9cf4144..8cb8e4f8c3 100644 --- a/src/apis/androidmanagement/package.json +++ b/src/apis/androidmanagement/package.json @@ -1,6 +1,6 @@ { "name": "@googleapis/androidmanagement", - "version": "17.9.0", + "version": "17.10.0", "description": "androidmanagement", "main": "build/index.js", "types": "build/index.d.ts", diff --git a/src/apis/androidpublisher/CHANGELOG.md b/src/apis/androidpublisher/CHANGELOG.md index cd0105a712..fddb258e5d 100644 --- a/src/apis/androidpublisher/CHANGELOG.md +++ b/src/apis/androidpublisher/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## [23.0.0](https://github.com/googleapis/google-api-nodejs-client/compare/androidpublisher-v22.0.0...androidpublisher-v23.0.0) (2024-10-30) + + +### ⚠ BREAKING CHANGES + +* **androidpublisher:** This release has breaking changes. + +### Features + +* **androidpublisher:** update the API ([011238e](https://github.com/googleapis/google-api-nodejs-client/commit/011238ec85f4bfdbb33216b92af60d447893c8cf)) + ## [22.0.0](https://github.com/googleapis/google-api-nodejs-client/compare/androidpublisher-v21.1.0...androidpublisher-v22.0.0) (2024-08-27) diff --git a/src/apis/androidpublisher/package.json b/src/apis/androidpublisher/package.json index 94356716fe..2991090568 100644 --- a/src/apis/androidpublisher/package.json +++ b/src/apis/androidpublisher/package.json @@ -1,6 +1,6 @@ { "name": "@googleapis/androidpublisher", - "version": "22.0.0", + "version": "23.0.0", "description": "androidpublisher", "main": "build/index.js", "types": "build/index.d.ts", diff --git a/src/apis/authorizedbuyersmarketplace/CHANGELOG.md b/src/apis/authorizedbuyersmarketplace/CHANGELOG.md index 441e43a122..d41a7aea0d 100644 --- a/src/apis/authorizedbuyersmarketplace/CHANGELOG.md +++ b/src/apis/authorizedbuyersmarketplace/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [8.0.1](https://github.com/googleapis/google-api-nodejs-client/compare/authorizedbuyersmarketplace-v8.0.0...authorizedbuyersmarketplace-v8.0.1) (2024-10-30) + + +### Bug Fixes + +* **authorizedbuyersmarketplace:** update the API ([d34a16e](https://github.com/googleapis/google-api-nodejs-client/commit/d34a16e11f83170d7ada5805d694a356c50e2420)) + ## [8.0.0](https://github.com/googleapis/google-api-nodejs-client/compare/authorizedbuyersmarketplace-v7.0.0...authorizedbuyersmarketplace-v8.0.0) (2024-08-16) diff --git a/src/apis/authorizedbuyersmarketplace/package.json b/src/apis/authorizedbuyersmarketplace/package.json index f380017fb9..7638e5f2c6 100644 --- a/src/apis/authorizedbuyersmarketplace/package.json +++ b/src/apis/authorizedbuyersmarketplace/package.json @@ -1,6 +1,6 @@ { "name": "@googleapis/authorizedbuyersmarketplace", - "version": "8.0.0", + "version": "8.0.1", "description": "authorizedbuyersmarketplace", "main": "build/index.js", "types": "build/index.d.ts", diff --git a/src/apis/bigtableadmin/CHANGELOG.md b/src/apis/bigtableadmin/CHANGELOG.md index dbca0695c2..f4da2dc8ad 100644 --- a/src/apis/bigtableadmin/CHANGELOG.md +++ b/src/apis/bigtableadmin/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## [24.0.0](https://github.com/googleapis/google-api-nodejs-client/compare/bigtableadmin-v23.0.0...bigtableadmin-v24.0.0) (2024-10-30) + + +### ⚠ BREAKING CHANGES + +* **bigtableadmin:** This release has breaking changes. + +### Features + +* **bigtableadmin:** update the API ([d2f7565](https://github.com/googleapis/google-api-nodejs-client/commit/d2f7565f2ccdcfcdfbc731fb410aed27ca7a038e)) +* **bigtableadmin:** update the API ([454cff7](https://github.com/googleapis/google-api-nodejs-client/commit/454cff707f5d8741c461ae40aa227c63b43af37a)) + ## [23.0.0](https://github.com/googleapis/google-api-nodejs-client/compare/bigtableadmin-v22.0.0...bigtableadmin-v23.0.0) (2024-08-16) diff --git a/src/apis/bigtableadmin/package.json b/src/apis/bigtableadmin/package.json index 8b6bb77bad..a166c3e049 100644 --- a/src/apis/bigtableadmin/package.json +++ b/src/apis/bigtableadmin/package.json @@ -1,6 +1,6 @@ { "name": "@googleapis/bigtableadmin", - "version": "23.0.0", + "version": "24.0.0", "description": "bigtableadmin", "main": "build/index.js", "types": "build/index.d.ts", diff --git a/src/apis/businessprofileperformance/CHANGELOG.md b/src/apis/businessprofileperformance/CHANGELOG.md index 81ca3558ea..a62e51c545 100644 --- a/src/apis/businessprofileperformance/CHANGELOG.md +++ b/src/apis/businessprofileperformance/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [1.1.9](https://github.com/googleapis/google-api-nodejs-client/compare/businessprofileperformance-v1.1.8...businessprofileperformance-v1.1.9) (2024-10-30) + + +### Bug Fixes + +* **businessprofileperformance:** update the API ([ece71e5](https://github.com/googleapis/google-api-nodejs-client/commit/ece71e560f7bf74d6e823304ee1501c5a981e971)) + ## [1.1.8](https://github.com/googleapis/google-api-nodejs-client/compare/businessprofileperformance-v1.1.7...businessprofileperformance-v1.1.8) (2024-05-02) diff --git a/src/apis/businessprofileperformance/package.json b/src/apis/businessprofileperformance/package.json index 84b8c3ea12..5813abebea 100644 --- a/src/apis/businessprofileperformance/package.json +++ b/src/apis/businessprofileperformance/package.json @@ -1,6 +1,6 @@ { "name": "@googleapis/businessprofileperformance", - "version": "1.1.8", + "version": "1.1.9", "description": "businessprofileperformance", "main": "build/index.js", "types": "build/index.d.ts", diff --git a/src/apis/calendar/CHANGELOG.md b/src/apis/calendar/CHANGELOG.md index 0db32558b0..23f7928b08 100644 --- a/src/apis/calendar/CHANGELOG.md +++ b/src/apis/calendar/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [9.7.10](https://github.com/googleapis/google-api-nodejs-client/compare/calendar-v9.7.9...calendar-v9.7.10) (2024-10-30) + + +### Bug Fixes + +* **calendar:** update the API ([8edd6d7](https://github.com/googleapis/google-api-nodejs-client/commit/8edd6d72a9e322f9e6d330a2d0a2b26c3d9bea2b)) + ## [9.7.9](https://github.com/googleapis/google-api-nodejs-client/compare/calendar-v9.7.8...calendar-v9.7.9) (2024-08-16) diff --git a/src/apis/calendar/package.json b/src/apis/calendar/package.json index 4bbaa0c7b1..5bf57e0c01 100644 --- a/src/apis/calendar/package.json +++ b/src/apis/calendar/package.json @@ -1,6 +1,6 @@ { "name": "@googleapis/calendar", - "version": "9.7.9", + "version": "9.7.10", "description": "calendar", "main": "build/index.js", "types": "build/index.d.ts", diff --git a/src/apis/chat/CHANGELOG.md b/src/apis/chat/CHANGELOG.md index 1a07befb9a..0b5e00b649 100644 --- a/src/apis/chat/CHANGELOG.md +++ b/src/apis/chat/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## [32.1.0](https://github.com/googleapis/google-api-nodejs-client/compare/chat-v32.0.0...chat-v32.1.0) (2024-10-30) + + +### Features + +* **chat:** update the API ([0e9cbfa](https://github.com/googleapis/google-api-nodejs-client/commit/0e9cbfa2f5b08224a647e3f385f3c37c4159eb64)) + + +### Bug Fixes + +* **chat:** update the API ([efa4237](https://github.com/googleapis/google-api-nodejs-client/commit/efa4237b45562a41b2f9fdb15970b578c52bdebb)) + ## [32.0.0](https://github.com/googleapis/google-api-nodejs-client/compare/chat-v31.1.0...chat-v32.0.0) (2024-08-27) diff --git a/src/apis/chat/package.json b/src/apis/chat/package.json index 9cf0d4df01..89f40a805c 100644 --- a/src/apis/chat/package.json +++ b/src/apis/chat/package.json @@ -1,6 +1,6 @@ { "name": "@googleapis/chat", - "version": "32.0.0", + "version": "32.1.0", "description": "chat", "main": "build/index.js", "types": "build/index.d.ts", diff --git a/src/apis/chromeuxreport/CHANGELOG.md b/src/apis/chromeuxreport/CHANGELOG.md index 9c278d50c2..6dddab1af1 100644 --- a/src/apis/chromeuxreport/CHANGELOG.md +++ b/src/apis/chromeuxreport/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## [2.0.0](https://github.com/googleapis/google-api-nodejs-client/compare/chromeuxreport-v1.5.2...chromeuxreport-v2.0.0) (2024-10-30) + + +### ⚠ BREAKING CHANGES + +* **chromeuxreport:** This release has breaking changes. + +### Features + +* **chromeuxreport:** update the API ([79ddbf0](https://github.com/googleapis/google-api-nodejs-client/commit/79ddbf083680ed1ad771814d8e1c34048e186a61)) + ## [1.5.2](https://github.com/googleapis/google-api-nodejs-client/compare/chromeuxreport-v1.5.1...chromeuxreport-v1.5.2) (2024-05-02) diff --git a/src/apis/chromeuxreport/package.json b/src/apis/chromeuxreport/package.json index 857c30f980..fdd97e2d77 100644 --- a/src/apis/chromeuxreport/package.json +++ b/src/apis/chromeuxreport/package.json @@ -1,6 +1,6 @@ { "name": "@googleapis/chromeuxreport", - "version": "1.5.2", + "version": "2.0.0", "description": "chromeuxreport", "main": "build/index.js", "types": "build/index.d.ts", diff --git a/src/apis/civicinfo/CHANGELOG.md b/src/apis/civicinfo/CHANGELOG.md index 2f3fc1ef17..b226609ac7 100644 --- a/src/apis/civicinfo/CHANGELOG.md +++ b/src/apis/civicinfo/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [15.1.0](https://github.com/googleapis/google-api-nodejs-client/compare/civicinfo-v15.0.0...civicinfo-v15.1.0) (2024-10-30) + + +### Features + +* **civicinfo:** update the API ([16a5cce](https://github.com/googleapis/google-api-nodejs-client/commit/16a5cce16e1ff5933dd88c2199df60ff22211e63)) + ## [15.0.0](https://github.com/googleapis/google-api-nodejs-client/compare/civicinfo-v14.0.0...civicinfo-v15.0.0) (2024-08-16) diff --git a/src/apis/civicinfo/package.json b/src/apis/civicinfo/package.json index 72940ad371..06950c55b7 100644 --- a/src/apis/civicinfo/package.json +++ b/src/apis/civicinfo/package.json @@ -1,6 +1,6 @@ { "name": "@googleapis/civicinfo", - "version": "15.0.0", + "version": "15.1.0", "description": "civicinfo", "main": "build/index.js", "types": "build/index.d.ts", diff --git a/src/apis/classroom/CHANGELOG.md b/src/apis/classroom/CHANGELOG.md index 9e6d09e703..a6d79ad4c0 100644 --- a/src/apis/classroom/CHANGELOG.md +++ b/src/apis/classroom/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [4.4.1](https://github.com/googleapis/google-api-nodejs-client/compare/classroom-v4.4.0...classroom-v4.4.1) (2024-10-30) + + +### Bug Fixes + +* **classroom:** update the API ([c9a2815](https://github.com/googleapis/google-api-nodejs-client/commit/c9a2815911c0d31630196839765f0314400f260e)) + ## [4.4.0](https://github.com/googleapis/google-api-nodejs-client/compare/classroom-v4.3.0...classroom-v4.4.0) (2024-08-16) diff --git a/src/apis/classroom/package.json b/src/apis/classroom/package.json index ac4de0754b..1a09a13cfa 100644 --- a/src/apis/classroom/package.json +++ b/src/apis/classroom/package.json @@ -1,6 +1,6 @@ { "name": "@googleapis/classroom", - "version": "4.4.0", + "version": "4.4.1", "description": "classroom", "main": "build/index.js", "types": "build/index.d.ts", diff --git a/src/apis/cloudasset/CHANGELOG.md b/src/apis/cloudasset/CHANGELOG.md index c60476165f..6e6d999634 100644 --- a/src/apis/cloudasset/CHANGELOG.md +++ b/src/apis/cloudasset/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## [8.0.0](https://github.com/googleapis/google-api-nodejs-client/compare/cloudasset-v7.4.1...cloudasset-v8.0.0) (2024-10-30) + + +### ⚠ BREAKING CHANGES + +* **cloudasset:** This release has breaking changes. + +### Features + +* **cloudasset:** update the API ([ea0679e](https://github.com/googleapis/google-api-nodejs-client/commit/ea0679ee289c3630ef31b077d6eb4a60bd6709a9)) + ## [7.4.1](https://github.com/googleapis/google-api-nodejs-client/compare/cloudasset-v7.4.0...cloudasset-v7.4.1) (2024-08-30) diff --git a/src/apis/cloudasset/package.json b/src/apis/cloudasset/package.json index 3daec4f76f..e84d8d8b80 100644 --- a/src/apis/cloudasset/package.json +++ b/src/apis/cloudasset/package.json @@ -1,6 +1,6 @@ { "name": "@googleapis/cloudasset", - "version": "7.4.1", + "version": "8.0.0", "description": "cloudasset", "main": "build/index.js", "types": "build/index.d.ts", diff --git a/src/apis/cloudidentity/CHANGELOG.md b/src/apis/cloudidentity/CHANGELOG.md index 7a7d5dc2b1..dea3ddaa8f 100644 --- a/src/apis/cloudidentity/CHANGELOG.md +++ b/src/apis/cloudidentity/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [16.0.1](https://github.com/googleapis/google-api-nodejs-client/compare/cloudidentity-v16.0.0...cloudidentity-v16.0.1) (2024-10-30) + + +### Bug Fixes + +* **cloudidentity:** update the API ([702423d](https://github.com/googleapis/google-api-nodejs-client/commit/702423d1967a8190cfe79f5fe5f57f124a6fda91)) + ## [16.0.0](https://github.com/googleapis/google-api-nodejs-client/compare/cloudidentity-v15.0.0...cloudidentity-v16.0.0) (2024-08-16) diff --git a/src/apis/cloudidentity/package.json b/src/apis/cloudidentity/package.json index 9c65672d18..19b4e05bc9 100644 --- a/src/apis/cloudidentity/package.json +++ b/src/apis/cloudidentity/package.json @@ -1,6 +1,6 @@ { "name": "@googleapis/cloudidentity", - "version": "16.0.0", + "version": "16.0.1", "description": "cloudidentity", "main": "build/index.js", "types": "build/index.d.ts", diff --git a/src/apis/cloudkms/CHANGELOG.md b/src/apis/cloudkms/CHANGELOG.md index 618244ef29..43e1e3094b 100644 --- a/src/apis/cloudkms/CHANGELOG.md +++ b/src/apis/cloudkms/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [17.0.1](https://github.com/googleapis/google-api-nodejs-client/compare/cloudkms-v17.0.0...cloudkms-v17.0.1) (2024-10-30) + + +### Bug Fixes + +* **cloudkms:** update the API ([777deed](https://github.com/googleapis/google-api-nodejs-client/commit/777deedda818e54efd009104fd9686ce3341192a)) + ## [17.0.0](https://github.com/googleapis/google-api-nodejs-client/compare/cloudkms-v16.1.0...cloudkms-v17.0.0) (2024-08-27) diff --git a/src/apis/cloudkms/package.json b/src/apis/cloudkms/package.json index 53e76ce2e0..8f81eb7ed6 100644 --- a/src/apis/cloudkms/package.json +++ b/src/apis/cloudkms/package.json @@ -1,6 +1,6 @@ { "name": "@googleapis/cloudkms", - "version": "17.0.0", + "version": "17.0.1", "description": "cloudkms", "main": "build/index.js", "types": "build/index.d.ts", diff --git a/src/apis/connectors/CHANGELOG.md b/src/apis/connectors/CHANGELOG.md index ca8b02e070..a264b45fd4 100644 --- a/src/apis/connectors/CHANGELOG.md +++ b/src/apis/connectors/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [20.1.0](https://github.com/googleapis/google-api-nodejs-client/compare/connectors-v20.0.0...connectors-v20.1.0) (2024-10-30) + + +### Features + +* **connectors:** update the API ([f22271c](https://github.com/googleapis/google-api-nodejs-client/commit/f22271c5ab3278c85844508c39bb2bb8aa7b0948)) + ## [20.0.0](https://github.com/googleapis/google-api-nodejs-client/compare/connectors-v19.1.0...connectors-v20.0.0) (2024-08-27) diff --git a/src/apis/connectors/package.json b/src/apis/connectors/package.json index 7795977fc8..f4a6fb7c02 100644 --- a/src/apis/connectors/package.json +++ b/src/apis/connectors/package.json @@ -1,6 +1,6 @@ { "name": "@googleapis/connectors", - "version": "20.0.0", + "version": "20.1.0", "description": "connectors", "main": "build/index.js", "types": "build/index.d.ts", diff --git a/src/apis/dfareporting/CHANGELOG.md b/src/apis/dfareporting/CHANGELOG.md index e9f77c279a..da6b2fda9e 100644 --- a/src/apis/dfareporting/CHANGELOG.md +++ b/src/apis/dfareporting/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [11.1.0](https://github.com/googleapis/google-api-nodejs-client/compare/dfareporting-v11.0.0...dfareporting-v11.1.0) (2024-10-30) + + +### Features + +* **dfareporting:** update the API ([10a83f9](https://github.com/googleapis/google-api-nodejs-client/commit/10a83f9ba95006df4c1142f3bcbff48a86b9c4ba)) + ## [11.0.0](https://github.com/googleapis/google-api-nodejs-client/compare/dfareporting-v10.0.0...dfareporting-v11.0.0) (2024-08-27) diff --git a/src/apis/dfareporting/package.json b/src/apis/dfareporting/package.json index 02004f599c..5054a91d8e 100644 --- a/src/apis/dfareporting/package.json +++ b/src/apis/dfareporting/package.json @@ -1,6 +1,6 @@ { "name": "@googleapis/dfareporting", - "version": "11.0.0", + "version": "11.1.0", "description": "dfareporting", "main": "build/index.js", "types": "build/index.d.ts", diff --git a/src/apis/displayvideo/CHANGELOG.md b/src/apis/displayvideo/CHANGELOG.md index a24b8c7064..6408a2e120 100644 --- a/src/apis/displayvideo/CHANGELOG.md +++ b/src/apis/displayvideo/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [25.0.1](https://github.com/googleapis/google-api-nodejs-client/compare/displayvideo-v25.0.0...displayvideo-v25.0.1) (2024-10-30) + + +### Bug Fixes + +* **displayvideo:** update the API ([bce6c6d](https://github.com/googleapis/google-api-nodejs-client/commit/bce6c6de140ccb630af8ae2ef040096a0a6fba59)) + ## [25.0.0](https://github.com/googleapis/google-api-nodejs-client/compare/displayvideo-v24.1.0...displayvideo-v25.0.0) (2024-08-27) diff --git a/src/apis/displayvideo/package.json b/src/apis/displayvideo/package.json index e6a636ff55..84782d2987 100644 --- a/src/apis/displayvideo/package.json +++ b/src/apis/displayvideo/package.json @@ -1,6 +1,6 @@ { "name": "@googleapis/displayvideo", - "version": "25.0.0", + "version": "25.0.1", "description": "displayvideo", "main": "build/index.js", "types": "build/index.d.ts", diff --git a/src/apis/drive/CHANGELOG.md b/src/apis/drive/CHANGELOG.md index a6cc86dfc4..12b575c9c0 100644 --- a/src/apis/drive/CHANGELOG.md +++ b/src/apis/drive/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [8.15.0](https://github.com/googleapis/google-api-nodejs-client/compare/drive-v8.14.0...drive-v8.15.0) (2024-10-30) + + +### Features + +* **drive:** update the API ([1827fa2](https://github.com/googleapis/google-api-nodejs-client/commit/1827fa203d963dbb2524888264f2e735b3c351b7)) + ## [8.14.0](https://github.com/googleapis/google-api-nodejs-client/compare/drive-v8.13.1...drive-v8.14.0) (2024-08-27) diff --git a/src/apis/drive/package.json b/src/apis/drive/package.json index fcb7958b03..f19d622148 100644 --- a/src/apis/drive/package.json +++ b/src/apis/drive/package.json @@ -1,6 +1,6 @@ { "name": "@googleapis/drive", - "version": "8.14.0", + "version": "8.15.0", "description": "drive", "main": "build/index.js", "types": "build/index.d.ts", diff --git a/src/apis/firebase/CHANGELOG.md b/src/apis/firebase/CHANGELOG.md index f6933dc7e0..066781e318 100644 --- a/src/apis/firebase/CHANGELOG.md +++ b/src/apis/firebase/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [6.5.0](https://github.com/googleapis/google-api-nodejs-client/compare/firebase-v6.4.2...firebase-v6.5.0) (2024-10-30) + + +### Features + +* **firebase:** update the API ([d85644b](https://github.com/googleapis/google-api-nodejs-client/commit/d85644b76a03ca70c3063a678357fbc94ced69dd)) + ## [6.4.2](https://github.com/googleapis/google-api-nodejs-client/compare/firebase-v6.4.1...firebase-v6.4.2) (2024-05-02) diff --git a/src/apis/firebase/package.json b/src/apis/firebase/package.json index dd28058e05..68ef322d21 100644 --- a/src/apis/firebase/package.json +++ b/src/apis/firebase/package.json @@ -1,6 +1,6 @@ { "name": "@googleapis/firebase", - "version": "6.4.2", + "version": "6.5.0", "description": "firebase", "main": "build/index.js", "types": "build/index.d.ts", diff --git a/src/apis/firebaseappcheck/CHANGELOG.md b/src/apis/firebaseappcheck/CHANGELOG.md index 8aba87f78d..8250ee57b3 100644 --- a/src/apis/firebaseappcheck/CHANGELOG.md +++ b/src/apis/firebaseappcheck/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [5.14.1](https://github.com/googleapis/google-api-nodejs-client/compare/firebaseappcheck-v5.14.0...firebaseappcheck-v5.14.1) (2024-10-30) + + +### Bug Fixes + +* **firebaseappcheck:** update the API ([d851555](https://github.com/googleapis/google-api-nodejs-client/commit/d8515556e0d25e1bb12a123d2cb597d92dcd6153)) + ## [5.14.0](https://github.com/googleapis/google-api-nodejs-client/compare/firebaseappcheck-v5.13.0...firebaseappcheck-v5.14.0) (2024-08-16) diff --git a/src/apis/firebaseappcheck/package.json b/src/apis/firebaseappcheck/package.json index b2f10a5bba..7c2e9b1b52 100644 --- a/src/apis/firebaseappcheck/package.json +++ b/src/apis/firebaseappcheck/package.json @@ -1,6 +1,6 @@ { "name": "@googleapis/firebaseappcheck", - "version": "5.14.0", + "version": "5.14.1", "description": "firebaseappcheck", "main": "build/index.js", "types": "build/index.d.ts", diff --git a/src/apis/firebaseml/CHANGELOG.md b/src/apis/firebaseml/CHANGELOG.md index 0a8b4ff6d7..1e7dd8b7b4 100644 --- a/src/apis/firebaseml/CHANGELOG.md +++ b/src/apis/firebaseml/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [10.1.0](https://github.com/googleapis/google-api-nodejs-client/compare/firebaseml-v10.0.0...firebaseml-v10.1.0) (2024-10-30) + + +### Features + +* **firebaseml:** update the API ([8ff1ed2](https://github.com/googleapis/google-api-nodejs-client/commit/8ff1ed23c4e406f51254b3b1c3fb0f6db596e7c9)) + ## [10.0.0](https://github.com/googleapis/google-api-nodejs-client/compare/firebaseml-v9.1.0...firebaseml-v10.0.0) (2024-08-27) diff --git a/src/apis/firebaseml/package.json b/src/apis/firebaseml/package.json index ab2e6d05ab..ccae6a70f2 100644 --- a/src/apis/firebaseml/package.json +++ b/src/apis/firebaseml/package.json @@ -1,6 +1,6 @@ { "name": "@googleapis/firebaseml", - "version": "10.0.0", + "version": "10.1.0", "description": "firebaseml", "main": "build/index.js", "types": "build/index.d.ts", diff --git a/src/apis/healthcare/CHANGELOG.md b/src/apis/healthcare/CHANGELOG.md index 0a0b765012..9c84ac3ea7 100644 --- a/src/apis/healthcare/CHANGELOG.md +++ b/src/apis/healthcare/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [23.2.0](https://github.com/googleapis/google-api-nodejs-client/compare/healthcare-v23.1.0...healthcare-v23.2.0) (2024-10-30) + + +### Features + +* **healthcare:** update the API ([851bba1](https://github.com/googleapis/google-api-nodejs-client/commit/851bba19f73f656f97fcbf224538de4001a08c03)) + ## [23.1.0](https://github.com/googleapis/google-api-nodejs-client/compare/healthcare-v23.0.0...healthcare-v23.1.0) (2024-08-30) diff --git a/src/apis/healthcare/package.json b/src/apis/healthcare/package.json index 7ad6fbc3af..e1480618e7 100644 --- a/src/apis/healthcare/package.json +++ b/src/apis/healthcare/package.json @@ -1,6 +1,6 @@ { "name": "@googleapis/healthcare", - "version": "23.1.0", + "version": "23.2.0", "description": "healthcare", "main": "build/index.js", "types": "build/index.d.ts", diff --git a/src/apis/monitoring/CHANGELOG.md b/src/apis/monitoring/CHANGELOG.md index ad5d163102..e00cb7f5e3 100644 --- a/src/apis/monitoring/CHANGELOG.md +++ b/src/apis/monitoring/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [9.1.0](https://github.com/googleapis/google-api-nodejs-client/compare/monitoring-v9.0.0...monitoring-v9.1.0) (2024-10-30) + + +### Features + +* **monitoring:** update the API ([17ef8ee](https://github.com/googleapis/google-api-nodejs-client/commit/17ef8eed784d515c5292efe7f1fa0934fa5f8e2e)) + ## [9.0.0](https://github.com/googleapis/google-api-nodejs-client/compare/monitoring-v8.0.0...monitoring-v9.0.0) (2024-08-16) diff --git a/src/apis/monitoring/package.json b/src/apis/monitoring/package.json index 6da6c11df2..725debf459 100644 --- a/src/apis/monitoring/package.json +++ b/src/apis/monitoring/package.json @@ -1,6 +1,6 @@ { "name": "@googleapis/monitoring", - "version": "9.0.0", + "version": "9.1.0", "description": "monitoring", "main": "build/index.js", "types": "build/index.d.ts", diff --git a/src/apis/mybusinessbusinessinformation/CHANGELOG.md b/src/apis/mybusinessbusinessinformation/CHANGELOG.md index b43759511f..e7505ef04f 100644 --- a/src/apis/mybusinessbusinessinformation/CHANGELOG.md +++ b/src/apis/mybusinessbusinessinformation/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [4.0.10](https://github.com/googleapis/google-api-nodejs-client/compare/mybusinessbusinessinformation-v4.0.9...mybusinessbusinessinformation-v4.0.10) (2024-10-30) + + +### Bug Fixes + +* **mybusinessbusinessinformation:** update the API ([f08ec6e](https://github.com/googleapis/google-api-nodejs-client/commit/f08ec6e52c1d321afab253b2a25f9fffd12bad30)) + ## [4.0.9](https://github.com/googleapis/google-api-nodejs-client/compare/mybusinessbusinessinformation-v4.0.8...mybusinessbusinessinformation-v4.0.9) (2024-05-02) diff --git a/src/apis/mybusinessbusinessinformation/package.json b/src/apis/mybusinessbusinessinformation/package.json index 570447433f..c139a4f5f8 100644 --- a/src/apis/mybusinessbusinessinformation/package.json +++ b/src/apis/mybusinessbusinessinformation/package.json @@ -1,6 +1,6 @@ { "name": "@googleapis/mybusinessbusinessinformation", - "version": "4.0.9", + "version": "4.0.10", "description": "mybusinessbusinessinformation", "main": "build/index.js", "types": "build/index.d.ts", diff --git a/src/apis/mybusinesslodging/CHANGELOG.md b/src/apis/mybusinesslodging/CHANGELOG.md index 416fa89d5c..4d2c779dbd 100644 --- a/src/apis/mybusinesslodging/CHANGELOG.md +++ b/src/apis/mybusinesslodging/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [3.0.3](https://github.com/googleapis/google-api-nodejs-client/compare/mybusinesslodging-v3.0.2...mybusinesslodging-v3.0.3) (2024-10-30) + + +### Bug Fixes + +* **mybusinesslodging:** update the API ([ccafbfe](https://github.com/googleapis/google-api-nodejs-client/commit/ccafbfe63a38a3b0d7ca9d5c900d6d7a4fc36214)) + ## [3.0.2](https://github.com/googleapis/google-api-nodejs-client/compare/mybusinesslodging-v3.0.1...mybusinesslodging-v3.0.2) (2024-05-02) diff --git a/src/apis/mybusinesslodging/package.json b/src/apis/mybusinesslodging/package.json index a44239fde0..85e87c30db 100644 --- a/src/apis/mybusinesslodging/package.json +++ b/src/apis/mybusinesslodging/package.json @@ -1,6 +1,6 @@ { "name": "@googleapis/mybusinesslodging", - "version": "3.0.2", + "version": "3.0.3", "description": "mybusinesslodging", "main": "build/index.js", "types": "build/index.d.ts", diff --git a/src/apis/networkservices/CHANGELOG.md b/src/apis/networkservices/CHANGELOG.md index 17d62db3e3..4adea849e1 100644 --- a/src/apis/networkservices/CHANGELOG.md +++ b/src/apis/networkservices/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## [21.0.0](https://github.com/googleapis/google-api-nodejs-client/compare/networkservices-v20.0.0...networkservices-v21.0.0) (2024-10-30) + + +### ⚠ BREAKING CHANGES + +* **networkservices:** This release has breaking changes. + +### Features + +* **networkservices:** update the API ([35a4402](https://github.com/googleapis/google-api-nodejs-client/commit/35a4402cb3e63a66603e1c2f429e1ddf9b7b67a0)) + ## [20.0.0](https://github.com/googleapis/google-api-nodejs-client/compare/networkservices-v19.1.0...networkservices-v20.0.0) (2024-08-27) diff --git a/src/apis/networkservices/package.json b/src/apis/networkservices/package.json index 1c1624f3ea..ab2bdc7752 100644 --- a/src/apis/networkservices/package.json +++ b/src/apis/networkservices/package.json @@ -1,6 +1,6 @@ { "name": "@googleapis/networkservices", - "version": "20.0.0", + "version": "21.0.0", "description": "networkservices", "main": "build/index.js", "types": "build/index.d.ts", diff --git a/src/apis/notebooks/CHANGELOG.md b/src/apis/notebooks/CHANGELOG.md index d8513da9e2..fd1c79c04e 100644 --- a/src/apis/notebooks/CHANGELOG.md +++ b/src/apis/notebooks/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [8.5.1](https://github.com/googleapis/google-api-nodejs-client/compare/notebooks-v8.5.0...notebooks-v8.5.1) (2024-10-30) + + +### Bug Fixes + +* **notebooks:** update the API ([820337f](https://github.com/googleapis/google-api-nodejs-client/commit/820337f5cd11f456b3cbfd21f54a7497548bfb81)) + ## [8.5.0](https://github.com/googleapis/google-api-nodejs-client/compare/notebooks-v8.4.0...notebooks-v8.5.0) (2024-08-27) diff --git a/src/apis/notebooks/package.json b/src/apis/notebooks/package.json index 641e49b3a2..f415e58f7d 100644 --- a/src/apis/notebooks/package.json +++ b/src/apis/notebooks/package.json @@ -1,6 +1,6 @@ { "name": "@googleapis/notebooks", - "version": "8.5.0", + "version": "8.5.1", "description": "notebooks", "main": "build/index.js", "types": "build/index.d.ts", diff --git a/src/apis/pagespeedonline/CHANGELOG.md b/src/apis/pagespeedonline/CHANGELOG.md index f70e811401..adb3ecaa51 100644 --- a/src/apis/pagespeedonline/CHANGELOG.md +++ b/src/apis/pagespeedonline/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [1.5.0](https://github.com/googleapis/google-api-nodejs-client/compare/pagespeedonline-v1.4.0...pagespeedonline-v1.5.0) (2024-10-30) + + +### Features + +* **pagespeedonline:** update the API ([20d9d57](https://github.com/googleapis/google-api-nodejs-client/commit/20d9d57ef10acb3b11a2b4d6fb91f66f96412d27)) + ## [1.4.0](https://github.com/googleapis/google-api-nodejs-client/compare/pagespeedonline-v1.3.0...pagespeedonline-v1.4.0) (2024-06-21) diff --git a/src/apis/pagespeedonline/package.json b/src/apis/pagespeedonline/package.json index 47f4393db3..7501088635 100644 --- a/src/apis/pagespeedonline/package.json +++ b/src/apis/pagespeedonline/package.json @@ -1,6 +1,6 @@ { "name": "@googleapis/pagespeedonline", - "version": "1.4.0", + "version": "1.5.0", "description": "pagespeedonline", "main": "build/index.js", "types": "build/index.d.ts", diff --git a/src/apis/places/CHANGELOG.md b/src/apis/places/CHANGELOG.md index 41622b4dfb..0e613aa752 100644 --- a/src/apis/places/CHANGELOG.md +++ b/src/apis/places/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [9.5.0](https://github.com/googleapis/google-api-nodejs-client/compare/places-v9.4.1...places-v9.5.0) (2024-10-30) + + +### Features + +* **places:** update the API ([751cdc5](https://github.com/googleapis/google-api-nodejs-client/commit/751cdc53a34561e33c2aab84d0eb06f3972c6f5a)) + ## [9.4.1](https://github.com/googleapis/google-api-nodejs-client/compare/places-v9.4.0...places-v9.4.1) (2024-08-30) diff --git a/src/apis/places/package.json b/src/apis/places/package.json index ea6a2ed707..6168011ed2 100644 --- a/src/apis/places/package.json +++ b/src/apis/places/package.json @@ -1,6 +1,6 @@ { "name": "@googleapis/places", - "version": "9.4.1", + "version": "9.5.0", "description": "places", "main": "build/index.js", "types": "build/index.d.ts", diff --git a/src/apis/playdeveloperreporting/CHANGELOG.md b/src/apis/playdeveloperreporting/CHANGELOG.md index a94880489d..5e802290db 100644 --- a/src/apis/playdeveloperreporting/CHANGELOG.md +++ b/src/apis/playdeveloperreporting/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [5.4.4](https://github.com/googleapis/google-api-nodejs-client/compare/playdeveloperreporting-v5.4.3...playdeveloperreporting-v5.4.4) (2024-10-30) + + +### Bug Fixes + +* **playdeveloperreporting:** update the API ([0ffc422](https://github.com/googleapis/google-api-nodejs-client/commit/0ffc422acd31eed5b774efbef82375afb2116bfa)) + ## [5.4.3](https://github.com/googleapis/google-api-nodejs-client/compare/playdeveloperreporting-v5.4.2...playdeveloperreporting-v5.4.3) (2024-08-16) diff --git a/src/apis/playdeveloperreporting/package.json b/src/apis/playdeveloperreporting/package.json index a8c55a3172..41944f15e1 100644 --- a/src/apis/playdeveloperreporting/package.json +++ b/src/apis/playdeveloperreporting/package.json @@ -1,6 +1,6 @@ { "name": "@googleapis/playdeveloperreporting", - "version": "5.4.3", + "version": "5.4.4", "description": "playdeveloperreporting", "main": "build/index.js", "types": "build/index.d.ts", diff --git a/src/apis/privateca/CHANGELOG.md b/src/apis/privateca/CHANGELOG.md index 78c07a6d69..bf898c733c 100644 --- a/src/apis/privateca/CHANGELOG.md +++ b/src/apis/privateca/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [4.2.1](https://github.com/googleapis/google-api-nodejs-client/compare/privateca-v4.2.0...privateca-v4.2.1) (2024-10-30) + + +### Bug Fixes + +* **privateca:** update the API ([ecf5c60](https://github.com/googleapis/google-api-nodejs-client/commit/ecf5c60be112f44d6d77ca52f90e7f17f77a314f)) + ## [4.2.0](https://github.com/googleapis/google-api-nodejs-client/compare/privateca-v4.1.0...privateca-v4.2.0) (2024-08-27) diff --git a/src/apis/privateca/package.json b/src/apis/privateca/package.json index 28134d6d37..7a18666fd7 100644 --- a/src/apis/privateca/package.json +++ b/src/apis/privateca/package.json @@ -1,6 +1,6 @@ { "name": "@googleapis/privateca", - "version": "4.2.0", + "version": "4.2.1", "description": "privateca", "main": "build/index.js", "types": "build/index.d.ts", diff --git a/src/apis/realtimebidding/CHANGELOG.md b/src/apis/realtimebidding/CHANGELOG.md index 07d486b65d..b24e433534 100644 --- a/src/apis/realtimebidding/CHANGELOG.md +++ b/src/apis/realtimebidding/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [4.4.1](https://github.com/googleapis/google-api-nodejs-client/compare/realtimebidding-v4.4.0...realtimebidding-v4.4.1) (2024-10-30) + + +### Bug Fixes + +* **realtimebidding:** update the API ([34c7bcb](https://github.com/googleapis/google-api-nodejs-client/commit/34c7bcb997279bbbb7285d24e2a88df455928e1c)) + ## [4.4.0](https://github.com/googleapis/google-api-nodejs-client/compare/realtimebidding-v4.3.0...realtimebidding-v4.4.0) (2024-08-16) diff --git a/src/apis/realtimebidding/package.json b/src/apis/realtimebidding/package.json index b09614c851..b4f9f26516 100644 --- a/src/apis/realtimebidding/package.json +++ b/src/apis/realtimebidding/package.json @@ -1,6 +1,6 @@ { "name": "@googleapis/realtimebidding", - "version": "4.4.0", + "version": "4.4.1", "description": "realtimebidding", "main": "build/index.js", "types": "build/index.d.ts", diff --git a/src/apis/serviceconsumermanagement/CHANGELOG.md b/src/apis/serviceconsumermanagement/CHANGELOG.md index 1aea9fcd4f..3e93c7d8cc 100644 --- a/src/apis/serviceconsumermanagement/CHANGELOG.md +++ b/src/apis/serviceconsumermanagement/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [20.1.0](https://github.com/googleapis/google-api-nodejs-client/compare/serviceconsumermanagement-v20.0.0...serviceconsumermanagement-v20.1.0) (2024-10-30) + + +### Features + +* **serviceconsumermanagement:** update the API ([70bd2b3](https://github.com/googleapis/google-api-nodejs-client/commit/70bd2b3554e931e101ddca8c9d6b8d2b698db8f6)) + ## [20.0.0](https://github.com/googleapis/google-api-nodejs-client/compare/serviceconsumermanagement-v19.0.0...serviceconsumermanagement-v20.0.0) (2024-08-16) diff --git a/src/apis/serviceconsumermanagement/package.json b/src/apis/serviceconsumermanagement/package.json index 3f602b7d56..58f10b1761 100644 --- a/src/apis/serviceconsumermanagement/package.json +++ b/src/apis/serviceconsumermanagement/package.json @@ -1,6 +1,6 @@ { "name": "@googleapis/serviceconsumermanagement", - "version": "20.0.0", + "version": "20.1.0", "description": "serviceconsumermanagement", "main": "build/index.js", "types": "build/index.d.ts", diff --git a/src/apis/servicenetworking/CHANGELOG.md b/src/apis/servicenetworking/CHANGELOG.md index aac90f0808..5445199c22 100644 --- a/src/apis/servicenetworking/CHANGELOG.md +++ b/src/apis/servicenetworking/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## [21.2.0](https://github.com/googleapis/google-api-nodejs-client/compare/servicenetworking-v21.1.0...servicenetworking-v21.2.0) (2024-10-30) + + +### Features + +* **servicenetworking:** update the API ([524ddae](https://github.com/googleapis/google-api-nodejs-client/commit/524ddae5a824da5f5741c8fd9a3827c430a70d0b)) + + +### Bug Fixes + +* **servicenetworking:** update the API ([acaf25f](https://github.com/googleapis/google-api-nodejs-client/commit/acaf25f76bcb206b0ce760cdec5fe5312157edf0)) + ## [21.1.0](https://github.com/googleapis/google-api-nodejs-client/compare/servicenetworking-v21.0.0...servicenetworking-v21.1.0) (2024-08-30) diff --git a/src/apis/servicenetworking/package.json b/src/apis/servicenetworking/package.json index f1abb890dc..81ec418d9d 100644 --- a/src/apis/servicenetworking/package.json +++ b/src/apis/servicenetworking/package.json @@ -1,6 +1,6 @@ { "name": "@googleapis/servicenetworking", - "version": "21.1.0", + "version": "21.2.0", "description": "servicenetworking", "main": "build/index.js", "types": "build/index.d.ts", diff --git a/src/apis/sheets/CHANGELOG.md b/src/apis/sheets/CHANGELOG.md index 924de9e826..0ed9257162 100644 --- a/src/apis/sheets/CHANGELOG.md +++ b/src/apis/sheets/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [9.3.2](https://github.com/googleapis/google-api-nodejs-client/compare/sheets-v9.3.1...sheets-v9.3.2) (2024-10-30) + + +### Bug Fixes + +* **sheets:** update the API ([26e077f](https://github.com/googleapis/google-api-nodejs-client/commit/26e077f421b91ed2dbf883f47e5c9ad7ed55821b)) + ## [9.3.1](https://github.com/googleapis/google-api-nodejs-client/compare/sheets-v9.3.0...sheets-v9.3.1) (2024-08-30) diff --git a/src/apis/sheets/package.json b/src/apis/sheets/package.json index 2d722789bb..c6d60db4f4 100644 --- a/src/apis/sheets/package.json +++ b/src/apis/sheets/package.json @@ -1,6 +1,6 @@ { "name": "@googleapis/sheets", - "version": "9.3.1", + "version": "9.3.2", "description": "sheets", "main": "build/index.js", "types": "build/index.d.ts", diff --git a/src/apis/sqladmin/CHANGELOG.md b/src/apis/sqladmin/CHANGELOG.md index deb37b951b..13fb3503b6 100644 --- a/src/apis/sqladmin/CHANGELOG.md +++ b/src/apis/sqladmin/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [24.1.0](https://github.com/googleapis/google-api-nodejs-client/compare/sqladmin-v24.0.0...sqladmin-v24.1.0) (2024-10-30) + + +### Features + +* **sqladmin:** update the API ([3c85e30](https://github.com/googleapis/google-api-nodejs-client/commit/3c85e30276f6bf23f274890cadad731f9e021db9)) +* **sqladmin:** update the API ([300f8df](https://github.com/googleapis/google-api-nodejs-client/commit/300f8dfca2e412516fdb8e37e5c02c611c0d802c)) + ## [24.0.0](https://github.com/googleapis/google-api-nodejs-client/compare/sqladmin-v23.1.0...sqladmin-v24.0.0) (2024-08-27) diff --git a/src/apis/sqladmin/package.json b/src/apis/sqladmin/package.json index a1a9011ca4..2f07994c73 100644 --- a/src/apis/sqladmin/package.json +++ b/src/apis/sqladmin/package.json @@ -1,6 +1,6 @@ { "name": "@googleapis/sqladmin", - "version": "24.0.0", + "version": "24.1.0", "description": "sqladmin", "main": "build/index.js", "types": "build/index.d.ts", diff --git a/src/apis/storage/CHANGELOG.md b/src/apis/storage/CHANGELOG.md index 21bd33b31b..be65ab9755 100644 --- a/src/apis/storage/CHANGELOG.md +++ b/src/apis/storage/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [15.7.0](https://github.com/googleapis/google-api-nodejs-client/compare/storage-v15.6.0...storage-v15.7.0) (2024-10-30) + + +### Features + +* **storage:** update the API ([e40cb95](https://github.com/googleapis/google-api-nodejs-client/commit/e40cb950668f9881f13abd468ea36f18e6767b69)) + ## [15.6.0](https://github.com/googleapis/google-api-nodejs-client/compare/storage-v15.5.0...storage-v15.6.0) (2024-08-27) diff --git a/src/apis/storage/package.json b/src/apis/storage/package.json index 31264ac682..e8958f794a 100644 --- a/src/apis/storage/package.json +++ b/src/apis/storage/package.json @@ -1,6 +1,6 @@ { "name": "@googleapis/storage", - "version": "15.6.0", + "version": "15.7.0", "description": "storage", "main": "build/index.js", "types": "build/index.d.ts", diff --git a/src/apis/sts/CHANGELOG.md b/src/apis/sts/CHANGELOG.md index f282234b8e..9fb930ace7 100644 --- a/src/apis/sts/CHANGELOG.md +++ b/src/apis/sts/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [9.0.1](https://github.com/googleapis/google-api-nodejs-client/compare/sts-v9.0.0...sts-v9.0.1) (2024-10-30) + + +### Bug Fixes + +* **sts:** update the API ([73354e6](https://github.com/googleapis/google-api-nodejs-client/commit/73354e622ae72c652557752e57c7bcc62adb09ad)) + ## [9.0.0](https://github.com/googleapis/google-api-nodejs-client/compare/sts-v8.0.0...sts-v9.0.0) (2024-08-16) diff --git a/src/apis/sts/package.json b/src/apis/sts/package.json index 76f81e9795..76702c5f05 100644 --- a/src/apis/sts/package.json +++ b/src/apis/sts/package.json @@ -1,6 +1,6 @@ { "name": "@googleapis/sts", - "version": "9.0.0", + "version": "9.0.1", "description": "sts", "main": "build/index.js", "types": "build/index.d.ts", diff --git a/src/apis/testing/CHANGELOG.md b/src/apis/testing/CHANGELOG.md index 370bb6e19f..4e83625bd2 100644 --- a/src/apis/testing/CHANGELOG.md +++ b/src/apis/testing/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [10.1.0](https://github.com/googleapis/google-api-nodejs-client/compare/testing-v10.0.0...testing-v10.1.0) (2024-10-30) + + +### Features + +* **testing:** update the API ([89acbc3](https://github.com/googleapis/google-api-nodejs-client/commit/89acbc39bdde866596132de464a2b70a64988936)) + ## [10.0.0](https://github.com/googleapis/google-api-nodejs-client/compare/testing-v9.0.1...testing-v10.0.0) (2024-05-02) diff --git a/src/apis/testing/package.json b/src/apis/testing/package.json index 31713dbefc..d7d50c665e 100644 --- a/src/apis/testing/package.json +++ b/src/apis/testing/package.json @@ -1,6 +1,6 @@ { "name": "@googleapis/testing", - "version": "10.0.0", + "version": "10.1.0", "description": "testing", "main": "build/index.js", "types": "build/index.d.ts", diff --git a/src/apis/vpcaccess/CHANGELOG.md b/src/apis/vpcaccess/CHANGELOG.md index 39a800fca9..87364a4c53 100644 --- a/src/apis/vpcaccess/CHANGELOG.md +++ b/src/apis/vpcaccess/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [1.6.0](https://github.com/googleapis/google-api-nodejs-client/compare/vpcaccess-v1.5.2...vpcaccess-v1.6.0) (2024-10-30) + + +### Features + +* **vpcaccess:** update the API ([460b5b6](https://github.com/googleapis/google-api-nodejs-client/commit/460b5b63e8cceb473eac1b02e92a16b3b8887c92)) + ## [1.5.2](https://github.com/googleapis/google-api-nodejs-client/compare/vpcaccess-v1.5.1...vpcaccess-v1.5.2) (2024-05-02) diff --git a/src/apis/vpcaccess/package.json b/src/apis/vpcaccess/package.json index baaf79269e..cdf4a68119 100644 --- a/src/apis/vpcaccess/package.json +++ b/src/apis/vpcaccess/package.json @@ -1,6 +1,6 @@ { "name": "@googleapis/vpcaccess", - "version": "1.5.2", + "version": "1.6.0", "description": "vpcaccess", "main": "build/index.js", "types": "build/index.d.ts", diff --git a/src/apis/workflowexecutions/CHANGELOG.md b/src/apis/workflowexecutions/CHANGELOG.md index 9da1103c78..894378e654 100644 --- a/src/apis/workflowexecutions/CHANGELOG.md +++ b/src/apis/workflowexecutions/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [7.10.1](https://github.com/googleapis/google-api-nodejs-client/compare/workflowexecutions-v7.10.0...workflowexecutions-v7.10.1) (2024-10-30) + + +### Bug Fixes + +* **workflowexecutions:** update the API ([d4a855b](https://github.com/googleapis/google-api-nodejs-client/commit/d4a855b1ad4e4d1ae9b8ca5e1eda2f92198d8962)) + ## [7.10.0](https://github.com/googleapis/google-api-nodejs-client/compare/workflowexecutions-v7.9.0...workflowexecutions-v7.10.0) (2024-08-27) diff --git a/src/apis/workflowexecutions/package.json b/src/apis/workflowexecutions/package.json index 41170a50f2..5b46164b3d 100644 --- a/src/apis/workflowexecutions/package.json +++ b/src/apis/workflowexecutions/package.json @@ -1,6 +1,6 @@ { "name": "@googleapis/workflowexecutions", - "version": "7.10.0", + "version": "7.10.1", "description": "workflowexecutions", "main": "build/index.js", "types": "build/index.d.ts", diff --git a/src/apis/workstations/CHANGELOG.md b/src/apis/workstations/CHANGELOG.md index 9384d9e31a..4b215dd525 100644 --- a/src/apis/workstations/CHANGELOG.md +++ b/src/apis/workstations/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [11.0.1](https://github.com/googleapis/google-api-nodejs-client/compare/workstations-v11.0.0...workstations-v11.0.1) (2024-10-30) + + +### Bug Fixes + +* **workstations:** update the API ([332cca5](https://github.com/googleapis/google-api-nodejs-client/commit/332cca5067767705cf75bef717315e1417a78ca4)) + ## [11.0.0](https://github.com/googleapis/google-api-nodejs-client/compare/workstations-v10.1.0...workstations-v11.0.0) (2024-08-27) diff --git a/src/apis/workstations/package.json b/src/apis/workstations/package.json index 7f59ae67db..161baabb09 100644 --- a/src/apis/workstations/package.json +++ b/src/apis/workstations/package.json @@ -1,6 +1,6 @@ { "name": "@googleapis/workstations", - "version": "11.0.0", + "version": "11.0.1", "description": "workstations", "main": "build/index.js", "types": "build/index.d.ts", diff --git a/src/apis/youtube/CHANGELOG.md b/src/apis/youtube/CHANGELOG.md index 8ea632d718..5f39db61f7 100644 --- a/src/apis/youtube/CHANGELOG.md +++ b/src/apis/youtube/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## [21.0.0](https://github.com/googleapis/google-api-nodejs-client/compare/youtube-v20.0.0...youtube-v21.0.0) (2024-10-30) + + +### ⚠ BREAKING CHANGES + +* **youtube:** This release has breaking changes. + +### Features + +* **youtube:** update the API ([b11ea5d](https://github.com/googleapis/google-api-nodejs-client/commit/b11ea5dbfad9a3ad6b95d5e63ce826881f703204)) + ## [20.0.0](https://github.com/googleapis/google-api-nodejs-client/compare/youtube-v19.1.0...youtube-v20.0.0) (2024-08-27) diff --git a/src/apis/youtube/package.json b/src/apis/youtube/package.json index 7752762697..14c016e24d 100644 --- a/src/apis/youtube/package.json +++ b/src/apis/youtube/package.json @@ -1,6 +1,6 @@ { "name": "@googleapis/youtube", - "version": "20.0.0", + "version": "21.0.0", "description": "youtube", "main": "build/index.js", "types": "build/index.d.ts", From 0cb94879c7ad1167cde9405038d17e6e1c99b4fa Mon Sep 17 00:00:00 2001 From: "release-please[bot]" <55107282+release-please[bot]@users.noreply.github.com> Date: Wed, 30 Oct 2024 20:43:10 +0000 Subject: [PATCH 5/6] chore: release main --- src/apis/accesscontextmanager/CHANGELOG.md | 7 +++++++ src/apis/accesscontextmanager/package.json | 2 +- src/apis/appengine/CHANGELOG.md | 7 +++++++ src/apis/appengine/package.json | 2 +- src/apis/assuredworkloads/CHANGELOG.md | 7 +++++++ src/apis/assuredworkloads/package.json | 2 +- src/apis/batch/CHANGELOG.md | 12 ++++++++++++ src/apis/batch/package.json | 2 +- src/apis/beyondcorp/CHANGELOG.md | 11 +++++++++++ src/apis/beyondcorp/package.json | 2 +- src/apis/bigquery/CHANGELOG.md | 7 +++++++ src/apis/bigquery/package.json | 2 +- src/apis/bigquerydatatransfer/CHANGELOG.md | 7 +++++++ src/apis/bigquerydatatransfer/package.json | 2 +- src/apis/bigqueryreservation/CHANGELOG.md | 7 +++++++ src/apis/bigqueryreservation/package.json | 2 +- src/apis/checks/CHANGELOG.md | 7 +++++++ src/apis/checks/package.json | 2 +- src/apis/cloudbuild/CHANGELOG.md | 7 +++++++ src/apis/cloudbuild/package.json | 2 +- src/apis/cloudchannel/CHANGELOG.md | 12 ++++++++++++ src/apis/cloudchannel/package.json | 2 +- src/apis/cloudfunctions/CHANGELOG.md | 11 +++++++++++ src/apis/cloudfunctions/package.json | 2 +- src/apis/cloudscheduler/CHANGELOG.md | 7 +++++++ src/apis/cloudscheduler/package.json | 2 +- src/apis/compute/CHANGELOG.md | 7 +++++++ src/apis/compute/package.json | 2 +- src/apis/contactcenterinsights/CHANGELOG.md | 11 +++++++++++ src/apis/contactcenterinsights/package.json | 2 +- src/apis/container/CHANGELOG.md | 7 +++++++ src/apis/container/package.json | 2 +- src/apis/containeranalysis/CHANGELOG.md | 7 +++++++ src/apis/containeranalysis/package.json | 2 +- src/apis/dataform/CHANGELOG.md | 7 +++++++ src/apis/dataform/package.json | 2 +- src/apis/datamigration/CHANGELOG.md | 7 +++++++ src/apis/datamigration/package.json | 2 +- src/apis/dataplex/CHANGELOG.md | 11 +++++++++++ src/apis/dataplex/package.json | 2 +- src/apis/dataproc/CHANGELOG.md | 7 +++++++ src/apis/dataproc/package.json | 2 +- src/apis/datastream/CHANGELOG.md | 7 +++++++ src/apis/datastream/package.json | 2 +- src/apis/dialogflow/CHANGELOG.md | 12 ++++++++++++ src/apis/dialogflow/package.json | 2 +- src/apis/discoveryengine/CHANGELOG.md | 11 +++++++++++ src/apis/discoveryengine/package.json | 2 +- src/apis/dlp/CHANGELOG.md | 12 ++++++++++++ src/apis/dlp/package.json | 2 +- src/apis/documentai/CHANGELOG.md | 11 +++++++++++ src/apis/documentai/package.json | 2 +- src/apis/eventarc/CHANGELOG.md | 7 +++++++ src/apis/eventarc/package.json | 2 +- src/apis/file/CHANGELOG.md | 8 ++++++++ src/apis/file/package.json | 2 +- src/apis/firebaseappdistribution/CHANGELOG.md | 7 +++++++ src/apis/firebaseappdistribution/package.json | 2 +- src/apis/gkehub/CHANGELOG.md | 8 ++++++++ src/apis/gkehub/package.json | 2 +- src/apis/iap/CHANGELOG.md | 7 +++++++ src/apis/iap/package.json | 2 +- src/apis/language/CHANGELOG.md | 7 +++++++ src/apis/language/package.json | 2 +- src/apis/logging/CHANGELOG.md | 7 +++++++ src/apis/logging/package.json | 2 +- src/apis/memcache/CHANGELOG.md | 7 +++++++ src/apis/memcache/package.json | 2 +- src/apis/networkconnectivity/CHANGELOG.md | 7 +++++++ src/apis/networkconnectivity/package.json | 2 +- src/apis/networkmanagement/CHANGELOG.md | 8 ++++++++ src/apis/networkmanagement/package.json | 2 +- src/apis/networksecurity/CHANGELOG.md | 7 +++++++ src/apis/networksecurity/package.json | 2 +- src/apis/osconfig/CHANGELOG.md | 8 ++++++++ src/apis/osconfig/package.json | 2 +- src/apis/pubsub/CHANGELOG.md | 7 +++++++ src/apis/pubsub/package.json | 2 +- src/apis/redis/CHANGELOG.md | 11 +++++++++++ src/apis/redis/package.json | 2 +- src/apis/retail/CHANGELOG.md | 7 +++++++ src/apis/retail/package.json | 2 +- src/apis/searchads360/CHANGELOG.md | 7 +++++++ src/apis/searchads360/package.json | 2 +- src/apis/secretmanager/CHANGELOG.md | 7 +++++++ src/apis/secretmanager/package.json | 2 +- src/apis/securitycenter/CHANGELOG.md | 11 +++++++++++ src/apis/securitycenter/package.json | 2 +- src/apis/servicemanagement/CHANGELOG.md | 8 ++++++++ src/apis/servicemanagement/package.json | 2 +- src/apis/texttospeech/CHANGELOG.md | 7 +++++++ src/apis/texttospeech/package.json | 2 +- src/apis/tpu/CHANGELOG.md | 7 +++++++ src/apis/tpu/package.json | 2 +- src/apis/vision/CHANGELOG.md | 7 +++++++ src/apis/vision/package.json | 2 +- src/apis/vmmigration/CHANGELOG.md | 8 ++++++++ src/apis/vmmigration/package.json | 2 +- src/apis/workflows/CHANGELOG.md | 7 +++++++ src/apis/workflows/package.json | 2 +- 100 files changed, 458 insertions(+), 50 deletions(-) diff --git a/src/apis/accesscontextmanager/CHANGELOG.md b/src/apis/accesscontextmanager/CHANGELOG.md index a91ff7f916..8ff5a1eaf9 100644 --- a/src/apis/accesscontextmanager/CHANGELOG.md +++ b/src/apis/accesscontextmanager/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [7.5.0](https://github.com/googleapis/google-api-nodejs-client/compare/accesscontextmanager-v7.4.0...accesscontextmanager-v7.5.0) (2024-10-30) + + +### Features + +* **accesscontextmanager:** update the API ([a99ade3](https://github.com/googleapis/google-api-nodejs-client/commit/a99ade3ec8f0090e75e85c8641e4353aefac6219)) + ## [7.4.0](https://github.com/googleapis/google-api-nodejs-client/compare/accesscontextmanager-v7.3.0...accesscontextmanager-v7.4.0) (2024-08-16) diff --git a/src/apis/accesscontextmanager/package.json b/src/apis/accesscontextmanager/package.json index 7822dc504b..af0c7f29e4 100644 --- a/src/apis/accesscontextmanager/package.json +++ b/src/apis/accesscontextmanager/package.json @@ -1,6 +1,6 @@ { "name": "@googleapis/accesscontextmanager", - "version": "7.4.0", + "version": "7.5.0", "description": "accesscontextmanager", "main": "build/index.js", "types": "build/index.d.ts", diff --git a/src/apis/appengine/CHANGELOG.md b/src/apis/appengine/CHANGELOG.md index e1cc9874f3..30e97d904a 100644 --- a/src/apis/appengine/CHANGELOG.md +++ b/src/apis/appengine/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [8.2.0](https://github.com/googleapis/google-api-nodejs-client/compare/appengine-v8.1.0...appengine-v8.2.0) (2024-10-30) + + +### Features + +* **appengine:** update the API ([2110d96](https://github.com/googleapis/google-api-nodejs-client/commit/2110d96100bd9cdd9aef6b322c93b8ec060f0aad)) + ## [8.1.0](https://github.com/googleapis/google-api-nodejs-client/compare/appengine-v8.0.0...appengine-v8.1.0) (2024-08-16) diff --git a/src/apis/appengine/package.json b/src/apis/appengine/package.json index e4e63a026c..208865d94c 100644 --- a/src/apis/appengine/package.json +++ b/src/apis/appengine/package.json @@ -1,6 +1,6 @@ { "name": "@googleapis/appengine", - "version": "8.1.0", + "version": "8.2.0", "description": "appengine", "main": "build/index.js", "types": "build/index.d.ts", diff --git a/src/apis/assuredworkloads/CHANGELOG.md b/src/apis/assuredworkloads/CHANGELOG.md index d52bd964c6..363741714e 100644 --- a/src/apis/assuredworkloads/CHANGELOG.md +++ b/src/apis/assuredworkloads/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [10.1.0](https://github.com/googleapis/google-api-nodejs-client/compare/assuredworkloads-v10.0.1...assuredworkloads-v10.1.0) (2024-10-30) + + +### Features + +* **assuredworkloads:** update the API ([f9ffc89](https://github.com/googleapis/google-api-nodejs-client/commit/f9ffc89418f9e01fbadfdb89fabdcfb6583399bc)) + ## [10.0.1](https://github.com/googleapis/google-api-nodejs-client/compare/assuredworkloads-v10.0.0...assuredworkloads-v10.0.1) (2024-08-30) diff --git a/src/apis/assuredworkloads/package.json b/src/apis/assuredworkloads/package.json index 791a008aee..703e4d24dd 100644 --- a/src/apis/assuredworkloads/package.json +++ b/src/apis/assuredworkloads/package.json @@ -1,6 +1,6 @@ { "name": "@googleapis/assuredworkloads", - "version": "10.0.1", + "version": "10.1.0", "description": "assuredworkloads", "main": "build/index.js", "types": "build/index.d.ts", diff --git a/src/apis/batch/CHANGELOG.md b/src/apis/batch/CHANGELOG.md index 1341c787c2..975aa6e22c 100644 --- a/src/apis/batch/CHANGELOG.md +++ b/src/apis/batch/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## [9.7.0](https://github.com/googleapis/google-api-nodejs-client/compare/batch-v9.6.0...batch-v9.7.0) (2024-10-30) + + +### Features + +* **batch:** update the API ([cfbab2e](https://github.com/googleapis/google-api-nodejs-client/commit/cfbab2e00d8df437f929382aed9431532fdb4023)) + + +### Bug Fixes + +* **batch:** update the API ([2ebc243](https://github.com/googleapis/google-api-nodejs-client/commit/2ebc243bc5f78bd12ac2b69fdbea4cc37aa6ab6e)) + ## [9.6.0](https://github.com/googleapis/google-api-nodejs-client/compare/batch-v9.5.0...batch-v9.6.0) (2024-08-27) diff --git a/src/apis/batch/package.json b/src/apis/batch/package.json index 85315bb4e5..a0a844e8ef 100644 --- a/src/apis/batch/package.json +++ b/src/apis/batch/package.json @@ -1,6 +1,6 @@ { "name": "@googleapis/batch", - "version": "9.6.0", + "version": "9.7.0", "description": "batch", "main": "build/index.js", "types": "build/index.d.ts", diff --git a/src/apis/beyondcorp/CHANGELOG.md b/src/apis/beyondcorp/CHANGELOG.md index 742724680d..75dd3096d2 100644 --- a/src/apis/beyondcorp/CHANGELOG.md +++ b/src/apis/beyondcorp/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## [15.0.0](https://github.com/googleapis/google-api-nodejs-client/compare/beyondcorp-v14.0.0...beyondcorp-v15.0.0) (2024-10-30) + + +### ⚠ BREAKING CHANGES + +* **beyondcorp:** This release has breaking changes. + +### Features + +* **beyondcorp:** update the API ([c56953e](https://github.com/googleapis/google-api-nodejs-client/commit/c56953e8e21ac571b1bcc7a8b0984b532a9a3290)) + ## [14.0.0](https://github.com/googleapis/google-api-nodejs-client/compare/beyondcorp-v13.0.0...beyondcorp-v14.0.0) (2024-08-16) diff --git a/src/apis/beyondcorp/package.json b/src/apis/beyondcorp/package.json index 1913377824..b9e876c4a0 100644 --- a/src/apis/beyondcorp/package.json +++ b/src/apis/beyondcorp/package.json @@ -1,6 +1,6 @@ { "name": "@googleapis/beyondcorp", - "version": "14.0.0", + "version": "15.0.0", "description": "beyondcorp", "main": "build/index.js", "types": "build/index.d.ts", diff --git a/src/apis/bigquery/CHANGELOG.md b/src/apis/bigquery/CHANGELOG.md index 9846a8d01e..1d74502674 100644 --- a/src/apis/bigquery/CHANGELOG.md +++ b/src/apis/bigquery/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [14.1.0](https://github.com/googleapis/google-api-nodejs-client/compare/bigquery-v14.0.0...bigquery-v14.1.0) (2024-10-30) + + +### Features + +* **bigquery:** update the API ([6ca0027](https://github.com/googleapis/google-api-nodejs-client/commit/6ca00276facbb58a97d4e0cc219e4464c976227a)) + ## [14.0.0](https://github.com/googleapis/google-api-nodejs-client/compare/bigquery-v13.0.1...bigquery-v14.0.0) (2024-08-27) diff --git a/src/apis/bigquery/package.json b/src/apis/bigquery/package.json index 200649b29f..975b9def12 100644 --- a/src/apis/bigquery/package.json +++ b/src/apis/bigquery/package.json @@ -1,6 +1,6 @@ { "name": "@googleapis/bigquery", - "version": "14.0.0", + "version": "14.1.0", "description": "bigquery", "main": "build/index.js", "types": "build/index.d.ts", diff --git a/src/apis/bigquerydatatransfer/CHANGELOG.md b/src/apis/bigquerydatatransfer/CHANGELOG.md index 98dabfe94a..179d8aeeee 100644 --- a/src/apis/bigquerydatatransfer/CHANGELOG.md +++ b/src/apis/bigquerydatatransfer/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [1.7.0](https://github.com/googleapis/google-api-nodejs-client/compare/bigquerydatatransfer-v1.6.0...bigquerydatatransfer-v1.7.0) (2024-10-30) + + +### Features + +* **bigquerydatatransfer:** update the API ([1c6359c](https://github.com/googleapis/google-api-nodejs-client/commit/1c6359c4477d7a9c48c2d591ee7cc5cfff3fc6b0)) + ## [1.6.0](https://github.com/googleapis/google-api-nodejs-client/compare/bigquerydatatransfer-v1.5.0...bigquerydatatransfer-v1.6.0) (2024-08-16) diff --git a/src/apis/bigquerydatatransfer/package.json b/src/apis/bigquerydatatransfer/package.json index bb70e20a5c..56c2f2424d 100644 --- a/src/apis/bigquerydatatransfer/package.json +++ b/src/apis/bigquerydatatransfer/package.json @@ -1,6 +1,6 @@ { "name": "@googleapis/bigquerydatatransfer", - "version": "1.6.0", + "version": "1.7.0", "description": "bigquerydatatransfer", "main": "build/index.js", "types": "build/index.d.ts", diff --git a/src/apis/bigqueryreservation/CHANGELOG.md b/src/apis/bigqueryreservation/CHANGELOG.md index 83a90a6d78..a0bf1fb260 100644 --- a/src/apis/bigqueryreservation/CHANGELOG.md +++ b/src/apis/bigqueryreservation/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [3.0.1](https://github.com/googleapis/google-api-nodejs-client/compare/bigqueryreservation-v3.0.0...bigqueryreservation-v3.0.1) (2024-10-30) + + +### Bug Fixes + +* **bigqueryreservation:** update the API ([156818a](https://github.com/googleapis/google-api-nodejs-client/commit/156818a600e87b5bb5067aee24009c8c410bef54)) + ## [3.0.0](https://github.com/googleapis/google-api-nodejs-client/compare/bigqueryreservation-v2.0.1...bigqueryreservation-v3.0.0) (2024-05-02) diff --git a/src/apis/bigqueryreservation/package.json b/src/apis/bigqueryreservation/package.json index c71d6c2092..e390f2b453 100644 --- a/src/apis/bigqueryreservation/package.json +++ b/src/apis/bigqueryreservation/package.json @@ -1,6 +1,6 @@ { "name": "@googleapis/bigqueryreservation", - "version": "3.0.0", + "version": "3.0.1", "description": "bigqueryreservation", "main": "build/index.js", "types": "build/index.d.ts", diff --git a/src/apis/checks/CHANGELOG.md b/src/apis/checks/CHANGELOG.md index 96a3f5ecf7..be4576e999 100644 --- a/src/apis/checks/CHANGELOG.md +++ b/src/apis/checks/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [4.1.0](https://github.com/googleapis/google-api-nodejs-client/compare/checks-v4.0.2...checks-v4.1.0) (2024-10-30) + + +### Features + +* **checks:** update the API ([d58f064](https://github.com/googleapis/google-api-nodejs-client/commit/d58f064f91451600a0113edefd1b6b113e39536f)) + ## [4.0.2](https://github.com/googleapis/google-api-nodejs-client/compare/checks-v4.0.1...checks-v4.0.2) (2024-05-02) diff --git a/src/apis/checks/package.json b/src/apis/checks/package.json index 4c174c821c..be35bed9fc 100644 --- a/src/apis/checks/package.json +++ b/src/apis/checks/package.json @@ -1,6 +1,6 @@ { "name": "@googleapis/checks", - "version": "4.0.2", + "version": "4.1.0", "description": "checks", "main": "build/index.js", "types": "build/index.d.ts", diff --git a/src/apis/cloudbuild/CHANGELOG.md b/src/apis/cloudbuild/CHANGELOG.md index 90b75be09e..f245045bbd 100644 --- a/src/apis/cloudbuild/CHANGELOG.md +++ b/src/apis/cloudbuild/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [11.0.1](https://github.com/googleapis/google-api-nodejs-client/compare/cloudbuild-v11.0.0...cloudbuild-v11.0.1) (2024-10-30) + + +### Bug Fixes + +* **cloudbuild:** update the API ([16cacdc](https://github.com/googleapis/google-api-nodejs-client/commit/16cacdcfb2cba2f4023a889a347feb06b7f209a8)) + ## [11.0.0](https://github.com/googleapis/google-api-nodejs-client/compare/cloudbuild-v10.0.0...cloudbuild-v11.0.0) (2024-08-16) diff --git a/src/apis/cloudbuild/package.json b/src/apis/cloudbuild/package.json index 119bebbcd0..9f1c666be1 100644 --- a/src/apis/cloudbuild/package.json +++ b/src/apis/cloudbuild/package.json @@ -1,6 +1,6 @@ { "name": "@googleapis/cloudbuild", - "version": "11.0.0", + "version": "11.0.1", "description": "cloudbuild", "main": "build/index.js", "types": "build/index.d.ts", diff --git a/src/apis/cloudchannel/CHANGELOG.md b/src/apis/cloudchannel/CHANGELOG.md index 948aae5473..a2a70a449a 100644 --- a/src/apis/cloudchannel/CHANGELOG.md +++ b/src/apis/cloudchannel/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## [2.0.0](https://github.com/googleapis/google-api-nodejs-client/compare/cloudchannel-v1.5.0...cloudchannel-v2.0.0) (2024-10-30) + + +### ⚠ BREAKING CHANGES + +* **cloudchannel:** This release has breaking changes. + +### Features + +* **cloudchannel:** update the API ([e0f22bb](https://github.com/googleapis/google-api-nodejs-client/commit/e0f22bb634a3af6e07616b9741322787a70278fc)) +* **cloudchannel:** update the API ([7815a30](https://github.com/googleapis/google-api-nodejs-client/commit/7815a30fc8e146e0800f125242d20f2203f0ee3e)) + ## [1.5.0](https://github.com/googleapis/google-api-nodejs-client/compare/cloudchannel-v1.4.3...cloudchannel-v1.5.0) (2024-08-16) diff --git a/src/apis/cloudchannel/package.json b/src/apis/cloudchannel/package.json index 075586568c..30975e49cc 100644 --- a/src/apis/cloudchannel/package.json +++ b/src/apis/cloudchannel/package.json @@ -1,6 +1,6 @@ { "name": "@googleapis/cloudchannel", - "version": "1.5.0", + "version": "2.0.0", "description": "cloudchannel", "main": "build/index.js", "types": "build/index.d.ts", diff --git a/src/apis/cloudfunctions/CHANGELOG.md b/src/apis/cloudfunctions/CHANGELOG.md index 9b41451e4b..167f8ea269 100644 --- a/src/apis/cloudfunctions/CHANGELOG.md +++ b/src/apis/cloudfunctions/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## [5.0.0](https://github.com/googleapis/google-api-nodejs-client/compare/cloudfunctions-v4.3.1...cloudfunctions-v5.0.0) (2024-10-30) + + +### ⚠ BREAKING CHANGES + +* **cloudfunctions:** This release has breaking changes. + +### Features + +* **cloudfunctions:** update the API ([05a90c1](https://github.com/googleapis/google-api-nodejs-client/commit/05a90c1d0794776d76838f3ed5cd20153456a488)) + ## [4.3.1](https://github.com/googleapis/google-api-nodejs-client/compare/cloudfunctions-v4.3.0...cloudfunctions-v4.3.1) (2024-08-30) diff --git a/src/apis/cloudfunctions/package.json b/src/apis/cloudfunctions/package.json index 51edb579d0..ddd5a1879b 100644 --- a/src/apis/cloudfunctions/package.json +++ b/src/apis/cloudfunctions/package.json @@ -1,6 +1,6 @@ { "name": "@googleapis/cloudfunctions", - "version": "4.3.1", + "version": "5.0.0", "description": "cloudfunctions", "main": "build/index.js", "types": "build/index.d.ts", diff --git a/src/apis/cloudscheduler/CHANGELOG.md b/src/apis/cloudscheduler/CHANGELOG.md index 99f525d399..5788bc2c4b 100644 --- a/src/apis/cloudscheduler/CHANGELOG.md +++ b/src/apis/cloudscheduler/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [1.2.0](https://github.com/googleapis/google-api-nodejs-client/compare/cloudscheduler-v1.1.7...cloudscheduler-v1.2.0) (2024-10-30) + + +### Features + +* **cloudscheduler:** update the API ([91f5187](https://github.com/googleapis/google-api-nodejs-client/commit/91f5187352b60cb22bed1681107b959c2f52361b)) + ## [1.1.7](https://github.com/googleapis/google-api-nodejs-client/compare/cloudscheduler-v1.1.6...cloudscheduler-v1.1.7) (2024-05-02) diff --git a/src/apis/cloudscheduler/package.json b/src/apis/cloudscheduler/package.json index a9da767889..0544f598e7 100644 --- a/src/apis/cloudscheduler/package.json +++ b/src/apis/cloudscheduler/package.json @@ -1,6 +1,6 @@ { "name": "@googleapis/cloudscheduler", - "version": "1.1.7", + "version": "1.2.0", "description": "cloudscheduler", "main": "build/index.js", "types": "build/index.d.ts", diff --git a/src/apis/compute/CHANGELOG.md b/src/apis/compute/CHANGELOG.md index 01807d1bcf..7c513725df 100644 --- a/src/apis/compute/CHANGELOG.md +++ b/src/apis/compute/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [21.1.0](https://github.com/googleapis/google-api-nodejs-client/compare/compute-v21.0.0...compute-v21.1.0) (2024-10-30) + + +### Features + +* **compute:** update the API ([d17c4da](https://github.com/googleapis/google-api-nodejs-client/commit/d17c4da1b00762ba782cc4970eb10882bc6837bf)) + ## [21.0.0](https://github.com/googleapis/google-api-nodejs-client/compare/compute-v20.0.0...compute-v21.0.0) (2024-08-30) diff --git a/src/apis/compute/package.json b/src/apis/compute/package.json index 7765d7c0b4..887354fcaa 100644 --- a/src/apis/compute/package.json +++ b/src/apis/compute/package.json @@ -1,6 +1,6 @@ { "name": "@googleapis/compute", - "version": "21.0.0", + "version": "21.1.0", "description": "compute", "main": "build/index.js", "types": "build/index.d.ts", diff --git a/src/apis/contactcenterinsights/CHANGELOG.md b/src/apis/contactcenterinsights/CHANGELOG.md index c77b677549..bf02644a7b 100644 --- a/src/apis/contactcenterinsights/CHANGELOG.md +++ b/src/apis/contactcenterinsights/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## [12.0.0](https://github.com/googleapis/google-api-nodejs-client/compare/contactcenterinsights-v11.0.0...contactcenterinsights-v12.0.0) (2024-10-30) + + +### ⚠ BREAKING CHANGES + +* **contactcenterinsights:** This release has breaking changes. + +### Features + +* **contactcenterinsights:** update the API ([00ff65c](https://github.com/googleapis/google-api-nodejs-client/commit/00ff65c2bc52543c0f3de0339edc4e75936d4055)) + ## [11.0.0](https://github.com/googleapis/google-api-nodejs-client/compare/contactcenterinsights-v10.0.0...contactcenterinsights-v11.0.0) (2024-08-16) diff --git a/src/apis/contactcenterinsights/package.json b/src/apis/contactcenterinsights/package.json index 1e57f6e937..0b777d78d4 100644 --- a/src/apis/contactcenterinsights/package.json +++ b/src/apis/contactcenterinsights/package.json @@ -1,6 +1,6 @@ { "name": "@googleapis/contactcenterinsights", - "version": "11.0.0", + "version": "12.0.0", "description": "contactcenterinsights", "main": "build/index.js", "types": "build/index.d.ts", diff --git a/src/apis/container/CHANGELOG.md b/src/apis/container/CHANGELOG.md index 73e3752975..00ed45fba4 100644 --- a/src/apis/container/CHANGELOG.md +++ b/src/apis/container/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [12.1.0](https://github.com/googleapis/google-api-nodejs-client/compare/container-v12.0.0...container-v12.1.0) (2024-10-30) + + +### Features + +* **container:** update the API ([6305f3c](https://github.com/googleapis/google-api-nodejs-client/commit/6305f3ce7f35b9b148fed4d9eccf1cd1a1784f6e)) + ## [12.0.0](https://github.com/googleapis/google-api-nodejs-client/compare/container-v11.1.0...container-v12.0.0) (2024-08-27) diff --git a/src/apis/container/package.json b/src/apis/container/package.json index efa149a587..bebb88ae4b 100644 --- a/src/apis/container/package.json +++ b/src/apis/container/package.json @@ -1,6 +1,6 @@ { "name": "@googleapis/container", - "version": "12.0.0", + "version": "12.1.0", "description": "container", "main": "build/index.js", "types": "build/index.d.ts", diff --git a/src/apis/containeranalysis/CHANGELOG.md b/src/apis/containeranalysis/CHANGELOG.md index cca25a88cd..b08942cc4c 100644 --- a/src/apis/containeranalysis/CHANGELOG.md +++ b/src/apis/containeranalysis/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [11.1.0](https://github.com/googleapis/google-api-nodejs-client/compare/containeranalysis-v11.0.0...containeranalysis-v11.1.0) (2024-10-30) + + +### Features + +* **containeranalysis:** update the API ([40cb106](https://github.com/googleapis/google-api-nodejs-client/commit/40cb10646a1bf2be6e2013a59021f3b2213095ff)) + ## [11.0.0](https://github.com/googleapis/google-api-nodejs-client/compare/containeranalysis-v10.1.0...containeranalysis-v11.0.0) (2024-08-27) diff --git a/src/apis/containeranalysis/package.json b/src/apis/containeranalysis/package.json index 4678539dd0..de66630cc1 100644 --- a/src/apis/containeranalysis/package.json +++ b/src/apis/containeranalysis/package.json @@ -1,6 +1,6 @@ { "name": "@googleapis/containeranalysis", - "version": "11.0.0", + "version": "11.1.0", "description": "containeranalysis", "main": "build/index.js", "types": "build/index.d.ts", diff --git a/src/apis/dataform/CHANGELOG.md b/src/apis/dataform/CHANGELOG.md index 611112166e..1c21d2262a 100644 --- a/src/apis/dataform/CHANGELOG.md +++ b/src/apis/dataform/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [6.1.0](https://github.com/googleapis/google-api-nodejs-client/compare/dataform-v6.0.0...dataform-v6.1.0) (2024-10-30) + + +### Features + +* **dataform:** update the API ([2f0ca2e](https://github.com/googleapis/google-api-nodejs-client/commit/2f0ca2e8744485661f12bb38c87f9b394e13fad7)) + ## [6.0.0](https://github.com/googleapis/google-api-nodejs-client/compare/dataform-v5.1.0...dataform-v6.0.0) (2024-08-16) diff --git a/src/apis/dataform/package.json b/src/apis/dataform/package.json index 09396694cc..cd0f0ac4c1 100644 --- a/src/apis/dataform/package.json +++ b/src/apis/dataform/package.json @@ -1,6 +1,6 @@ { "name": "@googleapis/dataform", - "version": "6.0.0", + "version": "6.1.0", "description": "dataform", "main": "build/index.js", "types": "build/index.d.ts", diff --git a/src/apis/datamigration/CHANGELOG.md b/src/apis/datamigration/CHANGELOG.md index 7fa55fe953..7863c07cf2 100644 --- a/src/apis/datamigration/CHANGELOG.md +++ b/src/apis/datamigration/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [6.4.0](https://github.com/googleapis/google-api-nodejs-client/compare/datamigration-v6.3.0...datamigration-v6.4.0) (2024-10-30) + + +### Features + +* **datamigration:** update the API ([66a587e](https://github.com/googleapis/google-api-nodejs-client/commit/66a587ecfa833c837b09f34f5f731fe13a36108d)) + ## [6.3.0](https://github.com/googleapis/google-api-nodejs-client/compare/datamigration-v6.2.0...datamigration-v6.3.0) (2024-08-16) diff --git a/src/apis/datamigration/package.json b/src/apis/datamigration/package.json index 6c936c2421..33d560a870 100644 --- a/src/apis/datamigration/package.json +++ b/src/apis/datamigration/package.json @@ -1,6 +1,6 @@ { "name": "@googleapis/datamigration", - "version": "6.3.0", + "version": "6.4.0", "description": "datamigration", "main": "build/index.js", "types": "build/index.d.ts", diff --git a/src/apis/dataplex/CHANGELOG.md b/src/apis/dataplex/CHANGELOG.md index 92e2fa66b7..d44428b492 100644 --- a/src/apis/dataplex/CHANGELOG.md +++ b/src/apis/dataplex/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## [12.0.0](https://github.com/googleapis/google-api-nodejs-client/compare/dataplex-v11.0.0...dataplex-v12.0.0) (2024-10-30) + + +### ⚠ BREAKING CHANGES + +* **dataplex:** This release has breaking changes. + +### Features + +* **dataplex:** update the API ([9b2e079](https://github.com/googleapis/google-api-nodejs-client/commit/9b2e0790fde457e3b2dce1835cad16fe9cc460a5)) + ## [11.0.0](https://github.com/googleapis/google-api-nodejs-client/compare/dataplex-v10.1.0...dataplex-v11.0.0) (2024-08-27) diff --git a/src/apis/dataplex/package.json b/src/apis/dataplex/package.json index 1cd494d1bb..e699e9230f 100644 --- a/src/apis/dataplex/package.json +++ b/src/apis/dataplex/package.json @@ -1,6 +1,6 @@ { "name": "@googleapis/dataplex", - "version": "11.0.0", + "version": "12.0.0", "description": "dataplex", "main": "build/index.js", "types": "build/index.d.ts", diff --git a/src/apis/dataproc/CHANGELOG.md b/src/apis/dataproc/CHANGELOG.md index 03482f9fc8..dcb39ead63 100644 --- a/src/apis/dataproc/CHANGELOG.md +++ b/src/apis/dataproc/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [9.2.0](https://github.com/googleapis/google-api-nodejs-client/compare/dataproc-v9.1.0...dataproc-v9.2.0) (2024-10-30) + + +### Features + +* **dataproc:** update the API ([93a5615](https://github.com/googleapis/google-api-nodejs-client/commit/93a56159cbe4a0544f256b813575da95b450705b)) + ## [9.1.0](https://github.com/googleapis/google-api-nodejs-client/compare/dataproc-v9.0.0...dataproc-v9.1.0) (2024-08-30) diff --git a/src/apis/dataproc/package.json b/src/apis/dataproc/package.json index de8a766c6c..cedb656327 100644 --- a/src/apis/dataproc/package.json +++ b/src/apis/dataproc/package.json @@ -1,6 +1,6 @@ { "name": "@googleapis/dataproc", - "version": "9.1.0", + "version": "9.2.0", "description": "dataproc", "main": "build/index.js", "types": "build/index.d.ts", diff --git a/src/apis/datastream/CHANGELOG.md b/src/apis/datastream/CHANGELOG.md index 86bc095ec6..ee8794c74a 100644 --- a/src/apis/datastream/CHANGELOG.md +++ b/src/apis/datastream/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [6.7.0](https://github.com/googleapis/google-api-nodejs-client/compare/datastream-v6.6.0...datastream-v6.7.0) (2024-10-30) + + +### Features + +* **datastream:** update the API ([5ef63aa](https://github.com/googleapis/google-api-nodejs-client/commit/5ef63aa502092b81f266103ad64eac4db7b05d5b)) + ## [6.6.0](https://github.com/googleapis/google-api-nodejs-client/compare/datastream-v6.5.1...datastream-v6.6.0) (2024-08-27) diff --git a/src/apis/datastream/package.json b/src/apis/datastream/package.json index e28f038c24..39462384af 100644 --- a/src/apis/datastream/package.json +++ b/src/apis/datastream/package.json @@ -1,6 +1,6 @@ { "name": "@googleapis/datastream", - "version": "6.6.0", + "version": "6.7.0", "description": "datastream", "main": "build/index.js", "types": "build/index.d.ts", diff --git a/src/apis/dialogflow/CHANGELOG.md b/src/apis/dialogflow/CHANGELOG.md index 00c7888598..40c77c2977 100644 --- a/src/apis/dialogflow/CHANGELOG.md +++ b/src/apis/dialogflow/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## [13.1.0](https://github.com/googleapis/google-api-nodejs-client/compare/dialogflow-v13.0.0...dialogflow-v13.1.0) (2024-10-30) + + +### Features + +* **dialogflow:** update the API ([924c09b](https://github.com/googleapis/google-api-nodejs-client/commit/924c09b43218ae066b0ab74e05f8d141151ab528)) + + +### Bug Fixes + +* **dialogflow:** update the API ([635d129](https://github.com/googleapis/google-api-nodejs-client/commit/635d12952ad6c4a59a18f24453b97dfb8f56b8d2)) + ## [13.0.0](https://github.com/googleapis/google-api-nodejs-client/compare/dialogflow-v12.0.0...dialogflow-v13.0.0) (2024-08-27) diff --git a/src/apis/dialogflow/package.json b/src/apis/dialogflow/package.json index 7ba29499e0..2d04333af3 100644 --- a/src/apis/dialogflow/package.json +++ b/src/apis/dialogflow/package.json @@ -1,6 +1,6 @@ { "name": "@googleapis/dialogflow", - "version": "13.0.0", + "version": "13.1.0", "description": "dialogflow", "main": "build/index.js", "types": "build/index.d.ts", diff --git a/src/apis/discoveryengine/CHANGELOG.md b/src/apis/discoveryengine/CHANGELOG.md index 030971d63c..b14c1ef0b1 100644 --- a/src/apis/discoveryengine/CHANGELOG.md +++ b/src/apis/discoveryengine/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## [16.0.0](https://github.com/googleapis/google-api-nodejs-client/compare/discoveryengine-v15.0.0...discoveryengine-v16.0.0) (2024-10-30) + + +### ⚠ BREAKING CHANGES + +* **discoveryengine:** This release has breaking changes. + +### Features + +* **discoveryengine:** update the API ([43414b4](https://github.com/googleapis/google-api-nodejs-client/commit/43414b421c472f6fb176746cfc31c17588eec02d)) + ## [15.0.0](https://github.com/googleapis/google-api-nodejs-client/compare/discoveryengine-v14.0.0...discoveryengine-v15.0.0) (2024-08-30) diff --git a/src/apis/discoveryengine/package.json b/src/apis/discoveryengine/package.json index e03efd07d5..1f624b6a0b 100644 --- a/src/apis/discoveryengine/package.json +++ b/src/apis/discoveryengine/package.json @@ -1,6 +1,6 @@ { "name": "@googleapis/discoveryengine", - "version": "15.0.0", + "version": "16.0.0", "description": "discoveryengine", "main": "build/index.js", "types": "build/index.d.ts", diff --git a/src/apis/dlp/CHANGELOG.md b/src/apis/dlp/CHANGELOG.md index 791ec190f0..9760e7843a 100644 --- a/src/apis/dlp/CHANGELOG.md +++ b/src/apis/dlp/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## [13.1.0](https://github.com/googleapis/google-api-nodejs-client/compare/dlp-v13.0.0...dlp-v13.1.0) (2024-10-30) + + +### Features + +* **dlp:** update the API ([24861fd](https://github.com/googleapis/google-api-nodejs-client/commit/24861fdd152272da7323e31252a0ec447565c253)) + + +### Bug Fixes + +* **dlp:** update the API ([c227be2](https://github.com/googleapis/google-api-nodejs-client/commit/c227be2055b763cac8183dac1231adb7a5d25484)) + ## [13.0.0](https://github.com/googleapis/google-api-nodejs-client/compare/dlp-v12.0.1...dlp-v13.0.0) (2024-08-27) diff --git a/src/apis/dlp/package.json b/src/apis/dlp/package.json index ef005b2a01..ee52572047 100644 --- a/src/apis/dlp/package.json +++ b/src/apis/dlp/package.json @@ -1,6 +1,6 @@ { "name": "@googleapis/dlp", - "version": "13.0.0", + "version": "13.1.0", "description": "dlp", "main": "build/index.js", "types": "build/index.d.ts", diff --git a/src/apis/documentai/CHANGELOG.md b/src/apis/documentai/CHANGELOG.md index 1c9e5187ce..c623c887df 100644 --- a/src/apis/documentai/CHANGELOG.md +++ b/src/apis/documentai/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## [9.0.0](https://github.com/googleapis/google-api-nodejs-client/compare/documentai-v8.4.0...documentai-v9.0.0) (2024-10-30) + + +### ⚠ BREAKING CHANGES + +* **documentai:** This release has breaking changes. + +### Features + +* **documentai:** update the API ([5dd74eb](https://github.com/googleapis/google-api-nodejs-client/commit/5dd74ebf677bef836a8337aaecc6eb69b7085500)) + ## [8.4.0](https://github.com/googleapis/google-api-nodejs-client/compare/documentai-v8.3.0...documentai-v8.4.0) (2024-08-16) diff --git a/src/apis/documentai/package.json b/src/apis/documentai/package.json index df3a8661e0..c3c41b5fc0 100644 --- a/src/apis/documentai/package.json +++ b/src/apis/documentai/package.json @@ -1,6 +1,6 @@ { "name": "@googleapis/documentai", - "version": "8.4.0", + "version": "9.0.0", "description": "documentai", "main": "build/index.js", "types": "build/index.d.ts", diff --git a/src/apis/eventarc/CHANGELOG.md b/src/apis/eventarc/CHANGELOG.md index d280618d6e..196ec1b406 100644 --- a/src/apis/eventarc/CHANGELOG.md +++ b/src/apis/eventarc/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [6.3.0](https://github.com/googleapis/google-api-nodejs-client/compare/eventarc-v6.2.1...eventarc-v6.3.0) (2024-10-30) + + +### Features + +* **eventarc:** update the API ([a770614](https://github.com/googleapis/google-api-nodejs-client/commit/a770614e4baa362722fdc6b34794b2018c7c59a8)) + ## [6.2.1](https://github.com/googleapis/google-api-nodejs-client/compare/eventarc-v6.2.0...eventarc-v6.2.1) (2024-06-03) diff --git a/src/apis/eventarc/package.json b/src/apis/eventarc/package.json index e04f1ace1a..22a383cb9f 100644 --- a/src/apis/eventarc/package.json +++ b/src/apis/eventarc/package.json @@ -1,6 +1,6 @@ { "name": "@googleapis/eventarc", - "version": "6.2.1", + "version": "6.3.0", "description": "eventarc", "main": "build/index.js", "types": "build/index.d.ts", diff --git a/src/apis/file/CHANGELOG.md b/src/apis/file/CHANGELOG.md index a3bf150851..7d1b2bc65d 100644 --- a/src/apis/file/CHANGELOG.md +++ b/src/apis/file/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [8.1.0](https://github.com/googleapis/google-api-nodejs-client/compare/file-v8.0.0...file-v8.1.0) (2024-10-30) + + +### Features + +* **file:** update the API ([748b48e](https://github.com/googleapis/google-api-nodejs-client/commit/748b48ef6e76438bdea374b199c23129e24f5a62)) +* **file:** update the API ([e0820ea](https://github.com/googleapis/google-api-nodejs-client/commit/e0820ea3a61c2e1a1c2a774723048f298108526d)) + ## [8.0.0](https://github.com/googleapis/google-api-nodejs-client/compare/file-v7.2.0...file-v8.0.0) (2024-08-16) diff --git a/src/apis/file/package.json b/src/apis/file/package.json index 6999b4a518..0439350fe7 100644 --- a/src/apis/file/package.json +++ b/src/apis/file/package.json @@ -1,6 +1,6 @@ { "name": "@googleapis/file", - "version": "8.0.0", + "version": "8.1.0", "description": "file", "main": "build/index.js", "types": "build/index.d.ts", diff --git a/src/apis/firebaseappdistribution/CHANGELOG.md b/src/apis/firebaseappdistribution/CHANGELOG.md index 2b996aaf02..50b5a13f7f 100644 --- a/src/apis/firebaseappdistribution/CHANGELOG.md +++ b/src/apis/firebaseappdistribution/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [3.1.0](https://github.com/googleapis/google-api-nodejs-client/compare/firebaseappdistribution-v3.0.0...firebaseappdistribution-v3.1.0) (2024-10-30) + + +### Features + +* **firebaseappdistribution:** update the API ([8488ea7](https://github.com/googleapis/google-api-nodejs-client/commit/8488ea738ea6b28849ee2d208fc9c8ddc7896ecf)) + ## [3.0.0](https://github.com/googleapis/google-api-nodejs-client/compare/firebaseappdistribution-v2.0.0...firebaseappdistribution-v3.0.0) (2024-08-16) diff --git a/src/apis/firebaseappdistribution/package.json b/src/apis/firebaseappdistribution/package.json index 839c28e823..8aafe2ca34 100644 --- a/src/apis/firebaseappdistribution/package.json +++ b/src/apis/firebaseappdistribution/package.json @@ -1,6 +1,6 @@ { "name": "@googleapis/firebaseappdistribution", - "version": "3.0.0", + "version": "3.1.0", "description": "firebaseappdistribution", "main": "build/index.js", "types": "build/index.d.ts", diff --git a/src/apis/gkehub/CHANGELOG.md b/src/apis/gkehub/CHANGELOG.md index c39f453dd8..cf9ce4cc08 100644 --- a/src/apis/gkehub/CHANGELOG.md +++ b/src/apis/gkehub/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [16.1.0](https://github.com/googleapis/google-api-nodejs-client/compare/gkehub-v16.0.0...gkehub-v16.1.0) (2024-10-30) + + +### Features + +* **gkehub:** update the API ([44de751](https://github.com/googleapis/google-api-nodejs-client/commit/44de75112ee86c2bafc2fc4db991765034df2129)) +* **gkehub:** update the API ([c68ab6f](https://github.com/googleapis/google-api-nodejs-client/commit/c68ab6f0ddd5ad3864d7e58138f90cb4a845b1b6)) + ## [16.0.0](https://github.com/googleapis/google-api-nodejs-client/compare/gkehub-v15.0.1...gkehub-v16.0.0) (2024-08-27) diff --git a/src/apis/gkehub/package.json b/src/apis/gkehub/package.json index 302a616999..9477bcfdd3 100644 --- a/src/apis/gkehub/package.json +++ b/src/apis/gkehub/package.json @@ -1,6 +1,6 @@ { "name": "@googleapis/gkehub", - "version": "16.0.0", + "version": "16.1.0", "description": "gkehub", "main": "build/index.js", "types": "build/index.d.ts", diff --git a/src/apis/iap/CHANGELOG.md b/src/apis/iap/CHANGELOG.md index 576df8cac2..7ce89ef71d 100644 --- a/src/apis/iap/CHANGELOG.md +++ b/src/apis/iap/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [8.2.1](https://github.com/googleapis/google-api-nodejs-client/compare/iap-v8.2.0...iap-v8.2.1) (2024-10-30) + + +### Bug Fixes + +* **iap:** update the API ([4e8d031](https://github.com/googleapis/google-api-nodejs-client/commit/4e8d03101adaaa8686ac8d3f4d502d204e187cec)) + ## [8.2.0](https://github.com/googleapis/google-api-nodejs-client/compare/iap-v8.1.0...iap-v8.2.0) (2024-08-16) diff --git a/src/apis/iap/package.json b/src/apis/iap/package.json index 0a5dc42330..14bb7e3b24 100644 --- a/src/apis/iap/package.json +++ b/src/apis/iap/package.json @@ -1,6 +1,6 @@ { "name": "@googleapis/iap", - "version": "8.2.0", + "version": "8.2.1", "description": "iap", "main": "build/index.js", "types": "build/index.d.ts", diff --git a/src/apis/language/CHANGELOG.md b/src/apis/language/CHANGELOG.md index bc205bd905..7715ff9300 100644 --- a/src/apis/language/CHANGELOG.md +++ b/src/apis/language/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [4.1.0](https://github.com/googleapis/google-api-nodejs-client/compare/language-v4.0.0...language-v4.1.0) (2024-10-30) + + +### Features + +* **language:** update the API ([923b951](https://github.com/googleapis/google-api-nodejs-client/commit/923b951d3ebe7523ac2ea6e88e9dd810cd9478eb)) + ## [4.0.0](https://github.com/googleapis/google-api-nodejs-client/compare/language-v3.0.1...language-v4.0.0) (2024-05-02) diff --git a/src/apis/language/package.json b/src/apis/language/package.json index a1cf1b73a7..be7f011cc5 100644 --- a/src/apis/language/package.json +++ b/src/apis/language/package.json @@ -1,6 +1,6 @@ { "name": "@googleapis/language", - "version": "4.0.0", + "version": "4.1.0", "description": "language", "main": "build/index.js", "types": "build/index.d.ts", diff --git a/src/apis/logging/CHANGELOG.md b/src/apis/logging/CHANGELOG.md index d13db3b64a..afe539d07b 100644 --- a/src/apis/logging/CHANGELOG.md +++ b/src/apis/logging/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [8.1.0](https://github.com/googleapis/google-api-nodejs-client/compare/logging-v8.0.0...logging-v8.1.0) (2024-10-30) + + +### Features + +* **logging:** update the API ([195ac69](https://github.com/googleapis/google-api-nodejs-client/commit/195ac69647342a7f36cf73ff8c3b1f6a60f4c35b)) + ## [8.0.0](https://github.com/googleapis/google-api-nodejs-client/compare/logging-v7.0.0...logging-v8.0.0) (2024-08-16) diff --git a/src/apis/logging/package.json b/src/apis/logging/package.json index 3402b36021..ba5786a73a 100644 --- a/src/apis/logging/package.json +++ b/src/apis/logging/package.json @@ -1,6 +1,6 @@ { "name": "@googleapis/logging", - "version": "8.0.0", + "version": "8.1.0", "description": "logging", "main": "build/index.js", "types": "build/index.d.ts", diff --git a/src/apis/memcache/CHANGELOG.md b/src/apis/memcache/CHANGELOG.md index abcd9fad65..e766177be0 100644 --- a/src/apis/memcache/CHANGELOG.md +++ b/src/apis/memcache/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [3.4.0](https://github.com/googleapis/google-api-nodejs-client/compare/memcache-v3.3.0...memcache-v3.4.0) (2024-10-30) + + +### Features + +* **memcache:** update the API ([e830d15](https://github.com/googleapis/google-api-nodejs-client/commit/e830d154266e49757d2c624ab98e8e2065e941dc)) + ## [3.3.0](https://github.com/googleapis/google-api-nodejs-client/compare/memcache-v3.2.0...memcache-v3.3.0) (2024-08-16) diff --git a/src/apis/memcache/package.json b/src/apis/memcache/package.json index 3fdb54a7ca..b5f2be9834 100644 --- a/src/apis/memcache/package.json +++ b/src/apis/memcache/package.json @@ -1,6 +1,6 @@ { "name": "@googleapis/memcache", - "version": "3.3.0", + "version": "3.4.0", "description": "memcache", "main": "build/index.js", "types": "build/index.d.ts", diff --git a/src/apis/networkconnectivity/CHANGELOG.md b/src/apis/networkconnectivity/CHANGELOG.md index ee7ea012c7..553bae9a73 100644 --- a/src/apis/networkconnectivity/CHANGELOG.md +++ b/src/apis/networkconnectivity/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [8.4.0](https://github.com/googleapis/google-api-nodejs-client/compare/networkconnectivity-v8.3.0...networkconnectivity-v8.4.0) (2024-10-30) + + +### Features + +* **networkconnectivity:** update the API ([748ab35](https://github.com/googleapis/google-api-nodejs-client/commit/748ab352f05bb911511501b69aacc14cc1830103)) + ## [8.3.0](https://github.com/googleapis/google-api-nodejs-client/compare/networkconnectivity-v8.2.0...networkconnectivity-v8.3.0) (2024-08-16) diff --git a/src/apis/networkconnectivity/package.json b/src/apis/networkconnectivity/package.json index c50be361fb..a5662d5b87 100644 --- a/src/apis/networkconnectivity/package.json +++ b/src/apis/networkconnectivity/package.json @@ -1,6 +1,6 @@ { "name": "@googleapis/networkconnectivity", - "version": "8.3.0", + "version": "8.4.0", "description": "networkconnectivity", "main": "build/index.js", "types": "build/index.d.ts", diff --git a/src/apis/networkmanagement/CHANGELOG.md b/src/apis/networkmanagement/CHANGELOG.md index df64490e04..a7aa337c88 100644 --- a/src/apis/networkmanagement/CHANGELOG.md +++ b/src/apis/networkmanagement/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [10.2.0](https://github.com/googleapis/google-api-nodejs-client/compare/networkmanagement-v10.1.0...networkmanagement-v10.2.0) (2024-10-30) + + +### Features + +* **networkmanagement:** update the API ([9180bb9](https://github.com/googleapis/google-api-nodejs-client/commit/9180bb91a08b365f54711b9b3556cee7b0665060)) +* **networkmanagement:** update the API ([83b879c](https://github.com/googleapis/google-api-nodejs-client/commit/83b879c49cf9ba851a61fb81d03296f7aa152afc)) + ## [10.1.0](https://github.com/googleapis/google-api-nodejs-client/compare/networkmanagement-v10.0.0...networkmanagement-v10.1.0) (2024-08-27) diff --git a/src/apis/networkmanagement/package.json b/src/apis/networkmanagement/package.json index 78c6cc7279..b5f3990ca0 100644 --- a/src/apis/networkmanagement/package.json +++ b/src/apis/networkmanagement/package.json @@ -1,6 +1,6 @@ { "name": "@googleapis/networkmanagement", - "version": "10.1.0", + "version": "10.2.0", "description": "networkmanagement", "main": "build/index.js", "types": "build/index.d.ts", diff --git a/src/apis/networksecurity/CHANGELOG.md b/src/apis/networksecurity/CHANGELOG.md index d0c7e6e4e9..088c18e8e9 100644 --- a/src/apis/networksecurity/CHANGELOG.md +++ b/src/apis/networksecurity/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [8.3.0](https://github.com/googleapis/google-api-nodejs-client/compare/networksecurity-v8.2.0...networksecurity-v8.3.0) (2024-10-30) + + +### Features + +* **networksecurity:** update the API ([349d271](https://github.com/googleapis/google-api-nodejs-client/commit/349d2715c4afd188ea81378c89836dd88027585f)) + ## [8.2.0](https://github.com/googleapis/google-api-nodejs-client/compare/networksecurity-v8.1.0...networksecurity-v8.2.0) (2024-08-16) diff --git a/src/apis/networksecurity/package.json b/src/apis/networksecurity/package.json index f93b653636..0818d436e9 100644 --- a/src/apis/networksecurity/package.json +++ b/src/apis/networksecurity/package.json @@ -1,6 +1,6 @@ { "name": "@googleapis/networksecurity", - "version": "8.2.0", + "version": "8.3.0", "description": "networksecurity", "main": "build/index.js", "types": "build/index.d.ts", diff --git a/src/apis/osconfig/CHANGELOG.md b/src/apis/osconfig/CHANGELOG.md index 50e69572eb..95eadf17f3 100644 --- a/src/apis/osconfig/CHANGELOG.md +++ b/src/apis/osconfig/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [4.1.2](https://github.com/googleapis/google-api-nodejs-client/compare/osconfig-v4.1.1...osconfig-v4.1.2) (2024-10-30) + + +### Bug Fixes + +* **osconfig:** update the API ([0f56c0f](https://github.com/googleapis/google-api-nodejs-client/commit/0f56c0fc6f64fcac660d03500258b7a0815d7c18)) +* **osconfig:** update the API ([16514a1](https://github.com/googleapis/google-api-nodejs-client/commit/16514a162e8aeb6589e98c55c2bf5dda939bffb8)) + ## [4.1.1](https://github.com/googleapis/google-api-nodejs-client/compare/osconfig-v4.1.0...osconfig-v4.1.1) (2024-06-06) diff --git a/src/apis/osconfig/package.json b/src/apis/osconfig/package.json index 433f65a0f0..dd805a8186 100644 --- a/src/apis/osconfig/package.json +++ b/src/apis/osconfig/package.json @@ -1,6 +1,6 @@ { "name": "@googleapis/osconfig", - "version": "4.1.1", + "version": "4.1.2", "description": "osconfig", "main": "build/index.js", "types": "build/index.d.ts", diff --git a/src/apis/pubsub/CHANGELOG.md b/src/apis/pubsub/CHANGELOG.md index 16f155cc68..29e41c58bb 100644 --- a/src/apis/pubsub/CHANGELOG.md +++ b/src/apis/pubsub/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [6.1.0](https://github.com/googleapis/google-api-nodejs-client/compare/pubsub-v6.0.0...pubsub-v6.1.0) (2024-10-30) + + +### Features + +* **pubsub:** update the API ([36809dc](https://github.com/googleapis/google-api-nodejs-client/commit/36809dcc1820abf18bf6acf964ebbf1315cac655)) + ## [6.0.0](https://github.com/googleapis/google-api-nodejs-client/compare/pubsub-v5.0.0...pubsub-v6.0.0) (2024-08-16) diff --git a/src/apis/pubsub/package.json b/src/apis/pubsub/package.json index d7cc12a89c..153837aae6 100644 --- a/src/apis/pubsub/package.json +++ b/src/apis/pubsub/package.json @@ -1,6 +1,6 @@ { "name": "@googleapis/pubsub", - "version": "6.0.0", + "version": "6.1.0", "description": "pubsub", "main": "build/index.js", "types": "build/index.d.ts", diff --git a/src/apis/redis/CHANGELOG.md b/src/apis/redis/CHANGELOG.md index 32a8a30f89..4dffff6a36 100644 --- a/src/apis/redis/CHANGELOG.md +++ b/src/apis/redis/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## [13.0.0](https://github.com/googleapis/google-api-nodejs-client/compare/redis-v12.0.0...redis-v13.0.0) (2024-10-30) + + +### ⚠ BREAKING CHANGES + +* **redis:** This release has breaking changes. + +### Features + +* **redis:** update the API ([6f56f8c](https://github.com/googleapis/google-api-nodejs-client/commit/6f56f8c1dc6df84fa23184bafcedfd022badf98c)) + ## [12.0.0](https://github.com/googleapis/google-api-nodejs-client/compare/redis-v11.1.0...redis-v12.0.0) (2024-08-27) diff --git a/src/apis/redis/package.json b/src/apis/redis/package.json index 06f43d44fd..91b8a3e789 100644 --- a/src/apis/redis/package.json +++ b/src/apis/redis/package.json @@ -1,6 +1,6 @@ { "name": "@googleapis/redis", - "version": "12.0.0", + "version": "13.0.0", "description": "redis", "main": "build/index.js", "types": "build/index.d.ts", diff --git a/src/apis/retail/CHANGELOG.md b/src/apis/retail/CHANGELOG.md index 14fb9caf65..6f7cd0dfdb 100644 --- a/src/apis/retail/CHANGELOG.md +++ b/src/apis/retail/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [12.1.0](https://github.com/googleapis/google-api-nodejs-client/compare/retail-v12.0.1...retail-v12.1.0) (2024-10-30) + + +### Features + +* **retail:** update the API ([ee326f7](https://github.com/googleapis/google-api-nodejs-client/commit/ee326f7812dfb6ebbd955a2c13a5990f0e5bd9ea)) + ## [12.0.1](https://github.com/googleapis/google-api-nodejs-client/compare/retail-v12.0.0...retail-v12.0.1) (2024-08-30) diff --git a/src/apis/retail/package.json b/src/apis/retail/package.json index a3150fca18..888c4562b4 100644 --- a/src/apis/retail/package.json +++ b/src/apis/retail/package.json @@ -1,6 +1,6 @@ { "name": "@googleapis/retail", - "version": "12.0.1", + "version": "12.1.0", "description": "retail", "main": "build/index.js", "types": "build/index.d.ts", diff --git a/src/apis/searchads360/CHANGELOG.md b/src/apis/searchads360/CHANGELOG.md index 5f74ec0dea..837f2c85d8 100644 --- a/src/apis/searchads360/CHANGELOG.md +++ b/src/apis/searchads360/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [6.2.0](https://github.com/googleapis/google-api-nodejs-client/compare/searchads360-v6.1.0...searchads360-v6.2.0) (2024-10-30) + + +### Features + +* **searchads360:** update the API ([5d3283e](https://github.com/googleapis/google-api-nodejs-client/commit/5d3283e785c592c97d49eb49b268d5b2a22d31eb)) + ## [6.1.0](https://github.com/googleapis/google-api-nodejs-client/compare/searchads360-v6.0.0...searchads360-v6.1.0) (2024-08-27) diff --git a/src/apis/searchads360/package.json b/src/apis/searchads360/package.json index 229c5938c9..0a8b1e6082 100644 --- a/src/apis/searchads360/package.json +++ b/src/apis/searchads360/package.json @@ -1,6 +1,6 @@ { "name": "@googleapis/searchads360", - "version": "6.1.0", + "version": "6.2.0", "description": "searchads360", "main": "build/index.js", "types": "build/index.d.ts", diff --git a/src/apis/secretmanager/CHANGELOG.md b/src/apis/secretmanager/CHANGELOG.md index 276eb57aff..6c3c3c8f73 100644 --- a/src/apis/secretmanager/CHANGELOG.md +++ b/src/apis/secretmanager/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [1.3.3](https://github.com/googleapis/google-api-nodejs-client/compare/secretmanager-v1.3.2...secretmanager-v1.3.3) (2024-10-30) + + +### Bug Fixes + +* **secretmanager:** update the API ([1e532c1](https://github.com/googleapis/google-api-nodejs-client/commit/1e532c174eafc6ea1b960c43173c371f56433bef)) + ## [1.3.2](https://github.com/googleapis/google-api-nodejs-client/compare/secretmanager-v1.3.1...secretmanager-v1.3.2) (2024-08-27) diff --git a/src/apis/secretmanager/package.json b/src/apis/secretmanager/package.json index 73ced52cab..983648904f 100644 --- a/src/apis/secretmanager/package.json +++ b/src/apis/secretmanager/package.json @@ -1,6 +1,6 @@ { "name": "@googleapis/secretmanager", - "version": "1.3.2", + "version": "1.3.3", "description": "secretmanager", "main": "build/index.js", "types": "build/index.d.ts", diff --git a/src/apis/securitycenter/CHANGELOG.md b/src/apis/securitycenter/CHANGELOG.md index dc04c644d1..10d1319c5b 100644 --- a/src/apis/securitycenter/CHANGELOG.md +++ b/src/apis/securitycenter/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## [10.0.0](https://github.com/googleapis/google-api-nodejs-client/compare/securitycenter-v9.1.0...securitycenter-v10.0.0) (2024-10-30) + + +### ⚠ BREAKING CHANGES + +* **securitycenter:** This release has breaking changes. + +### Features + +* **securitycenter:** update the API ([9a161ab](https://github.com/googleapis/google-api-nodejs-client/commit/9a161abee383fb4a17dbd6ea203c3e7650f06a5d)) + ## [9.1.0](https://github.com/googleapis/google-api-nodejs-client/compare/securitycenter-v9.0.0...securitycenter-v9.1.0) (2024-08-30) diff --git a/src/apis/securitycenter/package.json b/src/apis/securitycenter/package.json index df59e90867..35c3aba3a8 100644 --- a/src/apis/securitycenter/package.json +++ b/src/apis/securitycenter/package.json @@ -1,6 +1,6 @@ { "name": "@googleapis/securitycenter", - "version": "9.1.0", + "version": "10.0.0", "description": "securitycenter", "main": "build/index.js", "types": "build/index.d.ts", diff --git a/src/apis/servicemanagement/CHANGELOG.md b/src/apis/servicemanagement/CHANGELOG.md index 643b50ba1c..70f0ad0831 100644 --- a/src/apis/servicemanagement/CHANGELOG.md +++ b/src/apis/servicemanagement/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [2.1.0](https://github.com/googleapis/google-api-nodejs-client/compare/servicemanagement-v2.0.2...servicemanagement-v2.1.0) (2024-10-30) + + +### Features + +* **servicemanagement:** update the API ([5c81793](https://github.com/googleapis/google-api-nodejs-client/commit/5c81793182c383a8d3095815cc7a12f8a7701d84)) +* **servicemanagement:** update the API ([8c1c238](https://github.com/googleapis/google-api-nodejs-client/commit/8c1c2380bbbc0280b161ebb4c92b5b37a838be95)) + ## [2.0.2](https://github.com/googleapis/google-api-nodejs-client/compare/servicemanagement-v2.0.1...servicemanagement-v2.0.2) (2024-08-16) diff --git a/src/apis/servicemanagement/package.json b/src/apis/servicemanagement/package.json index 4a6ff9891b..f207fc5f1f 100644 --- a/src/apis/servicemanagement/package.json +++ b/src/apis/servicemanagement/package.json @@ -1,6 +1,6 @@ { "name": "@googleapis/servicemanagement", - "version": "2.0.2", + "version": "2.1.0", "description": "servicemanagement", "main": "build/index.js", "types": "build/index.d.ts", diff --git a/src/apis/texttospeech/CHANGELOG.md b/src/apis/texttospeech/CHANGELOG.md index 480dc851fc..ecda6c7b65 100644 --- a/src/apis/texttospeech/CHANGELOG.md +++ b/src/apis/texttospeech/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [1.5.0](https://github.com/googleapis/google-api-nodejs-client/compare/texttospeech-v1.4.2...texttospeech-v1.5.0) (2024-10-30) + + +### Features + +* **texttospeech:** update the API ([bd7926f](https://github.com/googleapis/google-api-nodejs-client/commit/bd7926f6a86ba09e8dd25a49f245354881d19564)) + ## [1.4.2](https://github.com/googleapis/google-api-nodejs-client/compare/texttospeech-v1.4.1...texttospeech-v1.4.2) (2024-08-27) diff --git a/src/apis/texttospeech/package.json b/src/apis/texttospeech/package.json index 659ab07f00..d226b6519c 100644 --- a/src/apis/texttospeech/package.json +++ b/src/apis/texttospeech/package.json @@ -1,6 +1,6 @@ { "name": "@googleapis/texttospeech", - "version": "1.4.2", + "version": "1.5.0", "description": "texttospeech", "main": "build/index.js", "types": "build/index.d.ts", diff --git a/src/apis/tpu/CHANGELOG.md b/src/apis/tpu/CHANGELOG.md index ec06373212..11d62be697 100644 --- a/src/apis/tpu/CHANGELOG.md +++ b/src/apis/tpu/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [5.1.0](https://github.com/googleapis/google-api-nodejs-client/compare/tpu-v5.0.0...tpu-v5.1.0) (2024-10-30) + + +### Features + +* **tpu:** update the API ([d313c50](https://github.com/googleapis/google-api-nodejs-client/commit/d313c50ab1acce7c0c0e8f5db913b66acb8cf747)) + ## [5.0.0](https://github.com/googleapis/google-api-nodejs-client/compare/tpu-v4.1.0...tpu-v5.0.0) (2024-05-02) diff --git a/src/apis/tpu/package.json b/src/apis/tpu/package.json index 4b896786e7..aa8c5e8fde 100644 --- a/src/apis/tpu/package.json +++ b/src/apis/tpu/package.json @@ -1,6 +1,6 @@ { "name": "@googleapis/tpu", - "version": "5.0.0", + "version": "5.1.0", "description": "tpu", "main": "build/index.js", "types": "build/index.d.ts", diff --git a/src/apis/vision/CHANGELOG.md b/src/apis/vision/CHANGELOG.md index 88d382c2b8..01c50db4ad 100644 --- a/src/apis/vision/CHANGELOG.md +++ b/src/apis/vision/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [1.5.3](https://github.com/googleapis/google-api-nodejs-client/compare/vision-v1.5.2...vision-v1.5.3) (2024-10-30) + + +### Bug Fixes + +* **vision:** update the API ([374ced4](https://github.com/googleapis/google-api-nodejs-client/commit/374ced45ff5bd565ba7c35dc3489b4f5fc58cfc8)) + ## [1.5.2](https://github.com/googleapis/google-api-nodejs-client/compare/vision-v1.5.1...vision-v1.5.2) (2024-05-02) diff --git a/src/apis/vision/package.json b/src/apis/vision/package.json index dd65c64bac..ef3895d1d8 100644 --- a/src/apis/vision/package.json +++ b/src/apis/vision/package.json @@ -1,6 +1,6 @@ { "name": "@googleapis/vision", - "version": "1.5.2", + "version": "1.5.3", "description": "vision", "main": "build/index.js", "types": "build/index.d.ts", diff --git a/src/apis/vmmigration/CHANGELOG.md b/src/apis/vmmigration/CHANGELOG.md index a7a0df93a7..486c9f3c62 100644 --- a/src/apis/vmmigration/CHANGELOG.md +++ b/src/apis/vmmigration/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [11.0.1](https://github.com/googleapis/google-api-nodejs-client/compare/vmmigration-v11.0.0...vmmigration-v11.0.1) (2024-10-30) + + +### Bug Fixes + +* **vmmigration:** update the API ([fd0c642](https://github.com/googleapis/google-api-nodejs-client/commit/fd0c642f2ee280a024aa87f539151c5d229f3015)) +* **vmmigration:** update the API ([a00e01a](https://github.com/googleapis/google-api-nodejs-client/commit/a00e01a4400ca06d7ca83edfdb65b71138ac4b92)) + ## [11.0.0](https://github.com/googleapis/google-api-nodejs-client/compare/vmmigration-v10.0.0...vmmigration-v11.0.0) (2024-08-27) diff --git a/src/apis/vmmigration/package.json b/src/apis/vmmigration/package.json index 1645371773..cf48f6c407 100644 --- a/src/apis/vmmigration/package.json +++ b/src/apis/vmmigration/package.json @@ -1,6 +1,6 @@ { "name": "@googleapis/vmmigration", - "version": "11.0.0", + "version": "11.0.1", "description": "vmmigration", "main": "build/index.js", "types": "build/index.d.ts", diff --git a/src/apis/workflows/CHANGELOG.md b/src/apis/workflows/CHANGELOG.md index 4856297794..66d3495e06 100644 --- a/src/apis/workflows/CHANGELOG.md +++ b/src/apis/workflows/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [1.9.1](https://github.com/googleapis/google-api-nodejs-client/compare/workflows-v1.9.0...workflows-v1.9.1) (2024-10-30) + + +### Bug Fixes + +* **workflows:** update the API ([3a83269](https://github.com/googleapis/google-api-nodejs-client/commit/3a8326961559508c46b39f6469d7cdb9613d515a)) + ## [1.9.0](https://github.com/googleapis/google-api-nodejs-client/compare/workflows-v1.8.0...workflows-v1.9.0) (2024-08-27) diff --git a/src/apis/workflows/package.json b/src/apis/workflows/package.json index 206dc76b5a..971dc926a3 100644 --- a/src/apis/workflows/package.json +++ b/src/apis/workflows/package.json @@ -1,6 +1,6 @@ { "name": "@googleapis/workflows", - "version": "1.9.0", + "version": "1.9.1", "description": "workflows", "main": "build/index.js", "types": "build/index.d.ts", From 69c9084d99113340ff319cb425aad19662ab9a45 Mon Sep 17 00:00:00 2001 From: "release-please[bot]" <55107282+release-please[bot]@users.noreply.github.com> Date: Wed, 30 Oct 2024 20:43:13 +0000 Subject: [PATCH 6/6] chore: release main --- src/apis/aiplatform/CHANGELOG.md | 7 +++++++ src/apis/aiplatform/package.json | 2 +- src/apis/airquality/CHANGELOG.md | 7 +++++++ src/apis/airquality/package.json | 2 +- src/apis/alloydb/CHANGELOG.md | 8 ++++++++ src/apis/alloydb/package.json | 2 +- src/apis/artifactregistry/CHANGELOG.md | 12 ++++++++++++ src/apis/artifactregistry/package.json | 2 +- src/apis/backupdr/CHANGELOG.md | 7 +++++++ src/apis/backupdr/package.json | 2 +- src/apis/cloudbilling/CHANGELOG.md | 7 +++++++ src/apis/cloudbilling/package.json | 2 +- src/apis/cloudcontrolspartner/CHANGELOG.md | 7 +++++++ src/apis/cloudcontrolspartner/package.json | 2 +- src/apis/clouddeploy/CHANGELOG.md | 7 +++++++ src/apis/clouddeploy/package.json | 2 +- src/apis/contactcenteraiplatform/CHANGELOG.md | 7 +++++++ src/apis/contactcenteraiplatform/package.json | 2 +- src/apis/css/CHANGELOG.md | 7 +++++++ src/apis/css/package.json | 2 +- src/apis/developerconnect/CHANGELOG.md | 7 +++++++ src/apis/developerconnect/package.json | 2 +- src/apis/firebasedataconnect/CHANGELOG.md | 8 ++++++++ src/apis/firestore/CHANGELOG.md | 8 ++++++++ src/apis/firestore/package.json | 2 +- src/apis/looker/CHANGELOG.md | 7 +++++++ src/apis/looker/package.json | 2 +- src/apis/merchantapi/CHANGELOG.md | 16 ++++++++++++++++ src/apis/merchantapi/package.json | 2 +- src/apis/migrationcenter/CHANGELOG.md | 12 ++++++++++++ src/apis/migrationcenter/package.json | 2 +- src/apis/oracledatabase/CHANGELOG.md | 8 ++++++++ src/apis/recaptchaenterprise/CHANGELOG.md | 12 ++++++++++++ src/apis/recaptchaenterprise/package.json | 2 +- src/apis/run/CHANGELOG.md | 12 ++++++++++++ src/apis/run/package.json | 2 +- src/apis/serviceusage/CHANGELOG.md | 7 +++++++ src/apis/serviceusage/package.json | 2 +- src/apis/spanner/CHANGELOG.md | 7 +++++++ src/apis/spanner/package.json | 2 +- src/apis/storagetransfer/CHANGELOG.md | 7 +++++++ src/apis/storagetransfer/package.json | 2 +- src/apis/walletobjects/CHANGELOG.md | 7 +++++++ src/apis/walletobjects/package.json | 2 +- src/apis/workspaceevents/CHANGELOG.md | 7 +++++++ src/apis/workspaceevents/package.json | 2 +- 46 files changed, 223 insertions(+), 22 deletions(-) create mode 100644 src/apis/firebasedataconnect/CHANGELOG.md create mode 100644 src/apis/oracledatabase/CHANGELOG.md diff --git a/src/apis/aiplatform/CHANGELOG.md b/src/apis/aiplatform/CHANGELOG.md index 38cc850909..ec5d582846 100644 --- a/src/apis/aiplatform/CHANGELOG.md +++ b/src/apis/aiplatform/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [16.1.0](https://github.com/googleapis/google-api-nodejs-client/compare/aiplatform-v16.0.0...aiplatform-v16.1.0) (2024-10-30) + + +### Features + +* **aiplatform:** update the API ([cc53b10](https://github.com/googleapis/google-api-nodejs-client/commit/cc53b10a3e91b094907d1b7c2ea78b211a9240c6)) + ## [16.0.0](https://github.com/googleapis/google-api-nodejs-client/compare/aiplatform-v15.0.0...aiplatform-v16.0.0) (2024-08-30) diff --git a/src/apis/aiplatform/package.json b/src/apis/aiplatform/package.json index 6382911d79..2937b6367b 100644 --- a/src/apis/aiplatform/package.json +++ b/src/apis/aiplatform/package.json @@ -1,6 +1,6 @@ { "name": "@googleapis/aiplatform", - "version": "16.0.0", + "version": "16.1.0", "description": "aiplatform", "main": "build/index.js", "types": "build/index.d.ts", diff --git a/src/apis/airquality/CHANGELOG.md b/src/apis/airquality/CHANGELOG.md index 25a993a914..8d0bc70204 100644 --- a/src/apis/airquality/CHANGELOG.md +++ b/src/apis/airquality/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.1.1](https://github.com/googleapis/google-api-nodejs-client/compare/airquality-v0.1.0...airquality-v0.1.1) (2024-10-30) + + +### Bug Fixes + +* **airquality:** update the API ([4da4418](https://github.com/googleapis/google-api-nodejs-client/commit/4da44189d3284403ef7c02bb42bde377ddf8220c)) + ## 0.1.0 (2024-07-26) diff --git a/src/apis/airquality/package.json b/src/apis/airquality/package.json index 644130a523..d1c46cf124 100644 --- a/src/apis/airquality/package.json +++ b/src/apis/airquality/package.json @@ -1,6 +1,6 @@ { "name": "@googleapis/airquality", - "version": "0.1.0", + "version": "0.1.1", "description": "airquality", "main": "build/index.js", "types": "build/index.d.ts", diff --git a/src/apis/alloydb/CHANGELOG.md b/src/apis/alloydb/CHANGELOG.md index f8e19577c1..d75c9b731d 100644 --- a/src/apis/alloydb/CHANGELOG.md +++ b/src/apis/alloydb/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [11.2.0](https://github.com/googleapis/google-api-nodejs-client/compare/alloydb-v11.1.0...alloydb-v11.2.0) (2024-10-30) + + +### Features + +* **alloydb:** update the API ([6b01160](https://github.com/googleapis/google-api-nodejs-client/commit/6b0116002daeb523dfcaf62cec2c24467f2c0ee5)) +* **alloydb:** update the API ([8666c6c](https://github.com/googleapis/google-api-nodejs-client/commit/8666c6c86b331f42d034f8baa0431f47d5dad039)) + ## [11.1.0](https://github.com/googleapis/google-api-nodejs-client/compare/alloydb-v11.0.0...alloydb-v11.1.0) (2024-08-30) diff --git a/src/apis/alloydb/package.json b/src/apis/alloydb/package.json index bcc4592e75..22c87b62ad 100644 --- a/src/apis/alloydb/package.json +++ b/src/apis/alloydb/package.json @@ -1,6 +1,6 @@ { "name": "@googleapis/alloydb", - "version": "11.1.0", + "version": "11.2.0", "description": "alloydb", "main": "build/index.js", "types": "build/index.d.ts", diff --git a/src/apis/artifactregistry/CHANGELOG.md b/src/apis/artifactregistry/CHANGELOG.md index 920d062cdb..d37c3065e7 100644 --- a/src/apis/artifactregistry/CHANGELOG.md +++ b/src/apis/artifactregistry/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## [13.0.0](https://github.com/googleapis/google-api-nodejs-client/compare/artifactregistry-v12.1.0...artifactregistry-v13.0.0) (2024-10-30) + + +### ⚠ BREAKING CHANGES + +* **artifactregistry:** This release has breaking changes. + +### Features + +* **artifactregistry:** update the API ([8ce8449](https://github.com/googleapis/google-api-nodejs-client/commit/8ce844916907d9b381cc00258757c7cfbcf3ee5f)) +* **artifactregistry:** update the API ([42a7442](https://github.com/googleapis/google-api-nodejs-client/commit/42a7442e75c7c9edf4e8f0effe6cb13fa36df193)) + ## [12.1.0](https://github.com/googleapis/google-api-nodejs-client/compare/artifactregistry-v12.0.1...artifactregistry-v12.1.0) (2024-08-30) diff --git a/src/apis/artifactregistry/package.json b/src/apis/artifactregistry/package.json index b4e37d10db..cc75e1e6bc 100644 --- a/src/apis/artifactregistry/package.json +++ b/src/apis/artifactregistry/package.json @@ -1,6 +1,6 @@ { "name": "@googleapis/artifactregistry", - "version": "12.1.0", + "version": "13.0.0", "description": "artifactregistry", "main": "build/index.js", "types": "build/index.d.ts", diff --git a/src/apis/backupdr/CHANGELOG.md b/src/apis/backupdr/CHANGELOG.md index eef85b482e..740f97b1ac 100644 --- a/src/apis/backupdr/CHANGELOG.md +++ b/src/apis/backupdr/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [5.1.0](https://github.com/googleapis/google-api-nodejs-client/compare/backupdr-v5.0.0...backupdr-v5.1.0) (2024-10-30) + + +### Features + +* **backupdr:** update the API ([623bc3c](https://github.com/googleapis/google-api-nodejs-client/commit/623bc3c89a413eba28cacc8e24a86db9be58bce7)) + ## [5.0.0](https://github.com/googleapis/google-api-nodejs-client/compare/backupdr-v4.1.0...backupdr-v5.0.0) (2024-08-27) diff --git a/src/apis/backupdr/package.json b/src/apis/backupdr/package.json index 34481a57ab..71d32725db 100644 --- a/src/apis/backupdr/package.json +++ b/src/apis/backupdr/package.json @@ -1,6 +1,6 @@ { "name": "@googleapis/backupdr", - "version": "5.0.0", + "version": "5.1.0", "description": "backupdr", "main": "build/index.js", "types": "build/index.d.ts", diff --git a/src/apis/cloudbilling/CHANGELOG.md b/src/apis/cloudbilling/CHANGELOG.md index 2ff30134ed..9cc71ad8a2 100644 --- a/src/apis/cloudbilling/CHANGELOG.md +++ b/src/apis/cloudbilling/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [4.0.3](https://github.com/googleapis/google-api-nodejs-client/compare/cloudbilling-v4.0.2...cloudbilling-v4.0.3) (2024-10-30) + + +### Bug Fixes + +* **cloudbilling:** update the API ([f533be2](https://github.com/googleapis/google-api-nodejs-client/commit/f533be2bafae11ff556205a58b84c79dd377ed1e)) + ## [4.0.2](https://github.com/googleapis/google-api-nodejs-client/compare/cloudbilling-v4.0.1...cloudbilling-v4.0.2) (2024-06-03) diff --git a/src/apis/cloudbilling/package.json b/src/apis/cloudbilling/package.json index d32584555e..d863d091cc 100644 --- a/src/apis/cloudbilling/package.json +++ b/src/apis/cloudbilling/package.json @@ -1,6 +1,6 @@ { "name": "@googleapis/cloudbilling", - "version": "4.0.2", + "version": "4.0.3", "description": "cloudbilling", "main": "build/index.js", "types": "build/index.d.ts", diff --git a/src/apis/cloudcontrolspartner/CHANGELOG.md b/src/apis/cloudcontrolspartner/CHANGELOG.md index f91ecb366a..c8f39f896a 100644 --- a/src/apis/cloudcontrolspartner/CHANGELOG.md +++ b/src/apis/cloudcontrolspartner/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.3.2](https://github.com/googleapis/google-api-nodejs-client/compare/cloudcontrolspartner-v0.3.1...cloudcontrolspartner-v0.3.2) (2024-10-30) + + +### Bug Fixes + +* **cloudcontrolspartner:** update the API ([d4cda75](https://github.com/googleapis/google-api-nodejs-client/commit/d4cda750587fd539b97ccc06789d22c335232121)) + ## [0.3.1](https://github.com/googleapis/google-api-nodejs-client/compare/cloudcontrolspartner-v0.3.0...cloudcontrolspartner-v0.3.1) (2024-08-27) diff --git a/src/apis/cloudcontrolspartner/package.json b/src/apis/cloudcontrolspartner/package.json index 15d31f1c1d..22b6cfc839 100644 --- a/src/apis/cloudcontrolspartner/package.json +++ b/src/apis/cloudcontrolspartner/package.json @@ -1,6 +1,6 @@ { "name": "@googleapis/cloudcontrolspartner", - "version": "0.3.1", + "version": "0.3.2", "description": "cloudcontrolspartner", "main": "build/index.js", "types": "build/index.d.ts", diff --git a/src/apis/clouddeploy/CHANGELOG.md b/src/apis/clouddeploy/CHANGELOG.md index 583f0c0f73..efe4830c9f 100644 --- a/src/apis/clouddeploy/CHANGELOG.md +++ b/src/apis/clouddeploy/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [7.1.0](https://github.com/googleapis/google-api-nodejs-client/compare/clouddeploy-v7.0.0...clouddeploy-v7.1.0) (2024-10-30) + + +### Features + +* **clouddeploy:** update the API ([2ca080b](https://github.com/googleapis/google-api-nodejs-client/commit/2ca080b3a7504a57545f466677e73deeeb3a5d8e)) + ## [7.0.0](https://github.com/googleapis/google-api-nodejs-client/compare/clouddeploy-v6.0.0...clouddeploy-v7.0.0) (2024-08-16) diff --git a/src/apis/clouddeploy/package.json b/src/apis/clouddeploy/package.json index 2fe0ecccd1..b332bfeaaa 100644 --- a/src/apis/clouddeploy/package.json +++ b/src/apis/clouddeploy/package.json @@ -1,6 +1,6 @@ { "name": "@googleapis/clouddeploy", - "version": "7.0.0", + "version": "7.1.0", "description": "clouddeploy", "main": "build/index.js", "types": "build/index.d.ts", diff --git a/src/apis/contactcenteraiplatform/CHANGELOG.md b/src/apis/contactcenteraiplatform/CHANGELOG.md index 029aff07cf..cf25a57329 100644 --- a/src/apis/contactcenteraiplatform/CHANGELOG.md +++ b/src/apis/contactcenteraiplatform/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [7.1.0](https://github.com/googleapis/google-api-nodejs-client/compare/contactcenteraiplatform-v7.0.0...contactcenteraiplatform-v7.1.0) (2024-10-30) + + +### Features + +* **contactcenteraiplatform:** update the API ([941255e](https://github.com/googleapis/google-api-nodejs-client/commit/941255e9470392bbb89a2326ae3a3ce2e3e327e1)) + ## [7.0.0](https://github.com/googleapis/google-api-nodejs-client/compare/contactcenteraiplatform-v6.0.0...contactcenteraiplatform-v7.0.0) (2024-08-16) diff --git a/src/apis/contactcenteraiplatform/package.json b/src/apis/contactcenteraiplatform/package.json index 9a34d960bc..13c2b83fa7 100644 --- a/src/apis/contactcenteraiplatform/package.json +++ b/src/apis/contactcenteraiplatform/package.json @@ -1,6 +1,6 @@ { "name": "@googleapis/contactcenteraiplatform", - "version": "7.0.0", + "version": "7.1.0", "description": "contactcenteraiplatform", "main": "build/index.js", "types": "build/index.d.ts", diff --git a/src/apis/css/CHANGELOG.md b/src/apis/css/CHANGELOG.md index 49538f3bc5..f1ba333aa1 100644 --- a/src/apis/css/CHANGELOG.md +++ b/src/apis/css/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.2.0](https://github.com/googleapis/google-api-nodejs-client/compare/css-v0.1.0...css-v0.2.0) (2024-10-30) + + +### Features + +* **css:** update the API ([aeb221c](https://github.com/googleapis/google-api-nodejs-client/commit/aeb221c78867cc9e259f6dbef9cb6b371b144729)) + ## 0.1.0 (2024-08-16) diff --git a/src/apis/css/package.json b/src/apis/css/package.json index 8926e93759..96a240ddc2 100644 --- a/src/apis/css/package.json +++ b/src/apis/css/package.json @@ -1,6 +1,6 @@ { "name": "@googleapis/css", - "version": "0.1.0", + "version": "0.2.0", "description": "css", "main": "build/index.js", "types": "build/index.d.ts", diff --git a/src/apis/developerconnect/CHANGELOG.md b/src/apis/developerconnect/CHANGELOG.md index 4465fb445c..a4220c8a23 100644 --- a/src/apis/developerconnect/CHANGELOG.md +++ b/src/apis/developerconnect/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.2.0](https://github.com/googleapis/google-api-nodejs-client/compare/developerconnect-v0.1.0...developerconnect-v0.2.0) (2024-10-30) + + +### Features + +* **developerconnect:** update the API ([7871df4](https://github.com/googleapis/google-api-nodejs-client/commit/7871df43a59af2dfd9e6d3a1d306e2345789ee98)) + ## 0.1.0 (2024-06-03) diff --git a/src/apis/developerconnect/package.json b/src/apis/developerconnect/package.json index e357f98587..c5abe2c337 100644 --- a/src/apis/developerconnect/package.json +++ b/src/apis/developerconnect/package.json @@ -1,6 +1,6 @@ { "name": "@googleapis/developerconnect", - "version": "0.1.0", + "version": "0.2.0", "description": "developerconnect", "main": "build/index.js", "types": "build/index.d.ts", diff --git a/src/apis/firebasedataconnect/CHANGELOG.md b/src/apis/firebasedataconnect/CHANGELOG.md new file mode 100644 index 0000000000..2ee2be2c36 --- /dev/null +++ b/src/apis/firebasedataconnect/CHANGELOG.md @@ -0,0 +1,8 @@ +# Changelog + +## 0.1.0 (2024-10-30) + + +### Bug Fixes + +* **firebasedataconnect:** update the API ([7e57a2a](https://github.com/googleapis/google-api-nodejs-client/commit/7e57a2a5737053b48b51d68c0bf698aa4214d748)) diff --git a/src/apis/firestore/CHANGELOG.md b/src/apis/firestore/CHANGELOG.md index 56a80c1fa0..ddf098c96e 100644 --- a/src/apis/firestore/CHANGELOG.md +++ b/src/apis/firestore/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [11.1.0](https://github.com/googleapis/google-api-nodejs-client/compare/firestore-v11.0.0...firestore-v11.1.0) (2024-10-30) + + +### Features + +* **firestore:** update the API ([dd53a88](https://github.com/googleapis/google-api-nodejs-client/commit/dd53a88a1104b1e7af5a58b5a5853c2e98e5286b)) +* **firestore:** update the API ([5b9e25b](https://github.com/googleapis/google-api-nodejs-client/commit/5b9e25b0f63b6a06766eefa2b03d8430027641e6)) + ## [11.0.0](https://github.com/googleapis/google-api-nodejs-client/compare/firestore-v10.0.0...firestore-v11.0.0) (2024-08-16) diff --git a/src/apis/firestore/package.json b/src/apis/firestore/package.json index c3134e31db..77eb336475 100644 --- a/src/apis/firestore/package.json +++ b/src/apis/firestore/package.json @@ -1,6 +1,6 @@ { "name": "@googleapis/firestore", - "version": "11.0.0", + "version": "11.1.0", "description": "firestore", "main": "build/index.js", "types": "build/index.d.ts", diff --git a/src/apis/looker/CHANGELOG.md b/src/apis/looker/CHANGELOG.md index 488a4f171b..8721b61848 100644 --- a/src/apis/looker/CHANGELOG.md +++ b/src/apis/looker/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [2.2.0](https://github.com/googleapis/google-api-nodejs-client/compare/looker-v2.1.0...looker-v2.2.0) (2024-10-30) + + +### Features + +* **looker:** update the API ([6fd286b](https://github.com/googleapis/google-api-nodejs-client/commit/6fd286bc9346eb14824915e3f5a766149400b734)) + ## [2.1.0](https://github.com/googleapis/google-api-nodejs-client/compare/looker-v2.0.3...looker-v2.1.0) (2024-08-27) diff --git a/src/apis/looker/package.json b/src/apis/looker/package.json index 491353a3ed..636d048fc8 100644 --- a/src/apis/looker/package.json +++ b/src/apis/looker/package.json @@ -1,6 +1,6 @@ { "name": "@googleapis/looker", - "version": "2.1.0", + "version": "2.2.0", "description": "looker", "main": "build/index.js", "types": "build/index.d.ts", diff --git a/src/apis/merchantapi/CHANGELOG.md b/src/apis/merchantapi/CHANGELOG.md index 39855072aa..de1b3f5bf7 100644 --- a/src/apis/merchantapi/CHANGELOG.md +++ b/src/apis/merchantapi/CHANGELOG.md @@ -1,5 +1,21 @@ # Changelog +## [2.0.0](https://github.com/googleapis/google-api-nodejs-client/compare/merchantapi-v1.1.0...merchantapi-v2.0.0) (2024-10-30) + + +### ⚠ BREAKING CHANGES + +* **merchantapi:** This release has breaking changes. + +### Features + +* **merchantapi:** update the API ([2628015](https://github.com/googleapis/google-api-nodejs-client/commit/2628015d283599b953ee125aa65ad59185dcc061)) + + +### Bug Fixes + +* **merchantapi:** update the API ([b0544b5](https://github.com/googleapis/google-api-nodejs-client/commit/b0544b564fcdf13236bd39280afab71b78e88cd5)) + ## [1.1.0](https://github.com/googleapis/google-api-nodejs-client/compare/merchantapi-v1.0.0...merchantapi-v1.1.0) (2024-08-27) diff --git a/src/apis/merchantapi/package.json b/src/apis/merchantapi/package.json index 809b5ecff4..0169ea2963 100644 --- a/src/apis/merchantapi/package.json +++ b/src/apis/merchantapi/package.json @@ -1,6 +1,6 @@ { "name": "@googleapis/merchantapi", - "version": "1.1.0", + "version": "2.0.0", "description": "merchantapi", "main": "build/index.js", "types": "build/index.d.ts", diff --git a/src/apis/migrationcenter/CHANGELOG.md b/src/apis/migrationcenter/CHANGELOG.md index 04df757985..2545211f62 100644 --- a/src/apis/migrationcenter/CHANGELOG.md +++ b/src/apis/migrationcenter/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## [8.0.0](https://github.com/googleapis/google-api-nodejs-client/compare/migrationcenter-v7.0.0...migrationcenter-v8.0.0) (2024-10-30) + + +### ⚠ BREAKING CHANGES + +* **migrationcenter:** This release has breaking changes. + +### Features + +* **migrationcenter:** update the API ([058349a](https://github.com/googleapis/google-api-nodejs-client/commit/058349ac84b6698fb6187f7d8d7959e76034d9c4)) +* **migrationcenter:** update the API ([c7351aa](https://github.com/googleapis/google-api-nodejs-client/commit/c7351aa2969f79a8664260e7afd65bdf605dfdbf)) + ## [7.0.0](https://github.com/googleapis/google-api-nodejs-client/compare/migrationcenter-v6.1.0...migrationcenter-v7.0.0) (2024-08-30) diff --git a/src/apis/migrationcenter/package.json b/src/apis/migrationcenter/package.json index c7e8e81027..7863298888 100644 --- a/src/apis/migrationcenter/package.json +++ b/src/apis/migrationcenter/package.json @@ -1,6 +1,6 @@ { "name": "@googleapis/migrationcenter", - "version": "7.0.0", + "version": "8.0.0", "description": "migrationcenter", "main": "build/index.js", "types": "build/index.d.ts", diff --git a/src/apis/oracledatabase/CHANGELOG.md b/src/apis/oracledatabase/CHANGELOG.md new file mode 100644 index 0000000000..b1c38f1f7f --- /dev/null +++ b/src/apis/oracledatabase/CHANGELOG.md @@ -0,0 +1,8 @@ +# Changelog + +## 0.1.0 (2024-10-30) + + +### Bug Fixes + +* **oracledatabase:** update the API ([e361d31](https://github.com/googleapis/google-api-nodejs-client/commit/e361d31ccd5bfeb92bd259ddc4b4d894422815b4)) diff --git a/src/apis/recaptchaenterprise/CHANGELOG.md b/src/apis/recaptchaenterprise/CHANGELOG.md index caa37e460c..7f06367c8b 100644 --- a/src/apis/recaptchaenterprise/CHANGELOG.md +++ b/src/apis/recaptchaenterprise/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## [6.4.0](https://github.com/googleapis/google-api-nodejs-client/compare/recaptchaenterprise-v6.3.0...recaptchaenterprise-v6.4.0) (2024-10-30) + + +### Features + +* **recaptchaenterprise:** update the API ([1ab5713](https://github.com/googleapis/google-api-nodejs-client/commit/1ab571312e75b925db9279d288fa940fea09adea)) + + +### Bug Fixes + +* **recaptchaenterprise:** update the API ([7451e3a](https://github.com/googleapis/google-api-nodejs-client/commit/7451e3a79657d2366e709f985b2e46d18d28f241)) + ## [6.3.0](https://github.com/googleapis/google-api-nodejs-client/compare/recaptchaenterprise-v6.2.0...recaptchaenterprise-v6.3.0) (2024-08-27) diff --git a/src/apis/recaptchaenterprise/package.json b/src/apis/recaptchaenterprise/package.json index ba1c741d56..91c2109d50 100644 --- a/src/apis/recaptchaenterprise/package.json +++ b/src/apis/recaptchaenterprise/package.json @@ -1,6 +1,6 @@ { "name": "@googleapis/recaptchaenterprise", - "version": "6.3.0", + "version": "6.4.0", "description": "recaptchaenterprise", "main": "build/index.js", "types": "build/index.d.ts", diff --git a/src/apis/run/CHANGELOG.md b/src/apis/run/CHANGELOG.md index c45e54c73a..0f3d5e7808 100644 --- a/src/apis/run/CHANGELOG.md +++ b/src/apis/run/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## [18.2.0](https://github.com/googleapis/google-api-nodejs-client/compare/run-v18.1.0...run-v18.2.0) (2024-10-30) + + +### Features + +* **run:** update the API ([a68919f](https://github.com/googleapis/google-api-nodejs-client/commit/a68919f789bbd6258d9fd3e4fe4aa595e7b35bb5)) + + +### Bug Fixes + +* **run:** update the API ([515cb27](https://github.com/googleapis/google-api-nodejs-client/commit/515cb27c897b38e167b2f6899def280d20090316)) + ## [18.1.0](https://github.com/googleapis/google-api-nodejs-client/compare/run-v18.0.0...run-v18.1.0) (2024-08-27) diff --git a/src/apis/run/package.json b/src/apis/run/package.json index ea4df89705..178664ce28 100644 --- a/src/apis/run/package.json +++ b/src/apis/run/package.json @@ -1,6 +1,6 @@ { "name": "@googleapis/run", - "version": "18.1.0", + "version": "18.2.0", "description": "run", "main": "build/index.js", "types": "build/index.d.ts", diff --git a/src/apis/serviceusage/CHANGELOG.md b/src/apis/serviceusage/CHANGELOG.md index ebe625d187..65929df4f7 100644 --- a/src/apis/serviceusage/CHANGELOG.md +++ b/src/apis/serviceusage/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [14.1.0](https://github.com/googleapis/google-api-nodejs-client/compare/serviceusage-v14.0.0...serviceusage-v14.1.0) (2024-10-30) + + +### Features + +* **serviceusage:** update the API ([6e1037d](https://github.com/googleapis/google-api-nodejs-client/commit/6e1037de478666cd053fe82f59c3b30c7c6545be)) + ## [14.0.0](https://github.com/googleapis/google-api-nodejs-client/compare/serviceusage-v13.0.1...serviceusage-v14.0.0) (2024-08-16) diff --git a/src/apis/serviceusage/package.json b/src/apis/serviceusage/package.json index aa76b84aa3..a8c3183d8b 100644 --- a/src/apis/serviceusage/package.json +++ b/src/apis/serviceusage/package.json @@ -1,6 +1,6 @@ { "name": "@googleapis/serviceusage", - "version": "14.0.0", + "version": "14.1.0", "description": "serviceusage", "main": "build/index.js", "types": "build/index.d.ts", diff --git a/src/apis/spanner/CHANGELOG.md b/src/apis/spanner/CHANGELOG.md index b86e6774ea..c3d785a14f 100644 --- a/src/apis/spanner/CHANGELOG.md +++ b/src/apis/spanner/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [7.5.0](https://github.com/googleapis/google-api-nodejs-client/compare/spanner-v7.4.1...spanner-v7.5.0) (2024-10-30) + + +### Features + +* **spanner:** update the API ([f2669c6](https://github.com/googleapis/google-api-nodejs-client/commit/f2669c6b37e934ac4f543b8560fcfb9bf6268c6b)) + ## [7.4.1](https://github.com/googleapis/google-api-nodejs-client/compare/spanner-v7.4.0...spanner-v7.4.1) (2024-08-27) diff --git a/src/apis/spanner/package.json b/src/apis/spanner/package.json index ff117b78ab..3ae3ae0be9 100644 --- a/src/apis/spanner/package.json +++ b/src/apis/spanner/package.json @@ -1,6 +1,6 @@ { "name": "@googleapis/spanner", - "version": "7.4.1", + "version": "7.5.0", "description": "spanner", "main": "build/index.js", "types": "build/index.d.ts", diff --git a/src/apis/storagetransfer/CHANGELOG.md b/src/apis/storagetransfer/CHANGELOG.md index ed9e731548..caef489b2c 100644 --- a/src/apis/storagetransfer/CHANGELOG.md +++ b/src/apis/storagetransfer/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [7.2.1](https://github.com/googleapis/google-api-nodejs-client/compare/storagetransfer-v7.2.0...storagetransfer-v7.2.1) (2024-10-30) + + +### Bug Fixes + +* **storagetransfer:** update the API ([921c64d](https://github.com/googleapis/google-api-nodejs-client/commit/921c64d13ba28ea71931140ff35af4f5a7a8f48c)) + ## [7.2.0](https://github.com/googleapis/google-api-nodejs-client/compare/storagetransfer-v7.1.2...storagetransfer-v7.2.0) (2024-08-16) diff --git a/src/apis/storagetransfer/package.json b/src/apis/storagetransfer/package.json index f21cc9a15e..04f4184ba1 100644 --- a/src/apis/storagetransfer/package.json +++ b/src/apis/storagetransfer/package.json @@ -1,6 +1,6 @@ { "name": "@googleapis/storagetransfer", - "version": "7.2.0", + "version": "7.2.1", "description": "storagetransfer", "main": "build/index.js", "types": "build/index.d.ts", diff --git a/src/apis/walletobjects/CHANGELOG.md b/src/apis/walletobjects/CHANGELOG.md index 2587f85ada..1b7f6ae6e4 100644 --- a/src/apis/walletobjects/CHANGELOG.md +++ b/src/apis/walletobjects/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [6.1.0](https://github.com/googleapis/google-api-nodejs-client/compare/walletobjects-v6.0.0...walletobjects-v6.1.0) (2024-10-30) + + +### Features + +* **walletobjects:** update the API ([1df0546](https://github.com/googleapis/google-api-nodejs-client/commit/1df0546a889b1e70c81dca4065c25387c52c37a4)) + ## [6.0.0](https://github.com/googleapis/google-api-nodejs-client/compare/walletobjects-v5.0.0...walletobjects-v6.0.0) (2024-08-16) diff --git a/src/apis/walletobjects/package.json b/src/apis/walletobjects/package.json index c17397d954..237fee238d 100644 --- a/src/apis/walletobjects/package.json +++ b/src/apis/walletobjects/package.json @@ -1,6 +1,6 @@ { "name": "@googleapis/walletobjects", - "version": "6.0.0", + "version": "6.1.0", "description": "walletobjects", "main": "build/index.js", "types": "build/index.d.ts", diff --git a/src/apis/workspaceevents/CHANGELOG.md b/src/apis/workspaceevents/CHANGELOG.md index 01975eab6e..30f174cc79 100644 --- a/src/apis/workspaceevents/CHANGELOG.md +++ b/src/apis/workspaceevents/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [1.0.3](https://github.com/googleapis/google-api-nodejs-client/compare/workspaceevents-v1.0.2...workspaceevents-v1.0.3) (2024-10-30) + + +### Bug Fixes + +* **workspaceevents:** update the API ([385c705](https://github.com/googleapis/google-api-nodejs-client/commit/385c70576c2fd094a0ed7f7f93fe2b751143b246)) + ## [1.0.2](https://github.com/googleapis/google-api-nodejs-client/compare/workspaceevents-v1.0.1...workspaceevents-v1.0.2) (2024-08-30) diff --git a/src/apis/workspaceevents/package.json b/src/apis/workspaceevents/package.json index 61e9d9a66a..898ca44429 100644 --- a/src/apis/workspaceevents/package.json +++ b/src/apis/workspaceevents/package.json @@ -1,6 +1,6 @@ { "name": "@googleapis/workspaceevents", - "version": "1.0.2", + "version": "1.0.3", "description": "workspaceevents", "main": "build/index.js", "types": "build/index.d.ts",