Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
@great-detail/support-sdk
Advanced tools
// ESM
import Client, { TokenAuthentication } from "@great-detail/support-sdk";
// Note: CJS dist files are also published
const auth = new TokenAuthentication();
const sdk = new Client(auth);
// List the stored contacts
const request = await sdk.contact.list.send();
console.log(await request.result());
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 { TokenAuthentication } from "@great-detail/support-sdk";
// Note: This token should not be hardcoded into your use-case
process.env.SUPPORT_ACCESS_TOKEN = "...";
const auth = new TokenAuthentication();
Note: Not all of the APIs will work with the key authentication method.
import { KeyAuthentication } from "@great-detail/support-sdk";
// Note: This api key should not be hardcoded into your use-case
process.env.SUPPORT_API_KEY = "...";
// Set api key in environment variable: SUPPORT_API_KEY
const auth = new KeyAuthentication();
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
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.