Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
@great-detail/support-sdk
Advanced tools
import Client, { TokenAuthentication } from "@great-detail/support-sdk";
const auth = new TokenAuthentication();
const sdk = new Client(auth);
// List the stored contacts
const result = await sdk.contact.list.send().json();
console.log(result);
import Client from "@great-detail/support-sdk";
const { event } = await new Client().webhook
.event({
request,
})
.catch((error) => {
// ...
});
console.log(event);
npm install @great-detail/support-sdk
The following authentication methods are supported with this SDK.
Note: This is the primary authentication method intended to be used with this SDK.
import { BasicAuthentication } from "@great-detail/support-sdk";
// Note: This api key should not be hardcoded into your use-case
process.env.SUPPORT_KEY_NAME = "...";
process.env.SUPPORT_KEY_PASSWORD = "...";
// Set api key in environment variable: SUPPORT_API_KEY
const auth = new BasicAuthentication();
Note: Not all of the APIs will work with the public authentication method.
import { PublicAuthentication } from "@great-detail/support-sdk";
const auth = new PublicAuthentication();
Proprietary © 2024 Great Detail Ltd
Great Detail Ltd: <info@greatdetail.com>
Dom Webber: https://domwebber.dev <dom.webber@greatdetail.com>
FAQs
JavaScript SDK for the Great Detail Support System
We found that @great-detail/support-sdk 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
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.