Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@synqly/client-sdk
Advanced tools
The Synqly Client SDK provides access to the Synqly API from JavaScript/TypeScript environments, such as Node or a web browser.
The Synqly Client SDK provides access to the Synqly API from JavaScript/TypeScript environments, such as Node or a web browser.
To use this SDK you must have access to a Synqly organization. If you aren't yet a Synqly customer and like to know more, please contact us to schedule a demo.
API reference documentation is available at https://docs.synqly.com.
Use your favorite package manager to install @synqly/connect-react-sdk
:
npm install @synqly/connect-react-sdk
The Synqly Client SDK consists of two clients:
Management
: used to manage your Synqly organizationEngine
: used to interact with configured integrations using Synqly
connectorsBoth clients are instantiated similarly, but require different kinds of access tokens to work.
The Management
client requires an organization token. The organization
token can be reset from the Synqly Management Console.
The Engine
client requires integration tokens, which are issued when first
creating an integration. They can also be reset using an organization
token.
More information about authentication is available in the Synqly API documentation.
To instantiate the clients, you must provide a valid token
:
import { EngineClient, ManagementClient }
from '@synqly/client-sdk'
// The management client is used to manage your Synqly organization
const management = new ManagementClient({ token: 'ORGANIZATION_TOKEN', })
// The engine client is used to interact with a single integration. To
// interact with multiple integrations you must create a new client for
// each.
const engine = new EngineClient({ token: 'INTEGRATION_TOKEN' })
[!TIP] Instantiating a new client is cheap and has no side-effects. It is often more convenient to create a new client than keep instances around.
The Management
client is used to manage details about your organization,
such as inviting members or creating integrations.
[!NOTE] Creating integrations using this client however requires having full details of your tenant's provider details. To make this easier to maintain, and to reduce the complexities of gathering and maintaining all of this data, Synqly offers Connect UI – a hosted experience that can be embedded right into your app.
Everything you can do with the [Synqly Management Console] (https://app.synqly.com) can be done with the Management client.
The Engine
client is used to interact with individual integrations. You
must create a new client for each integration you wish to use, as the
required token
parameter is used to authenticate requests for a single
integration.
Each integration is of a specific Connector type, and the Engine
client
namespaces all Connector APIs making it trivial to deconstruct the relevant
connect API for your integration.
Here's an example of how you may use a SIEM
integration:
const { siem } = new Engine({ token: 'INTEGRATION_TOKEN' })
siem.postEvents(event)
Both the Management
and Engine
clients return a result object regardless
of whether it was successful or not. If it's successful, the body of the
response will be available in the body
field. If not, the error will be
available in the error
field.
The body
and error
fields are mutually exclusive, you will never
receive both a body
and an error
at the same time. This allows you to
deal with the result without having to wrap any calls in try
/catch
blocks.
Here's an example of creating an account:
const { body, error } = await management.accounts.create({ fullname })
if (error) {
// Handle the error however you please, here we just throw it.
throw errror
}
// The `body` field is guaranteed to exist at this point, since `body` and
// `error` are mutually exclusive fields on the response object.
const { account } = body.result
Both the Management
and Engine
clients are generated from our OpenAPI
specification. All operations in the reference documentation
are available in this SDK.
We greatly appreciate open-source contributions, however the majority of this library is generated programmatically. Changes made to this repository are likely to be overwritten by the next release. We do welcome PRs and issues however, even if they may not be merged directly.
FAQs
The Synqly Client SDK provides access to the Synqly API from JavaScript/TypeScript environments, such as Node or a web browser.
We found that @synqly/client-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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.