
Security News
CVE Volume Surges Past 48,000 in 2025 as WordPress Plugin Ecosystem Drives Growth
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.
@blimu/backend
Advanced tools
This is an auto-generated TypeScript/JavaScript SDK for the Blimu API.
npm install @blimu/backend
# or
yarn add @blimu/backend
import { BlimuClient } from '@blimu/backend';
// Create a new client
const client = new BlimuClient({
baseURL: 'https://api.example.com',
timeoutMs: 10000,
retry: { retries: 2, backoffMs: 300, retryOn: [429, 500, 502, 503, 504] },
// Environment-based baseURL (optional)
env: 'sandbox',
envBaseURLs: {
sandbox: 'https://api-sandbox.example.com',
production: 'https://api.example.com',
},
// Auth (generic API Key or Bearer header)
accessToken: process.env.API_TOKEN,
headerName: 'access_token', // or 'Authorization' (defaults to Authorization: Bearer <token>)
});
// Example: Bulk create resources
try {
const result = await client.bulkResources.create('resourceType', {
// Request body data
});
console.log('Result:', result);
} catch (error) {
// ApiError with structured data
console.error(error);
}
const client = new BlimuClient({
env: 'sandbox',
envBaseURLs: {
sandbox: 'https://api-sandbox.example.com',
production: 'https://api.example.com',
},
accessToken: async () => process.env.API_TOKEN!,
headerName: 'access_token',
});
client.setAccessToken('new-token');
import { listAll } from '@blimu/backend';
const allPayments = await listAll((query) => client.payment.listPayments(query), { limit: 100 });
const client = new BlimuClient({
onRequest: ({ url, init }) => console.debug('->', init.method, url),
onResponse: ({ response }) => console.debug('<-', response.status),
onError: (err) => console.warn('request error', err),
});
This SDK supports the following authentication methods:
API Key authentication (header):
const client = new BlimuClient({
apiKey: 'your-api-key',
});
import { PaymentService, Schema } from '@blimu/backend';
This SDK is written in TypeScript and provides full type safety:
import { BlimuClient, Schema } from '@blimu/backend';
const client = new BlimuClient({
/* config */
});
// All methods are fully typed
const result: ResourceBulkResult = await client.bulkResources.create(/* ... */);
// Schema types are available
const data: Schema.BalanceResponse = {
// Fully typed object
};
For Node.js environments, you may need to provide a fetch implementation:
npm install undici
import { fetch } from 'undici';
import { BlimuClient } from '@blimu/backend';
const client = new BlimuClient({
baseURL: 'https://api.example.com',
fetch,
});
The SDK includes the following TypeScript interfaces:
All types are available under the Schema namespace:
import { Schema } from '@blimu/backend';
// Use any model type
const user: Schema.User = {
/* ... */
};
This SDK is auto-generated. Please do not edit the generated files directly. If you find issues, please report them in the main project repository.
This SDK is generated from the Blimu API specification.
FAQs
TypeScript SDK for Blimu API (auto-generated)
We found that @blimu/backend 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.

Security News
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.

Security News
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.

Security News
Tailwind Labs laid off 75% of its engineering team after revenue dropped 80%, as LLMs redirect traffic away from documentation where developers discover paid products.