
Research
Malicious npm Package Brand-Squats TanStack to Exfiltrate Environment Variables
A brand-squatted TanStack npm package used postinstall scripts to steal .env files and exfiltrate developer secrets to an attacker-controlled endpoint.
@zezosoft/zezo-ott-api-client
Advanced tools
The official TypeScript SDK for Zezo OTT API. Easily integrate Zezo OTT into your applications with a powerful, developer-friendly package for video streaming, authentication, payments, and more.
npm install --save @zezosoft/zezo-ott-api-client@latest
import { ZezoOTT } from "@zezosoft/zezo-ott-api-client";
const zott = new ZezoOTT({ baseUrl: "your-base-url" });
const main = async () => {
const data = await zott.settings.getSettings();
console.log(data);
};
main();
const { ZezoOTT } = require("@zezosoft/zezo-ott-api-client");
const zott = new ZezoOTT({ baseUrl: "your-base-url" });
const main = async () => {
const data = await zott.settings.getSettings();
console.log(data);
};
main();
Every service inherits a public request<T>(config) method from BaseService. It uses the same Axios client (same baseURL, headers, withCredentials, and interceptors) so you don't need to set those up again. Use it when the SDK doesn't have a dedicated method for an endpoint yet.
const response = await zott.settings.request({
method: "GET",
url: "/api/v1/some-new-endpoint",
params: { page: 1, limit: 10 },
});
console.log(response.data);
const response = await zott.users.request({
method: "POST",
url: "/api/v1/some-new-endpoint",
data: { name: "example" },
});
console.log(response.data);
Any service instance works — zott.users.request(...), zott.settings.request(...), zott.auth.request(...), etc. The underlying Axios client is identical across all services.
You can pass a generic type parameter to get typed response.data:
interface MyResponse {
id: string;
status: string;
}
const response = await zott.settings.request<MyResponse>({
method: "GET",
url: "/api/v1/custom-endpoint",
});
console.log(response.data.id); // typed as string
FAQs
The official TypeScript SDK for Zezo OTT API. Easily integrate Zezo OTT into your applications with a powerful, developer-friendly package for video streaming, authentication, payments, and more.
We found that @zezosoft/zezo-ott-api-client demonstrated a healthy version release cadence and project activity because the last version was released less than 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.

Research
A brand-squatted TanStack npm package used postinstall scripts to steal .env files and exfiltrate developer secrets to an attacker-controlled endpoint.

Research
Compromised SAP CAP npm packages download and execute unverified binaries, creating urgent supply chain risk for affected developers and CI/CD environments.

Company News
Socket has acquired Secure Annex to expand extension security across browsers, IDEs, and AI tools.