Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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" +
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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=" +
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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: {
Expand Down
4 changes: 2 additions & 2 deletions components/stripe/actions/create-invoice/create-invoice.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -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: {
Expand Down Expand Up @@ -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",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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: {
Expand Down
2 changes: 1 addition & 1 deletion components/stripe/actions/create-payout/create-payout.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion components/stripe/actions/create-price/create-price.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion components/stripe/actions/create-refund/create-refund.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -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, " +
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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 " +
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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 " +
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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: {
Expand Down
2 changes: 1 addition & 1 deletion components/stripe/actions/list-invoices/list-invoices.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -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: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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 " +
Expand Down
2 changes: 1 addition & 1 deletion components/stripe/actions/list-payouts/list-payouts.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -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: {
Expand Down
2 changes: 1 addition & 1 deletion components/stripe/actions/list-refunds/list-refunds.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -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: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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 " +
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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: {
Expand Down
2 changes: 1 addition & 1 deletion components/stripe/actions/send-invoice/send-invoice.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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: {
Expand Down
2 changes: 1 addition & 1 deletion components/stripe/actions/update-payout/update-payout.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -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: {
Expand Down
2 changes: 1 addition & 1 deletion components/stripe/actions/update-refund/update-refund.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -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: {
Expand Down
2 changes: 1 addition & 1 deletion components/stripe/actions/void-invoice/void-invoice.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -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: {
Expand Down
Loading
Loading