Security News
Maven Central Adds Sigstore Signature Validation
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
@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
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
Security News
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.