
Security News
The Next Open Source Security Race: Triage at Machine Speed
Claude Opus 4.6 has uncovered more than 500 open source vulnerabilities, raising new considerations for disclosure, triage, and patching at scale.
@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.blimu.dev',
timeoutMs: 10000,
retry: { retries: 2, strategy: 'exponential', backoffMs: 300, retryOn: [429, 500, 502, 503, 504] },
// Auth configuration
auth: {
strategies: [
{
type: 'bearer',
token: process.env.API_TOKEN,
},
],
},
});
// Example: Bulk create resources
try {
const result = await client.bulkResources.create(
'resourceType'
, {
// Request body data
}
);
console.log('Result:', result);
} catch (error) {
// FetchError with structured data
console.error(error);
}
// Example: Bulk create roles
try {
const result = await client.bulkRoles.create(
{
// Request body data
}
);
console.log('Result:', result);
} catch (error) {
// FetchError with structured data
console.error(error);
}
// Example: Check if a user has a specific entitlement on a resource
try {
const result = await client.entitlements.checkEntitlement(
{
// Request body data
}
);
console.log('Result:', result);
} catch (error) {
// FetchError with structured data
console.error(error);
}
// Example: Remove plan assignment from a tenant resource
try {
const result = await client.plans.delete(
'resourceType', 'resourceId'
);
console.log('Result:', result);
} catch (error) {
// FetchError with structured data
console.error(error);
}
// Example: List members for a resource
try {
const result = await client.resourceMembers.list(
'resourceType', 'resourceId'
, {
}
);
console.log('Result:', result);
} catch (error) {
// FetchError with structured data
console.error(error);
}
// Example: List resources
try {
const result = await client.resources.list(
'resourceType'
, {
}
);
console.log('Result:', result);
} catch (error) {
// FetchError with structured data
console.error(error);
}
// Example: List user roles
try {
const result = await client.roles.list(
'userId'
, {
}
);
console.log('Result:', result);
} catch (error) {
// FetchError with structured data
console.error(error);
}
// Example: Get wallet balance
try {
const result = await client.usage.getBalance(
'resourceType', 'resourceId', 'limitType'
, {
period: undefined,
}
);
console.log('Result:', result);
} catch (error) {
// FetchError with structured data
console.error(error);
}
// Example: List users
try {
const result = await client.users.list(
{
}
);
console.log('Result:', result);
} catch (error) {
// FetchError with structured data
console.error(error);
}
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
// 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.blimu.dev',
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)
The npm package @blimu/backend receives a total of 453 weekly downloads. As such, @blimu/backend popularity was classified as not popular.
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
Claude Opus 4.6 has uncovered more than 500 open source vulnerabilities, raising new considerations for disclosure, triage, and patching at scale.

Research
/Security News
Malicious dYdX client packages were published to npm and PyPI after a maintainer compromise, enabling wallet credential theft and remote code execution.

Security News
gem.coop is testing registry-level dependency cooldowns to limit exposure during the brief window when malicious gems are most likely to spread.