
Company News
Socket Named Top Sales Organization by RepVue
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.
@playbookmedia/email-verification-typescript-sdk
Advanced tools
Playbook Media Email Verification SDK for interacting with the Email Verification API
Official TypeScript SDK for Vector's Backend Services
This package provides a modern, type-safe TypeScript client for interacting with Vector's Email Verification Service. Built with TypeScript and following best practices, it offers a seamless integration experience with comprehensive type definitions and Promise-based APIs.
# Using npm
npm install @playbookmedia/email-verification-typescript-sdk
# Using yarn
yarn add @playbookmedia/email-verification-typescript-sdk
# Using pnpm
pnpm add @playbookmedia/email-verification-typescript-sdk
import { VectorClient } from '@playbookmedia/email-verification-typescript-sdk';
// Initialize the client
const client = new VectorClient({
apiKey: 'your-api-key',
environment: 'production' // or 'staging'
});
// Example: Using the client
async function example() {
try {
// Make API calls
const response = await client.someEndpoint({
// request parameters
});
console.log('Response:', response);
} catch (error) {
if (error instanceof VectorAPIError) {
console.error('API Error:', error.message);
console.error('Status:', error.status);
console.error('Code:', error.code);
} else {
console.error('Unexpected error:', error);
}
}
}
interface VectorClientConfig {
apiKey: string;
environment?: 'production' | 'staging';
timeout?: number;
retryConfig?: {
maxRetries: number;
initialDelayMs: number;
};
}
client.method1(): Description of method 1client.method2(): Description of method 2Clone the repository:
git clone https://github.com/VectorEngineering/vector-protobuf-definitions.git
cd vector-protobuf-definitions/sdk/client/client-typescript-sdk
Install dependencies:
npm install
npm run build - Builds the package using TypeScriptnpm run clean - Removes build artifactsnpm run test - Runs tests with Jestnpm run lint - Lints code using ESLintnpm run format - Formats code using Prettiernpm run typecheck - Runs TypeScript type checkingnpm run semantic-release - Handles semantic versioning and releases# Run all tests
npm test
# Run tests in watch mode
npm run test:watch
# Generate coverage report
npm run test:coverage
We welcome contributions! Please follow these steps:
git checkout -b feature/amazing-featurenpm run cm (uses Commitizen)git push origin feature/amazing-featureMIT © [Vector Engineering]
FAQs
Playbook Media Email Verification SDK for interacting with the Email Verification API
The npm package @playbookmedia/email-verification-typescript-sdk receives a total of 1 weekly downloads. As such, @playbookmedia/email-verification-typescript-sdk popularity was classified as not popular.
We found that @playbookmedia/email-verification-typescript-sdk demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.

Company News
/Security News
Socket is an initial recipient of OpenAI's Cybersecurity Grant Program, which commits $10M in API credits to defenders securing open source software.