Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
@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 result = await sdk.contact.list.send().json();
console.log(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
The npm package @great-detail/support-sdk receives a total of 312 weekly downloads. As such, @great-detail/support-sdk popularity was classified as not popular.
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
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.