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

@payconductor/svelte

v1.0.0

Published

Svelte SDK for [PayConductor](https://payconductor.ai) payment integration.

Readme

@payconductor/svelte

Svelte SDK for PayConductor payment integration.

npm version

Requirements

Minimum Svelte version: v4.

Installation

npm install @payconductor/svelte @payconductor/sdk
# or
yarn add @payconductor/svelte @payconductor/sdk
# or
pnpm add @payconductor/svelte @payconductor/sdk
# or
bun add @payconductor/svelte @payconductor/sdk

Quick Start

<script lang="ts">
  import {
    PayConductor,
    PayConductorCheckoutElement,
    usePayConductor,
    usePayconductorElement,
    type PaymentMethod,
    type PaymentResult,
  } from '@payconductor/svelte';
  import {
    AvailablePaymentMethods,
    Configuration,
    DocumentType,
    OrderApi,
    type OrderCreateRequest,
  } from '@payconductor/sdk';

  const { isReady, error } = usePayConductor();
  const { confirmPayment, getSelectedPaymentMethod } = usePayconductorElement();

  const sdkConfig = new Configuration({
    username: import.meta.env.VITE_PAYCONDUCTOR_CLIENT_ID || 'your_client_id',
    password: import.meta.env.VITE_PAYCONDUCTOR_CLIENT_SECRET || 'your_client_secret',
  });
  const orderApi = new OrderApi(sdkConfig);

  let errorMessage: string | null = null;
  let isProcessing = false;
  $: selectedMethod = getSelectedPaymentMethod();

  async function handleFinalize() {
    if (!$isReady) return;
    isProcessing = true;
    errorMessage = null;

    try {
      // 1. Create the Draft order via @payconductor/sdk to get the orderId
      const orderRequest: OrderCreateRequest = {
        chargeAmount: 100.00,
        clientIp: '0.0.0.0',
        customer: {
          documentNumber: '12345678900',
          documentType: DocumentType.Cpf,
          email: '[email protected]',
          name: 'Customer Name',
        },
        discountAmount: 0,
        externalId: `order-${Date.now()}`,
        payment: {
          paymentMethod: 'Draft',
          availablePaymentMethods: [
            AvailablePaymentMethods.CreditCard,
            AvailablePaymentMethods.Pix,
            AvailablePaymentMethods.BankSlip,
          ],
        },
        shippingFee: 0,
        taxFee: 0,
      };
      const { data } = await orderApi.orderCreate(orderRequest);

      // 2. Confirm payment with the obtained orderId
      const result: PaymentResult = await confirmPayment({ orderId: data.id });
      if (result.status === 'succeeded') alert('Payment successful!');
    } catch (err: unknown) {
      errorMessage = err instanceof Error ? err.message : 'Payment failed';
    } finally {
      isProcessing = false;
    }
  }
</script>

<PayConductor
  publicKey="pk_test_123"
  locale="pt-BR"
  debug={true}
  theme={{ primaryColor: '#0066ff', borderRadius: '8px' }}
  onReady={() => console.log('Ready')}
  onError={(err) => console.error('Error:', err)}
  onPaymentComplete={(result) => console.log('Complete:', result)}
  onPaymentMethodSelected={(method) => console.log('Method:', method)}
>
  <!-- The iframe is rendered here -->
  <PayConductorCheckoutElement height="600px" />

  {#if selectedMethod}
    <p>Selected method: <strong>{selectedMethod}</strong></p>
  {/if}

  <button type="button" disabled={!$isReady || isProcessing} on:click={handleFinalize}>
    {isProcessing ? 'Processing...' : 'Checkout'}
  </button>

  {#if errorMessage}
    <div>{errorMessage}</div>
  {/if}

  {#if $error}
    <div>Error: {$error}</div>
  {/if}
</PayConductor>

API Reference

<PayConductor />

Provider component that initializes the payment session. Does not render the iframe directly — use <PayConductorCheckoutElement> for that.

| Prop | Type | Description | |------|------|-------------| | publicKey | string | Your PayConductor public key | | theme | PayConductorTheme | Theme customization options | | locale | string | Locale (e.g. 'pt-BR', 'en-US') | | paymentMethods | PaymentMethod[] \| "all" | Available payment methods | | defaultPaymentMethod | PaymentMethod | Pre-selected payment method | | paymentMethodsConfig | PaymentMethodConfig[] | Per-method config (installments, discounts) | | methodsDirection | "vertical" \| "horizontal" | Layout direction of payment methods | | showPaymentButtons | boolean | Show native action buttons inside the iframe | | nuPayConfig | NuPayData | Required when NuPay is an available method | | debug | boolean | Enable prefixed console.log for key events | | onReady | () => void | Called when the iframe is ready | | onError | (error: Error) => void | Called when an error occurs | | onPaymentComplete | (result: PaymentResult) => void | Called when payment succeeds | | onPaymentFailed | (result: PaymentResult) => void | Called when payment fails | | onPaymentPending | (result: PaymentResult) => void | Called when payment is pending | | onPaymentMethodSelected | (method: PaymentMethod) => void | Called when user selects a payment method |

<PayConductorCheckoutElement />

Renders the payment iframe. Place it inside <PayConductor>.

| Prop | Type | Description | |------|------|-------------| | height | string | Iframe height (default: '600px') |

usePayConductor()

Returns Svelte stores for frame state. Access values with the $ prefix in templates.

<script>
  const { isReady, error } = usePayConductor();
  // Use $isReady and $error in the template
</script>

| Property | Type | Description | |----------|------|-------------| | isReady | Readable<boolean> | Whether the iframe is ready (Svelte store) | | error | Readable<string \| null> | Error message, if any (Svelte store) |

usePayconductorElement()

Provides payment action methods.

<script>
  const {
    init,
    confirmPayment,
    validate,
    reset,
    getSelectedPaymentMethod,
    updateConfig,
    updateorderId,
    update,
    submit,
  } = usePayconductorElement();
</script>

| Method | Signature | Description | |--------|-----------|-------------| | init | (config: PayConductorConfig) => Promise<void> | Sends full config to the iframe | | confirmPayment | ({ orderId: string }) => Promise<PaymentResult> | Triggers payment confirmation in iframe | | validate | (data: unknown) => Promise<boolean> | Validates current form data | | reset | () => Promise<void> | Resets the payment form | | getSelectedPaymentMethod | () => PaymentMethod \| null | Returns the payment method selected by user | | updateConfig | (config: Partial<PayConductorConfig>) => void | Updates theme, locale, or paymentMethods | | updateorderId | (orderId: string) => void | Updates the order id in the iframe | | update | (options: UpdateOptions) => void | Updates billing details | | submit | () => Promise<SubmitResult> | Submits the form (validate + format) |

TypeScript

import type {
  PaymentResult,
  PaymentMethod,
  PayConductorTheme,
  PayConductorConfig,
  PaymentConfirmData,
} from '@payconductor/svelte';

License

MIT