npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

conductorone-sdk-typescript

v1.3.1

Published

Developer-friendly & type-safe Typescript SDK specifically catered to leverage *conductorone-sdk-typescript* API.

Downloads

26,564

Readme

conductorone-sdk-typescript

Developer-friendly & type-safe Typescript SDK specifically catered to leverage conductorone-sdk-typescript API.

Summary

C1 API: The C1 API is a HTTP API for managing C1 resources.

Table of Contents

SDK Installation

The SDK can be installed with either npm, pnpm, bun or yarn package managers.

NPM

npm add conductorone-sdk-typescript

PNPM

pnpm add conductorone-sdk-typescript

Bun

bun add conductorone-sdk-typescript

Yarn

yarn add conductorone-sdk-typescript

[!NOTE] This package is published with CommonJS and ES Modules (ESM) support.

Requirements

For supported JavaScript runtimes, please consult RUNTIMES.md.

SDK Example Usage

Example

import { ConductoroneSDKTypescript } from "conductorone-sdk-typescript";

const conductoroneSDKTypescript = new ConductoroneSDKTypescript({
  security: {
    bearerAuth: "<YOUR_BEARER_TOKEN_HERE>",
    oauth: "<YOUR_OAUTH_HERE>",
  },
});

async function run() {
  const result = await conductoroneSDKTypescript.a2Ui.listSurfaces({
    conversationId: "<id>",
  });

  console.log(result);
}

run();

Authentication

Per-Client Security Schemes

This SDK supports the following security schemes globally:

| Name | Type | Scheme | | ------------ | ------ | ------------ | | bearerAuth | http | HTTP Bearer | | oauth | oauth2 | OAuth2 token |

You can set the security parameters through the security optional parameter when initializing the SDK client instance. The selected scheme will be used by default to authenticate with the API for all operations that support it. For example:

import { ConductoroneSDKTypescript } from "conductorone-sdk-typescript";

const conductoroneSDKTypescript = new ConductoroneSDKTypescript({
  security: {
    bearerAuth: "<YOUR_BEARER_TOKEN_HERE>",
    oauth: "<YOUR_OAUTH_HERE>",
  },
});

async function run() {
  const result = await conductoroneSDKTypescript.a2Ui.listSurfaces({
    conversationId: "<id>",
  });

  console.log(result);
}

run();

Available Resources and Operations

A2Ui

AccessConflict

AccessReview

AccessReviewSetupEntitlement

AccessReviewTemplate

AccessReviewTemplateSetupEntitlement

AccountProvisionPolicyTest

AIGovernanceSettings

AppAccessRequestsDefaults

AppEntitlementMonitorBinding

AppEntitlementOwners

AppEntitlementOwnersV2

AppEntitlements

AppEntitlementSearch

AppEntitlementsProxy

AppEntitlementUserBinding

AppOwners

AppOwnersV2

AppReport

AppReportAction

AppResource

AppResourceOwners

AppResourceOwnersV2

AppResourceSearch

AppResourceType

Apps

AppSearch

AppUsageControls

AppUser

Attributes

AttributeSearch

Auth

Automation

AutomationExecution

AutomationExecutionActions

AutomationExecutionSearch

AutomationSearch

AWSExternalIDSettings

Connector

ConnectorCatalog

ConnectorOwnersV2

Contacts

Decoy

DecoySearch

Directory

Export

ExportsSearch

ExternalClientSearch

  • search - NOTE: Searches external client grants for all users

Finding

FindingAudit

FindingRoutingRule

FindingSearch

Functions

FunctionsInvocation

FunctionsInvocationSearch

FunctionsSearch

Hooks

HooksSearch

LocalDirectoryConfig

LocalUserInvitation

MCPAccessProfile

MCPAccessProfileToolBinding

MCPTool

OnboardingSettings

OrgDomain

OrgNotificationSettings

PaperSecret

PaperSecretAdmin

PersonalClient

PersonalClientSearch

  • search - NOTE: Searches personal clients for all users

Policies

PolicySearch

PolicyValidate

Principal

RequestCatalogManagement

RequestCatalogSearch

RequestSchema

RequestSettings

RoleMiningManagement

RoleMiningManagementSearch

Roles

SessionSettings

SSFReceiverEvent

SSFReceiverEventSearch

SSFReceiverStream

StepUpProvider

StepUpTransaction

SystemLog

Task

TaskActions

TaskAudit

TaskSearch

TenantAuthConfig

TenantEmailProvider

TerraformExport

TunnelCredentials

User

UserDeveloperPreferences

UserNotificationSettings

UserSearch

Vault

Webhooks

WebhooksSearch

WorkloadFederation

Standalone functions

All the methods listed above are available as standalone functions. These functions are ideal for use in applications running in the browser, serverless runtimes or other environments where application bundle size is a primary concern. When using a bundler to build your application, all unused functionality will be either excluded from the final bundle or tree-shaken away.

To read more about standalone functions, check FUNCTIONS.md.