Socket
Socket
Sign inDemoInstall

stripe-search-beta

Package Overview
Dependencies
17
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    stripe-search-beta

Stripe API wrapper


Version published
Weekly downloads
26
decreased by-36.59%
Maintainers
1
Install size
4.55 MB
Created
Weekly downloads
 

Readme

Source

stripe-search-beta

This is a branch of stripe-node specialized for the use of the Search API beta.

It is experimental, and support for this package will end on 2022-01-31.

It is branched off of the 8.174.0 release of stripe-node, and acts as a complete replacement for the library.

We publish a separate npm package, stripe-search-beta, with the contents of this branch.

To use it

$ npm uninstall stripe
$ npm install stripe-search-beta

And then inside your application code

-const stripe = require('stripe')("<your-api-key>")
+const stripe = require('stripe-search-beta')("<your-api-key>")

Version Header

Note, unlike the standard stripe client, which passes no stripe-version header by default, causing the requests to be subject to your account's global API version which is configured in the dashboard, the stripe-search-beta client passes 2020-08-27;search_api_beta=v1 as the default header on all requests, so these requests will not be subject to your account's global API version.

Contents

This branch adds support for the search method on the Charge, Customer, Invoice, PaymentIntent, and Subscription resources.

Example Usage (typescript):

const stripe = new Stripe(
  process.env.STRIPE_API_KEY,
  {
    apiVersion: "2020-08-27;search_api_beta=v1",
  }
);

await stripe.charges
  .search({
    query: 'metadata["foo"]:"bar"',
  })
  .autoPagingEach((matchingCharge: Stripe.Charge) => {
    console.log(matchingCharge.id);
  });

For more detailed usage instructions, see the README.md from the master branch of stripe-node.

Keywords

FAQs

Last updated on 27 Oct 2021

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc