
Security News
n8n Tops 2025 JavaScript Rising Stars as Workflow Platforms Gain Momentum
n8n led JavaScript Rising Stars 2025 by a wide margin, with workflow platforms seeing the largest growth across categories.
@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
n8n led JavaScript Rising Stars 2025 by a wide margin, with workflow platforms seeing the largest growth across categories.

Security News
The U.S. government is rolling back software supply chain mandates, shifting from mandatory SBOMs and attestations to a risk-based approach.

Security News
crates.io adds a Security tab backed by RustSec advisories and narrows trusted publishing paths to reduce common CI publishing risks.