stripe 18.5.0-beta.2 → 18.6.0-alpha.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.
Files changed (200) hide show
  1. package/CHANGELOG.md +108 -0
  2. package/OPENAPI_VERSION +1 -1
  3. package/README.md +5 -3
  4. package/VERSION +1 -1
  5. package/cjs/Error.js +63 -55
  6. package/cjs/RequestSender.js +7 -4
  7. package/cjs/apiVersion.js +1 -1
  8. package/cjs/resources/Mandates.js +5 -0
  9. package/cjs/resources/Subscriptions.js +4 -0
  10. package/cjs/resources/V2/Billing/BillSettings/Versions.js +17 -0
  11. package/cjs/resources/V2/Billing/BillSettings.js +27 -0
  12. package/cjs/resources/V2/Billing/Cadences.js +23 -0
  13. package/cjs/resources/V2/Billing/CollectionSettings/Versions.js +17 -0
  14. package/cjs/resources/V2/Billing/CollectionSettings.js +30 -0
  15. package/cjs/resources/V2/Billing/CustomPricingUnits.js +25 -0
  16. package/cjs/resources/V2/Billing/Intents/Actions.js +17 -0
  17. package/cjs/resources/V2/Billing/Intents.js +36 -0
  18. package/cjs/resources/V2/Billing/LicenseFeeSubscriptions.js +12 -0
  19. package/cjs/resources/V2/Billing/LicenseFees/Versions.js +17 -0
  20. package/cjs/resources/V2/Billing/LicenseFees.js +27 -0
  21. package/cjs/resources/V2/Billing/LicensedItems.js +25 -0
  22. package/cjs/resources/V2/Billing/MeteredItems.js +22 -0
  23. package/cjs/resources/V2/Billing/PricingPlanSubscriptions.js +17 -0
  24. package/cjs/resources/V2/Billing/PricingPlans/Components.js +29 -0
  25. package/cjs/resources/V2/Billing/PricingPlans/Versions.js +17 -0
  26. package/cjs/resources/V2/Billing/PricingPlans.js +29 -0
  27. package/cjs/resources/V2/Billing/Profiles.js +19 -0
  28. package/cjs/resources/V2/Billing/RateCardSubscriptions.js +29 -0
  29. package/cjs/resources/V2/Billing/RateCards/Rates.js +25 -0
  30. package/cjs/resources/V2/Billing/RateCards/Versions.js +17 -0
  31. package/cjs/resources/V2/Billing/RateCards.js +29 -0
  32. package/cjs/resources/V2/Billing/ServiceActions.js +16 -0
  33. package/cjs/resources/V2/Core/ClaimableSandboxes.js +12 -0
  34. package/cjs/resources/V2/Reporting/ReportRuns.js +13 -0
  35. package/cjs/resources/V2/Reporting/Reports.js +12 -0
  36. package/cjs/resources/V2/Tax/AutomaticRules.js +22 -0
  37. package/cjs/resources.js +64 -24
  38. package/cjs/stripe.core.js +27 -1
  39. package/esm/Error.js +50 -43
  40. package/esm/RequestSender.js +7 -4
  41. package/esm/apiVersion.js +1 -1
  42. package/esm/resources/Mandates.js +5 -0
  43. package/esm/resources/Subscriptions.js +4 -0
  44. package/esm/resources/V2/Billing/BillSettings/Versions.js +14 -0
  45. package/esm/resources/V2/Billing/BillSettings.js +24 -0
  46. package/esm/resources/V2/Billing/Cadences.js +20 -0
  47. package/esm/resources/V2/Billing/CollectionSettings/Versions.js +14 -0
  48. package/esm/resources/V2/Billing/CollectionSettings.js +27 -0
  49. package/esm/resources/V2/Billing/CustomPricingUnits.js +22 -0
  50. package/esm/resources/V2/Billing/Intents/Actions.js +14 -0
  51. package/esm/resources/V2/Billing/Intents.js +33 -0
  52. package/esm/resources/V2/Billing/LicenseFeeSubscriptions.js +9 -0
  53. package/esm/resources/V2/Billing/LicenseFees/Versions.js +14 -0
  54. package/esm/resources/V2/Billing/LicenseFees.js +24 -0
  55. package/esm/resources/V2/Billing/LicensedItems.js +22 -0
  56. package/esm/resources/V2/Billing/MeteredItems.js +19 -0
  57. package/esm/resources/V2/Billing/PricingPlanSubscriptions.js +14 -0
  58. package/esm/resources/V2/Billing/PricingPlans/Components.js +26 -0
  59. package/esm/resources/V2/Billing/PricingPlans/Versions.js +14 -0
  60. package/esm/resources/V2/Billing/PricingPlans.js +26 -0
  61. package/esm/resources/V2/Billing/Profiles.js +16 -0
  62. package/esm/resources/V2/Billing/RateCardSubscriptions.js +26 -0
  63. package/esm/resources/V2/Billing/RateCards/Rates.js +22 -0
  64. package/esm/resources/V2/Billing/RateCards/Versions.js +14 -0
  65. package/esm/resources/V2/Billing/RateCards.js +26 -0
  66. package/esm/resources/V2/Billing/ServiceActions.js +13 -0
  67. package/esm/resources/V2/Core/ClaimableSandboxes.js +9 -0
  68. package/esm/resources/V2/Reporting/ReportRuns.js +10 -0
  69. package/esm/resources/V2/Reporting/Reports.js +9 -0
  70. package/esm/resources/V2/Tax/AutomaticRules.js +19 -0
  71. package/esm/resources.js +45 -5
  72. package/esm/stripe.core.js +27 -1
  73. package/package.json +1 -1
  74. package/types/AccountSessions.d.ts +45 -0
  75. package/types/AccountSessionsResource.d.ts +76 -13
  76. package/types/Accounts.d.ts +2 -2
  77. package/types/Balance.d.ts +2 -7
  78. package/types/BalanceSettings.d.ts +52 -46
  79. package/types/BalanceSettingsResource.d.ts +55 -46
  80. package/types/Billing/AlertTriggereds.d.ts +16 -1
  81. package/types/Billing/Alerts.d.ts +116 -1
  82. package/types/Billing/AlertsResource.d.ts +93 -2
  83. package/types/Billing/CreditBalanceSummary.d.ts +118 -2
  84. package/types/Billing/CreditBalanceSummaryResource.d.ts +12 -0
  85. package/types/Billing/CreditBalanceTransactions.d.ts +118 -2
  86. package/types/Billing/CreditGrants.d.ts +71 -1
  87. package/types/Billing/CreditGrantsResource.d.ts +32 -1
  88. package/types/Billing/MeterUsageRows.d.ts +1 -1
  89. package/types/Billing/Meters.d.ts +1 -1
  90. package/types/Billing/MetersResource.d.ts +1 -1
  91. package/types/BillingPortal/Configurations.d.ts +5 -0
  92. package/types/BillingPortal/ConfigurationsResource.d.ts +10 -0
  93. package/types/Charges.d.ts +71 -5
  94. package/types/Checkout/Sessions.d.ts +128 -2
  95. package/types/Checkout/SessionsResource.d.ts +167 -3
  96. package/types/CreditNotesResource.d.ts +3 -3
  97. package/types/Disputes.d.ts +7 -2
  98. package/types/Errors.d.ts +51 -45
  99. package/types/FileLinksResource.d.ts +1 -1
  100. package/types/Files.d.ts +1 -0
  101. package/types/FilesResource.d.ts +3 -1
  102. package/types/InvoiceItems.d.ts +104 -2
  103. package/types/InvoiceLineItems.d.ts +113 -2
  104. package/types/InvoicePaymentsResource.d.ts +3 -0
  105. package/types/Invoices.d.ts +19 -2
  106. package/types/InvoicesResource.d.ts +64 -0
  107. package/types/Mandates.d.ts +58 -1
  108. package/types/MandatesResource.d.ts +31 -0
  109. package/types/PaymentAttemptRecords.d.ts +154 -9
  110. package/types/PaymentAttemptRecordsResource.d.ts +5 -0
  111. package/types/PaymentIntents.d.ts +136 -2
  112. package/types/PaymentIntentsResource.d.ts +280 -3
  113. package/types/PaymentLinksResource.d.ts +1 -1
  114. package/types/PaymentMethods.d.ts +5 -0
  115. package/types/PaymentRecords.d.ts +154 -9
  116. package/types/PaymentRecordsResource.d.ts +24 -3
  117. package/types/Payouts.d.ts +1 -1
  118. package/types/PromotionCodes.d.ts +5 -2
  119. package/types/QuotePreviewInvoices.d.ts +19 -2
  120. package/types/QuotePreviewSubscriptionSchedules.d.ts +47 -0
  121. package/types/SetupAttempts.d.ts +7 -1
  122. package/types/SetupIntents.d.ts +95 -1
  123. package/types/SetupIntentsResource.d.ts +207 -0
  124. package/types/SubscriptionSchedules.d.ts +47 -0
  125. package/types/SubscriptionSchedulesResource.d.ts +112 -0
  126. package/types/Subscriptions.d.ts +5 -0
  127. package/types/SubscriptionsResource.d.ts +145 -7
  128. package/types/Terminal/Configurations.d.ts +28 -0
  129. package/types/Terminal/ConfigurationsResource.d.ts +72 -0
  130. package/types/TestHelpers/Terminal/ReadersResource.d.ts +28 -1
  131. package/types/V2/Billing/BillSettingVersions.d.ts +97 -0
  132. package/types/V2/Billing/BillSettings/VersionsResource.d.ts +58 -0
  133. package/types/V2/Billing/BillSettings.d.ts +120 -0
  134. package/types/V2/Billing/BillSettingsResource.d.ts +241 -0
  135. package/types/V2/Billing/Cadences.d.ts +354 -0
  136. package/types/V2/Billing/CadencesResource.d.ts +489 -0
  137. package/types/V2/Billing/CollectionSettingVersions.d.ts +314 -0
  138. package/types/V2/Billing/CollectionSettings/VersionsResource.d.ts +62 -0
  139. package/types/V2/Billing/CollectionSettings.d.ts +337 -0
  140. package/types/V2/Billing/CollectionSettingsResource.d.ts +675 -0
  141. package/types/V2/Billing/CustomPricingUnits.d.ts +56 -0
  142. package/types/V2/Billing/CustomPricingUnitsResource.d.ts +122 -0
  143. package/types/V2/Billing/IntentActions.d.ts +458 -0
  144. package/types/V2/Billing/Intents/ActionsResource.d.ts +58 -0
  145. package/types/V2/Billing/Intents.d.ts +117 -0
  146. package/types/V2/Billing/IntentsResource.d.ts +574 -0
  147. package/types/V2/Billing/LicenseFeeSubscriptions.d.ts +64 -0
  148. package/types/V2/Billing/LicenseFeeSubscriptionsResource.d.ts +28 -0
  149. package/types/V2/Billing/LicenseFeeVersions.d.ts +106 -0
  150. package/types/V2/Billing/LicenseFees/VersionsResource.d.ts +58 -0
  151. package/types/V2/Billing/LicenseFees.d.ts +163 -0
  152. package/types/V2/Billing/LicenseFeesResource.d.ts +290 -0
  153. package/types/V2/Billing/LicensedItems.d.ts +73 -0
  154. package/types/V2/Billing/LicensedItemsResource.d.ts +157 -0
  155. package/types/V2/Billing/MeteredItems.d.ts +101 -0
  156. package/types/V2/Billing/MeteredItemsResource.d.ts +189 -0
  157. package/types/V2/Billing/PricingPlanComponents.d.ts +109 -0
  158. package/types/V2/Billing/PricingPlanSubscriptions.d.ts +134 -0
  159. package/types/V2/Billing/PricingPlanSubscriptionsResource.d.ts +93 -0
  160. package/types/V2/Billing/PricingPlanVersions.d.ts +49 -0
  161. package/types/V2/Billing/PricingPlans/ComponentsResource.d.ts +197 -0
  162. package/types/V2/Billing/PricingPlans/VersionsResource.d.ts +58 -0
  163. package/types/V2/Billing/PricingPlans.d.ts +84 -0
  164. package/types/V2/Billing/PricingPlansResource.d.ts +151 -0
  165. package/types/V2/Billing/Profiles.d.ts +70 -0
  166. package/types/V2/Billing/ProfilesResource.d.ts +150 -0
  167. package/types/V2/Billing/RateCardRates.d.ts +138 -0
  168. package/types/V2/Billing/RateCardSubscriptions.d.ts +134 -0
  169. package/types/V2/Billing/RateCardSubscriptionsResource.d.ts +157 -0
  170. package/types/V2/Billing/RateCardVersions.d.ts +39 -0
  171. package/types/V2/Billing/RateCards/RatesResource.d.ts +209 -0
  172. package/types/V2/Billing/RateCards/VersionsResource.d.ts +58 -0
  173. package/types/V2/Billing/RateCards.d.ts +98 -0
  174. package/types/V2/Billing/RateCardsResource.d.ts +162 -0
  175. package/types/V2/Billing/ServiceActions.d.ts +240 -0
  176. package/types/V2/Billing/ServiceActionsResource.d.ts +302 -0
  177. package/types/V2/Core/Accounts/PersonsResource.d.ts +32 -0
  178. package/types/V2/Core/Accounts.d.ts +49 -0
  179. package/types/V2/Core/AccountsResource.d.ts +78 -0
  180. package/types/V2/Core/ClaimableSandboxes.d.ts +349 -0
  181. package/types/V2/Core/ClaimableSandboxesResource.d.ts +310 -0
  182. package/types/V2/Core/Persons.d.ts +16 -0
  183. package/types/V2/EventTypes.d.ts +3682 -632
  184. package/types/V2/Events.d.ts +7 -0
  185. package/types/V2/MoneyManagement/FinancialAccounts.d.ts +7 -2
  186. package/types/V2/MoneyManagement/FinancialAccountsResource.d.ts +5 -0
  187. package/types/V2/MoneyManagement/OutboundPaymentQuotes.d.ts +1 -1
  188. package/types/V2/MoneyManagement/TransactionEntries.d.ts +7 -0
  189. package/types/V2/MoneyManagement/Transactions.d.ts +7 -0
  190. package/types/V2/Reporting/ReportRuns.d.ts +178 -0
  191. package/types/V2/Reporting/ReportRunsResource.d.ts +99 -0
  192. package/types/V2/Reporting/Reports.d.ts +120 -0
  193. package/types/V2/Reporting/ReportsResource.d.ts +30 -0
  194. package/types/V2/Tax/AutomaticRules.d.ts +53 -0
  195. package/types/V2/Tax/AutomaticRulesResource.d.ts +102 -0
  196. package/types/WebhookEndpointsResource.d.ts +2 -1
  197. package/types/Webhooks.d.ts +2 -0
  198. package/types/index.d.ts +125 -5
  199. package/types/lib.d.ts +1 -1
  200. package/types/test/typescriptTest.ts +3 -3
@@ -0,0 +1,12 @@
1
+ "use strict";
2
+ // File generated from our OpenAPI spec
3
+ Object.defineProperty(exports, "__esModule", { value: true });
4
+ exports.LicenseFeeSubscriptions = void 0;
5
+ const StripeResource_js_1 = require("../../../StripeResource.js");
6
+ const stripeMethod = StripeResource_js_1.StripeResource.method;
7
+ exports.LicenseFeeSubscriptions = StripeResource_js_1.StripeResource.extend({
8
+ retrieve: stripeMethod({
9
+ method: 'GET',
10
+ fullPath: '/v2/billing/license_fee_subscriptions/{id}',
11
+ }),
12
+ });
@@ -0,0 +1,17 @@
1
+ "use strict";
2
+ // File generated from our OpenAPI spec
3
+ Object.defineProperty(exports, "__esModule", { value: true });
4
+ exports.Versions = void 0;
5
+ const StripeResource_js_1 = require("../../../../StripeResource.js");
6
+ const stripeMethod = StripeResource_js_1.StripeResource.method;
7
+ exports.Versions = StripeResource_js_1.StripeResource.extend({
8
+ retrieve: stripeMethod({
9
+ method: 'GET',
10
+ fullPath: '/v2/billing/license_fees/{license_fee_id}/versions/{id}',
11
+ }),
12
+ list: stripeMethod({
13
+ method: 'GET',
14
+ fullPath: '/v2/billing/license_fees/{license_fee_id}/versions',
15
+ methodType: 'list',
16
+ }),
17
+ });
@@ -0,0 +1,27 @@
1
+ "use strict";
2
+ // File generated from our OpenAPI spec
3
+ Object.defineProperty(exports, "__esModule", { value: true });
4
+ exports.LicenseFees = void 0;
5
+ const StripeResource_js_1 = require("../../../StripeResource.js");
6
+ const Versions_js_1 = require("./LicenseFees/Versions.js");
7
+ const stripeMethod = StripeResource_js_1.StripeResource.method;
8
+ exports.LicenseFees = StripeResource_js_1.StripeResource.extend({
9
+ constructor: function (...args) {
10
+ StripeResource_js_1.StripeResource.apply(this, args);
11
+ this.versions = new Versions_js_1.Versions(...args);
12
+ },
13
+ create: stripeMethod({ method: 'POST', fullPath: '/v2/billing/license_fees' }),
14
+ retrieve: stripeMethod({
15
+ method: 'GET',
16
+ fullPath: '/v2/billing/license_fees/{id}',
17
+ }),
18
+ update: stripeMethod({
19
+ method: 'POST',
20
+ fullPath: '/v2/billing/license_fees/{id}',
21
+ }),
22
+ list: stripeMethod({
23
+ method: 'GET',
24
+ fullPath: '/v2/billing/license_fees',
25
+ methodType: 'list',
26
+ }),
27
+ });
@@ -0,0 +1,25 @@
1
+ "use strict";
2
+ // File generated from our OpenAPI spec
3
+ Object.defineProperty(exports, "__esModule", { value: true });
4
+ exports.LicensedItems = void 0;
5
+ const StripeResource_js_1 = require("../../../StripeResource.js");
6
+ const stripeMethod = StripeResource_js_1.StripeResource.method;
7
+ exports.LicensedItems = StripeResource_js_1.StripeResource.extend({
8
+ create: stripeMethod({
9
+ method: 'POST',
10
+ fullPath: '/v2/billing/licensed_items',
11
+ }),
12
+ retrieve: stripeMethod({
13
+ method: 'GET',
14
+ fullPath: '/v2/billing/licensed_items/{id}',
15
+ }),
16
+ update: stripeMethod({
17
+ method: 'POST',
18
+ fullPath: '/v2/billing/licensed_items/{id}',
19
+ }),
20
+ list: stripeMethod({
21
+ method: 'GET',
22
+ fullPath: '/v2/billing/licensed_items',
23
+ methodType: 'list',
24
+ }),
25
+ });
@@ -0,0 +1,22 @@
1
+ "use strict";
2
+ // File generated from our OpenAPI spec
3
+ Object.defineProperty(exports, "__esModule", { value: true });
4
+ exports.MeteredItems = void 0;
5
+ const StripeResource_js_1 = require("../../../StripeResource.js");
6
+ const stripeMethod = StripeResource_js_1.StripeResource.method;
7
+ exports.MeteredItems = StripeResource_js_1.StripeResource.extend({
8
+ create: stripeMethod({ method: 'POST', fullPath: '/v2/billing/metered_items' }),
9
+ retrieve: stripeMethod({
10
+ method: 'GET',
11
+ fullPath: '/v2/billing/metered_items/{id}',
12
+ }),
13
+ update: stripeMethod({
14
+ method: 'POST',
15
+ fullPath: '/v2/billing/metered_items/{id}',
16
+ }),
17
+ list: stripeMethod({
18
+ method: 'GET',
19
+ fullPath: '/v2/billing/metered_items',
20
+ methodType: 'list',
21
+ }),
22
+ });
@@ -0,0 +1,17 @@
1
+ "use strict";
2
+ // File generated from our OpenAPI spec
3
+ Object.defineProperty(exports, "__esModule", { value: true });
4
+ exports.PricingPlanSubscriptions = void 0;
5
+ const StripeResource_js_1 = require("../../../StripeResource.js");
6
+ const stripeMethod = StripeResource_js_1.StripeResource.method;
7
+ exports.PricingPlanSubscriptions = StripeResource_js_1.StripeResource.extend({
8
+ retrieve: stripeMethod({
9
+ method: 'GET',
10
+ fullPath: '/v2/billing/pricing_plan_subscriptions/{id}',
11
+ }),
12
+ list: stripeMethod({
13
+ method: 'GET',
14
+ fullPath: '/v2/billing/pricing_plan_subscriptions',
15
+ methodType: 'list',
16
+ }),
17
+ });
@@ -0,0 +1,29 @@
1
+ "use strict";
2
+ // File generated from our OpenAPI spec
3
+ Object.defineProperty(exports, "__esModule", { value: true });
4
+ exports.Components = void 0;
5
+ const StripeResource_js_1 = require("../../../../StripeResource.js");
6
+ const stripeMethod = StripeResource_js_1.StripeResource.method;
7
+ exports.Components = StripeResource_js_1.StripeResource.extend({
8
+ create: stripeMethod({
9
+ method: 'POST',
10
+ fullPath: '/v2/billing/pricing_plans/{pricing_plan_id}/components',
11
+ }),
12
+ retrieve: stripeMethod({
13
+ method: 'GET',
14
+ fullPath: '/v2/billing/pricing_plans/{pricing_plan_id}/components/{id}',
15
+ }),
16
+ update: stripeMethod({
17
+ method: 'POST',
18
+ fullPath: '/v2/billing/pricing_plans/{pricing_plan_id}/components/{id}',
19
+ }),
20
+ list: stripeMethod({
21
+ method: 'GET',
22
+ fullPath: '/v2/billing/pricing_plans/{pricing_plan_id}/components',
23
+ methodType: 'list',
24
+ }),
25
+ del: stripeMethod({
26
+ method: 'DELETE',
27
+ fullPath: '/v2/billing/pricing_plans/{pricing_plan_id}/components/{id}',
28
+ }),
29
+ });
@@ -0,0 +1,17 @@
1
+ "use strict";
2
+ // File generated from our OpenAPI spec
3
+ Object.defineProperty(exports, "__esModule", { value: true });
4
+ exports.Versions = void 0;
5
+ const StripeResource_js_1 = require("../../../../StripeResource.js");
6
+ const stripeMethod = StripeResource_js_1.StripeResource.method;
7
+ exports.Versions = StripeResource_js_1.StripeResource.extend({
8
+ retrieve: stripeMethod({
9
+ method: 'GET',
10
+ fullPath: '/v2/billing/pricing_plans/{pricing_plan_id}/versions/{id}',
11
+ }),
12
+ list: stripeMethod({
13
+ method: 'GET',
14
+ fullPath: '/v2/billing/pricing_plans/{pricing_plan_id}/versions',
15
+ methodType: 'list',
16
+ }),
17
+ });
@@ -0,0 +1,29 @@
1
+ "use strict";
2
+ // File generated from our OpenAPI spec
3
+ Object.defineProperty(exports, "__esModule", { value: true });
4
+ exports.PricingPlans = void 0;
5
+ const StripeResource_js_1 = require("../../../StripeResource.js");
6
+ const Components_js_1 = require("./PricingPlans/Components.js");
7
+ const Versions_js_1 = require("./PricingPlans/Versions.js");
8
+ const stripeMethod = StripeResource_js_1.StripeResource.method;
9
+ exports.PricingPlans = StripeResource_js_1.StripeResource.extend({
10
+ constructor: function (...args) {
11
+ StripeResource_js_1.StripeResource.apply(this, args);
12
+ this.components = new Components_js_1.Components(...args);
13
+ this.versions = new Versions_js_1.Versions(...args);
14
+ },
15
+ create: stripeMethod({ method: 'POST', fullPath: '/v2/billing/pricing_plans' }),
16
+ retrieve: stripeMethod({
17
+ method: 'GET',
18
+ fullPath: '/v2/billing/pricing_plans/{id}',
19
+ }),
20
+ update: stripeMethod({
21
+ method: 'POST',
22
+ fullPath: '/v2/billing/pricing_plans/{id}',
23
+ }),
24
+ list: stripeMethod({
25
+ method: 'GET',
26
+ fullPath: '/v2/billing/pricing_plans',
27
+ methodType: 'list',
28
+ }),
29
+ });
@@ -0,0 +1,19 @@
1
+ "use strict";
2
+ // File generated from our OpenAPI spec
3
+ Object.defineProperty(exports, "__esModule", { value: true });
4
+ exports.Profiles = void 0;
5
+ const StripeResource_js_1 = require("../../../StripeResource.js");
6
+ const stripeMethod = StripeResource_js_1.StripeResource.method;
7
+ exports.Profiles = StripeResource_js_1.StripeResource.extend({
8
+ create: stripeMethod({ method: 'POST', fullPath: '/v2/billing/profiles' }),
9
+ retrieve: stripeMethod({
10
+ method: 'GET',
11
+ fullPath: '/v2/billing/profiles/{id}',
12
+ }),
13
+ update: stripeMethod({ method: 'POST', fullPath: '/v2/billing/profiles/{id}' }),
14
+ list: stripeMethod({
15
+ method: 'GET',
16
+ fullPath: '/v2/billing/profiles',
17
+ methodType: 'list',
18
+ }),
19
+ });
@@ -0,0 +1,29 @@
1
+ "use strict";
2
+ // File generated from our OpenAPI spec
3
+ Object.defineProperty(exports, "__esModule", { value: true });
4
+ exports.RateCardSubscriptions = void 0;
5
+ const StripeResource_js_1 = require("../../../StripeResource.js");
6
+ const stripeMethod = StripeResource_js_1.StripeResource.method;
7
+ exports.RateCardSubscriptions = StripeResource_js_1.StripeResource.extend({
8
+ create: stripeMethod({
9
+ method: 'POST',
10
+ fullPath: '/v2/billing/rate_card_subscriptions',
11
+ }),
12
+ retrieve: stripeMethod({
13
+ method: 'GET',
14
+ fullPath: '/v2/billing/rate_card_subscriptions/{id}',
15
+ }),
16
+ update: stripeMethod({
17
+ method: 'POST',
18
+ fullPath: '/v2/billing/rate_card_subscriptions/{id}',
19
+ }),
20
+ list: stripeMethod({
21
+ method: 'GET',
22
+ fullPath: '/v2/billing/rate_card_subscriptions',
23
+ methodType: 'list',
24
+ }),
25
+ cancel: stripeMethod({
26
+ method: 'POST',
27
+ fullPath: '/v2/billing/rate_card_subscriptions/{id}/cancel',
28
+ }),
29
+ });
@@ -0,0 +1,25 @@
1
+ "use strict";
2
+ // File generated from our OpenAPI spec
3
+ Object.defineProperty(exports, "__esModule", { value: true });
4
+ exports.Rates = void 0;
5
+ const StripeResource_js_1 = require("../../../../StripeResource.js");
6
+ const stripeMethod = StripeResource_js_1.StripeResource.method;
7
+ exports.Rates = StripeResource_js_1.StripeResource.extend({
8
+ create: stripeMethod({
9
+ method: 'POST',
10
+ fullPath: '/v2/billing/rate_cards/{rate_card_id}/rates',
11
+ }),
12
+ retrieve: stripeMethod({
13
+ method: 'GET',
14
+ fullPath: '/v2/billing/rate_cards/{rate_card_id}/rates/{id}',
15
+ }),
16
+ list: stripeMethod({
17
+ method: 'GET',
18
+ fullPath: '/v2/billing/rate_cards/{rate_card_id}/rates',
19
+ methodType: 'list',
20
+ }),
21
+ del: stripeMethod({
22
+ method: 'DELETE',
23
+ fullPath: '/v2/billing/rate_cards/{rate_card_id}/rates/{id}',
24
+ }),
25
+ });
@@ -0,0 +1,17 @@
1
+ "use strict";
2
+ // File generated from our OpenAPI spec
3
+ Object.defineProperty(exports, "__esModule", { value: true });
4
+ exports.Versions = void 0;
5
+ const StripeResource_js_1 = require("../../../../StripeResource.js");
6
+ const stripeMethod = StripeResource_js_1.StripeResource.method;
7
+ exports.Versions = StripeResource_js_1.StripeResource.extend({
8
+ retrieve: stripeMethod({
9
+ method: 'GET',
10
+ fullPath: '/v2/billing/rate_cards/{rate_card_id}/versions/{id}',
11
+ }),
12
+ list: stripeMethod({
13
+ method: 'GET',
14
+ fullPath: '/v2/billing/rate_cards/{rate_card_id}/versions',
15
+ methodType: 'list',
16
+ }),
17
+ });
@@ -0,0 +1,29 @@
1
+ "use strict";
2
+ // File generated from our OpenAPI spec
3
+ Object.defineProperty(exports, "__esModule", { value: true });
4
+ exports.RateCards = void 0;
5
+ const StripeResource_js_1 = require("../../../StripeResource.js");
6
+ const Rates_js_1 = require("./RateCards/Rates.js");
7
+ const Versions_js_1 = require("./RateCards/Versions.js");
8
+ const stripeMethod = StripeResource_js_1.StripeResource.method;
9
+ exports.RateCards = StripeResource_js_1.StripeResource.extend({
10
+ constructor: function (...args) {
11
+ StripeResource_js_1.StripeResource.apply(this, args);
12
+ this.rates = new Rates_js_1.Rates(...args);
13
+ this.versions = new Versions_js_1.Versions(...args);
14
+ },
15
+ create: stripeMethod({ method: 'POST', fullPath: '/v2/billing/rate_cards' }),
16
+ retrieve: stripeMethod({
17
+ method: 'GET',
18
+ fullPath: '/v2/billing/rate_cards/{id}',
19
+ }),
20
+ update: stripeMethod({
21
+ method: 'POST',
22
+ fullPath: '/v2/billing/rate_cards/{id}',
23
+ }),
24
+ list: stripeMethod({
25
+ method: 'GET',
26
+ fullPath: '/v2/billing/rate_cards',
27
+ methodType: 'list',
28
+ }),
29
+ });
@@ -0,0 +1,16 @@
1
+ "use strict";
2
+ // File generated from our OpenAPI spec
3
+ Object.defineProperty(exports, "__esModule", { value: true });
4
+ exports.ServiceActions = void 0;
5
+ const StripeResource_js_1 = require("../../../StripeResource.js");
6
+ const stripeMethod = StripeResource_js_1.StripeResource.method;
7
+ exports.ServiceActions = StripeResource_js_1.StripeResource.extend({
8
+ create: stripeMethod({
9
+ method: 'POST',
10
+ fullPath: '/v2/billing/service_actions',
11
+ }),
12
+ retrieve: stripeMethod({
13
+ method: 'GET',
14
+ fullPath: '/v2/billing/service_actions/{id}',
15
+ }),
16
+ });
@@ -0,0 +1,12 @@
1
+ "use strict";
2
+ // File generated from our OpenAPI spec
3
+ Object.defineProperty(exports, "__esModule", { value: true });
4
+ exports.ClaimableSandboxes = void 0;
5
+ const StripeResource_js_1 = require("../../../StripeResource.js");
6
+ const stripeMethod = StripeResource_js_1.StripeResource.method;
7
+ exports.ClaimableSandboxes = StripeResource_js_1.StripeResource.extend({
8
+ create: stripeMethod({
9
+ method: 'POST',
10
+ fullPath: '/v2/core/claimable_sandboxes',
11
+ }),
12
+ });
@@ -0,0 +1,13 @@
1
+ "use strict";
2
+ // File generated from our OpenAPI spec
3
+ Object.defineProperty(exports, "__esModule", { value: true });
4
+ exports.ReportRuns = void 0;
5
+ const StripeResource_js_1 = require("../../../StripeResource.js");
6
+ const stripeMethod = StripeResource_js_1.StripeResource.method;
7
+ exports.ReportRuns = StripeResource_js_1.StripeResource.extend({
8
+ create: stripeMethod({ method: 'POST', fullPath: '/v2/reporting/report_runs' }),
9
+ retrieve: stripeMethod({
10
+ method: 'GET',
11
+ fullPath: '/v2/reporting/report_runs/{id}',
12
+ }),
13
+ });
@@ -0,0 +1,12 @@
1
+ "use strict";
2
+ // File generated from our OpenAPI spec
3
+ Object.defineProperty(exports, "__esModule", { value: true });
4
+ exports.Reports = void 0;
5
+ const StripeResource_js_1 = require("../../../StripeResource.js");
6
+ const stripeMethod = StripeResource_js_1.StripeResource.method;
7
+ exports.Reports = StripeResource_js_1.StripeResource.extend({
8
+ retrieve: stripeMethod({
9
+ method: 'GET',
10
+ fullPath: '/v2/reporting/reports/{id}',
11
+ }),
12
+ });
@@ -0,0 +1,22 @@
1
+ "use strict";
2
+ // File generated from our OpenAPI spec
3
+ Object.defineProperty(exports, "__esModule", { value: true });
4
+ exports.AutomaticRules = void 0;
5
+ const StripeResource_js_1 = require("../../../StripeResource.js");
6
+ const stripeMethod = StripeResource_js_1.StripeResource.method;
7
+ exports.AutomaticRules = StripeResource_js_1.StripeResource.extend({
8
+ create: stripeMethod({ method: 'POST', fullPath: '/v2/tax/automatic_rules' }),
9
+ retrieve: stripeMethod({
10
+ method: 'GET',
11
+ fullPath: '/v2/tax/automatic_rules/{id}',
12
+ }),
13
+ update: stripeMethod({
14
+ method: 'POST',
15
+ fullPath: '/v2/tax/automatic_rules/{id}',
16
+ }),
17
+ deactivate: stripeMethod({
18
+ method: 'POST',
19
+ fullPath: '/v2/tax/automatic_rules/{id}/deactivate',
20
+ }),
21
+ find: stripeMethod({ method: 'GET', fullPath: '/v2/tax/automatic_rules/find' }),
22
+ });
package/cjs/resources.js CHANGED
@@ -11,12 +11,17 @@ const ActiveEntitlements_js_1 = require("./resources/Entitlements/ActiveEntitlem
11
11
  const Adjustments_js_1 = require("./resources/V2/MoneyManagement/Adjustments.js");
12
12
  const Alerts_js_1 = require("./resources/Billing/Alerts.js");
13
13
  const Associations_js_1 = require("./resources/Tax/Associations.js");
14
- const Authorizations_js_1 = require("./resources/TestHelpers/Issuing/Authorizations.js");
15
- const Authorizations_js_2 = require("./resources/Issuing/Authorizations.js");
14
+ const Authorizations_js_1 = require("./resources/Issuing/Authorizations.js");
15
+ const Authorizations_js_2 = require("./resources/TestHelpers/Issuing/Authorizations.js");
16
+ const AutomaticRules_js_1 = require("./resources/V2/Tax/AutomaticRules.js");
17
+ const BillSettings_js_1 = require("./resources/V2/Billing/BillSettings.js");
18
+ const Cadences_js_1 = require("./resources/V2/Billing/Cadences.js");
16
19
  const Calculations_js_1 = require("./resources/Tax/Calculations.js");
17
20
  const Cardholders_js_1 = require("./resources/Issuing/Cardholders.js");
18
- const Cards_js_1 = require("./resources/TestHelpers/Issuing/Cards.js");
19
- const Cards_js_2 = require("./resources/Issuing/Cards.js");
21
+ const Cards_js_1 = require("./resources/Issuing/Cards.js");
22
+ const Cards_js_2 = require("./resources/TestHelpers/Issuing/Cards.js");
23
+ const ClaimableSandboxes_js_1 = require("./resources/V2/Core/ClaimableSandboxes.js");
24
+ const CollectionSettings_js_1 = require("./resources/V2/Billing/CollectionSettings.js");
20
25
  const Configurations_js_1 = require("./resources/BillingPortal/Configurations.js");
21
26
  const Configurations_js_2 = require("./resources/Terminal/Configurations.js");
22
27
  const ConfirmationTokens_js_1 = require("./resources/TestHelpers/ConfirmationTokens.js");
@@ -26,6 +31,7 @@ const CreditBalanceTransactions_js_1 = require("./resources/Billing/CreditBalanc
26
31
  const CreditGrants_js_1 = require("./resources/Billing/CreditGrants.js");
27
32
  const CreditReversals_js_1 = require("./resources/Treasury/CreditReversals.js");
28
33
  const CreditUnderwritingRecords_js_1 = require("./resources/Issuing/CreditUnderwritingRecords.js");
34
+ const CustomPricingUnits_js_1 = require("./resources/V2/Billing/CustomPricingUnits.js");
29
35
  const Customers_js_1 = require("./resources/TestHelpers/Customers.js");
30
36
  const DebitReversals_js_1 = require("./resources/Treasury/DebitReversals.js");
31
37
  const DisputeSettlementDetails_js_1 = require("./resources/Issuing/DisputeSettlementDetails.js");
@@ -48,6 +54,10 @@ const InboundTransfers_js_1 = require("./resources/TestHelpers/Treasury/InboundT
48
54
  const InboundTransfers_js_2 = require("./resources/Treasury/InboundTransfers.js");
49
55
  const InboundTransfers_js_3 = require("./resources/V2/MoneyManagement/InboundTransfers.js");
50
56
  const Institutions_js_1 = require("./resources/FinancialConnections/Institutions.js");
57
+ const Intents_js_1 = require("./resources/V2/Billing/Intents.js");
58
+ const LicenseFeeSubscriptions_js_1 = require("./resources/V2/Billing/LicenseFeeSubscriptions.js");
59
+ const LicenseFees_js_1 = require("./resources/V2/Billing/LicenseFees.js");
60
+ const LicensedItems_js_1 = require("./resources/V2/Billing/LicensedItems.js");
51
61
  const Locations_js_1 = require("./resources/Terminal/Locations.js");
52
62
  const MeterEventAdjustments_js_1 = require("./resources/Billing/MeterEventAdjustments.js");
53
63
  const MeterEventAdjustments_js_2 = require("./resources/V2/Billing/MeterEventAdjustments.js");
@@ -56,6 +66,7 @@ const MeterEventStream_js_1 = require("./resources/V2/Billing/MeterEventStream.j
56
66
  const MeterEvents_js_1 = require("./resources/Billing/MeterEvents.js");
57
67
  const MeterEvents_js_2 = require("./resources/V2/Billing/MeterEvents.js");
58
68
  const MeterUsage_js_1 = require("./resources/Billing/MeterUsage.js");
69
+ const MeteredItems_js_1 = require("./resources/V2/Billing/MeteredItems.js");
59
70
  const Meters_js_1 = require("./resources/Billing/Meters.js");
60
71
  const OffSessionPayments_js_1 = require("./resources/V2/Payments/OffSessionPayments.js");
61
72
  const OnboardingLinks_js_1 = require("./resources/Terminal/OnboardingLinks.js");
@@ -70,13 +81,18 @@ const OutboundTransfers_js_2 = require("./resources/Treasury/OutboundTransfers.j
70
81
  const OutboundTransfers_js_3 = require("./resources/V2/MoneyManagement/OutboundTransfers.js");
71
82
  const PayoutMethods_js_1 = require("./resources/V2/MoneyManagement/PayoutMethods.js");
72
83
  const PayoutMethodsBankAccountSpec_js_1 = require("./resources/V2/MoneyManagement/PayoutMethodsBankAccountSpec.js");
73
- const PersonalizationDesigns_js_1 = require("./resources/TestHelpers/Issuing/PersonalizationDesigns.js");
74
- const PersonalizationDesigns_js_2 = require("./resources/Issuing/PersonalizationDesigns.js");
84
+ const PersonalizationDesigns_js_1 = require("./resources/Issuing/PersonalizationDesigns.js");
85
+ const PersonalizationDesigns_js_2 = require("./resources/TestHelpers/Issuing/PersonalizationDesigns.js");
75
86
  const PhysicalBundles_js_1 = require("./resources/Issuing/PhysicalBundles.js");
87
+ const PricingPlanSubscriptions_js_1 = require("./resources/V2/Billing/PricingPlanSubscriptions.js");
88
+ const PricingPlans_js_1 = require("./resources/V2/Billing/PricingPlans.js");
76
89
  const Products_js_1 = require("./resources/Climate/Products.js");
90
+ const Profiles_js_1 = require("./resources/V2/Billing/Profiles.js");
91
+ const RateCardSubscriptions_js_1 = require("./resources/V2/Billing/RateCardSubscriptions.js");
92
+ const RateCards_js_1 = require("./resources/V2/Billing/RateCards.js");
77
93
  const ReaderCollectedData_js_1 = require("./resources/Terminal/ReaderCollectedData.js");
78
- const Readers_js_1 = require("./resources/TestHelpers/Terminal/Readers.js");
79
- const Readers_js_2 = require("./resources/Terminal/Readers.js");
94
+ const Readers_js_1 = require("./resources/Terminal/Readers.js");
95
+ const Readers_js_2 = require("./resources/TestHelpers/Terminal/Readers.js");
80
96
  const ReceivedCredits_js_1 = require("./resources/TestHelpers/Treasury/ReceivedCredits.js");
81
97
  const ReceivedCredits_js_2 = require("./resources/Treasury/ReceivedCredits.js");
82
98
  const ReceivedCredits_js_3 = require("./resources/V2/MoneyManagement/ReceivedCredits.js");
@@ -87,10 +103,13 @@ const RedactionJobs_js_1 = require("./resources/Privacy/RedactionJobs.js");
87
103
  const Refunds_js_1 = require("./resources/TestHelpers/Refunds.js");
88
104
  const Registrations_js_1 = require("./resources/Tax/Registrations.js");
89
105
  const ReportRuns_js_1 = require("./resources/Reporting/ReportRuns.js");
106
+ const ReportRuns_js_2 = require("./resources/V2/Reporting/ReportRuns.js");
90
107
  const ReportTypes_js_1 = require("./resources/Reporting/ReportTypes.js");
108
+ const Reports_js_1 = require("./resources/V2/Reporting/Reports.js");
91
109
  const Requests_js_1 = require("./resources/Forwarding/Requests.js");
92
110
  const ScheduledQueryRuns_js_1 = require("./resources/Sigma/ScheduledQueryRuns.js");
93
111
  const Secrets_js_1 = require("./resources/Apps/Secrets.js");
112
+ const ServiceActions_js_1 = require("./resources/V2/Billing/ServiceActions.js");
94
113
  const Sessions_js_1 = require("./resources/BillingPortal/Sessions.js");
95
114
  const Sessions_js_2 = require("./resources/Checkout/Sessions.js");
96
115
  const Sessions_js_3 = require("./resources/FinancialConnections/Sessions.js");
@@ -100,10 +119,10 @@ const TestClocks_js_1 = require("./resources/TestHelpers/TestClocks.js");
100
119
  const Tokens_js_1 = require("./resources/Issuing/Tokens.js");
101
120
  const TransactionEntries_js_1 = require("./resources/Treasury/TransactionEntries.js");
102
121
  const TransactionEntries_js_2 = require("./resources/V2/MoneyManagement/TransactionEntries.js");
103
- const Transactions_js_1 = require("./resources/TestHelpers/Issuing/Transactions.js");
104
- const Transactions_js_2 = require("./resources/FinancialConnections/Transactions.js");
105
- const Transactions_js_3 = require("./resources/Issuing/Transactions.js");
106
- const Transactions_js_4 = require("./resources/Tax/Transactions.js");
122
+ const Transactions_js_1 = require("./resources/FinancialConnections/Transactions.js");
123
+ const Transactions_js_2 = require("./resources/Issuing/Transactions.js");
124
+ const Transactions_js_3 = require("./resources/Tax/Transactions.js");
125
+ const Transactions_js_4 = require("./resources/TestHelpers/Issuing/Transactions.js");
107
126
  const Transactions_js_5 = require("./resources/Treasury/Transactions.js");
108
127
  const Transactions_js_6 = require("./resources/V2/MoneyManagement/Transactions.js");
109
128
  const UsBankAccounts_js_1 = require("./resources/V2/Core/Vault/UsBankAccounts.js");
@@ -271,7 +290,7 @@ exports.FinancialConnections = (0, ResourceNamespace_js_1.resourceNamespace)('fi
271
290
  Accounts: Accounts_js_1.Accounts,
272
291
  Institutions: Institutions_js_1.Institutions,
273
292
  Sessions: Sessions_js_3.Sessions,
274
- Transactions: Transactions_js_2.Transactions,
293
+ Transactions: Transactions_js_1.Transactions,
275
294
  });
276
295
  exports.Forwarding = (0, ResourceNamespace_js_1.resourceNamespace)('forwarding', {
277
296
  Requests: Requests_js_1.Requests,
@@ -281,17 +300,17 @@ exports.Identity = (0, ResourceNamespace_js_1.resourceNamespace)('identity', {
281
300
  VerificationSessions: VerificationSessions_js_1.VerificationSessions,
282
301
  });
283
302
  exports.Issuing = (0, ResourceNamespace_js_1.resourceNamespace)('issuing', {
284
- Authorizations: Authorizations_js_2.Authorizations,
303
+ Authorizations: Authorizations_js_1.Authorizations,
285
304
  Cardholders: Cardholders_js_1.Cardholders,
286
- Cards: Cards_js_2.Cards,
305
+ Cards: Cards_js_1.Cards,
287
306
  CreditUnderwritingRecords: CreditUnderwritingRecords_js_1.CreditUnderwritingRecords,
288
307
  DisputeSettlementDetails: DisputeSettlementDetails_js_1.DisputeSettlementDetails,
289
308
  Disputes: Disputes_js_1.Disputes,
290
309
  FraudLiabilityDebits: FraudLiabilityDebits_js_1.FraudLiabilityDebits,
291
- PersonalizationDesigns: PersonalizationDesigns_js_2.PersonalizationDesigns,
310
+ PersonalizationDesigns: PersonalizationDesigns_js_1.PersonalizationDesigns,
292
311
  PhysicalBundles: PhysicalBundles_js_1.PhysicalBundles,
293
312
  Tokens: Tokens_js_1.Tokens,
294
- Transactions: Transactions_js_3.Transactions,
313
+ Transactions: Transactions_js_2.Transactions,
295
314
  });
296
315
  exports.Privacy = (0, ResourceNamespace_js_1.resourceNamespace)('privacy', {
297
316
  RedactionJobs: RedactionJobs_js_1.RedactionJobs,
@@ -314,7 +333,7 @@ exports.Tax = (0, ResourceNamespace_js_1.resourceNamespace)('tax', {
314
333
  Forms: Forms_js_1.Forms,
315
334
  Registrations: Registrations_js_1.Registrations,
316
335
  Settings: Settings_js_1.Settings,
317
- Transactions: Transactions_js_4.Transactions,
336
+ Transactions: Transactions_js_3.Transactions,
318
337
  });
319
338
  exports.Terminal = (0, ResourceNamespace_js_1.resourceNamespace)('terminal', {
320
339
  Configurations: Configurations_js_2.Configurations,
@@ -322,7 +341,7 @@ exports.Terminal = (0, ResourceNamespace_js_1.resourceNamespace)('terminal', {
322
341
  Locations: Locations_js_1.Locations,
323
342
  OnboardingLinks: OnboardingLinks_js_1.OnboardingLinks,
324
343
  ReaderCollectedData: ReaderCollectedData_js_1.ReaderCollectedData,
325
- Readers: Readers_js_2.Readers,
344
+ Readers: Readers_js_1.Readers,
326
345
  });
327
346
  exports.TestHelpers = (0, ResourceNamespace_js_1.resourceNamespace)('testHelpers', {
328
347
  ConfirmationTokens: ConfirmationTokens_js_1.ConfirmationTokens,
@@ -330,13 +349,13 @@ exports.TestHelpers = (0, ResourceNamespace_js_1.resourceNamespace)('testHelpers
330
349
  Refunds: Refunds_js_1.Refunds,
331
350
  TestClocks: TestClocks_js_1.TestClocks,
332
351
  Issuing: (0, ResourceNamespace_js_1.resourceNamespace)('issuing', {
333
- Authorizations: Authorizations_js_1.Authorizations,
334
- Cards: Cards_js_1.Cards,
335
- PersonalizationDesigns: PersonalizationDesigns_js_1.PersonalizationDesigns,
336
- Transactions: Transactions_js_1.Transactions,
352
+ Authorizations: Authorizations_js_2.Authorizations,
353
+ Cards: Cards_js_2.Cards,
354
+ PersonalizationDesigns: PersonalizationDesigns_js_2.PersonalizationDesigns,
355
+ Transactions: Transactions_js_4.Transactions,
337
356
  }),
338
357
  Terminal: (0, ResourceNamespace_js_1.resourceNamespace)('terminal', {
339
- Readers: Readers_js_1.Readers,
358
+ Readers: Readers_js_2.Readers,
340
359
  }),
341
360
  Treasury: (0, ResourceNamespace_js_1.resourceNamespace)('treasury', {
342
361
  InboundTransfers: InboundTransfers_js_1.InboundTransfers,
@@ -360,14 +379,30 @@ exports.Treasury = (0, ResourceNamespace_js_1.resourceNamespace)('treasury', {
360
379
  });
361
380
  exports.V2 = (0, ResourceNamespace_js_1.resourceNamespace)('v2', {
362
381
  Billing: (0, ResourceNamespace_js_1.resourceNamespace)('billing', {
382
+ BillSettings: BillSettings_js_1.BillSettings,
383
+ Cadences: Cadences_js_1.Cadences,
384
+ CollectionSettings: CollectionSettings_js_1.CollectionSettings,
385
+ CustomPricingUnits: CustomPricingUnits_js_1.CustomPricingUnits,
386
+ Intents: Intents_js_1.Intents,
387
+ LicenseFeeSubscriptions: LicenseFeeSubscriptions_js_1.LicenseFeeSubscriptions,
388
+ LicenseFees: LicenseFees_js_1.LicenseFees,
389
+ LicensedItems: LicensedItems_js_1.LicensedItems,
363
390
  MeterEventAdjustments: MeterEventAdjustments_js_2.MeterEventAdjustments,
364
391
  MeterEventSession: MeterEventSession_js_1.MeterEventSession,
365
392
  MeterEventStream: MeterEventStream_js_1.MeterEventStream,
366
393
  MeterEvents: MeterEvents_js_2.MeterEvents,
394
+ MeteredItems: MeteredItems_js_1.MeteredItems,
395
+ PricingPlanSubscriptions: PricingPlanSubscriptions_js_1.PricingPlanSubscriptions,
396
+ PricingPlans: PricingPlans_js_1.PricingPlans,
397
+ Profiles: Profiles_js_1.Profiles,
398
+ RateCardSubscriptions: RateCardSubscriptions_js_1.RateCardSubscriptions,
399
+ RateCards: RateCards_js_1.RateCards,
400
+ ServiceActions: ServiceActions_js_1.ServiceActions,
367
401
  }),
368
402
  Core: (0, ResourceNamespace_js_1.resourceNamespace)('core', {
369
403
  AccountLinks: AccountLinks_js_1.AccountLinks,
370
404
  Accounts: Accounts_js_2.Accounts,
405
+ ClaimableSandboxes: ClaimableSandboxes_js_1.ClaimableSandboxes,
371
406
  EventDestinations: EventDestinations_js_1.EventDestinations,
372
407
  Events: Events_js_1.Events,
373
408
  Vault: (0, ResourceNamespace_js_1.resourceNamespace)('vault', {
@@ -394,6 +429,11 @@ exports.V2 = (0, ResourceNamespace_js_1.resourceNamespace)('v2', {
394
429
  Payment: (0, ResourceNamespace_js_1.resourceNamespace)('payment', {
395
430
  OffSessionPayments: OffSessionPayments_js_1.OffSessionPayments,
396
431
  }),
432
+ Reporting: (0, ResourceNamespace_js_1.resourceNamespace)('reporting', {
433
+ ReportRuns: ReportRuns_js_2.ReportRuns,
434
+ Reports: Reports_js_1.Reports,
435
+ }),
436
+ Tax: (0, ResourceNamespace_js_1.resourceNamespace)('tax', { AutomaticRules: AutomaticRules_js_1.AutomaticRules }),
397
437
  TestHelper: (0, ResourceNamespace_js_1.resourceNamespace)('testHelper', {
398
438
  FinancialAddresses: FinancialAddresses_js_2.FinancialAddresses,
399
439
  }),