![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.
@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
The npm package @great-detail/support-sdk receives a total of 318 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
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.