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

@pontx/dropbox-sign

v0.1.2

Published

Type-safe Dropbox Sign API SDK and safety-first CLI generated from the complete official OpenAPI contract

Downloads

511

Readme

@pontx/dropbox-sign

Pontx Hub SDK guide

Type-safe Dropbox Sign API SDK and safety-first CLI generated from the complete official OpenAPI documentation contract.

This is a Pontx community SDK, not an official Dropbox product. Its checked-in contract is reproducibly derived from Dropbox Sign's official OpenAPI repository at revision f0c7887f2f56fb7a082b5db78a09856df2cb6ccf.

Safety status

  • Complete contract target: 73 Endpoints and 217 Schemas, including callback event Schemas.
  • JSON and multipart request media are preserved.
  • PDF and ZIP downloads return Blob values and are never text-decoded.
  • The CLI reads credentials from environment variables only and redacts them from previews.
  • POST, PUT, PATCH, DELETE, and other mutation methods require a request-bound confirmation token produced by --dry-run.

SDK

pnpm add @pontx/dropbox-sign
import { createDropboxSignClient } from "@pontx/dropbox-sign";

const client = createDropboxSignClient({
  apiKey: process.env.DROPBOX_SIGN_API_KEY,
});

const account = await client.account.accountGet({
  email_address: "[email protected]",
});

OAuth access tokens are also supported:

const client = createDropboxSignClient({
  accessToken: process.env.DROPBOX_SIGN_ACCESS_TOKEN,
});

Exactly one credential must be configured. API keys use HTTP Basic authentication with an empty password; OAuth tokens use a Bearer header, matching Dropbox Sign's authentication documentation.

CLI

export DROPBOX_SIGN_API_KEY='...'
pontx-dropbox-sign list apis
pontx-dropbox-sign show-api account accountGet

Read calls may run directly. Mutations are preview-first:

pontx-dropbox-sign call signatureRequest signatureRequestSend --body @request.json --dry-run
# Review the redacted request and copy its short-lived token.
pontx-dropbox-sign call signatureRequest signatureRequestSend --body @request.json --confirm 'ptx1...'

Binary downloads require an output file:

pontx-dropbox-sign call signatureRequest signatureRequestFiles \
  --signature_request_id '...' --output documents.zip

Contract provenance

See THIRD_PARTY_NOTICES.md. The metadata source contains the reproducible importer, source hashes, bilingual prose, and admission gates. The SDK is not published until those gates and the required Pontx core releases pass.

Release boundary

Publishing is operator-owned. prepublishOnly refuses to continue until every exact Pontx dependency exists in the npm registry, a frozen pnpm-lock.yaml is checked in, and no local link:, file:, or workspace override remains. After those prerequisites exist it reruns the complete quality suite before npm can publish the package.

License

SDK code is MIT licensed. Upstream OpenAPI material retains its own notices and attribution.