
Security News
Inside Lodash’s Security Reset and Maintenance Reboot
Lodash 4.17.23 marks a security reset, with maintainers rebuilding governance and infrastructure to support long-term, sustainable maintenance.
@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
authStrategies: [
{
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: Check consent requirement
try {
const result = await client.oauth.checkConsentRequired({
client_id: 'example',
});
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.AuthorizeRequest = {
// 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 242 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
Lodash 4.17.23 marks a security reset, with maintainers rebuilding governance and infrastructure to support long-term, sustainable maintenance.

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.