Skip to content

Commit c0ffd52

Browse files
committed
[FEATURE] Upgrade Pipedream Stripe App to Latest Stable API Version
1 parent ceb196f commit c0ffd52

File tree

58 files changed

+68
-69
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

58 files changed

+68
-69
lines changed

components/stripe/actions/cancel-or-reverse-payout/cancel-or-reverse-payout.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "stripe-cancel-or-reverse-payout",
55
name: "Cancel Or Reverse a Payout",
66
type: "action",
7-
version: "0.1.1",
7+
version: "0.1.2",
88
description: "Cancel or reverse a [payout](https://stripe.com/docs/payouts). " +
99
"A payout can be canceled only if it has not yet been paid out. A payout can be reversed " +
1010
"only if it has already been paid out. Funds will be refunded to your available balance. [See" +

components/stripe/actions/cancel-payment-intent/cancel-payment-intent.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
key: "stripe-cancel-payment-intent",
66
name: "Cancel a Payment Intent",
77
type: "action",
8-
version: "0.1.1",
8+
version: "0.1.2",
99
description: "Cancel a [payment intent](https://stripe.com/docs/payments/payment-intents). " +
1010
"Once canceled, no additional charges will be made by the payment intent and any operations " +
1111
"on the payment intent will fail with an error. For payment intents with status=" +

components/stripe/actions/capture-payment-intent/capture-payment-intent.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
key: "stripe-capture-payment-intent",
66
name: "Capture a Payment Intent",
77
type: "action",
8-
version: "0.1.1",
8+
version: "0.1.2",
99
description: "Capture the funds of an existing uncaptured payment intent. [See the " +
1010
"docs](https://stripe.com/docs/api/payment_intents/capture) for more information",
1111
props: {

components/stripe/actions/confirm-payment-intent/confirm-payment-intent.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
key: "stripe-confirm-payment-intent",
66
name: "Confirm a Payment Intent",
77
type: "action",
8-
version: "0.1.1",
8+
version: "0.1.2",
99
description: "Confirm that your customer intends to pay with current or provided payment " +
1010
"method. Upon confirmation, Stripe will attempt to initiate a payment. [See the " +
1111
"docs](https://stripe.com/docs/api/payment_intents/confirm) for more information",

components/stripe/actions/create-customer/create-customer.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
key: "stripe-create-customer",
66
name: "Create a Customer",
77
type: "action",
8-
version: "0.1.1",
8+
version: "0.1.2",
99
description: "Create a customer. [See the docs](https://stripe.com/docs/api/customers/create) " +
1010
"for more information",
1111
props: {

components/stripe/actions/create-invoice-item/create-invoice-item.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
key: "stripe-create-invoice-item",
66
name: "Create Invoice Line Item",
77
type: "action",
8-
version: "0.1.1",
8+
version: "0.1.2",
99
description: "Add a line item to an invoice. [See the " +
1010
"docs](https://stripe.com/docs/api/invoiceitems/create) for more information",
1111
props: {

components/stripe/actions/create-invoice/create-invoice.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
key: "stripe-create-invoice",
66
name: "Create Invoice",
77
type: "action",
8-
version: "0.1.1",
8+
version: "0.1.2",
99
description: "Create an invoice. [See the docs](https://stripe.com/docs/api/invoices/create) " +
1010
"for more information",
1111
props: {

components/stripe/actions/create-payment-intent/create-payment-intent.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
key: "stripe-create-payment-intent",
66
name: "Create a Payment Intent",
77
type: "action",
8-
version: "0.1.1",
8+
version: "0.1.2",
99
description: "Create a [payment intent](https://stripe.com/docs/payments/payment-intents). [See" +
1010
"the docs](https://stripe.com/docs/api/payment_intents/create) for more information",
1111
props: {

components/stripe/actions/create-payout/create-payout.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
key: "stripe-create-payout",
66
name: "Create a Payout",
77
type: "action",
8-
version: "0.1.1",
8+
version: "0.1.2",
99
description: "Send funds to your own bank account. Your Stripe balance must be able to cover " +
1010
"the payout amount, or you'll receive an 'Insufficient Funds' error. [See the " +
1111
"docs](https://stripe.com/docs/api/payouts/create) for more information",

components/stripe/actions/create-price/create-price.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "stripe-create-price",
55
name: "Create Price",
66
description: "Creates a new price for an existing product. The price can be recurring or one-time. [See the documentation](https://stripe.com/docs/api/prices/create)",
7-
version: "0.0.2",
7+
version: "0.0.3",
88
type: "action",
99
props: {
1010
app,

components/stripe/actions/create-product/create-product.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "stripe-create-product",
55
name: "Create Product",
66
description: "Creates a new product object in Stripe. [See the documentation](https://stripe.com/docs/api/products/create)",
7-
version: "0.0.2",
7+
version: "0.0.3",
88
type: "action",
99
props: {
1010
app,

components/stripe/actions/create-refund/create-refund.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
key: "stripe-create-refund",
66
name: "Create a Refund",
77
type: "action",
8-
version: "0.1.1",
8+
version: "0.1.2",
99
description: "Creating a new refund will refund a charge that has previously been created but " +
1010
"not yet refunded. Funds will be refunded to the credit or debit card that was originally " +
1111
"charged. You can optionally refund only part of a charge. You can do so multiple times, " +

components/stripe/actions/create-subscription/create-subscription.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
key: "stripe-create-subscription",
66
name: "Create Subscription",
77
type: "action",
8-
version: "0.1.1",
8+
version: "0.1.2",
99
description: "Create a subscription. [See docs here](https://stripe.com/docs/api/subscriptions/create)",
1010
props: {
1111
stripe,

components/stripe/actions/create-usage-record/create-usage-record.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export default {
66
key: "stripe-create-usage-record",
77
name: "Create a Usage Record",
88
type: "action",
9-
version: "0.1.1",
9+
version: "0.1.2",
1010
description: "With metered billing, you charge your customers based on their consumption of " +
1111
"your service during the billing cycle, instead of explicitly setting quantities. Use this " +
1212
" action to create a usage record for metered billing. [See the " +

components/stripe/actions/delete-customer/delete-customer.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "stripe-delete-customer",
55
name: "Delete a Customer",
66
type: "action",
7-
version: "0.1.1",
7+
version: "0.1.2",
88
description: "Delete a customer. [See the docs](https://stripe.com/docs/api/customers/delete) " +
99
"for more information",
1010
props: {

components/stripe/actions/delete-invoice-item/delete-invoice-item.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "stripe-delete-invoice-item",
55
name: "Delete Invoice Line Item",
66
type: "action",
7-
version: "0.1.1",
7+
version: "0.1.2",
88
description: "Delete a line item from an invoice. [See the " +
99
"docs](https://stripe.com/docs/api/invoiceitems/delete) for more information",
1010
props: {

components/stripe/actions/delete-or-void-invoice/delete-or-void-invoice.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "stripe-delete-or-void-invoice",
55
name: "Delete Or Void Invoice",
66
type: "action",
7-
version: "0.1.1",
7+
version: "0.1.2",
88
description: "Delete a draft invoice, or void a non-draft or subscription invoice. [See the " +
99
"docs](https://stripe.com/docs/api/invoiceitems/delete) for more information",
1010
props: {

components/stripe/actions/finalize-invoice/finalize-invoice.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
key: "stripe-finalize-invoice",
66
name: "Finalize Draft Invoice",
77
type: "action",
8-
version: "0.1.1",
8+
version: "0.1.2",
99
description: "Finalize a draft invoice. [See the " +
1010
"docs](https://stripe.com/docs/api/invoices/finalize) for more information",
1111
props: {

components/stripe/actions/list-balance-history/list-balance-history.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
key: "stripe-list-balance-history",
66
name: "List Balance History",
77
type: "action",
8-
version: "0.1.1",
8+
version: "0.1.2",
99
description: "Returns the last 100 transactions that have contributed to the Stripe account " +
1010
"balance (e.g., charges, transfers, and so forth). The transactions are returned in " +
1111
"sorted order, with the most recent transactions appearing first. [See the " +

components/stripe/actions/list-customers/list-customers.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
key: "stripe-list-customers",
66
name: "List Customers",
77
type: "action",
8-
version: "0.1.1",
8+
version: "0.1.2",
99
description: "Find or list customers. [See the " +
1010
"docs](https://stripe.com/docs/api/customers/list) for more information",
1111
props: {

components/stripe/actions/list-invoices/list-invoices.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
key: "stripe-list-invoices",
66
name: "List Invoices",
77
type: "action",
8-
version: "0.1.1",
8+
version: "0.1.2",
99
description: "Find or list invoices. [See the docs](https://stripe.com/docs/api/invoices/list) " +
1010
"for more information",
1111
props: {

components/stripe/actions/list-payment-intents/list-payment-intents.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
key: "stripe-list-payment-intents",
66
name: "List Payment Intents",
77
type: "action",
8-
version: "0.1.1",
8+
version: "0.1.2",
99
description: "Retrieves a list of " +
1010
"[payment intent](https://stripe.com/docs/payments/payment-intents) that were previously " +
1111
"created. [See the docs](https://stripe.com/docs/api/payment_intents/list) for more " +

components/stripe/actions/list-payouts/list-payouts.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
key: "stripe-list-payouts",
66
name: "List Payouts",
77
type: "action",
8-
version: "0.1.1",
8+
version: "0.1.2",
99
description: "Find or list payouts. [See the docs](https://stripe.com/docs/api/payouts/list) " +
1010
"for more information",
1111
props: {

components/stripe/actions/list-refunds/list-refunds.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
key: "stripe-list-refunds",
66
name: "List Refunds",
77
type: "action",
8-
version: "0.1.1",
8+
version: "0.1.2",
99
description: "Find or list refunds. [See the docs](https://stripe.com/docs/api/refunds/list) " +
1010
"for more information",
1111
props: {

components/stripe/actions/retrieve-balance/retrieve-balance.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "stripe-retrieve-balance",
55
name: "Retrieve the Current Balance",
66
type: "action",
7-
version: "0.1.1",
7+
version: "0.1.2",
88
description: "Retrieves the current account balance, based on the authentication that was used " +
99
"to make the request. [See the docs](https://stripe.com/docs/api/balance/balance_retrieve) " +
1010
"for more information",

components/stripe/actions/retrieve-checkout-session-line-items/retrieve-checkout-session-line-items.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
name: "Retrieve Checkout Session Line Items",
55
description: "Given a checkout session ID, retrieve the line items. [See the docs](https://stripe.com/docs/api/checkout/sessions/line_items)",
66
key: "stripe-retrieve-checkout-session-line-items",
7-
version: "0.1.1",
7+
version: "0.1.2",
88
type: "action",
99
props: {
1010
app,

components/stripe/actions/retrieve-checkout-session/retrieve-checkout-session.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "stripe-retrieve-checkout-session",
55
name: "Retrieve a Checkout Session",
66
type: "action",
7-
version: "0.1.1",
7+
version: "0.1.2",
88
description: "A Checkout Session represents your customer's session as they pay for one-time " +
99
"purchases or subscriptions through Stripe Checkout. [See the " +
1010
"docs](https://stripe.com/docs/api/checkout/sessions/retrieve) for more information",

components/stripe/actions/retrieve-customer/retrieve-customer.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "stripe-retrieve-customer",
55
name: "Retrieve a Customer",
66
type: "action",
7-
version: "0.1.1",
7+
version: "0.1.2",
88
description: "Retrieves the details of an existing customer. [See the " +
99
"docs](https://stripe.com/docs/api/customers/retrieve) for more information",
1010
props: {

components/stripe/actions/retrieve-invoice-item/retrieve-invoice-item.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "stripe-retrieve-invoice-item",
55
name: "Retrieve Invoice Line Item",
66
type: "action",
7-
version: "0.1.1",
7+
version: "0.1.2",
88
description: "Retrieve a single line item on an invoice. [See the " +
99
"docs](https://stripe.com/docs/api/invoiceitems/retrieve) for more information",
1010
props: {

components/stripe/actions/retrieve-invoice/retrieve-invoice.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "stripe-retrieve-invoice",
55
name: "Retrieve an Invoice",
66
type: "action",
7-
version: "0.1.1",
7+
version: "0.1.2",
88
description: "Retrieves the details of an existing invoice. [See the " +
99
"docs](https://stripe.com/docs/api/invoices/retrieve) for more information",
1010
props: {

components/stripe/actions/retrieve-payment-intent/retrieve-payment-intent.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "stripe-retrieve-payment-intent",
55
name: "Retrieve a Payment Intent",
66
type: "action",
7-
version: "0.1.1",
7+
version: "0.1.2",
88
description: "Retrieves the details of a " +
99
"[payment intent](https://stripe.com/docs/payments/payment-intents) that was previously " +
1010
"created. [See the docs](https://stripe.com/docs/api/payment_intents/retrieve) for more " +

components/stripe/actions/retrieve-payout/retrieve-payout.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "stripe-retrieve-payout",
55
name: "Retrieve a Payout",
66
type: "action",
7-
version: "0.1.1",
7+
version: "0.1.2",
88
description: "Retrieves the details of an existing payout. [See the " +
99
"docs](https://stripe.com/docs/api/payouts/retrieve) for more information",
1010
props: {

components/stripe/actions/retrieve-price/retrieve-price.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "stripe-retrieve-price",
55
name: "Retrieve a Price",
66
type: "action",
7-
version: "0.1.1",
7+
version: "0.1.2",
88
description: "Retrieves the details of an existing product price. [See the " +
99
"docs](https://stripe.com/docs/api/prices/retrieve) for more information",
1010
props: {

components/stripe/actions/retrieve-product/retrieve-product.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
name: "Retrieve Product",
55
description: "Retrieve a product by ID. [See the docs](https://stripe.com/docs/api/products/retrieve)",
66
key: "stripe-retrieve-product",
7-
version: "0.1.1",
7+
version: "0.1.2",
88
type: "action",
99
props: {
1010
app,

components/stripe/actions/retrieve-refund/retrieve-refund.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "stripe-retrieve-refund",
55
name: "Retrieve a Refund",
66
type: "action",
7-
version: "0.1.1",
7+
version: "0.1.2",
88
description: "Retrieves the details of an existing refund. [See the " +
99
"docs](https://stripe.com/docs/api/refunds/retrieve) for more information",
1010
props: {

components/stripe/actions/send-invoice/send-invoice.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "stripe-send-invoice",
55
name: "Send Invoice",
66
type: "action",
7-
version: "0.1.1",
7+
version: "0.1.2",
88
description: "Manually send an invoice to your customer out of the normal schedule for payment " +
99
"(note that no emails are actually sent in test mode). [See the " +
1010
"docs](https://stripe.com/docs/api/invoices/send) for more information",

components/stripe/actions/update-customer/update-customer.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
key: "stripe-update-customer",
66
name: "Update a Customer",
77
type: "action",
8-
version: "0.1.1",
8+
version: "0.1.2",
99
description: "Update a customer. [See the docs](https://stripe.com/docs/api/customers/update) " +
1010
"for more information",
1111
props: {

components/stripe/actions/update-invoice-item/update-invoice-item.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
key: "stripe-update-invoice-item",
66
name: "Update Invoice Line Item",
77
type: "action",
8-
version: "0.1.1",
8+
version: "0.1.2",
99
description: "Update an invoice line item. [See the " +
1010
"docs](https://stripe.com/docs/api/invoiceitems/update) for more information",
1111
props: {

components/stripe/actions/update-invoice/update-invoice.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
key: "stripe-update-invoice",
66
name: "Update Invoice",
77
type: "action",
8-
version: "0.1.1",
8+
version: "0.1.2",
99
description: "Update an invoice. [See the docs](https://stripe.com/docs/api/invoices/update) " +
1010
"for more information",
1111
props: {

components/stripe/actions/update-payment-intent/update-payment-intent.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export default {
66
key: "stripe-update-payment-intent",
77
name: "Update a Payment Intent",
88
type: "action",
9-
version: "0.1.1",
9+
version: "0.1.2",
1010
description: "Update a [payment intent](https://stripe.com/docs/payments/payment-intents). [See" +
1111
" the docs](https://stripe.com/docs/api/payment_intents/update) for more information",
1212
props: {

components/stripe/actions/update-payout/update-payout.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "stripe-update-payout",
55
name: "Update a Payout",
66
type: "action",
7-
version: "0.1.1",
7+
version: "0.1.2",
88
description: "Update the metadata on a payout. [See the " +
99
"docs](https://stripe.com/docs/api/payouts/update) for more information",
1010
props: {

components/stripe/actions/update-refund/update-refund.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "stripe-update-refund",
55
name: "Update a Refund",
66
type: "action",
7-
version: "0.1.1",
7+
version: "0.1.2",
88
description: "Update the metadata on a refund. [See the " +
99
"docs](https://stripe.com/docs/api/refunds/update) for more information",
1010
props: {

components/stripe/actions/void-invoice/void-invoice.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "stripe-void-invoice",
55
name: "Void Invoice",
66
type: "action",
7-
version: "0.1.1",
7+
version: "0.1.2",
88
description: "Void an invoice. [See the docs](https://stripe.com/docs/api/invoices/void) for " +
99
"more information",
1010
props: {

components/stripe/actions/write-off-invoice/write-off-invoice.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "stripe-write-off-invoice",
55
name: "Write Off Invoice",
66
type: "action",
7-
version: "0.1.1",
7+
version: "0.1.2",
88
description: "Mark an invoice as uncollectible. [See the " +
99
"docs](https://stripe.com/docs/api/invoices/mark_uncollectible) for more information",
1010
props: {

0 commit comments

Comments
 (0)