The SDK for interacting with the HeyPay platform.
The package is hosted on JSR. You can install it via:
# pnpm
pnpm dlx jsr add @heypay/effect-sdk
# Deno
deno add jsr:@heypay/effect-sdk
# bun
bunx jsr add @heypay/effect-sdk
# npm
npx jsr add @heypay/effect-sdk
# yarn
yarn dlx jsr add @heypay/effect-sdk
import { createHeyPay } from "@heypay/js-sdk";
const heypay = createHeyPay({
// Your HeyPay Domain
domain: "you.heypay.sh",
// The ID of your product on HeyPay.
productId: "pro_..."
});
const code = prompt("The License Key, please");
// Make sure to store the `license` in a secure place.
const license = await heypay.activate({ code });
const refreshedLicense = await heypay.verify({ license });
const refreshedLicense = await heypay.verify({ license }, { online: true });
const { supporter } = await heypay.getSupporter({ license });