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

@xapp/stentor-service-servicetitan

v1.89.0

Published

Service to integrate with Service Titan

Readme

@xapp/stentor-service-servicetitan

Implementation of CrmService for Service Titan

Required Environment Variables

ST_API_Endpoint=api-integration.servicetitan.io ST_Auth_Endpoint=auth-integration.servicetitan.io/connect/token ST_Booking_Provider=[from the customer] ST_Tenant=[From the Customer] ST_Client_Id=[from the customer] ST_Client_Secret=[from the customer] ST_Application_Key=[name of XAPP App on Service Titan] GOOGLE_PLACES_KEY=[For Full Address. Service Titan requires a full address with all elements]

Documentation

Onboarding a customer

To wire up a new ServiceTitan customer in stentor-api you need, in addition to their credentials, three IDs that must be selected from the customer's tenant: defaultBusinessUnitId, defaultJobTypeId, defaultCampaignId. These are not credentials — you have to list what exists in the tenant and pick the defaults.

1. List the IDs. Run the helper script (zero dependencies, credentials are kept in memory only — nothing is written to disk):

yarn st:list-ids
# or: node scripts/list-servicetitan-ids.js

It prompts for the environment, tenant id, ST App Key, client id, and client secret (masked), then prints every Job Type, Campaign, and Business Unit with its id.

2. Add the integration via the addServiceTitanIntegration mutation in stentor-api, supplying the credentials plus the three ids you chose.

⚠️ Environment must match everywhere (the #1 onboarding failure)

ServiceTitan has two isolated environments — production (api.servicetitan.io / auth.servicetitan.io) and integration/sandbox (api-integration.servicetitan.io / auth-integration.servicetitan.io). Credentials and the ST App Key are issued per environment and are not interchangeable. Every value must be from the same environment:

| Value | Production | | -------------------------------------- | ------------------------------------ | | apiEndpoint | api.servicetitan.io | | authEndpoint | auth.servicetitan.io/connect/token | | client id / secret, tenant, ST App Key | the customer's production values |

(Use the -integration hosts and the customer's integration credentials for sandbox.)

If the credentials are for one environment but the authEndpoint points at the other, authentication fails. In stentor-api this currently surfaces as OAuth Authentication failed (401: {"error":"invalid_client"}) from OAuthAuthenticationService. invalid_client almost always means an environment / app-key mismatch — confirm the endpoints match the credentials' environment. A quick way to prove which environment a set of credentials belongs to is to run yarn st:list-ids against each environment; the one that returns data is the correct one.