You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

stripe-search-beta

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

stripe-search-beta

Stripe API wrapper

8.184.0
latest
Source
npmnpm
Version published
Weekly downloads
53
23.26%
Maintainers
1
Weekly downloads
 
Created
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

stripe

FAQs

Package last updated on 27 Oct 2021

Did you know?

Socket

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

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.