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

@rachelallyson/planning-center-check-ins-ts

v4.0.0

Published

A strictly typed TypeScript client for Planning Center Online Check-Ins API with batch operations and enhanced developer experience

Downloads

36

Readme

@rachelallyson/planning-center-check-ins-ts

A strictly typed TypeScript client for Planning Center Online Check-Ins API.

Installation

npm install @rachelallyson/planning-center-check-ins-ts

Quick Start

import { PcoCheckInsClient } from '@rachelallyson/planning-center-check-ins-ts';

const client = new PcoCheckInsClient({
  auth: {
    type: 'personal_access_token',
    personalAccessToken: 'your-token-here'
  }
});

// Get all events
const events = await client.events.getAll();

// Get check-ins for an event
const checkIns = await client.checkIns.getAll({
  filter: ['attendee', 'not_checked_out']
});

// Get a specific check-in
const checkIn = await client.checkIns.getById('123', { include: ['person', 'event'] });

Features

  • Type-safe: Full TypeScript support with complete type definitions for all 24 Check-Ins API resource types
  • Modular architecture: 16 specialized modules organized by resource domain
  • Rate limiting: Automatic rate limit handling (100 requests per 20 seconds)
  • Error handling: Typed errors (PcoApiError) with status and JSON:API error details
  • Pagination: Built-in pagination helpers (getPage, getAll)
  • JSON:API compliant: Full support for JSON:API 1.0 specification

Modules

The client exposes 16 specialized modules:

  • events - Event management (recurring events)
  • checkIns - Check-in records (attendance)
  • locations - Location management
  • eventTimes - Specific check-in times
  • stations - Check-in stations
  • labels - Labels for check-ins, events, and locations
  • options - Check-in options
  • checkInGroups - Group check-ins
  • preChecks - Pre-check records
  • passes - Pass management
  • headcounts - Headcount tracking
  • attendanceTypes - Attendance type definitions
  • rosterListPersons - Roster list persons
  • organization - Organization info
  • integrationLinks - Integration links
  • themes - Themes for check-ins

Imports

This package re-exports the client, resource types, PcoApiError, and the JSON:API types you need for responses (PaginationResult, Relationship, ResourceIdentifier, ResourceObject). For rate limiting or advanced error-handling utilities (e.g. PcoRateLimiter, retryWithBackoff, withErrorBoundary), use @rachelallyson/planning-center-base-ts directly.

Documentation

For complete documentation, see the monorepo documentation site.

To verify or update where/include/order types against the Planning Center API docs, see docs/API_PARAMS_VERIFICATION.md.

Testing

Unit Tests (Mocked Data)

Run unit tests with mocked HTTP responses:

npm test

Integration Tests (Real API Data)

Integration tests make real HTTP requests to Planning Center servers:

# First, create .env.test with your credentials
# See tests/integration/README.md for setup instructions

npm run test:integration

Integration tests verify:

  • Real API responses and data structures
  • End-to-end functionality with actual Planning Center data
  • Error handling with real API errors
  • JSON:API compliance with real responses

License

MIT