![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
box-and-dice-crm
Advanced tools
A JavaScript/TypeScript client for interacting with the Box+Dice CRM API. This library provides a simple and type-safe way to interact with the Box+Dice CRM system.
Install the package using npm:
npm install box-and-dice-crm
import { BoxDiceClient } from 'box-and-dice-crm';
const client = new BoxDiceClient({
apiKey: 'your-api-key',
domain: 'your-domain.boxdice.com.au'
});
// Get all contacts
const contacts = await client.getContacts();
// Create a new contact
const newContact = await client.createContact({
first_name: 'John',
last_name: 'Doe',
email: 'john@example.com',
mobile: '0400000000'
});
// Update a contact
await client.updateContact(123, {
email: 'newemail@example.com'
});
// Get sales listings
const salesListings = await client.getSalesListings();
// Get rental listings for a specific office
const rentalListings = await client.getRentalListings(officeId);
The client includes custom error types for common API errors:
try {
await client.getContacts();
} catch (error) {
if (error instanceof AuthenticationError) {
// Handle authentication error
} else if (error instanceof RateLimitError) {
// Handle rate limit error
const retryAfter = error.statusCode; // Seconds to wait
} else if (error instanceof BoxDiceError) {
// Handle other API errors
console.error(error.message, error.statusCode);
}
}
For detailed API documentation, please refer to the type definitions in the source code:
MIT License - see LICENSE file for details.
FAQs
JavaScript/TypeScript client for the Box and Dice CRM API
The npm package box-and-dice-crm receives a total of 0 weekly downloads. As such, box-and-dice-crm popularity was classified as not popular.
We found that box-and-dice-crm demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.