@suluk/payments - v0.1.0
    Preparing search index...

    Interface ClientSession

    A browser-confirmable session: the server creates the intent, the browser SDK confirms it with clientSecret, so raw card data never touches the server (PCI-scope reduction). Crediting lands on the processor webhook, not the create call. This is the piece a pure server-side authorize can't express — the Payment-Element / one-click / add-card flows.

    interface ClientSession {
        clientSecret: string;
        connectorTransactionId?: string;
        customerId?: string;
    }
    Index

    Properties

    clientSecret: string

    the token the browser SDK confirms with — Stripe's client_secret; another processor's equivalent.

    connectorTransactionId?: string
    customerId?: string