DefinitelyTyped/stripe/stripe-node-tests.ts
CodeAnimal 19e22df5dd Stripe node 4.5.0 (#8907)
* Update Stripe library definitions to version 4.5.0.

And update to API version 2016-03-07.

Ideally more tests need to be added, but I've ran out of time to
implement all that is needed. The tests cover just enough for now,
although they are by no means thorough.

* Fix CI test errors

* Add correct header options

Add correct header options to method definitions.

As I understand it, all methods have the ability to have header options,
and they should always appear after any data options, see:

https://github.com/stripe/stripe-node/blob/master/lib/StripeMethod.js#L61
https://stripe.com/docs/connect/authentication

Tests still need to be added.

* Rename account to accounts

And fix other small bugs:
- L4626: Fix duplicate arg name
- L4999: Add missing method definition

* Rename CustomerSubscription Methods

Rename some CustomerSubscription methods that were named incorrectly.

* Define chargeObj.refunds methods

Add ChargeRefunds methods to ICharge interface and add resource class.

https://github.com/stripe/stripe-node/blob/master/lib/resources/ChargeRefunds.js

* Add verifySource placeholder methods

Add verifySource placeholder method to the Customer resource class. This
needs to be properly implemented later.

Also update InvoiceLineItem.type property to be a string literal type.

* Test clean up

Clean up the tests and add a few missing tests. All current tests now
also test for Promise method returns.

Still a lot of missing tests, but it's better than before.
2016-04-13 00:50:15 +09:00

947 lines
25 KiB
TypeScript

/// <reference path="stripe-node.d.ts" />
import StripeNode = require('stripe');
var stripeTor = new StripeNode("sk_test_BF573NobVn98OiIsPAv7A04K");
var stripe = StripeNode("sk_test_BF573NobVn98OiIsPAv7A04K")
stripe.setApiVersion('2016-03-07');
//#region Balance tests
// ##################################################################################
stripe.balance.retrieve(function (err, balance) {
// asynchronously called
});
stripe.balance.retrieve().then(function (balance) {
// asynchronously called
});
stripe.balance.retrieveTransaction(
"txn_17xMvmBoqMA9o2xkYNH2ewNj",
function (err, balanceTransaction) {
// asynchronously called
}
);
stripe.balance.retrieveTransaction(
"txn_17xMvmBoqMA9o2xkYNH2ewNj").then(
function (balanceTransaction) {
// asynchronously called
}
);
stripe.balance.listTransactions({ limit: 3 }, function (err, transactions) {
// asynchronously called
});
stripe.balance.listTransactions({ limit: 3 }).then( function (transactions) {
// asynchronously called
});
stripe.balance.listTransactions().then(function (transactions) {
// asynchronously called
});
//#endregion
//#region Charges tests
// ##################################################################################
stripe.charges.create({
amount: 400,
currency: "gbp",
source: "tok_17wV94BoqMA9o2xkhlAd3ALf", // obtained with Stripe.js
description: "Charge for test@example.com"
}, function (err, charge) {
// asynchronously called
});
stripe.charges.create({
amount: 400,
currency: "gbp",
source: "tok_17wV94BoqMA9o2xkhlAd3ALf", // obtained with Stripe.js
description: "Charge for test@example.com"
}).then(function (charge) {
// asynchronously called
charge.refunds.create().then(function (refund) {
// asynchronously called
});
charge.refunds.create({ amount: 100 }).then(function (refund) {
// asynchronously called
});
charge.refunds.retrieve("re_15jzA4Ee31JkLCeQcxbTbjaL").then(function (refund) {
});
charge.refunds.update("re_15jzA4Ee31JkLCeQcxbTbjaL", { metadata: { test: "data" } }).then(function (refund) {
});
charge.refunds.list({ limit: 3 }).then(function (refund) {
});
charge.refunds.list().then(function (refund) {
});
});
stripe.charges.retrieve("ch_15fvyXEe31JkLCeQOo0SwFk9", function (err, charge) {
// asynchronously called
});
stripe.charges.retrieve("ch_15fvyXEe31JkLCeQOo0SwFk9").then(function (charge) {
// asynchronously called
});
stripe.charges.update(
"ch_15fvyXEe31JkLCeQOo0SwFk9",
{
description: "Charge for test@example.com"
},
function (err, charge) {
// asynchronously called
}
);
stripe.charges.update(
"ch_15fvyXEe31JkLCeQOo0SwFk9",
{
description: "Charge for test@example.com"
})
.then(function (charge) {
// asynchronously called
});
stripe.charges.capture("ch_15fvyXEe31JkLCeQOo0SwFk9", function (err, charge) {
// asynchronously called
});
stripe.charges.capture("ch_15fvyXEe31JkLCeQOo0SwFk9").then( function (charge) {
// asynchronously called
});
stripe.charges.list({ limit: 3 }, function (err, charges) {
// asynchronously called
});
stripe.charges.list({ limit: 3 }).then(function (charges) {
// asynchronously called
});
stripe.charges.refund("ch_15fvyXEe31JkLCeQOo0SwFk9", {},
function (err, refund) {
// asynchronously called
}
);
stripe.charges.refund("ch_15fvyXEe31JkLCeQOo0SwFk9", {}).then(function (refund) {
// asynchronously called
});
stripe.charges.refund("ch_15fvyXEe31JkLCeQOo0SwFk9").then(function (refund) {
// asynchronously called
});
stripe.charges.retrieveRefund(
"ch_15fvyXEe31JkLCeQOo0SwFk9",
"re_15jzA4Ee31JkLCeQcxbTbjaL",
function (err, refund) {
// asynchronously called
}
);
stripe.charges.retrieveRefund(
"ch_15fvyXEe31JkLCeQOo0SwFk9",
"re_15jzA4Ee31JkLCeQcxbTbjaL").then(function (refund) {
// asynchronously called
}
);
stripe.charges.createRefund(
"ch_15fvyXEe31JkLCeQOo0SwFk9",
{},
function (err, refund) {
// asynchronously called
}
);
stripe.charges.createRefund(
"ch_15fvyXEe31JkLCeQOo0SwFk9",
function (err, refund) {
// asynchronously called
}
);
stripe.charges.createRefund("ch_15fvyXEe31JkLCeQOo0SwFk9").then(function (refund) {
// asynchronously called
});
stripe.charges.updateRefund(
"ch_15fvyXEe31JkLCeQOo0SwFk9",
"re_15jzA4Ee31JkLCeQcxbTbjaL",
{ metadata: { key: "value" } },
function (err: StripeNode.IStripeError, refund: StripeNode.refunds.IRefund) {
// asynchronously called
}
);
stripe.charges.updateRefund(
"ch_15fvyXEe31JkLCeQOo0SwFk9",
"re_15jzA4Ee31JkLCeQcxbTbjaL",
{ metadata: { key: "value" } }).then(
function (refund) {
// asynchronously called
}
);
stripe.charges.listRefunds('ch_15fvyXEe31JkLCeQOo0SwFk9', function (err, refunds) {
// asynchronously called
});
stripe.charges.listRefunds('ch_15fvyXEe31JkLCeQOo0SwFk9').then(function (refunds) {
// asynchronously called
});
stripe.charges.listRefunds('ch_15fvyXEe31JkLCeQOo0SwFk9', { limit: 3 }, function (err, refunds) {
// asynchronously called
});
stripe.charges.listRefunds('ch_15fvyXEe31JkLCeQOo0SwFk9', { limit: 3 }).then(function (refunds) {
// asynchronously called
});
stripe.charges.markAsSafe('ch_15fvyXEe31JkLCeQOo0SwFk9', function (err, refunds) {
// asynchronously called
});
stripe.charges.markAsSafe('ch_15fvyXEe31JkLCeQOo0SwFk9').then(function (refunds) {
// asynchronously called
});
stripe.charges.markAsFraudulent('ch_15fvyXEe31JkLCeQOo0SwFk9', function (err, refunds) {
// asynchronously called
});
stripe.charges.markAsFraudulent('ch_15fvyXEe31JkLCeQOo0SwFk9').then(function (refunds) {
// asynchronously called
});
//#endregion
//#region Customer tests
// ##################################################################################
stripe.customers.create({
description: 'Customer for test@example.com',
source: "tok_15V2YhEe31JkLCeQy9iUgsJX" // obtained with Stripe.js
}, function (err, customer) {
// asynchronously called
});
stripe.customers.create({
description: 'Customer for test@example.com',
source: "tok_15V2YhEe31JkLCeQy9iUgsJX" // obtained with Stripe.js
}).then( function (customer) {
// asynchronously called
customer.cards.create({ card: "tok_17wV94BoqMA9o2xkhlAd3ALf"}).then(function (customer) {});
customer.cards.retrieve("card_17xMvXBoqMA9o2xkq6W5gamx").then(function (card) {});
customer.cards.update("card_17xMvXBoqMA9o2xkq6W5gamx", { name: "Test" }).then(function (card) {});
customer.cards.list().then(function (cards) {});
customer.cards.del("card_17xMvXBoqMA9o2xkq6W5gamx").then(function (confirmation) {});
customer.subscriptions.create({ plan: "gold" }).then(function (subscription) { });
customer.subscriptions.retrieve("sub_8Eluur5KoIKxuy").then(function (subscription) { });
customer.subscriptions.update("sub_8Eluur5KoIKxuy", { plan: "silver" }).then(function (subscription) { });
customer.subscriptions.list().then(function (subscriptions) { });
customer.subscriptions.del("sub_8Eluur5KoIKxuy").then(function (subscription) { });
customer.subscriptions.deleteDiscount("sub_8Eluur5KoIKxuy").then(function (confirmation) { });
});
stripe.customers.create({
description: 'Customer for test@example.com',
source: "tok_15V2YhEe31JkLCeQy9iUgsJX" // obtained with Stripe.js
}, { stripe_account: "" }, function (err, customer) {
// asynchronously called
});
stripe.customers.create({
description: 'Customer for test@example.com',
source: "tok_15V2YhEe31JkLCeQy9iUgsJX" // obtained with Stripe.js
}, { stripe_account: "" }).then(function (customer) {
});
stripe.customers.retrieve(
"cus_5rfJKDJkuxzh5Q",
function (err, customer) {
// asynchronously called
customer.cards.create(
{ card: "tok_15V2YhEe31JkLCeQy9iUgsJX" },
function (err, card) {
// asynchronously called
card.brand;
}
);
}
);
stripe.customers.retrieve("cus_5rfJKDJkuxzh5Q").then(function (customer) {
// asynchronously called
});
stripe.customers.update("cus_5rfJKDJkuxzh5Q", {
description: "Customer for test@example.com"
}, function (err, customer) {
// asynchronously called
});
stripe.customers.update("cus_5rfJKDJkuxzh5Q", {
description: "Customer for test@example.com"
}).then(function (customer) {
// asynchronously called
});
stripe.customers.del(
"cus_5rfJKDJkuxzh5Q",
function (err, confirmation) {
// asynchronously called
}
);
stripe.customers.del("cus_5rfJKDJkuxzh5Q").then(function (confirmation) {
// asynchronously called
}
);
stripe.customers.list({ limit: 3 }, function (err, customers) {
// asynchronously called
});
stripe.customers.list({ limit: 3 }).then(function (customers) {
// asynchronously called
});
stripe.customers.createCard(
"cus_5rfJKDJkuxzh5Q",
{ card: "tok_15V2YhEe31JkLCeQy9iUgsJX" },
function (err, card) {
// asynchronously called
}
);
stripe.customers.createCard("cus_5rfJKDJkuxzh5Q", { card: "tok_15V2YhEe31JkLCeQy9iUgsJX" }).then(function (card) {
// asynchronously called
});
stripe.customers.createSource(
"cus_5rfJKDJkuxzh5Q",
{ source: "tok_15V2YhEe31JkLCeQy9iUgsJX" },
function (err, source) {
var card = <StripeNode.ICard>source;
var bankAcc = <StripeNode.IBankAccount>source;
}
);
stripe.customers.createSource("cus_5rfJKDJkuxzh5Q", { source: "tok_15V2YhEe31JkLCeQy9iUgsJX" }).then(function (source) {
var card = <StripeNode.ICard>source;
var bankAcc = <StripeNode.IBankAccount>source;
});
stripe.customers.createSource(
"cus_5rfJKDJkuxzh5Q",
{
source: {
object: "card",
exp_month: 1,
exp_year: 16,
number: 4242424242424242
}
},
function (err, card) {
// asynchronously called
var obj: StripeNode.ICard = card;
}
);
stripe.customers.createSource(
"cus_5rfJKDJkuxzh5Q",
{
source: {
object: "card",
exp_month: 1,
exp_year: 16,
number: 4242424242424242
}
}).then(
function (card) {
// asynchronously called
var obj: StripeNode.ICard = card;
}
);
stripe.customers.createSource(
"cus_5rfJKDJkuxzh5Q",
{ source: "btok_8E264Lxsbyvj3E" },
function (err: StripeNode.IStripeError, bankAcc: StripeNode.IBankAccount) {
// asynchronously called
bankAcc.bank_name;
}
);
stripe.customers.createSource(
"cus_5rfJKDJkuxzh5Q",
{ source: "btok_8E264Lxsbyvj3E" }).then(function (bankAcc: StripeNode.IBankAccount) {
// asynchronously called
bankAcc.bank_name;
}
);
stripe.customers.retrieveCard(
"cus_5rfJKDJkuxzh5Q",
"card_15fvyXEe31JkLCeQ9KMktP5S",
function (err, card) {
// asynchronously called
var obj: StripeNode.ICard = card;
}
);
stripe.customers.retrieveCard(
"cus_5rfJKDJkuxzh5Q",
"card_15fvyXEe31JkLCeQ9KMktP5S").then(function (card) {
// asynchronously called
var obj: StripeNode.ICard = card;
});
stripe.customers.updateCard(
"cus_5rfJKDJkuxzh5Q",
"card_15fvyXEe31JkLCeQ9KMktP5S",
{ name: "Jane Austen" },
function (err, card) {
// asynchronously called
var obj: StripeNode.ICard = card;
}
);
stripe.customers.updateCard(
"cus_5rfJKDJkuxzh5Q",
"card_15fvyXEe31JkLCeQ9KMktP5S",
{ name: "Jane Austen" }).then(function (card) {
// asynchronously called
var obj: StripeNode.ICard = card;
});
stripe.customers.deleteCard(
"cus_5rfJKDJkuxzh5Q",
"card_15fvyXEe31JkLCeQ9KMktP5S",
function (err, confirmation) {
// asynchronously called
}
);
stripe.customers.deleteCard(
"cus_5rfJKDJkuxzh5Q",
"card_15fvyXEe31JkLCeQ9KMktP5S").then(function (confirmation) {
// asynchronously called
});
stripe.customers.listCards('cu_15fvyVEe31JkLCeQvr155iqc', null, function (err, cards) {
// asynchronously called
});
stripe.customers.listCards('cu_15fvyVEe31JkLCeQvr155iqc', null).then(function (cards) {
// asynchronously called
});
stripe.customers.listCards('cu_15fvyVEe31JkLCeQvr155iqc', function (err, cards) {
// asynchronously called
});
stripe.customers.listCards('cu_15fvyVEe31JkLCeQvr155iqc').then(function (cards) {
// asynchronously called
});
stripe.customers.retrieveSubscription(
"cus_5rfJKDJkuxzh5Q",
"sub_5rfJxnBLGSwsYp",
function (err, subscription) {
// asynchronously called
}
);
stripe.customers.retrieveSubscription("cus_5rfJKDJkuxzh5Q", "sub_5rfJxnBLGSwsYp").then(function (subscription) {
// asynchronously called
});
stripe.customers.updateSubscription("cus_5rfJKDJkuxzh5Q", "sub_5rfJxnBLGSwsYp", { plan: "platypi-dev" },
function (err, subscription) {
// asynchronously called
}
);
stripe.customers.updateSubscription("cus_5rfJKDJkuxzh5Q", "sub_5rfJxnBLGSwsYp", { plan: "platypi-dev" }).then(function (subscription) {
// asynchronously called
});
stripe.customers.cancelSubscription(
"cus_5rfJKDJkuxzh5Q",
"sub_5rfJxnBLGSwsYp",
null,
function (err, confirmation) {
// asynchronously called
}
);
stripe.customers.cancelSubscription("cus_5rfJKDJkuxzh5Q", "sub_5rfJxnBLGSwsYp", null).then(function (confirmation) {
// asynchronously called
});
stripe.customers.cancelSubscription(
"cus_5rfJKDJkuxzh5Q",
"sub_5rfJxnBLGSwsYp",
function (err, confirmation) {
// asynchronously called
}
);
stripe.customers.cancelSubscription("cus_5rfJKDJkuxzh5Q", "sub_5rfJxnBLGSwsYp").then(function (confirmation) {
// asynchronously called
});
stripe.customers.listSubscriptions('cu_15fvyVEe31JkLCeQvr155iqc', null, function (err, subscriptions) {
// asynchronously called
});
stripe.customers.listSubscriptions('cu_15fvyVEe31JkLCeQvr155iqc', null).then(function (subscriptions) {
// asynchronously called
});
stripe.customers.listSubscriptions('cu_15fvyVEe31JkLCeQvr155iqc', function (err, subscriptions) {
// asynchronously called
});
stripe.customers.listSubscriptions('cu_15fvyVEe31JkLCeQvr155iqc').then(function (subscriptions) {
// asynchronously called
});
stripe.customers.deleteDiscount("cus_5rfJKDJkuxzh5Q", function (err, confirmation) {
// asynchronously called
});
stripe.customers.deleteDiscount("cus_5rfJKDJkuxzh5Q").then(function (confirmation) {
// asynchronously called
});
stripe.customers.deleteSubscriptionDiscount("cus_5rfJKDJkuxzh5Q", "sub_5rfJxnBLGSwsYp", function (err, confirmation) {
// asynchronously called
});
stripe.customers.deleteSubscriptionDiscount("cus_5rfJKDJkuxzh5Q", "sub_5rfJxnBLGSwsYp").then(function (confirmation) {
// asynchronously called
});
//#endregion
//#region Disputes tests
// ##################################################################################
//#endregion
//#region Events tests
// ##################################################################################
//#endregion
//#region File Uploads tests
// ##################################################################################
//#endregion
//#region Refunds tests
// ##################################################################################
//#endregion
//#region Tokens tests
// ##################################################################################
//#endregion
//#region Transfers tests
// ##################################################################################
//#endregion
//#region Transfers Reversals tests
// ##################################################################################
//#endregion
//#region Accounts test
// ##################################################################################
stripe.accounts.create({
email: ""
}, function (err, customer) {
// asynchronously called
}
);
stripe.accounts.create({
email: ""
}).then(function (customer) {
// asynchronously called
}
);
stripe.accounts.retrieve(
"acct_17wV8KBoqMA9o2xk",
function (err, account) {
// asynchronously called
}
);
stripe.accounts.retrieve(
"acct_17wV8KBoqMA9o2xk").then(
function (account) {
// asynchronously called
}
);
stripe.accounts.update("acct_17wV8KBoqMA9o2xk",
{
support_phone: "555-867-5309"
},
function(err, account) {
// asynchronously called
}
);
stripe.accounts.update("acct_17wV8KBoqMA9o2xk",
{
support_phone: "555-867-5309"
}).then(
function(account) {
// asynchronously called
}
);
stripe.accounts.del("acct_17wV8KBoqMA9o2xk", function (err, confirmation) { });
stripe.accounts.del("acct_17wV8KBoqMA9o2xk").then(function (confirmation) { });
stripe.accounts.reject("acct_17wV8KBoqMA9o2xk", { reason: 'fraud' }, function (err, account) {
// asynchronously called
});
stripe.accounts.reject("acct_17wV8KBoqMA9o2xk", { reason: 'fraud' }).then(function (account) {
// asynchronously called
});
stripe.accounts.list(
{ limit: 3 },
function (err, accounts) {
// asynchronously called
}
);
stripe.accounts.list(
{ limit: 3 }).then(
function (accounts) {
// asynchronously called
}
);
//#endregion
//#region Application Fee Refunds tests
// ##################################################################################
//#endregion
//#region Application Fees tests
// ##################################################################################
//#endregion
//#region Country Specs tests
// ##################################################################################
//#endregion
//#region External Accounts tests
// ##################################################################################
stripe.accounts.createExternalAccount("", { external_account: "btok_8E264Lxsbyvj3E" }, function (err, extAcc) {
var card = <StripeNode.ICard>extAcc;
var bankAcc = <StripeNode.IBankAccount>extAcc;
});
stripe.accounts.createExternalAccount("", { external_account: "tok_15V2YhEe31JkLCeQy9iUgsJX" }).then(function (extAcc) {
var card = <StripeNode.ICard>extAcc;
var bankAcc = <StripeNode.IBankAccount>extAcc;
});
stripe.accounts.createExternalAccount("", { external_account: "tok_15V2YhEe31JkLCeQy9iUgsJX" }, { stripe_account: "acct_17wV8KOoqMF9a2xk" }).then(function (extAcc) {
var card = <StripeNode.ICard>extAcc;
var bankAcc = <StripeNode.IBankAccount>extAcc;
});
stripe.accounts.createExternalAccount("", { external_account: "tok_15V2YhEe31JkLCeQy9iUgsJX" }, "acct_17wV8KOoqMF9a2xk").then(function (extAcc) {
var card = <StripeNode.ICard>extAcc;
var bankAcc = <StripeNode.IBankAccount>extAcc;
});
//#endregion
//#region Bank Accounts tests
// ##################################################################################
//#endregion
//#region Bitcoin Receivers tests
// ##################################################################################
//#endregion
//#region Cards tests
// ##################################################################################
//#endregion
//#region Orders tests
// ##################################################################################
//#endregion
//#region Order Items tests
// ##################################################################################
//#endregion
//#region Products tests
// ##################################################################################
//#endregion
//#region SKUs tests
// ##################################################################################
//#endregion
//#region Coupons tests
// ##################################################################################
stripe.coupons.create({
percent_off: 25,
duration: 'repeating',
duration_in_months: 3,
id: '25OFF'
}, function (err, coupon) {
// asynchronously called
});
stripe.coupons.create({
percent_off: 25,
duration: 'repeating',
duration_in_months: 3,
id: '25OFF'
}).then(function (coupon) {
// asynchronously called
});
stripe.coupons.retrieve(
"25OFF",
function (err, coupon) {
// asynchronously called
}
);
stripe.coupons.retrieve("25OFF").then(function (coupon) {
// asynchronously called
});
stripe.coupons.update("25OFF", {
metadata: { key: "value" }
}, function (err: StripeNode.IStripeError, coupon: StripeNode.coupons.ICoupon) {
// asynchronously called
});
stripe.coupons.update("25OFF", {
metadata: { key: "value" }
}).then(function (coupon) {
// asynchronously called
});
stripe.coupons.del("25OFF", function (err, confirmation) {
});
stripe.coupons.del("25OFF").then(function (confirmation) {
});
stripe.coupons.list({ limit: 3 }, function (err, coupons) {
// asynchronously called
});
stripe.coupons.list({ limit: 3 }).then(function (coupons) {
// asynchronously called
});
//#endregion
//#region Discounts tests
// ##################################################################################
//#endregion
//#region Invoices tests
// ##################################################################################
stripe.invoices.create({
customer: "cus_5rfJKDJkuxzh5Q"
}, function (err, invoice) {
// asynchronously called
});
stripe.invoices.create({
customer: "cus_5rfJKDJkuxzh5Q"
}).then(function (invoice) {
// asynchronously called
});
stripe.invoices.retrieve(
"in_15fvyXEe31JkLCeQH7QbgZZb",
function (err, invoice) {
// asynchronously called
}
);
stripe.invoices.retrieve("in_15fvyXEe31JkLCeQH7QbgZZb").then(function (invoice) {
// asynchronously called
});
stripe.invoices.retrieveLines(
"in_15fvyXEe31JkLCeQH7QbgZZb",
{ limit: 5 },
function (err, lines) {
// asynchronously called
lines.data[0].type = "invoiceitem"
}
);
stripe.invoices.retrieveLines("in_15fvyXEe31JkLCeQH7QbgZZb", { limit: 5 }).then(function (lines) {
// asynchronously called
});
stripe.invoices.retrieveUpcoming(
"cus_5rfJKDJkuxzh5Q",
null,
function (err, upcoming) {
// asynchronously called
}
);
stripe.invoices.retrieveUpcoming("cus_5rfJKDJkuxzh5Q", null).then(function (upcoming) {
// asynchronously called
});
stripe.invoices.retrieveUpcoming(
"cus_5rfJKDJkuxzh5Q",
function (err, upcoming) {
// asynchronously called
}
);
stripe.invoices.retrieveUpcoming("cus_5rfJKDJkuxzh5Q").then(function (upcoming) {
// asynchronously called
});
stripe.invoices.update(
"in_15fvyXEe31JkLCeQH7QbgZZb",
{
closed: true
},
function (err, invoice) {
// asynchronously called
}
);
stripe.invoices.update(
"in_15fvyXEe31JkLCeQH7QbgZZb",
{
closed: true
}).then(function (invoice) {
// asynchronously called
}
);
stripe.invoices.pay("in_15fvyXEe31JkLCeQH7QbgZZb", function (err, invoice) {
// asynchronously called
});
stripe.invoices.pay("in_15fvyXEe31JkLCeQH7QbgZZb").then(function (invoice) {
// asynchronously called
});
stripe.invoices.list(
{ customer: "cus_5rfJKDJkuxzh5Q", limit: 3 },
function (err, invoices) {
// asynchronously called
}
);
stripe.invoices.list({ customer: "cus_5rfJKDJkuxzh5Q", limit: 3 }).then(function (invoices) {
// asynchronously called
});
//#endregion
//#region Invoice Items tests
// ##################################################################################
//#endregion
//#region Plans tests
// ##################################################################################
stripe.plans.create({
amount: 2000,
interval: "month",
name: "Amazing Gold Plan",
currency: "usd",
id: "gold"
}, function (err, plan) {
// asynchronously called
});
stripe.plans.create({
amount: 2000,
interval: "month",
name: "Amazing Gold Plan",
currency: "usd",
id: "gold"
}).then(function (plan) {
// asynchronously called
});
stripe.plans.retrieve(
"platypi-dev",
function (err, plan) {
// asynchronously called
}
);
stripe.plans.retrieve("platypi-dev").then(function (plan) {
// asynchronously called
});
stripe.plans.update("platypi-dev", {
name: "New plan name"
}, function (err, plan) {
// asynchronously called
});
stripe.plans.update("platypi-dev", { name: "New plan name" }).then(function (plan) {
// asynchronously called
});
stripe.plans.del(
"platypi-dev",
function (err, confirmation) {
// asynchronously called
}
);
stripe.plans.del("platypi-dev").then(function (confirmation) {
// asynchronously called
});
stripe.plans.list(null, function (err, plans) {
// asynchronously called
});
stripe.plans.list(null).then(function (plans) {
// asynchronously called
});
stripe.plans.list(function (err, plans) {
// asynchronously called
});
stripe.plans.list().then(function (plans) {
// asynchronously called
});
//#endregion
//#region Subscriptions tests
// ##################################################################################
//#endregion