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 🙏

© 2024 – Pkg Stats / Ryan Hefner

@userappstore/stripe-connect

v1.0.0

Published

[Dashboard](https://github.com/userappstore/dashboard) is a NodeJS project that provides a reusable account management system for web applications. This module adds a complete user and administrator `Private API` and `Web UI` for a [Stripe Connect](https

Downloads

25

Readme

Stripe Connect for Dashboard

Dashboard is a NodeJS project that provides a reusable account management system for web applications. This module adds a complete user and administrator Private API and Web UI for a Stripe Connect custom integration.

Access Connect information from your application server

| URL | Method | Querystring | POST data | |----------------------------------------------------------|--------|----------------|------------|
|/api/administrator/connect/account-stripe-accounts | GET | accountid= | | |/api/administrator/connect/account-stripe-accounts-count | GET | accountid= | | |/api/administrator/connect/delete-stripe-account | DELETE | stripeid= | | |/api/administrator/connect/payout | GET | payoutid= | | |/api/administrator/connect/payouts | GET | - | | |/api/administrator/connect/payouts-count | GET | - | | |/api/administrator/connect/set-stripe-account-rejected | PATCH | stripeid= | reason= | |/api/administrator/connect/stripe-account | GET | stripeid= | | |/api/administrator/connect/stripe-account-payouts | GET | stripeid= | | |/api/administrator/connect/stripe-account-payouts-count | GET | stripeid= | | |/api/administrator/connect/stripe-accounts | GET | - | | |/api/administrator/connect/stripe-accounts-count | GET | - | |
|/api/user/connect/additional-owner | GET | ownerid= | | |/api/user/connect/additional-owners | GET | stripeid= | | |/api/user/connect/additional-owners-count | GET | stripeid= | | |/api/user/connect/country-spec | GET | country= | | |/api/user/connect/country-specs | GET | - | | |/api/user/connect/create-additional-owner | POST | stripeid= | | |/api/user/connect/create-stripe-account | POST | accountid= | type=&country= | |/api/user/connect/delete-additional-owner | DELETE | ownerid= | | |/api/user/connect/delete-stripe-account | DELETE | stripeid= | | |/api/user/connect/payout | GET | payoutid= | | |/api/user/connect/payouts | GET | accountid= | | |/api/user/connect/payouts-count | GET | accountid= | | |/api/user/connect/resubmit-required-information | PATCH | stripeid= | | |/api/user/connect/reupload-identity-document | PATCH | stripeid= | | |/api/user/connect/reupload-owner-identity-document | PATCH | stripeid= | | |/api/user/connect/set-additional-owners-submitted | PATCH | stripeid= | | |/api/user/connect/set-company-registration-submitted | PATCH | stripeid= | | |/api/user/connect/set-individual-registration-submitted | PATCH | stripeid= | | |/api/user/connect/stripe-account | GET | stripeid= | | |/api/user/connect/stripe-account-payouts | GET | stripeid= | | |/api/user/connect/stripe-account-payouts-count | GET | stripeid= | | |/api/user/connect/stripe-accounts | GET | - | | |/api/user/connect/stripe-accounts-count | GET | - | | |/api/user/connect/update-additional-owner | PATCH | ownerid= | Identity & address | |/api/user/connect/update-company-registration | PATCH | stripeid= | Country-specific identity & address | |/api/user/connect/update-individual-registration | PATCH | stripeid= | Country-specific identity & address | |/api/user/connect/update-payment-information | PATCH | stripeid= | Country-specific banking fields |

Access Connect information from the dashboard server

| URL | Querystring | POST data | |-----------------------------------------------------------------|----------------|------------|
|/api/administrator/connect/AccountStripeAccounts.get(req) | accountid= | | |/api/administrator/connect/AccountStripeAccountsCount.get(req) | accountid= | | |/api/administrator/connect/DeleteStripeAccount.delete(req) | stripeid= | | |/api/administrator/connect/Payout.get(req) | payoutid= | | |/api/administrator/connect/Payouts.get(req) | - | | |/api/administrator/connect/PayoutsCount.get(req) | - | | |/api/administrator/connect/SetStripeAccountRejected.patch(req) | stripeid= | reason= | |/api/administrator/connect/StripeAccount.get(req) | stripeid= | | |/api/administrator/connect/StripeAccountPayouts.get(req) | stripeid= | | |/api/administrator/connect/StripeAccountPayoutsCount.get(req) | stripeid= | | |/api/administrator/connect/StripeAccounts.get(req) | - | | |/api/administrator/connect/StripeAccountsCount.get(req) | - | |
|/api/user/connect/AdditionalOwner.get(req) | ownerid= | | |/api/user/connect/AdditionalOwners.get(req) | stripeid= | | |/api/user/connect/AdditionalOwnersCount.get(req) | stripeid= | | |/api/user/connect/CountrySpec.get(req) | country= | | |/api/user/connect/CountrySpecs.get(req) | - | | |/api/user/connect/CreateAdditionalOwner.post(req) | stripeid= | | |/api/user/connect/CreateStripeAccount.post(req) | accountid= | type=&country= | |/api/user/connect/DeleteAdditionalOwner.delete(req) | ownerid= | | |/api/user/connect/DeleteStripeAccount.delete(req) | stripeid= | | |/api/user/connect/Payout.get(req) | payoutid= | | |/api/user/connect/Payouts.get(req) | accountid= | | |/api/user/connect/PayoutsCount.get(req) | accountid= | | |/api/user/connect/ResubmitRequiredInformation.patch(req) | stripeid= | | |/api/user/connect/ReuploadIdentity-document.patch(req) | stripeid= | | |/api/user/connect/ReuploadOwnerIdentity-document.patch(req) | stripeid= | | |/api/user/connect/SetAdditionalOwnersSubmitted.patch(req) | stripeid= | | |/api/user/connect/SetCompanyRegistrationSubmitted.patch(req) | stripeid= | | |/api/user/connect/SetIndividualRegistrationSubmitted.patch(req) | stripeid= | | |/api/user/connect/StripeAccount.get(req) | stripeid= | | |/api/user/connect/StripeAccountPayouts.get(req) | stripeid= | | |/api/user/connect/StripeAccountPayoutsCount.get(req) | stripeid= | | |/api/user/connect/StripeAccounts.get(req) | - | | |/api/user/connect/StripeAccountsCount.get(req) | - | | |/api/user/connect/UpdateAdditionalOwner.patch(req) | ownerid= | Identity & address | |/api/user/connect/UpdateCompanyRegistration.patch(req) | stripeid= | Country-specific identity & address | |/api/user/connect/UpdateIndividualRegistration.patch(req) | stripeid= | Country-specific identity & address | |/api/user/connect/UpdatePaymentInformation.patch(req) | stripeid= | Country-specific banking fields |

Dashboard

Dashboard is a NodeJS project that provides a reusable account management system for web applications.

Dashboard proxies your application server to create a single website where pages like signing in or changing your password are provided by Dashboard. Your application server can be anything you want, and use Dashboard's API to access data as required.

Using modules you can expand Dashboard to include organizations, subscriptions powered by Stripe, or a Stripe Connect platform.

Application servers written for Dashboard can be published on websites running our app store software like UserAppStore.

Demonstrations

License

This is free and unencumbered software released into the public domain. The MIT License is provided for countries that have not established a public domain.