Package reference
Method bundles
Domain namespaces and principal methods on CapxulClient.
Every method below returns a Promise<CapxulResult<T>>. This catalog describes
the type surface; consult capability status
for runtime evidence.
| Bundle | Principal methods |
|---|---|
auth | canSendOtp, signIn, verifyOtp, getSession, signOut |
identity | loadCurrent |
currentUser | get |
me | get, depositInstructions |
account | getLifecycle, retrySetup, actor-scoped relationship methods |
accounts | read |
smartAccount | loadCurrent, provision |
handles | recipient resolution by handle |
payees | saved-payee create/read/resolve operations |
targets | resolve for email, handle, Organization, payee, or destination references |
destinations | add, list, remove |
payments | pay, createCommitment, claim, cancel, redirect, list, get |
activity | list, summary, get, annotate |
offramp | quote, status |
paymentDocuments | verify, render |
paymentRequests | create, lifecycle transitions, collect, and reads |
onboarding | completePersonal, completeOrganization |
createOrg, orgs, org(orgId) | Organization creation/listing plus scoped lifecycle, treasury, member, role, Permission, payment, audit, and relationship methods |
Organization scope is never mutable client state. Resolve the bundle for the Organization you mean:
const organization = client.org(orgId);
const lifecycle = await organization.getLifecycle();
const members = await organization.members();Internal namespaces
client._internal and client.account._internal carry lifecycle, custody evidence, or testing
substrate. They are not Stripe-shaped consumer APIs and may change independently
of the public method contract.