Skip to content

Commit d0b7b0f

Browse files
authored
feat: add the v1 API surface (#141)
1 parent 764b35f commit d0b7b0f

23 files changed

+9131
-34
lines changed

packages/google-cloud-recaptchaenterprise/.jsdoc.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2019 Google LLC
1+
// Copyright 2020 Google LLC
22
//
33
// Licensed under the Apache License, Version 2.0 (the "License");
44
// you may not use this file except in compliance with the License.

packages/google-cloud-recaptchaenterprise/.repo-metadata.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"product_documentation": "https://cloud.google.com/recaptcha-enterprise/docs/",
55
"client_documentation": "https://googleapis.dev/nodejs/recaptcha-enterprise/latest",
66
"issue_tracker": "",
7-
"release_level": "beta",
7+
"release_level": "ga",
88
"language": "nodejs",
99
"repo": "googleapis/nodejs-recaptcha-enterprise",
1010
"distribution_name": "@google-cloud/recaptcha-enterprise",

packages/google-cloud-recaptchaenterprise/README.md

+8-7
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
# [Google Cloud reCAPTCHA Enterprise: Node.js Client](https://github.com/googleapis/nodejs-recaptcha-enterprise)
66

7-
[![release level](https://img.shields.io/badge/release%20level-beta-yellow.svg?style=flat)](https://cloud.google.com/terms/launch-stages)
7+
[![release level](https://img.shields.io/badge/release%20level-general%20availability%20%28GA%29-brightgreen.svg?style=flat)](https://cloud.google.com/terms/launch-stages)
88
[![npm version](https://img.shields.io/npm/v/@google-cloud/recaptcha-enterprise.svg)](https://www.npmjs.org/package/@google-cloud/recaptcha-enterprise)
99
[![codecov](https://img.shields.io/codecov/c/github/googleapis/nodejs-recaptcha-enterprise/master.svg?style=flat)](https://codecov.io/gh/googleapis/nodejs-recaptcha-enterprise)
1010

@@ -62,9 +62,9 @@ npm install @google-cloud/recaptcha-enterprise
6262
async function main(projectNumber) {
6363
// Create the reCAPTCHA client library.
6464
const {
65-
RecaptchaEnterpriseServiceV1Beta1Client,
65+
RecaptchaEnterpriseServiceClient,
6666
} = require('@google-cloud/recaptcha-enterprise');
67-
const client = new RecaptchaEnterpriseServiceV1Beta1Client();
67+
const client = new RecaptchaEnterpriseServiceClient();
6868

6969
// format the path to the project (it should be prefaced with projects/).
7070
const formattedParent = client.projectPath(projectNumber);
@@ -124,11 +124,12 @@ _Legacy Node.js versions are supported as a best effort:_
124124
This library follows [Semantic Versioning](http://semver.org/).
125125

126126

127+
This library is considered to be **General Availability (GA)**. This means it
128+
is stable; the code surface will not change in backwards-incompatible ways
129+
unless absolutely necessary (e.g. because of critical security issues) or with
130+
an extensive deprecation period. Issues and requests against **GA** libraries
131+
are addressed with the highest priority.
127132

128-
This library is considered to be in **beta**. This means it is expected to be
129-
mostly stable while we work toward a general availability release; however,
130-
complete stability is not guaranteed. We will address issues and requests
131-
against beta libraries with a high priority.
132133

133134

134135

0 commit comments

Comments
 (0)