🐛 Fix Stripe pagination (#2402)

* Fix Stripe pagination

* Fix displayOptions for type
This commit is contained in:
Iván Ovejero
2021-11-04 01:42:57 +01:00
committed by GitHub
parent aaa39876f9
commit a3bfdd3805
3 changed files with 27 additions and 11 deletions

View File

@@ -255,7 +255,7 @@ export class Stripe implements INodeType {
// charge: getAll
// ----------------------------------
responseData = await handleListing.call(this, resource);
responseData = await handleListing.call(this, resource, i);
} else if (operation === 'update') {
@@ -313,7 +313,7 @@ export class Stripe implements INodeType {
// coupon: getAll
// ----------------------------------
responseData = await handleListing.call(this, resource);
responseData = await handleListing.call(this, resource, i);
}
@@ -374,7 +374,7 @@ export class Stripe implements INodeType {
qs.email = filters.email;
}
responseData = await handleListing.call(this, resource, qs);
responseData = await handleListing.call(this, resource, i, qs);
} else if (operation === 'update') {