glitch-javascript-sdk 2.7.0 → 2.7.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/cjs/index.js CHANGED
@@ -21867,6 +21867,12 @@ var Communities = /** @class */ (function () {
21867
21867
  Communities.getCustomStatement = function (community_id, params) {
21868
21868
  return Requests.processRoute(CommunitiesRoute.routes.getCustomStatement, undefined, { community_id: community_id }, params);
21869
21869
  };
21870
+ /**
21871
+ * List all Stripe invoices for the community.
21872
+ */
21873
+ Communities.listInvoices = function (community_id) {
21874
+ return Requests.processRoute(CommunitiesRoute.routes.listInvoices, undefined, { community_id: community_id });
21875
+ };
21870
21876
  return Communities;
21871
21877
  }());
21872
21878