diff --git a/components/stripe/actions/cancel-or-reverse-payout/cancel-or-reverse-payout.mjs b/components/stripe/actions/cancel-or-reverse-payout/cancel-or-reverse-payout.mjs index 28fe8b817479c..83611910e973a 100644 --- a/components/stripe/actions/cancel-or-reverse-payout/cancel-or-reverse-payout.mjs +++ b/components/stripe/actions/cancel-or-reverse-payout/cancel-or-reverse-payout.mjs @@ -4,7 +4,7 @@ export default { key: "stripe-cancel-or-reverse-payout", name: "Cancel Or Reverse a Payout", type: "action", - version: "0.1.0", + version: "0.1.1", description: "Cancel or reverse a [payout](https://stripe.com/docs/payouts). " + "A payout can be canceled only if it has not yet been paid out. A payout can be reversed " + "only if it has already been paid out. Funds will be refunded to your available balance. [See" + diff --git a/components/stripe/actions/cancel-payment-intent/cancel-payment-intent.mjs b/components/stripe/actions/cancel-payment-intent/cancel-payment-intent.mjs index 1a6f115877aee..758bd902e9532 100644 --- a/components/stripe/actions/cancel-payment-intent/cancel-payment-intent.mjs +++ b/components/stripe/actions/cancel-payment-intent/cancel-payment-intent.mjs @@ -5,7 +5,7 @@ export default { key: "stripe-cancel-payment-intent", name: "Cancel a Payment Intent", type: "action", - version: "0.1.0", + version: "0.1.1", description: "Cancel a [payment intent](https://stripe.com/docs/payments/payment-intents). " + "Once canceled, no additional charges will be made by the payment intent and any operations " + "on the payment intent will fail with an error. For payment intents with status=" + diff --git a/components/stripe/actions/capture-payment-intent/capture-payment-intent.mjs b/components/stripe/actions/capture-payment-intent/capture-payment-intent.mjs index ae350d3345450..a625f25227888 100644 --- a/components/stripe/actions/capture-payment-intent/capture-payment-intent.mjs +++ b/components/stripe/actions/capture-payment-intent/capture-payment-intent.mjs @@ -5,7 +5,7 @@ export default { key: "stripe-capture-payment-intent", name: "Capture a Payment Intent", type: "action", - version: "0.1.0", + version: "0.1.1", description: "Capture the funds of an existing uncaptured payment intent. [See the " + "docs](https://stripe.com/docs/api/payment_intents/capture) for more information", props: { diff --git a/components/stripe/actions/confirm-payment-intent/confirm-payment-intent.mjs b/components/stripe/actions/confirm-payment-intent/confirm-payment-intent.mjs index 36c959be44f3e..f95d0c82ba0be 100644 --- a/components/stripe/actions/confirm-payment-intent/confirm-payment-intent.mjs +++ b/components/stripe/actions/confirm-payment-intent/confirm-payment-intent.mjs @@ -5,7 +5,7 @@ export default { key: "stripe-confirm-payment-intent", name: "Confirm a Payment Intent", type: "action", - version: "0.1.0", + version: "0.1.1", description: "Confirm that your customer intends to pay with current or provided payment " + "method. Upon confirmation, Stripe will attempt to initiate a payment. [See the " + "docs](https://stripe.com/docs/api/payment_intents/confirm) for more information", diff --git a/components/stripe/actions/create-customer/create-customer.mjs b/components/stripe/actions/create-customer/create-customer.mjs index d1e871c6dfd4e..887b2c997b4d9 100644 --- a/components/stripe/actions/create-customer/create-customer.mjs +++ b/components/stripe/actions/create-customer/create-customer.mjs @@ -5,7 +5,7 @@ export default { key: "stripe-create-customer", name: "Create a Customer", type: "action", - version: "0.1.0", + version: "0.1.1", description: "Create a customer. [See the docs](https://stripe.com/docs/api/customers/create) " + "for more information", props: { diff --git a/components/stripe/actions/create-invoice-item/create-invoice-item.mjs b/components/stripe/actions/create-invoice-item/create-invoice-item.mjs index ec27ec811a725..9beae30cab7a3 100644 --- a/components/stripe/actions/create-invoice-item/create-invoice-item.mjs +++ b/components/stripe/actions/create-invoice-item/create-invoice-item.mjs @@ -5,7 +5,7 @@ export default { key: "stripe-create-invoice-item", name: "Create Invoice Line Item", type: "action", - version: "0.1.0", + version: "0.1.1", description: "Add a line item to an invoice. [See the " + "docs](https://stripe.com/docs/api/invoiceitems/create) for more information", props: { diff --git a/components/stripe/actions/create-invoice/create-invoice.mjs b/components/stripe/actions/create-invoice/create-invoice.mjs index 32fd794f0d4da..eab80e34f9ba8 100644 --- a/components/stripe/actions/create-invoice/create-invoice.mjs +++ b/components/stripe/actions/create-invoice/create-invoice.mjs @@ -5,7 +5,7 @@ export default { key: "stripe-create-invoice", name: "Create Invoice", type: "action", - version: "0.1.0", + version: "0.1.1", description: "Create an invoice. [See the docs](https://stripe.com/docs/api/invoices/create) " + "for more information", props: { @@ -81,7 +81,7 @@ export default { }, }, async run({ $ }) { - const resp = await this.app.sdk().invoices.create({ + const resp = await this.app.sdk("2022-11-15").invoices.create({ ...pick(this, [ "customer", "subscription", diff --git a/components/stripe/actions/create-payment-intent/create-payment-intent.mjs b/components/stripe/actions/create-payment-intent/create-payment-intent.mjs index 6fa4946c2fbff..13ee2ef18a3e4 100644 --- a/components/stripe/actions/create-payment-intent/create-payment-intent.mjs +++ b/components/stripe/actions/create-payment-intent/create-payment-intent.mjs @@ -5,7 +5,7 @@ export default { key: "stripe-create-payment-intent", name: "Create a Payment Intent", type: "action", - version: "0.1.0", + version: "0.1.1", description: "Create a [payment intent](https://stripe.com/docs/payments/payment-intents). [See" + "the docs](https://stripe.com/docs/api/payment_intents/create) for more information", props: { diff --git a/components/stripe/actions/create-payout/create-payout.mjs b/components/stripe/actions/create-payout/create-payout.mjs index 521d633b6f696..9597d8db1fe71 100644 --- a/components/stripe/actions/create-payout/create-payout.mjs +++ b/components/stripe/actions/create-payout/create-payout.mjs @@ -5,7 +5,7 @@ export default { key: "stripe-create-payout", name: "Create a Payout", type: "action", - version: "0.1.0", + version: "0.1.1", description: "Send funds to your own bank account. Your Stripe balance must be able to cover " + "the payout amount, or you'll receive an 'Insufficient Funds' error. [See the " + "docs](https://stripe.com/docs/api/payouts/create) for more information", diff --git a/components/stripe/actions/create-price/create-price.mjs b/components/stripe/actions/create-price/create-price.mjs index e84af16dda13e..7eebc746c44a3 100644 --- a/components/stripe/actions/create-price/create-price.mjs +++ b/components/stripe/actions/create-price/create-price.mjs @@ -4,7 +4,7 @@ export default { key: "stripe-create-price", name: "Create Price", 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)", - version: "0.0.1", + version: "0.0.2", type: "action", props: { app, diff --git a/components/stripe/actions/create-product/create-product.mjs b/components/stripe/actions/create-product/create-product.mjs index 174a1f14fef04..6ce74df4797bc 100644 --- a/components/stripe/actions/create-product/create-product.mjs +++ b/components/stripe/actions/create-product/create-product.mjs @@ -4,7 +4,7 @@ export default { key: "stripe-create-product", name: "Create Product", description: "Creates a new product object in Stripe. [See the documentation](https://stripe.com/docs/api/products/create)", - version: "0.0.1", + version: "0.0.2", type: "action", props: { app, diff --git a/components/stripe/actions/create-refund/create-refund.mjs b/components/stripe/actions/create-refund/create-refund.mjs index 0db7c61d3d5e9..f709a479db40c 100644 --- a/components/stripe/actions/create-refund/create-refund.mjs +++ b/components/stripe/actions/create-refund/create-refund.mjs @@ -5,7 +5,7 @@ export default { key: "stripe-create-refund", name: "Create a Refund", type: "action", - version: "0.1.0", + version: "0.1.1", description: "Creating a new refund will refund a charge that has previously been created but " + "not yet refunded. Funds will be refunded to the credit or debit card that was originally " + "charged. You can optionally refund only part of a charge. You can do so multiple times, " + diff --git a/components/stripe/actions/create-subscription/create-subscription.mjs b/components/stripe/actions/create-subscription/create-subscription.mjs index fa2b70f02399b..b40dac9e4e692 100644 --- a/components/stripe/actions/create-subscription/create-subscription.mjs +++ b/components/stripe/actions/create-subscription/create-subscription.mjs @@ -5,7 +5,7 @@ export default { key: "stripe-create-subscription", name: "Create Subscription", type: "action", - version: "0.1.0", + version: "0.1.1", description: "Create a subscription. [See docs here](https://stripe.com/docs/api/subscriptions/create)", props: { stripe, diff --git a/components/stripe/actions/create-usage-record/create-usage-record.mjs b/components/stripe/actions/create-usage-record/create-usage-record.mjs index bf8d4d569dd7e..1f29a82b8f012 100644 --- a/components/stripe/actions/create-usage-record/create-usage-record.mjs +++ b/components/stripe/actions/create-usage-record/create-usage-record.mjs @@ -6,7 +6,7 @@ export default { key: "stripe-create-usage-record", name: "Create a Usage Record", type: "action", - version: "0.1.0", + version: "0.1.1", description: "With metered billing, you charge your customers based on their consumption of " + "your service during the billing cycle, instead of explicitly setting quantities. Use this " + " action to create a usage record for metered billing. [See the " + diff --git a/components/stripe/actions/delete-customer/delete-customer.mjs b/components/stripe/actions/delete-customer/delete-customer.mjs index c555cac461ecf..ce0aa23a3e325 100644 --- a/components/stripe/actions/delete-customer/delete-customer.mjs +++ b/components/stripe/actions/delete-customer/delete-customer.mjs @@ -4,7 +4,7 @@ export default { key: "stripe-delete-customer", name: "Delete a Customer", type: "action", - version: "0.1.0", + version: "0.1.1", description: "Delete a customer. [See the docs](https://stripe.com/docs/api/customers/delete) " + "for more information", props: { diff --git a/components/stripe/actions/delete-invoice-item/delete-invoice-item.mjs b/components/stripe/actions/delete-invoice-item/delete-invoice-item.mjs index d7b556416bdd0..227b195b47f0e 100644 --- a/components/stripe/actions/delete-invoice-item/delete-invoice-item.mjs +++ b/components/stripe/actions/delete-invoice-item/delete-invoice-item.mjs @@ -4,7 +4,7 @@ export default { key: "stripe-delete-invoice-item", name: "Delete Invoice Line Item", type: "action", - version: "0.1.0", + version: "0.1.1", description: "Delete a line item from an invoice. [See the " + "docs](https://stripe.com/docs/api/invoiceitems/delete) for more information", props: { diff --git a/components/stripe/actions/delete-or-void-invoice/delete-or-void-invoice.mjs b/components/stripe/actions/delete-or-void-invoice/delete-or-void-invoice.mjs index ba8b077e46f69..24af79885f55f 100644 --- a/components/stripe/actions/delete-or-void-invoice/delete-or-void-invoice.mjs +++ b/components/stripe/actions/delete-or-void-invoice/delete-or-void-invoice.mjs @@ -4,7 +4,7 @@ export default { key: "stripe-delete-or-void-invoice", name: "Delete Or Void Invoice", type: "action", - version: "0.1.0", + version: "0.1.1", description: "Delete a draft invoice, or void a non-draft or subscription invoice. [See the " + "docs](https://stripe.com/docs/api/invoiceitems/delete) for more information", props: { diff --git a/components/stripe/actions/finalize-invoice/finalize-invoice.mjs b/components/stripe/actions/finalize-invoice/finalize-invoice.mjs index c754d617eb736..d1fed38115957 100644 --- a/components/stripe/actions/finalize-invoice/finalize-invoice.mjs +++ b/components/stripe/actions/finalize-invoice/finalize-invoice.mjs @@ -5,7 +5,7 @@ export default { key: "stripe-finalize-invoice", name: "Finalize Draft Invoice", type: "action", - version: "0.1.0", + version: "0.1.1", description: "Finalize a draft invoice. [See the " + "docs](https://stripe.com/docs/api/invoices/finalize) for more information", props: { diff --git a/components/stripe/actions/list-balance-history/list-balance-history.mjs b/components/stripe/actions/list-balance-history/list-balance-history.mjs index 0a31a5e9fe372..3ba8961b10066 100644 --- a/components/stripe/actions/list-balance-history/list-balance-history.mjs +++ b/components/stripe/actions/list-balance-history/list-balance-history.mjs @@ -5,7 +5,7 @@ export default { key: "stripe-list-balance-history", name: "List Balance History", type: "action", - version: "0.1.0", + version: "0.1.1", description: "Returns the last 100 transactions that have contributed to the Stripe account " + "balance (e.g., charges, transfers, and so forth). The transactions are returned in " + "sorted order, with the most recent transactions appearing first. [See the " + diff --git a/components/stripe/actions/list-customers/list-customers.mjs b/components/stripe/actions/list-customers/list-customers.mjs index 13a06c3019189..85c0af05262f0 100644 --- a/components/stripe/actions/list-customers/list-customers.mjs +++ b/components/stripe/actions/list-customers/list-customers.mjs @@ -5,7 +5,7 @@ export default { key: "stripe-list-customers", name: "List Customers", type: "action", - version: "0.1.0", + version: "0.1.1", description: "Find or list customers. [See the " + "docs](https://stripe.com/docs/api/customers/list) for more information", props: { diff --git a/components/stripe/actions/list-invoices/list-invoices.mjs b/components/stripe/actions/list-invoices/list-invoices.mjs index 96036a1576d66..d0c64d1c4796c 100644 --- a/components/stripe/actions/list-invoices/list-invoices.mjs +++ b/components/stripe/actions/list-invoices/list-invoices.mjs @@ -5,7 +5,7 @@ export default { key: "stripe-list-invoices", name: "List Invoices", type: "action", - version: "0.1.0", + version: "0.1.1", description: "Find or list invoices. [See the docs](https://stripe.com/docs/api/invoices/list) " + "for more information", props: { diff --git a/components/stripe/actions/list-payment-intents/list-payment-intents.mjs b/components/stripe/actions/list-payment-intents/list-payment-intents.mjs index 605759174a094..2dc0ce6f3f227 100644 --- a/components/stripe/actions/list-payment-intents/list-payment-intents.mjs +++ b/components/stripe/actions/list-payment-intents/list-payment-intents.mjs @@ -5,7 +5,7 @@ export default { key: "stripe-list-payment-intents", name: "List Payment Intents", type: "action", - version: "0.1.0", + version: "0.1.1", description: "Retrieves a list of " + "[payment intent](https://stripe.com/docs/payments/payment-intents) that were previously " + "created. [See the docs](https://stripe.com/docs/api/payment_intents/list) for more " + diff --git a/components/stripe/actions/list-payouts/list-payouts.mjs b/components/stripe/actions/list-payouts/list-payouts.mjs index 25eac332796b8..c36a65c949ccc 100644 --- a/components/stripe/actions/list-payouts/list-payouts.mjs +++ b/components/stripe/actions/list-payouts/list-payouts.mjs @@ -5,7 +5,7 @@ export default { key: "stripe-list-payouts", name: "List Payouts", type: "action", - version: "0.1.0", + version: "0.1.1", description: "Find or list payouts. [See the docs](https://stripe.com/docs/api/payouts/list) " + "for more information", props: { diff --git a/components/stripe/actions/list-refunds/list-refunds.mjs b/components/stripe/actions/list-refunds/list-refunds.mjs index 97d3a42fe1ed1..ba5c3c5212e3f 100644 --- a/components/stripe/actions/list-refunds/list-refunds.mjs +++ b/components/stripe/actions/list-refunds/list-refunds.mjs @@ -5,7 +5,7 @@ export default { key: "stripe-list-refunds", name: "List Refunds", type: "action", - version: "0.1.0", + version: "0.1.1", description: "Find or list refunds. [See the docs](https://stripe.com/docs/api/refunds/list) " + "for more information", props: { diff --git a/components/stripe/actions/retrieve-balance/retrieve-balance.mjs b/components/stripe/actions/retrieve-balance/retrieve-balance.mjs index 65568dda7458b..36000c93ffa04 100644 --- a/components/stripe/actions/retrieve-balance/retrieve-balance.mjs +++ b/components/stripe/actions/retrieve-balance/retrieve-balance.mjs @@ -4,7 +4,7 @@ export default { key: "stripe-retrieve-balance", name: "Retrieve the Current Balance", type: "action", - version: "0.1.0", + version: "0.1.1", description: "Retrieves the current account balance, based on the authentication that was used " + "to make the request. [See the docs](https://stripe.com/docs/api/balance/balance_retrieve) " + "for more information", diff --git a/components/stripe/actions/retrieve-checkout-session-line-items/retrieve-checkout-session-line-items.mjs b/components/stripe/actions/retrieve-checkout-session-line-items/retrieve-checkout-session-line-items.mjs index 6576de987f27c..5ed2993478fa3 100644 --- a/components/stripe/actions/retrieve-checkout-session-line-items/retrieve-checkout-session-line-items.mjs +++ b/components/stripe/actions/retrieve-checkout-session-line-items/retrieve-checkout-session-line-items.mjs @@ -4,7 +4,7 @@ export default { name: "Retrieve Checkout Session Line Items", description: "Given a checkout session ID, retrieve the line items. [See the docs](https://stripe.com/docs/api/checkout/sessions/line_items)", key: "stripe-retrieve-checkout-session-line-items", - version: "0.1.0", + version: "0.1.1", type: "action", props: { app, diff --git a/components/stripe/actions/retrieve-checkout-session/retrieve-checkout-session.mjs b/components/stripe/actions/retrieve-checkout-session/retrieve-checkout-session.mjs index 7c39fbe8bd851..5cea8744595cc 100644 --- a/components/stripe/actions/retrieve-checkout-session/retrieve-checkout-session.mjs +++ b/components/stripe/actions/retrieve-checkout-session/retrieve-checkout-session.mjs @@ -4,7 +4,7 @@ export default { key: "stripe-retrieve-checkout-session", name: "Retrieve a Checkout Session", type: "action", - version: "0.1.0", + version: "0.1.1", description: "A Checkout Session represents your customer's session as they pay for one-time " + "purchases or subscriptions through Stripe Checkout. [See the " + "docs](https://stripe.com/docs/api/checkout/sessions/retrieve) for more information", diff --git a/components/stripe/actions/retrieve-customer/retrieve-customer.mjs b/components/stripe/actions/retrieve-customer/retrieve-customer.mjs index 494179f90ea80..2cf9b73af3bfc 100644 --- a/components/stripe/actions/retrieve-customer/retrieve-customer.mjs +++ b/components/stripe/actions/retrieve-customer/retrieve-customer.mjs @@ -4,7 +4,7 @@ export default { key: "stripe-retrieve-customer", name: "Retrieve a Customer", type: "action", - version: "0.1.0", + version: "0.1.1", description: "Retrieves the details of an existing customer. [See the " + "docs](https://stripe.com/docs/api/customers/retrieve) for more information", props: { diff --git a/components/stripe/actions/retrieve-invoice-item/retrieve-invoice-item.mjs b/components/stripe/actions/retrieve-invoice-item/retrieve-invoice-item.mjs index b3f9e5ae5ee42..95d4aec65cdbf 100644 --- a/components/stripe/actions/retrieve-invoice-item/retrieve-invoice-item.mjs +++ b/components/stripe/actions/retrieve-invoice-item/retrieve-invoice-item.mjs @@ -4,7 +4,7 @@ export default { key: "stripe-retrieve-invoice-item", name: "Retrieve Invoice Line Item", type: "action", - version: "0.1.0", + version: "0.1.1", description: "Retrieve a single line item on an invoice. [See the " + "docs](https://stripe.com/docs/api/invoiceitems/retrieve) for more information", props: { diff --git a/components/stripe/actions/retrieve-invoice/retrieve-invoice.mjs b/components/stripe/actions/retrieve-invoice/retrieve-invoice.mjs index 14354c9f4f084..20adae191fc99 100644 --- a/components/stripe/actions/retrieve-invoice/retrieve-invoice.mjs +++ b/components/stripe/actions/retrieve-invoice/retrieve-invoice.mjs @@ -4,7 +4,7 @@ export default { key: "stripe-retrieve-invoice", name: "Retrieve an Invoice", type: "action", - version: "0.1.0", + version: "0.1.1", description: "Retrieves the details of an existing invoice. [See the " + "docs](https://stripe.com/docs/api/invoices/retrieve) for more information", props: { diff --git a/components/stripe/actions/retrieve-payment-intent/retrieve-payment-intent.mjs b/components/stripe/actions/retrieve-payment-intent/retrieve-payment-intent.mjs index abe62cafb88b5..7af3eccc91ac1 100644 --- a/components/stripe/actions/retrieve-payment-intent/retrieve-payment-intent.mjs +++ b/components/stripe/actions/retrieve-payment-intent/retrieve-payment-intent.mjs @@ -4,7 +4,7 @@ export default { key: "stripe-retrieve-payment-intent", name: "Retrieve a Payment Intent", type: "action", - version: "0.1.0", + version: "0.1.1", description: "Retrieves the details of a " + "[payment intent](https://stripe.com/docs/payments/payment-intents) that was previously " + "created. [See the docs](https://stripe.com/docs/api/payment_intents/retrieve) for more " + diff --git a/components/stripe/actions/retrieve-payout/retrieve-payout.mjs b/components/stripe/actions/retrieve-payout/retrieve-payout.mjs index e9dffa7c513c3..311ef084190be 100644 --- a/components/stripe/actions/retrieve-payout/retrieve-payout.mjs +++ b/components/stripe/actions/retrieve-payout/retrieve-payout.mjs @@ -4,7 +4,7 @@ export default { key: "stripe-retrieve-payout", name: "Retrieve a Payout", type: "action", - version: "0.1.0", + version: "0.1.1", description: "Retrieves the details of an existing payout. [See the " + "docs](https://stripe.com/docs/api/payouts/retrieve) for more information", props: { diff --git a/components/stripe/actions/retrieve-price/retrieve-price.mjs b/components/stripe/actions/retrieve-price/retrieve-price.mjs index ec3b59ccad00d..a4fae671d4983 100644 --- a/components/stripe/actions/retrieve-price/retrieve-price.mjs +++ b/components/stripe/actions/retrieve-price/retrieve-price.mjs @@ -4,7 +4,7 @@ export default { key: "stripe-retrieve-price", name: "Retrieve a Price", type: "action", - version: "0.1.0", + version: "0.1.1", description: "Retrieves the details of an existing product price. [See the " + "docs](https://stripe.com/docs/api/prices/retrieve) for more information", props: { diff --git a/components/stripe/actions/retrieve-product/retrieve-product.mjs b/components/stripe/actions/retrieve-product/retrieve-product.mjs index 3d4e275d1b4e6..e396ecb94e6d9 100644 --- a/components/stripe/actions/retrieve-product/retrieve-product.mjs +++ b/components/stripe/actions/retrieve-product/retrieve-product.mjs @@ -4,7 +4,7 @@ export default { name: "Retrieve Product", description: "Retrieve a product by ID. [See the docs](https://stripe.com/docs/api/products/retrieve)", key: "stripe-retrieve-product", - version: "0.1.0", + version: "0.1.1", type: "action", props: { app, diff --git a/components/stripe/actions/retrieve-refund/retrieve-refund.mjs b/components/stripe/actions/retrieve-refund/retrieve-refund.mjs index b726ec33bb799..bdbe1a84a4f57 100644 --- a/components/stripe/actions/retrieve-refund/retrieve-refund.mjs +++ b/components/stripe/actions/retrieve-refund/retrieve-refund.mjs @@ -4,7 +4,7 @@ export default { key: "stripe-retrieve-refund", name: "Retrieve a Refund", type: "action", - version: "0.1.0", + version: "0.1.1", description: "Retrieves the details of an existing refund. [See the " + "docs](https://stripe.com/docs/api/refunds/retrieve) for more information", props: { diff --git a/components/stripe/actions/send-invoice/send-invoice.mjs b/components/stripe/actions/send-invoice/send-invoice.mjs index 0011aaa2106b6..d857ac3758b0f 100644 --- a/components/stripe/actions/send-invoice/send-invoice.mjs +++ b/components/stripe/actions/send-invoice/send-invoice.mjs @@ -4,7 +4,7 @@ export default { key: "stripe-send-invoice", name: "Send Invoice", type: "action", - version: "0.1.0", + version: "0.1.1", description: "Manually send an invoice to your customer out of the normal schedule for payment " + "(note that no emails are actually sent in test mode). [See the " + "docs](https://stripe.com/docs/api/invoices/send) for more information", diff --git a/components/stripe/actions/update-customer/update-customer.mjs b/components/stripe/actions/update-customer/update-customer.mjs index 9f82a282d67bb..0b551f2c56c11 100644 --- a/components/stripe/actions/update-customer/update-customer.mjs +++ b/components/stripe/actions/update-customer/update-customer.mjs @@ -5,7 +5,7 @@ export default { key: "stripe-update-customer", name: "Update a Customer", type: "action", - version: "0.1.0", + version: "0.1.1", description: "Update a customer. [See the docs](https://stripe.com/docs/api/customers/update) " + "for more information", props: { diff --git a/components/stripe/actions/update-invoice-item/update-invoice-item.mjs b/components/stripe/actions/update-invoice-item/update-invoice-item.mjs index d505bf66ff98f..1b873b39678bf 100644 --- a/components/stripe/actions/update-invoice-item/update-invoice-item.mjs +++ b/components/stripe/actions/update-invoice-item/update-invoice-item.mjs @@ -5,7 +5,7 @@ export default { key: "stripe-update-invoice-item", name: "Update Invoice Line Item", type: "action", - version: "0.1.0", + version: "0.1.1", description: "Update an invoice line item. [See the " + "docs](https://stripe.com/docs/api/invoiceitems/update) for more information", props: { diff --git a/components/stripe/actions/update-invoice/update-invoice.mjs b/components/stripe/actions/update-invoice/update-invoice.mjs index 4070fcea0103b..0afea4c076ad8 100644 --- a/components/stripe/actions/update-invoice/update-invoice.mjs +++ b/components/stripe/actions/update-invoice/update-invoice.mjs @@ -5,7 +5,7 @@ export default { key: "stripe-update-invoice", name: "Update Invoice", type: "action", - version: "0.1.0", + version: "0.1.1", description: "Update an invoice. [See the docs](https://stripe.com/docs/api/invoices/update) " + "for more information", props: { diff --git a/components/stripe/actions/update-payment-intent/update-payment-intent.mjs b/components/stripe/actions/update-payment-intent/update-payment-intent.mjs index 6ed1d099e8592..f683c815259a0 100644 --- a/components/stripe/actions/update-payment-intent/update-payment-intent.mjs +++ b/components/stripe/actions/update-payment-intent/update-payment-intent.mjs @@ -6,7 +6,7 @@ export default { key: "stripe-update-payment-intent", name: "Update a Payment Intent", type: "action", - version: "0.1.0", + version: "0.1.1", description: "Update a [payment intent](https://stripe.com/docs/payments/payment-intents). [See" + " the docs](https://stripe.com/docs/api/payment_intents/update) for more information", props: { diff --git a/components/stripe/actions/update-payout/update-payout.mjs b/components/stripe/actions/update-payout/update-payout.mjs index 5eef8d8b13add..b3b532fe486b8 100644 --- a/components/stripe/actions/update-payout/update-payout.mjs +++ b/components/stripe/actions/update-payout/update-payout.mjs @@ -4,7 +4,7 @@ export default { key: "stripe-update-payout", name: "Update a Payout", type: "action", - version: "0.1.0", + version: "0.1.1", description: "Update the metadata on a payout. [See the " + "docs](https://stripe.com/docs/api/payouts/update) for more information", props: { diff --git a/components/stripe/actions/update-refund/update-refund.mjs b/components/stripe/actions/update-refund/update-refund.mjs index 11f01f4b8f9b4..baaaa37139da4 100644 --- a/components/stripe/actions/update-refund/update-refund.mjs +++ b/components/stripe/actions/update-refund/update-refund.mjs @@ -4,7 +4,7 @@ export default { key: "stripe-update-refund", name: "Update a Refund", type: "action", - version: "0.1.0", + version: "0.1.1", description: "Update the metadata on a refund. [See the " + "docs](https://stripe.com/docs/api/refunds/update) for more information", props: { diff --git a/components/stripe/actions/void-invoice/void-invoice.mjs b/components/stripe/actions/void-invoice/void-invoice.mjs index cb9356de08015..1c70a9f9845c5 100644 --- a/components/stripe/actions/void-invoice/void-invoice.mjs +++ b/components/stripe/actions/void-invoice/void-invoice.mjs @@ -4,7 +4,7 @@ export default { key: "stripe-void-invoice", name: "Void Invoice", type: "action", - version: "0.1.0", + version: "0.1.1", description: "Void an invoice. [See the docs](https://stripe.com/docs/api/invoices/void) for " + "more information", props: { diff --git a/components/stripe/actions/write-off-invoice/write-off-invoice.mjs b/components/stripe/actions/write-off-invoice/write-off-invoice.mjs index d9abe011dd146..cbf9ff6cb939f 100644 --- a/components/stripe/actions/write-off-invoice/write-off-invoice.mjs +++ b/components/stripe/actions/write-off-invoice/write-off-invoice.mjs @@ -4,7 +4,7 @@ export default { key: "stripe-write-off-invoice", name: "Write Off Invoice", type: "action", - version: "0.1.0", + version: "0.1.1", description: "Mark an invoice as uncollectible. [See the " + "docs](https://stripe.com/docs/api/invoices/mark_uncollectible) for more information", props: { diff --git a/components/stripe/package.json b/components/stripe/package.json index bc94345284cee..214df681ddb88 100644 --- a/components/stripe/package.json +++ b/components/stripe/package.json @@ -1,6 +1,6 @@ { "name": "@pipedream/stripe", - "version": "0.6.2", + "version": "0.6.3", "description": "Pipedream Stripe Components", "main": "stripe.app.mjs", "keywords": [ diff --git a/components/stripe/sources/abandoned-cart/abandoned-cart.mjs b/components/stripe/sources/abandoned-cart/abandoned-cart.mjs index 9363fe973befb..06263cd383188 100644 --- a/components/stripe/sources/abandoned-cart/abandoned-cart.mjs +++ b/components/stripe/sources/abandoned-cart/abandoned-cart.mjs @@ -5,7 +5,7 @@ export default { key: "stripe-abandoned-cart", name: "New Abandoned Cart", type: "source", - version: "0.1.1", + version: "0.1.2", description: "Emit new event when a customer abandons their cart.", methods: { ...common.methods, diff --git a/components/stripe/sources/canceled-subscription/canceled-subscription.mjs b/components/stripe/sources/canceled-subscription/canceled-subscription.mjs index 01600f021b655..8dbb827da2739 100644 --- a/components/stripe/sources/canceled-subscription/canceled-subscription.mjs +++ b/components/stripe/sources/canceled-subscription/canceled-subscription.mjs @@ -5,7 +5,7 @@ export default { key: "stripe-canceled-subscription", name: "Canceled Subscription", type: "source", - version: "0.1.1", + version: "0.1.2", description: "Emit new event for each new canceled subscription", methods: { ...common.methods, diff --git a/components/stripe/sources/custom-webhook-events/custom-webhook-events.mjs b/components/stripe/sources/custom-webhook-events/custom-webhook-events.mjs index e20dac143c5ae..bbe3ca6b5bf8e 100644 --- a/components/stripe/sources/custom-webhook-events/custom-webhook-events.mjs +++ b/components/stripe/sources/custom-webhook-events/custom-webhook-events.mjs @@ -7,7 +7,7 @@ export default { key: "stripe-custom-webhook-events", name: "New Custom Webhook Events", type: "source", - version: "0.1.1", + version: "0.1.2", description: "Emit new event on each webhook event", props: { ...common.props, diff --git a/components/stripe/sources/new-customer/new-customer.mjs b/components/stripe/sources/new-customer/new-customer.mjs index 282604f6ebc96..890ad97eeb4dd 100644 --- a/components/stripe/sources/new-customer/new-customer.mjs +++ b/components/stripe/sources/new-customer/new-customer.mjs @@ -5,7 +5,7 @@ export default { key: "stripe-new-customer", name: "New Customer", type: "source", - version: "0.1.1", + version: "0.1.2", description: "Emit new event for each new customer", methods: { ...common.methods, diff --git a/components/stripe/sources/new-dispute/new-dispute.mjs b/components/stripe/sources/new-dispute/new-dispute.mjs index d5c749fb335c1..d2aae2baf8490 100644 --- a/components/stripe/sources/new-dispute/new-dispute.mjs +++ b/components/stripe/sources/new-dispute/new-dispute.mjs @@ -5,7 +5,7 @@ export default { key: "stripe-new-dispute", name: "New Dispute", type: "source", - version: "0.1.1", + version: "0.1.2", description: "Emit new event for each new dispute", methods: { ...common.methods, diff --git a/components/stripe/sources/new-failed-invoice-payment/new-failed-invoice-payment.mjs b/components/stripe/sources/new-failed-invoice-payment/new-failed-invoice-payment.mjs index f56ac808d347d..c989a79dadcde 100644 --- a/components/stripe/sources/new-failed-invoice-payment/new-failed-invoice-payment.mjs +++ b/components/stripe/sources/new-failed-invoice-payment/new-failed-invoice-payment.mjs @@ -5,7 +5,7 @@ export default { key: "stripe-new-failed-invoice-payment", name: "New Failed Invoice Payment", type: "source", - version: "0.1.1", + version: "0.1.2", description: "Emit new event for each new failed invoice payment", methods: { ...common.methods, diff --git a/components/stripe/sources/new-failed-payment/new-failed-payment.mjs b/components/stripe/sources/new-failed-payment/new-failed-payment.mjs index aa14c8818d4f5..c7dde7a969d4e 100644 --- a/components/stripe/sources/new-failed-payment/new-failed-payment.mjs +++ b/components/stripe/sources/new-failed-payment/new-failed-payment.mjs @@ -5,7 +5,7 @@ export default { key: "stripe-new-failed-payment", name: "New Failed Payment", type: "source", - version: "0.1.1", + version: "0.1.2", description: "Emit new event for each new failed payment", methods: { ...common.methods, diff --git a/components/stripe/sources/new-invoice/new-invoice.mjs b/components/stripe/sources/new-invoice/new-invoice.mjs index 0678061f4d0af..a84251c8f092d 100644 --- a/components/stripe/sources/new-invoice/new-invoice.mjs +++ b/components/stripe/sources/new-invoice/new-invoice.mjs @@ -5,7 +5,7 @@ export default { key: "stripe-new-invoice", name: "New Invoice", type: "source", - version: "0.1.1", + version: "0.1.2", description: "Emit new event for each new invoice", methods: { ...common.methods, diff --git a/components/stripe/sources/new-payment/new-payment.mjs b/components/stripe/sources/new-payment/new-payment.mjs index 7d2be492f3daf..b51c65e016a29 100644 --- a/components/stripe/sources/new-payment/new-payment.mjs +++ b/components/stripe/sources/new-payment/new-payment.mjs @@ -5,7 +5,7 @@ export default { key: "stripe-new-payment", name: "New Payment", type: "source", - version: "0.1.2", + version: "0.1.3", description: "Emit new event for each new payment", methods: { ...common.methods, diff --git a/components/stripe/sources/new-subscription/new-subscription.mjs b/components/stripe/sources/new-subscription/new-subscription.mjs index 1fb5b8767a6b8..1a83a26528aa5 100644 --- a/components/stripe/sources/new-subscription/new-subscription.mjs +++ b/components/stripe/sources/new-subscription/new-subscription.mjs @@ -5,7 +5,7 @@ export default { key: "stripe-new-subscription", name: "New Subscription", type: "source", - version: "0.1.1", + version: "0.1.2", description: "Emit new event for each new subscription", methods: { ...common.methods, diff --git a/components/stripe/sources/subscription-updated/subscription-updated.mjs b/components/stripe/sources/subscription-updated/subscription-updated.mjs index 08bab842d1695..621594b433802 100644 --- a/components/stripe/sources/subscription-updated/subscription-updated.mjs +++ b/components/stripe/sources/subscription-updated/subscription-updated.mjs @@ -5,7 +5,7 @@ export default { key: "stripe-subscription-updated", name: "Subscription Updated", type: "source", - version: "0.1.1", + version: "0.1.2", description: "Emit new event on a new subscription is updated", methods: { ...common.methods, diff --git a/components/stripe/stripe.app.mjs b/components/stripe/stripe.app.mjs index 6966dae625aa9..07aa251e41520 100644 --- a/components/stripe/stripe.app.mjs +++ b/components/stripe/stripe.app.mjs @@ -656,9 +656,9 @@ export default { _apiKey() { return this.$auth.api_key; }, - sdk() { + sdk(apiVersion = "2020-03-02") { return stripe(this._apiKey(), { - apiVersion: "2020-03-02", + apiVersion, maxNetworkRetries: 2, }); }, diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 1a8d77d88c2c2..eee1fc6916b83 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -2864,8 +2864,7 @@ importers: specifier: ^4.17.21 version: 4.17.21 - components/consulta_unica: - specifiers: {} + components/consulta_unica: {} components/contact_enhance: dependencies: