Skip to content

Commit

Permalink
releaase(verify2): verify v2 to ga (#825)
Browse files Browse the repository at this point in the history
  • Loading branch information
manchuck committed May 23, 2023
1 parent c93bc3d commit 4097b53
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ The following is a list of Vonage APIs and whether the Node Server SDK provides
| Reports API | Beta ||
| SMS API | General Availability ||
| Verify API | General Availability ||
| Verify v2 API | Beta ||
| Verify v2 API | General Availability ||
| Voice API | General Availability ||

[signup]: https://dashboard.nexmo.com/sign-up?utm_source=DEV_REL&utm_medium=github&utm_campaign=node-server-sdk
Expand Down
2 changes: 2 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion packages/server-sdk/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ You can find more information for each product below:
* [Server SDK](https://github.com/Vonage/vonage-node-sdk/blob/3.x/packages/server-sdk/README.md)
* [SMS](https://github.com/Vonage/vonage-node-sdk/blob/3.x/packages/sms/README.md)
* [Verify](https://github.com/Vonage/vonage-node-sdk/blob/3.x/packages/verify/README.md)
* [Verify V2](https://github.com/Vonage/vonage-node-sdk/blob/3.x/packages/verify2/README.md)
* [Vetch](https://github.com/Vonage/vonage-node-sdk/blob/3.x/packages/vetch/README.md)
* [Video](https://github.com/Vonage/vonage-node-sdk/blob/3.x/packages/video/README.md)
* [Voice](https://github.com/Vonage/vonage-node-sdk/blob/3.x/packages/voice/README.md)
Expand Down Expand Up @@ -114,7 +115,7 @@ The following is a list of Vonage APIs and whether the Node Server SDK provides
| Reports API | Beta ||
| SMS API | General Availability ||
| Verify API | General Availability ||
| Verify v2 API | Beta ||
| Verify v2 API | General Availability ||
| Voice API | General Availability ||

[signup]: https://dashboard.nexmo.com/sign-up?utm_source=DEV_REL&utm_medium=github&utm_campaign=node-server-sdk
Expand Down
3 changes: 3 additions & 0 deletions packages/server-sdk/lib/vonage.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import { Pricing } from '@vonage/pricing';
import { Redact } from '@vonage/redact';
import { SMS } from '@vonage/sms';
import { Verify } from '@vonage/verify';
import { Verify2 } from '@vonage/verify2';
import { Voice } from '@vonage/voice';
import { ConfigParams } from '@vonage/server-client';

Expand All @@ -25,6 +26,7 @@ export class Vonage {
public secrets: Secrets;
public sms: SMS;
public verify: Verify;
public verify2: Verify2;
public voice: Voice;

constructor(credentials: AuthInterface, options?: ConfigParams) {
Expand All @@ -45,6 +47,7 @@ export class Vonage {
this.secrets = new Secrets(this.credentials, this.options);
this.sms = new SMS(this.credentials, this.options);
this.verify = new Verify(this.credentials, this.options);
this.verify2 = new Verify2(this.credentials, this.options);
this.voice = new Voice(this.credentials, this.options);
}
}
1 change: 1 addition & 0 deletions packages/server-sdk/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@
"@vonage/server-client": "^1.4.0",
"@vonage/sms": "^1.4.0",
"@vonage/verify": "^1.4.0",
"@vonage/verify2": "^1.2.0",
"@vonage/voice": "^1.4.0"
},
"publishConfig": {
Expand Down

0 comments on commit 4097b53

Please sign in to comment.