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 1a214d099db45..7c27ed16812f1 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.2", + version: "0.1.3", description: "Cancel a pending payout or reverse a paid payout. [See the documentation here](https://docs.stripe.com/api/payouts/cancel) and [here](https://docs.stripe.com/api/payouts/reverse)", props: { app, 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 a5081228f8cfe..2dc5e2ea6c188 100644 --- a/components/stripe/actions/cancel-payment-intent/cancel-payment-intent.mjs +++ b/components/stripe/actions/cancel-payment-intent/cancel-payment-intent.mjs @@ -4,7 +4,7 @@ export default { key: "stripe-cancel-payment-intent", name: "Cancel A Payment Intent", type: "action", - version: "0.1.2", + version: "0.1.3", description: "Cancel a PaymentIntent. [See the documentation](https://stripe.com/docs/payments/payment-intents).", props: { app, diff --git a/components/stripe/actions/cancel-subscription/cancel-subscription.mjs b/components/stripe/actions/cancel-subscription/cancel-subscription.mjs index 71ab44173edc4..2b6bbf0dcd94b 100644 --- a/components/stripe/actions/cancel-subscription/cancel-subscription.mjs +++ b/components/stripe/actions/cancel-subscription/cancel-subscription.mjs @@ -4,7 +4,7 @@ export default { key: "stripe-cancel-subscription", name: "Cancel Subscription", description: "Cancel a subscription. [See the documentation](https://docs.stripe.com/api/subscriptions/cancel?lang=node)", - version: "0.0.1", + version: "0.0.2", type: "action", props: { stripe, 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 363e680ae96d3..844f422e619a3 100644 --- a/components/stripe/actions/capture-payment-intent/capture-payment-intent.mjs +++ b/components/stripe/actions/capture-payment-intent/capture-payment-intent.mjs @@ -4,7 +4,7 @@ export default { key: "stripe-capture-payment-intent", name: "Capture a Payment Intent", type: "action", - version: "0.1.2", + version: "0.1.3", description: "Capture the funds of an existing uncaptured payment intent. [See the documentation](https://stripe.com/docs/api/payment_intents/capture).", props: { app, 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 86f0dd89bf7a7..c599eaaf9dc05 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.2", + version: "0.1.3", description: "Confirm that your customer intends to pay with current or provided payment method. [See the documentation](https://stripe.com/docs/api/payment_intents/confirm).", props: { app, diff --git a/components/stripe/actions/create-billing-meter/create-billing-meter.mjs b/components/stripe/actions/create-billing-meter/create-billing-meter.mjs index a7dd7fef802fa..3559bf850c069 100644 --- a/components/stripe/actions/create-billing-meter/create-billing-meter.mjs +++ b/components/stripe/actions/create-billing-meter/create-billing-meter.mjs @@ -4,7 +4,7 @@ export default { key: "stripe-create-billing-meter", name: "Create Billing Meter", type: "action", - version: "0.0.1", + version: "0.0.2", description: "Creates a billing meter. [See the documentation](https://docs.stripe.com/api/billing/meter/create).", props: { app, diff --git a/components/stripe/actions/create-customer/create-customer.mjs b/components/stripe/actions/create-customer/create-customer.mjs index 93c5cf96198ea..479a0f1e2f917 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.2", + version: "0.1.3", description: "Create a customer. [See the documentation](https://stripe.com/docs/api/customers/create).", props: { app, 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 ec569b62533f5..8171a47e64997 100644 --- a/components/stripe/actions/create-invoice-item/create-invoice-item.mjs +++ b/components/stripe/actions/create-invoice-item/create-invoice-item.mjs @@ -4,7 +4,7 @@ export default { key: "stripe-create-invoice-item", name: "Create Invoice Line Item", type: "action", - version: "0.1.2", + version: "0.1.3", description: "Add a line item to an invoice. [See the documentation](https://stripe.com/docs/api/invoiceitems/create).", props: { app, diff --git a/components/stripe/actions/create-invoice/create-invoice.mjs b/components/stripe/actions/create-invoice/create-invoice.mjs index 2aac7d12a89ca..1c57dc7b0212b 100644 --- a/components/stripe/actions/create-invoice/create-invoice.mjs +++ b/components/stripe/actions/create-invoice/create-invoice.mjs @@ -4,7 +4,7 @@ export default { key: "stripe-create-invoice", name: "Create Invoice", type: "action", - version: "0.1.2", + version: "0.1.3", description: "Create an invoice. [See the documentation](https://stripe.com/docs/api/invoices/create).", props: { app, 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 ed38b43ba22a0..b8e7d202175bc 100644 --- a/components/stripe/actions/create-payment-intent/create-payment-intent.mjs +++ b/components/stripe/actions/create-payment-intent/create-payment-intent.mjs @@ -4,7 +4,7 @@ export default { key: "stripe-create-payment-intent", name: "Create a Payment Intent", type: "action", - version: "0.1.2", + version: "0.1.3", description: "Create a payment intent. [See the documentation](https://stripe.com/docs/api/payment_intents/create).", props: { app, diff --git a/components/stripe/actions/create-payout/create-payout.mjs b/components/stripe/actions/create-payout/create-payout.mjs index 15c4855e4ba6f..e692da58f1eed 100644 --- a/components/stripe/actions/create-payout/create-payout.mjs +++ b/components/stripe/actions/create-payout/create-payout.mjs @@ -4,7 +4,7 @@ export default { key: "stripe-create-payout", name: "Create a Payout", type: "action", - version: "0.1.2", + version: "0.1.3", description: "Create a payout. [See the documentation](https://stripe.com/docs/api/payouts/create).", props: { app, diff --git a/components/stripe/actions/create-price/create-price.mjs b/components/stripe/actions/create-price/create-price.mjs index ab683e138ce18..bba5603fbfd02 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.3", + version: "0.0.4", 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 924d8a53ad93d..7ce9a2e3d1db4 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.3", + version: "0.0.4", 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 59e280a56cf64..f38f52fdebb4d 100644 --- a/components/stripe/actions/create-refund/create-refund.mjs +++ b/components/stripe/actions/create-refund/create-refund.mjs @@ -4,7 +4,7 @@ export default { key: "stripe-create-refund", name: "Create A Refund", type: "action", - version: "0.1.2", + version: "0.1.3", description: "Create a refund. [See the documentation](https://stripe.com/docs/api/refunds/create).", props: { app, diff --git a/components/stripe/actions/create-subscription/create-subscription.mjs b/components/stripe/actions/create-subscription/create-subscription.mjs index 25c263417803c..f5ff3f635b924 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.4", + version: "0.1.5", description: "Create a subscription. [See the documentation](https://stripe.com/docs/api/subscriptions/create).", props: { app, diff --git a/components/stripe/actions/delete-customer/delete-customer.mjs b/components/stripe/actions/delete-customer/delete-customer.mjs index 8f7e6d7c491fd..a40591ab915a5 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.2", + version: "0.1.3", description: "Delete a customer. [See the documentation](https://stripe.com/docs/api/customers/delete).", props: { app, 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 fc84559f64bbd..6eb51cc3cf51f 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.2", + version: "0.1.3", description: "Delete a line item from an invoice. [See the documentation](https://stripe.com/docs/api/invoiceitems/delete).", props: { app, 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 410f25d3f8590..afa18c31a8b18 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.2", + version: "0.1.3", description: "Delete a draft invoice, or void a non-draft or subscription invoice. [See the documentation](https://stripe.com/docs/api/invoiceitems/delete).", props: { app, diff --git a/components/stripe/actions/finalize-invoice/finalize-invoice.mjs b/components/stripe/actions/finalize-invoice/finalize-invoice.mjs index 8780834f4ef1a..c3dc9136ef7d1 100644 --- a/components/stripe/actions/finalize-invoice/finalize-invoice.mjs +++ b/components/stripe/actions/finalize-invoice/finalize-invoice.mjs @@ -4,7 +4,7 @@ export default { key: "stripe-finalize-invoice", name: "Finalize Draft Invoice", type: "action", - version: "0.1.2", + version: "0.1.3", description: "Finalize a draft invoice. [See the documentation](https://stripe.com/docs/api/invoices/finalize).", props: { app, 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 80069cd4be790..e7186e2a6ea99 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.2", + version: "0.1.3", description: "List all balance transactions. [See the documentation](https://stripe.com/docs/api/balance_transactions/list).", props: { app, diff --git a/components/stripe/actions/list-customers/list-customers.mjs b/components/stripe/actions/list-customers/list-customers.mjs index e88434843d821..1b44897444b91 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.2", + version: "0.1.3", description: "Find or list customers. [See the documentation](https://stripe.com/docs/api/customers/list).", props: { app, diff --git a/components/stripe/actions/list-invoices/list-invoices.mjs b/components/stripe/actions/list-invoices/list-invoices.mjs index a08143788c0cf..a8d16713e6f4c 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.2", + version: "0.1.3", description: "Find or list invoices. [See the documentation](https://stripe.com/docs/api/invoices/list).", props: { app, 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 2cea5bd7d607d..caa7a02b007e9 100644 --- a/components/stripe/actions/list-payment-intents/list-payment-intents.mjs +++ b/components/stripe/actions/list-payment-intents/list-payment-intents.mjs @@ -4,7 +4,7 @@ export default { key: "stripe-list-payment-intents", name: "List Payment Intents", type: "action", - version: "0.1.2", + version: "0.1.3", description: "Retrieves a list of payment intents that were previously created. [See the documentation](https://stripe.com/docs/api/payment_intents/list).", props: { app, diff --git a/components/stripe/actions/list-payouts/list-payouts.mjs b/components/stripe/actions/list-payouts/list-payouts.mjs index 1ce38310bb51e..d9d0293dd39a4 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.2", + version: "0.1.3", description: "Find or list payouts. [See the documentation](https://stripe.com/docs/api/payouts/list).", props: { app, diff --git a/components/stripe/actions/list-refunds/list-refunds.mjs b/components/stripe/actions/list-refunds/list-refunds.mjs index d6e8d07d3352c..c99475d0ec52d 100644 --- a/components/stripe/actions/list-refunds/list-refunds.mjs +++ b/components/stripe/actions/list-refunds/list-refunds.mjs @@ -4,7 +4,7 @@ export default { key: "stripe-list-refunds", name: "List Refunds", type: "action", - version: "0.1.2", + version: "0.1.3", description: "Find or list refunds. [See the documentation](https://stripe.com/docs/api/refunds/list).", props: { app, diff --git a/components/stripe/actions/retrieve-balance/retrieve-balance.mjs b/components/stripe/actions/retrieve-balance/retrieve-balance.mjs index 1d42c83a17702..06195a7e79105 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.2", + version: "0.1.3", description: "Retrieves the current account balance, based on the authentication that was used to make the request. [See the documentation](https://stripe.com/docs/api/balance/balance_retrieve).", props: { app, 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 942db629b786c..63f493b0142bc 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 documentation](https://stripe.com/docs/api/checkout/sessions/line_items).", key: "stripe-retrieve-checkout-session-line-items", - version: "0.1.2", + version: "0.1.3", 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 11b7cbe27a326..683161f6a4e2b 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.2", + version: "0.1.3", description: "A Checkout Session represents your customer's session as they pay for one-time purchases or subscriptions through Stripe Checkout. [See the documentation](https://stripe.com/docs/api/checkout/sessions/retrieve).", props: { app, diff --git a/components/stripe/actions/retrieve-customer/retrieve-customer.mjs b/components/stripe/actions/retrieve-customer/retrieve-customer.mjs index 5aa2a32d7b909..18dd6cbb1b856 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.2", + version: "0.1.3", description: "Retrieves the details of an existing customer. [See the documentation](https://stripe.com/docs/api/customers/retrieve).", props: { app, 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 5e9e9c63ff637..6d1bc8864cef4 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.2", + version: "0.1.3", description: "Retrieve a single line item on an invoice. [See the documentation](https://stripe.com/docs/api/invoiceitems/retrieve).", props: { app, diff --git a/components/stripe/actions/retrieve-invoice/retrieve-invoice.mjs b/components/stripe/actions/retrieve-invoice/retrieve-invoice.mjs index 71eb7ea4af42a..73ef7ebb2d76b 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.2", + version: "0.1.3", description: "Retrieves the details of an existing invoice. [See the documentation](https://stripe.com/docs/api/invoices/retrieve).", props: { app, 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 7596ee1a8d234..47842c768a7cb 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.2", + version: "0.1.3", description: "Retrieves the details of a payment intent that was previously created. [See the documentation](https://stripe.com/docs/api/payment_intents/retrieve).", props: { app, diff --git a/components/stripe/actions/retrieve-payout/retrieve-payout.mjs b/components/stripe/actions/retrieve-payout/retrieve-payout.mjs index 1425ea02d9785..69281bf41c31c 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.2", + version: "0.1.3", description: "Retrieves the details of an existing payout. [See the documentation](https://stripe.com/docs/api/payouts/retrieve).", props: { app, diff --git a/components/stripe/actions/retrieve-price/retrieve-price.mjs b/components/stripe/actions/retrieve-price/retrieve-price.mjs index 8e65af7b76078..06f9a74a22399 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.2", + version: "0.1.3", description: "Retrieves the details of an existing product price. [See the documentation](https://stripe.com/docs/api/prices/retrieve).", props: { app, diff --git a/components/stripe/actions/retrieve-product/retrieve-product.mjs b/components/stripe/actions/retrieve-product/retrieve-product.mjs index db602651ffcbc..2e9ade7f34147 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 documentation](https://stripe.com/docs/api/products/retrieve).", key: "stripe-retrieve-product", - version: "0.1.2", + version: "0.1.3", 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 a39fd6c524a25..e3bc81a1ca03a 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.2", + version: "0.1.3", description: "Retrieves the details of an existing refund. [See the documentation](https://stripe.com/docs/api/refunds/retrieve).", props: { app, diff --git a/components/stripe/actions/search-customers/search-customers.mjs b/components/stripe/actions/search-customers/search-customers.mjs index 48c6557b51732..18a7a83161176 100644 --- a/components/stripe/actions/search-customers/search-customers.mjs +++ b/components/stripe/actions/search-customers/search-customers.mjs @@ -4,7 +4,7 @@ export default { key: "stripe-search-customers", name: "Search Customers", type: "action", - version: "0.0.2", + version: "0.0.3", description: "Search customers by various attributes like email domain, created date, etc. [See the documentation](https://stripe.com/docs/api/customers/search).", props: { app, diff --git a/components/stripe/actions/search-subscriptions/search-subscriptions.mjs b/components/stripe/actions/search-subscriptions/search-subscriptions.mjs index a96b5f6d9fa6c..69487ca5d584e 100644 --- a/components/stripe/actions/search-subscriptions/search-subscriptions.mjs +++ b/components/stripe/actions/search-subscriptions/search-subscriptions.mjs @@ -4,7 +4,7 @@ export default { key: "stripe-search-subscriptions", name: "Search Subscriptions", description: "Search for subscriptions. [See the documentation](https://docs.stripe.com/api/subscriptions/search?lang=node)", - version: "0.0.1", + version: "0.0.2", type: "action", props: { stripe, diff --git a/components/stripe/actions/send-invoice/send-invoice.mjs b/components/stripe/actions/send-invoice/send-invoice.mjs index c6c931e7516d0..f7b51ed43a0fb 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.2", + version: "0.1.3", 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 documentation](https://stripe.com/docs/api/invoices/send).", props: { app, diff --git a/components/stripe/actions/update-customer/update-customer.mjs b/components/stripe/actions/update-customer/update-customer.mjs index dcde32cc9896f..c3714c534bac0 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.2", + version: "0.1.3", description: "Update a customer. [See the documentation](https://stripe.com/docs/api/customers/update).", props: { app, 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 a1b870612a776..c32b4a7d1f0b8 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.2", + version: "0.1.3", description: "Update an invoice line item. [See the documentation](https://stripe.com/docs/api/invoiceitems/update).", props: { app, diff --git a/components/stripe/actions/update-invoice/update-invoice.mjs b/components/stripe/actions/update-invoice/update-invoice.mjs index 7fd5bfbded2bd..e294f2529fe42 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.2", + version: "0.1.3", description: "Update an invoice. [See the documentation](https://stripe.com/docs/api/invoices/update).", props: { app, 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 9c4b851053a8d..09284970b6b51 100644 --- a/components/stripe/actions/update-payment-intent/update-payment-intent.mjs +++ b/components/stripe/actions/update-payment-intent/update-payment-intent.mjs @@ -5,7 +5,7 @@ export default { key: "stripe-update-payment-intent", name: "Update a Payment Intent", type: "action", - version: "0.1.2", + version: "0.1.3", description: "Update a payment intent. [See the documentation](https://stripe.com/docs/api/payment_intents/update).", props: { app, diff --git a/components/stripe/actions/update-payout/update-payout.mjs b/components/stripe/actions/update-payout/update-payout.mjs index a7d82079f80bb..32f2054bb70eb 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.2", + version: "0.1.3", description: "Update the metadata on a payout. [See the documentation](https://stripe.com/docs/api/payouts/update).", props: { app, diff --git a/components/stripe/actions/update-refund/update-refund.mjs b/components/stripe/actions/update-refund/update-refund.mjs index 944c045fd714c..e154be31892ae 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.2", + version: "0.1.3", description: "Update the metadata on a refund. [See the documentation](https://stripe.com/docs/api/refunds/update).", props: { app, diff --git a/components/stripe/actions/void-invoice/void-invoice.mjs b/components/stripe/actions/void-invoice/void-invoice.mjs index 32f7ce3cdc7e4..3c2df235ca366 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.2", + version: "0.1.3", description: "Void an invoice. [See the documentation](https://stripe.com/docs/api/invoices/void).", props: { app, 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 4505ca67bb76c..f8b4f275659da 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.2", + version: "0.1.3", description: "Mark an invoice as uncollectible. [See the documentation](https://stripe.com/docs/api/invoices/mark_uncollectible).", props: { app, diff --git a/components/stripe/package.json b/components/stripe/package.json index 6413c50787b5a..7cf80fdbbf5ef 100644 --- a/components/stripe/package.json +++ b/components/stripe/package.json @@ -1,6 +1,6 @@ { "name": "@pipedream/stripe", - "version": "0.8.0", + "version": "0.8.1", "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 026f8337d27a3..25c6084686479 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.3", + version: "0.1.4", 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 ac8774a845b39..e30a5c84b26f6 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.3", + version: "0.1.4", description: "Emit new event for each new canceled subscription", methods: { ...common.methods, diff --git a/components/stripe/sources/common/constants.mjs b/components/stripe/sources/common/constants.mjs index d525d5559cb63..642f03f17cf6f 100644 --- a/components/stripe/sources/common/constants.mjs +++ b/components/stripe/sources/common/constants.mjs @@ -11,7 +11,19 @@ export default { "application_fee.refund.updated", "application_fee.refunded", "balance.available", + "billing_portal.configuration.created", + "billing_portal.configuration.updated", + "billing_portal.session.created", + "billing.alert.triggered", + "billing.credit_balance_transaction.created", + "billing.credit_grant.created", + "billing.credit_grant.updated", + "billing.meter.created", + "billing.meter.deactivated", + "billing.meter.reactivated", + "billing.meter.updated", "capability.updated", + "cash_balance.funds_available", "charge.captured", "charge.dispute.closed", "charge.dispute.created", @@ -28,12 +40,21 @@ export default { "checkout.session.async_payment_failed", "checkout.session.async_payment_succeeded", "checkout.session.completed", + "checkout.session.expired", + "climate.order.canceled", + "climate.order.created", + "climate.order.delayed", + "climate.order.delivered", + "climate.order.product_substituted", + "climate.product.created", + "climate.product.pricing_updated", "coupon.created", "coupon.deleted", "coupon.updated", "credit_note.created", "credit_note.updated", "credit_note.voided", + "customer_cash_balance_transaction.created", "customer.created", "customer.deleted", "customer.discount.created", @@ -45,19 +66,39 @@ export default { "customer.source.updated", "customer.subscription.created", "customer.subscription.deleted", + "customer.subscription.paused", "customer.subscription.pending_update_applied", "customer.subscription.pending_update_expired", + "customer.subscription.resumed", "customer.subscription.trial_will_end", "customer.subscription.updated", "customer.tax_id.created", "customer.tax_id.deleted", "customer.tax_id.updated", "customer.updated", + "entitlements.active_entitlement_summary.updated", "file.created", + "financial_connections.account.created", + "financial_connections.account.deactivated", + "financial_connections.account.disconnected", + "financial_connections.account.reactivated", + "financial_connections.account.refreshed_balance", + "financial_connections.account.refreshed_ownership", + "financial_connections.account.refreshed_transactions", + "identity.verification_session.canceled", + "identity.verification_session.created", + "identity.verification_session.processing", + "identity.verification_session.redacted", + "identity.verification_session.requires_input", + "identity.verification_session.verified", + "invoice_payment.paid", "invoice.created", "invoice.deleted", + "invoice.finalization_failed", "invoice.finalized", "invoice.marked_uncollectible", + "invoice.overdue", + "invoice.overpaid", "invoice.paid", "invoice.payment_action_required", "invoice.payment_failed", @@ -66,9 +107,9 @@ export default { "invoice.upcoming", "invoice.updated", "invoice.voided", + "invoice.will_be_due", "invoiceitem.created", "invoiceitem.deleted", - "invoiceitem.updated", "issuing_authorization.created", "issuing_authorization.request", "issuing_authorization.updated", @@ -76,31 +117,41 @@ export default { "issuing_card.updated", "issuing_cardholder.created", "issuing_cardholder.updated", + "issuing_dispute.closed", "issuing_dispute.created", "issuing_dispute.funds_reinstated", + "issuing_dispute.funds_rescinded", + "issuing_dispute.submitted", "issuing_dispute.updated", + "issuing_personalization_design.activated", + "issuing_personalization_design.deactivated", + "issuing_personalization_design.rejected", + "issuing_personalization_design.updated", + "issuing_token.created", + "issuing_token.updated", "issuing_transaction.created", + "issuing_transaction.purchase_details_receipt_updated", "issuing_transaction.updated", "mandate.updated", - "order.created", - "order.payment_failed", - "order.payment_succeeded", - "order.updated", - "order_return.created", "payment_intent.amount_capturable_updated", "payment_intent.canceled", "payment_intent.created", + "payment_intent.partially_funded", "payment_intent.payment_failed", "payment_intent.processing", + "payment_intent.requires_action", "payment_intent.succeeded", + "payment_link.created", + "payment_link.updated", "payment_method.attached", - "payment_method.card_automatically_updated", + "payment_method.automatically_updated", "payment_method.detached", "payment_method.updated", "payout.canceled", "payout.created", "payout.failed", "payout.paid", + "payout.reconciliation_completed", "payout.updated", "person.created", "person.deleted", @@ -114,11 +165,18 @@ export default { "product.created", "product.deleted", "product.updated", + "promotion_code.created", + "promotion_code.updated", + "quote.accepted", + "quote.canceled", + "quote.created", + "quote.finalized", + "quote.will_expire", "radar.early_fraud_warning.created", "radar.early_fraud_warning.updated", - "recipient.created", - "recipient.deleted", - "recipient.updated", + "refund.created", + "refund.failed", + "refund.updated", "reporting.report_run.failed", "reporting.report_run.succeeded", "reporting.report_type.updated", @@ -126,12 +184,10 @@ export default { "review.opened", "setup_intent.canceled", "setup_intent.created", + "setup_intent.requires_action", "setup_intent.setup_failed", "setup_intent.succeeded", "sigma.scheduled_query_run.created", - "sku.created", - "sku.deleted", - "sku.updated", "source.canceled", "source.chargeable", "source.failed", @@ -148,14 +204,21 @@ export default { "subscription_schedule.updated", "tax_rate.created", "tax_rate.updated", + "tax.settings.updated", + "terminal.reader.action_failed", + "terminal.reader.action_succeeded", + "terminal.reader.action_updated", + "test_helpers.test_clock.advancing", + "test_helpers.test_clock.created", + "test_helpers.test_clock.deleted", + "test_helpers.test_clock.internal_failure", + "test_helpers.test_clock.ready", "topup.canceled", "topup.created", "topup.failed", "topup.reversed", "topup.succeeded", "transfer.created", - "transfer.failed", - "transfer.paid", "transfer.reversed", "transfer.updated", ], 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 881c54a816d3d..d851084dde9d4 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.3", + version: "0.1.4", 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 65c3bc235c065..8681c1a749ffc 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.3", + version: "0.1.4", 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 3d264a040775f..5a88259d56188 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.3", + version: "0.1.4", 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 17ec6729d69f5..40329386acdfd 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.3", + version: "0.1.4", 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 0e528d7c8a038..a8018eba6f5bd 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.3", + version: "0.1.4", 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 aa022612da3f3..df6f1df58cdab 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.3", + version: "0.1.4", 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 5b4e73658fce4..c66a624bc67c2 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.4", + version: "0.1.5", 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 a9a7ced83a0ce..53aba6ed259ec 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.3", + version: "0.1.4", 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 3a2031cf1c996..ee05bcd205997 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.3", + version: "0.1.4", description: "Emit new event on a new subscription is updated", methods: { ...common.methods,