stripe 19.2.0-beta.1 → 19.3.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.
- package/CHANGELOG.md +300 -1
- package/OPENAPI_VERSION +1 -1
- package/VERSION +1 -1
- package/cjs/resources/DelegatedCheckout/RequestedSessions.js +28 -0
- package/cjs/resources/Identity/BlocklistEntries.js +25 -0
- package/cjs/resources/PaymentMethods.js +4 -0
- package/cjs/resources/PaymentRecords.js +4 -0
- package/cjs/resources/V2/Billing/CustomPricingUnits.js +25 -0
- package/cjs/resources/V2/Billing/Intents/Actions.js +17 -0
- package/cjs/resources/V2/Billing/Intents.js +36 -0
- package/cjs/resources/V2/Billing/LicenseFeeSubscriptions.js +12 -0
- package/cjs/resources/V2/Billing/LicenseFees/Versions.js +17 -0
- package/cjs/resources/V2/Billing/LicenseFees.js +27 -0
- package/cjs/resources/V2/Billing/LicensedItems.js +25 -0
- package/cjs/resources/V2/Billing/MeteredItems.js +22 -0
- package/cjs/resources/V2/Billing/PricingPlanSubscriptions/Components.js +12 -0
- package/cjs/resources/V2/Billing/PricingPlanSubscriptions.js +26 -0
- package/cjs/resources/V2/Billing/PricingPlans/Components.js +29 -0
- package/cjs/resources/V2/Billing/PricingPlans/Versions.js +17 -0
- package/cjs/resources/V2/Billing/PricingPlans.js +29 -0
- package/cjs/resources/V2/Billing/RateCardSubscriptions.js +29 -0
- package/cjs/resources/V2/Billing/RateCards/Rates.js +25 -0
- package/cjs/resources/V2/Billing/RateCards/Versions.js +17 -0
- package/cjs/resources/V2/Billing/RateCards.js +29 -0
- package/cjs/resources/V2/Billing/ServiceActions.js +20 -0
- package/cjs/resources/V2/Core/ClaimableSandboxes.js +16 -0
- package/cjs/resources/V2/Core/Vault/GbBankAccounts.js +5 -0
- package/cjs/resources/V2/Core/Vault/UsBankAccounts.js +13 -0
- package/cjs/resources/V2/MoneyManagement/FinancialAccounts.js +4 -0
- package/cjs/resources/V2/MoneyManagement/RecipientVerifications.js +20 -0
- package/cjs/resources/V2/Tax/AutomaticRules.js +22 -0
- package/cjs/resources/V2/TestHelpers/MoneyManagement.js +12 -0
- package/cjs/resources.js +37 -1
- package/cjs/stripe.core.js +1 -1
- package/esm/resources/DelegatedCheckout/RequestedSessions.js +25 -0
- package/esm/resources/Identity/BlocklistEntries.js +22 -0
- package/esm/resources/PaymentMethods.js +4 -0
- package/esm/resources/PaymentRecords.js +4 -0
- package/esm/resources/V2/Billing/CustomPricingUnits.js +22 -0
- package/esm/resources/V2/Billing/Intents/Actions.js +14 -0
- package/esm/resources/V2/Billing/Intents.js +33 -0
- package/esm/resources/V2/Billing/LicenseFeeSubscriptions.js +9 -0
- package/esm/resources/V2/Billing/LicenseFees/Versions.js +14 -0
- package/esm/resources/V2/Billing/LicenseFees.js +24 -0
- package/esm/resources/V2/Billing/LicensedItems.js +22 -0
- package/esm/resources/V2/Billing/MeteredItems.js +19 -0
- package/esm/resources/V2/Billing/PricingPlanSubscriptions/Components.js +9 -0
- package/esm/resources/V2/Billing/PricingPlanSubscriptions.js +23 -0
- package/esm/resources/V2/Billing/PricingPlans/Components.js +26 -0
- package/esm/resources/V2/Billing/PricingPlans/Versions.js +14 -0
- package/esm/resources/V2/Billing/PricingPlans.js +26 -0
- package/esm/resources/V2/Billing/RateCardSubscriptions.js +26 -0
- package/esm/resources/V2/Billing/RateCards/Rates.js +22 -0
- package/esm/resources/V2/Billing/RateCards/Versions.js +14 -0
- package/esm/resources/V2/Billing/RateCards.js +26 -0
- package/esm/resources/V2/Billing/ServiceActions.js +17 -0
- package/esm/resources/V2/Core/ClaimableSandboxes.js +13 -0
- package/esm/resources/V2/Core/Vault/GbBankAccounts.js +5 -0
- package/esm/resources/V2/Core/Vault/UsBankAccounts.js +13 -0
- package/esm/resources/V2/MoneyManagement/FinancialAccounts.js +4 -0
- package/esm/resources/V2/MoneyManagement/RecipientVerifications.js +17 -0
- package/esm/resources/V2/Tax/AutomaticRules.js +19 -0
- package/esm/resources/V2/TestHelpers/MoneyManagement.js +9 -0
- package/esm/resources.js +36 -0
- package/esm/stripe.core.js +1 -1
- package/package.json +1 -1
- package/types/Accounts.d.ts +24 -0
- package/types/AccountsResource.d.ts +44 -0
- package/types/ApplicationFees.d.ts +6 -1
- package/types/Balance.d.ts +82 -0
- package/types/BalanceTransactions.d.ts +2 -1
- package/types/BankAccounts.d.ts +2 -0
- package/types/Billing/AlertTriggereds.d.ts +15 -0
- package/types/Billing/Alerts.d.ts +116 -1
- package/types/Billing/AlertsResource.d.ts +149 -2
- package/types/Billing/Analytics/MeterUsageResource.d.ts +5 -0
- package/types/Billing/Analytics/MeterUsageRows.d.ts +7 -0
- package/types/Billing/CreditBalanceSummary.d.ts +118 -2
- package/types/Billing/CreditBalanceSummaryResource.d.ts +12 -0
- package/types/Billing/CreditBalanceTransactions.d.ts +118 -2
- package/types/Billing/CreditGrants.d.ts +71 -1
- package/types/Billing/CreditGrantsResource.d.ts +34 -3
- package/types/Billing/MeterEventSummaries.d.ts +7 -0
- package/types/Billing/Meters.d.ts +5 -0
- package/types/Billing/MetersResource.d.ts +17 -0
- package/types/BillingPortal/Configurations.d.ts +1 -1
- package/types/BillingPortal/ConfigurationsResource.d.ts +10 -0
- package/types/Capabilities.d.ts +2 -0
- package/types/Cards.d.ts +14 -0
- package/types/Charges.d.ts +16 -2
- package/types/Checkout/Sessions.d.ts +73 -0
- package/types/Checkout/SessionsResource.d.ts +71 -3
- package/types/ConfirmationTokens.d.ts +15 -0
- package/types/CreditNotes.d.ts +26 -0
- package/types/CreditNotesResource.d.ts +78 -0
- package/types/CustomerSessions.d.ts +161 -0
- package/types/CustomerSessionsResource.d.ts +161 -0
- package/types/Customers.d.ts +7 -0
- package/types/CustomersResource.d.ts +1 -0
- package/types/DelegatedCheckout/RequestedSessions.d.ts +292 -0
- package/types/DelegatedCheckout/RequestedSessionsResource.d.ts +593 -0
- package/types/Files.d.ts +1 -0
- package/types/FilesResource.d.ts +2 -0
- package/types/FinancialConnections/AccountsResource.d.ts +1 -1
- package/types/Identity/BlocklistEntries.d.ts +78 -0
- package/types/Identity/BlocklistEntriesResource.d.ts +146 -0
- package/types/Identity/VerificationReports.d.ts +10 -0
- package/types/Identity/VerificationReportsResource.d.ts +5 -0
- package/types/InvoiceItems.d.ts +104 -2
- package/types/InvoiceLineItems.d.ts +113 -2
- package/types/Invoices.d.ts +1 -0
- package/types/InvoicesResource.d.ts +5 -0
- package/types/PaymentAttemptRecords.d.ts +7 -2
- package/types/PaymentAttemptRecordsResource.d.ts +5 -0
- package/types/PaymentIntentAmountDetailsLineItems.d.ts +4 -0
- package/types/PaymentIntents.d.ts +30 -2
- package/types/PaymentIntentsResource.d.ts +88 -0
- package/types/PaymentLinks.d.ts +34 -0
- package/types/PaymentLinksResource.d.ts +88 -0
- package/types/PaymentMethodBalances.d.ts +63 -0
- package/types/PaymentMethodConfigurations.d.ts +72 -0
- package/types/PaymentMethodConfigurationsResource.d.ts +100 -0
- package/types/PaymentMethods.d.ts +48 -0
- package/types/PaymentMethodsResource.d.ts +35 -1
- package/types/PaymentRecords.d.ts +7 -2
- package/types/PaymentRecordsResource.d.ts +89 -0
- package/types/PayoutsResource.d.ts +1 -1
- package/types/Persons.d.ts +2 -0
- package/types/QuotePreviewInvoices.d.ts +1 -0
- package/types/Refunds.d.ts +9 -0
- package/types/SetupAttempts.d.ts +1 -0
- package/types/SetupIntents.d.ts +87 -0
- package/types/SetupIntentsResource.d.ts +220 -0
- package/types/Tax/Registrations.d.ts +9 -0
- package/types/Tax/RegistrationsResource.d.ts +12 -0
- package/types/Terminal/Configurations.d.ts +19 -0
- package/types/Terminal/ConfigurationsResource.d.ts +44 -0
- package/types/Terminal/Readers.d.ts +14 -9
- package/types/Terminal/ReadersResource.d.ts +30 -30
- package/types/TestHelpers/Terminal/ReadersResource.d.ts +1 -1
- package/types/TokensResource.d.ts +22 -0
- package/types/Transfers.d.ts +4 -0
- package/types/TransfersResource.d.ts +2 -0
- package/types/V2/Billing/Cadences.d.ts +47 -2
- package/types/V2/Billing/CadencesResource.d.ts +32 -3
- package/types/V2/Billing/CollectionSettingVersions.d.ts +2 -2
- package/types/V2/Billing/CollectionSettings.d.ts +2 -2
- package/types/V2/Billing/CollectionSettingsResource.d.ts +4 -4
- package/types/V2/Billing/CustomPricingUnits.d.ts +56 -0
- package/types/V2/Billing/CustomPricingUnitsResource.d.ts +122 -0
- package/types/V2/Billing/IntentActions.d.ts +459 -0
- package/types/V2/Billing/Intents/ActionsResource.d.ts +58 -0
- package/types/V2/Billing/Intents.d.ts +117 -0
- package/types/V2/Billing/IntentsResource.d.ts +575 -0
- package/types/V2/Billing/LicenseFeeSubscriptions.d.ts +64 -0
- package/types/V2/Billing/LicenseFeeSubscriptionsResource.d.ts +28 -0
- package/types/V2/Billing/LicenseFeeVersions.d.ts +106 -0
- package/types/V2/Billing/LicenseFees/VersionsResource.d.ts +58 -0
- package/types/V2/Billing/LicenseFees.d.ts +164 -0
- package/types/V2/Billing/LicenseFeesResource.d.ts +290 -0
- package/types/V2/Billing/LicensedItems.d.ts +73 -0
- package/types/V2/Billing/LicensedItemsResource.d.ts +157 -0
- package/types/V2/Billing/MeteredItems.d.ts +101 -0
- package/types/V2/Billing/MeteredItemsResource.d.ts +189 -0
- package/types/V2/Billing/PricingPlanComponents.d.ts +109 -0
- package/types/V2/Billing/PricingPlanSubscriptionComponents.d.ts +57 -0
- package/types/V2/Billing/PricingPlanSubscriptions/ComponentsResource.d.ts +40 -0
- package/types/V2/Billing/PricingPlanSubscriptions.d.ts +144 -0
- package/types/V2/Billing/PricingPlanSubscriptionsResource.d.ts +120 -0
- package/types/V2/Billing/PricingPlanVersions.d.ts +49 -0
- package/types/V2/Billing/PricingPlans/ComponentsResource.d.ts +197 -0
- package/types/V2/Billing/PricingPlans/VersionsResource.d.ts +58 -0
- package/types/V2/Billing/PricingPlans.d.ts +84 -0
- package/types/V2/Billing/PricingPlansResource.d.ts +151 -0
- package/types/V2/Billing/RateCardRates.d.ts +144 -0
- package/types/V2/Billing/RateCardSubscriptions.d.ts +144 -0
- package/types/V2/Billing/RateCardSubscriptionsResource.d.ts +157 -0
- package/types/V2/Billing/RateCardVersions.d.ts +39 -0
- package/types/V2/Billing/RateCards/RatesResource.d.ts +203 -0
- package/types/V2/Billing/RateCards/VersionsResource.d.ts +58 -0
- package/types/V2/Billing/RateCards.d.ts +98 -0
- package/types/V2/Billing/RateCardsResource.d.ts +162 -0
- package/types/V2/Billing/ServiceActions.d.ts +274 -0
- package/types/V2/Billing/ServiceActionsResource.d.ts +370 -0
- package/types/V2/Core/Accounts.d.ts +1394 -29
- package/types/V2/Core/AccountsResource.d.ts +1475 -5
- package/types/V2/Core/ClaimableSandboxes.d.ts +132 -0
- package/types/V2/Core/ClaimableSandboxesResource.d.ts +74 -0
- package/types/V2/Core/EventTypes.d.ts +7308 -367
- package/types/V2/Core/Events.d.ts +12 -0
- package/types/V2/Core/EventsResource.d.ts +29 -3
- package/types/V2/Core/Vault/GbBankAccountsResource.d.ts +22 -0
- package/types/V2/Core/Vault/UsBankAccounts.d.ts +46 -0
- package/types/V2/Core/Vault/UsBankAccountsResource.d.ts +75 -0
- package/types/V2/MoneyManagement/FinancialAccountsResource.d.ts +25 -0
- package/types/V2/MoneyManagement/FinancialAddressesResource.d.ts +14 -0
- package/types/V2/MoneyManagement/OutboundPayments.d.ts +5 -0
- package/types/V2/MoneyManagement/OutboundPaymentsResource.d.ts +6 -1
- package/types/V2/MoneyManagement/OutboundSetupIntentsResource.d.ts +34 -0
- package/types/V2/MoneyManagement/OutboundTransfers.d.ts +5 -0
- package/types/V2/MoneyManagement/OutboundTransfersResource.d.ts +5 -0
- package/types/V2/MoneyManagement/PayoutMethods.d.ts +41 -0
- package/types/V2/MoneyManagement/ReceivedCredits.d.ts +5 -0
- package/types/V2/MoneyManagement/ReceivedDebits.d.ts +10 -0
- package/types/V2/MoneyManagement/RecipientVerifications.d.ts +112 -0
- package/types/V2/MoneyManagement/RecipientVerificationsResource.d.ts +77 -0
- package/types/V2/Tax/AutomaticRules.d.ts +53 -0
- package/types/V2/Tax/AutomaticRulesResource.d.ts +102 -0
- package/types/V2/TestHelpers/FinancialAddressesResource.d.ts +6 -1
- package/types/V2/TestHelpers/MoneyManagementResource.d.ts +49 -0
- package/types/WebhookEndpointsResource.d.ts +2 -1
- package/types/Webhooks.d.ts +2 -0
- package/types/crypto/crypto.d.ts +1 -1
- package/types/index.d.ts +69 -0
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
// File generated from our OpenAPI spec
|
|
2
|
+
import { StripeResource } from '../../../StripeResource.js';
|
|
3
|
+
const stripeMethod = StripeResource.method;
|
|
4
|
+
export const CustomPricingUnits = StripeResource.extend({
|
|
5
|
+
create: stripeMethod({
|
|
6
|
+
method: 'POST',
|
|
7
|
+
fullPath: '/v2/billing/custom_pricing_units',
|
|
8
|
+
}),
|
|
9
|
+
retrieve: stripeMethod({
|
|
10
|
+
method: 'GET',
|
|
11
|
+
fullPath: '/v2/billing/custom_pricing_units/{id}',
|
|
12
|
+
}),
|
|
13
|
+
update: stripeMethod({
|
|
14
|
+
method: 'POST',
|
|
15
|
+
fullPath: '/v2/billing/custom_pricing_units/{id}',
|
|
16
|
+
}),
|
|
17
|
+
list: stripeMethod({
|
|
18
|
+
method: 'GET',
|
|
19
|
+
fullPath: '/v2/billing/custom_pricing_units',
|
|
20
|
+
methodType: 'list',
|
|
21
|
+
}),
|
|
22
|
+
});
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
// File generated from our OpenAPI spec
|
|
2
|
+
import { StripeResource } from '../../../../StripeResource.js';
|
|
3
|
+
const stripeMethod = StripeResource.method;
|
|
4
|
+
export const Actions = StripeResource.extend({
|
|
5
|
+
retrieve: stripeMethod({
|
|
6
|
+
method: 'GET',
|
|
7
|
+
fullPath: '/v2/billing/intents/{intent_id}/actions/{id}',
|
|
8
|
+
}),
|
|
9
|
+
list: stripeMethod({
|
|
10
|
+
method: 'GET',
|
|
11
|
+
fullPath: '/v2/billing/intents/{intent_id}/actions',
|
|
12
|
+
methodType: 'list',
|
|
13
|
+
}),
|
|
14
|
+
});
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
// File generated from our OpenAPI spec
|
|
2
|
+
import { StripeResource } from '../../../StripeResource.js';
|
|
3
|
+
import { Actions } from './Intents/Actions.js';
|
|
4
|
+
const stripeMethod = StripeResource.method;
|
|
5
|
+
export const Intents = StripeResource.extend({
|
|
6
|
+
constructor: function (...args) {
|
|
7
|
+
StripeResource.apply(this, args);
|
|
8
|
+
this.actions = new Actions(...args);
|
|
9
|
+
},
|
|
10
|
+
create: stripeMethod({ method: 'POST', fullPath: '/v2/billing/intents' }),
|
|
11
|
+
retrieve: stripeMethod({ method: 'GET', fullPath: '/v2/billing/intents/{id}' }),
|
|
12
|
+
list: stripeMethod({
|
|
13
|
+
method: 'GET',
|
|
14
|
+
fullPath: '/v2/billing/intents',
|
|
15
|
+
methodType: 'list',
|
|
16
|
+
}),
|
|
17
|
+
cancel: stripeMethod({
|
|
18
|
+
method: 'POST',
|
|
19
|
+
fullPath: '/v2/billing/intents/{id}/cancel',
|
|
20
|
+
}),
|
|
21
|
+
commit: stripeMethod({
|
|
22
|
+
method: 'POST',
|
|
23
|
+
fullPath: '/v2/billing/intents/{id}/commit',
|
|
24
|
+
}),
|
|
25
|
+
releaseReservation: stripeMethod({
|
|
26
|
+
method: 'POST',
|
|
27
|
+
fullPath: '/v2/billing/intents/{id}/release_reservation',
|
|
28
|
+
}),
|
|
29
|
+
reserve: stripeMethod({
|
|
30
|
+
method: 'POST',
|
|
31
|
+
fullPath: '/v2/billing/intents/{id}/reserve',
|
|
32
|
+
}),
|
|
33
|
+
});
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
// File generated from our OpenAPI spec
|
|
2
|
+
import { StripeResource } from '../../../StripeResource.js';
|
|
3
|
+
const stripeMethod = StripeResource.method;
|
|
4
|
+
export const LicenseFeeSubscriptions = StripeResource.extend({
|
|
5
|
+
retrieve: stripeMethod({
|
|
6
|
+
method: 'GET',
|
|
7
|
+
fullPath: '/v2/billing/license_fee_subscriptions/{id}',
|
|
8
|
+
}),
|
|
9
|
+
});
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
// File generated from our OpenAPI spec
|
|
2
|
+
import { StripeResource } from '../../../../StripeResource.js';
|
|
3
|
+
const stripeMethod = StripeResource.method;
|
|
4
|
+
export const Versions = StripeResource.extend({
|
|
5
|
+
retrieve: stripeMethod({
|
|
6
|
+
method: 'GET',
|
|
7
|
+
fullPath: '/v2/billing/license_fees/{license_fee_id}/versions/{id}',
|
|
8
|
+
}),
|
|
9
|
+
list: stripeMethod({
|
|
10
|
+
method: 'GET',
|
|
11
|
+
fullPath: '/v2/billing/license_fees/{license_fee_id}/versions',
|
|
12
|
+
methodType: 'list',
|
|
13
|
+
}),
|
|
14
|
+
});
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
// File generated from our OpenAPI spec
|
|
2
|
+
import { StripeResource } from '../../../StripeResource.js';
|
|
3
|
+
import { Versions } from './LicenseFees/Versions.js';
|
|
4
|
+
const stripeMethod = StripeResource.method;
|
|
5
|
+
export const LicenseFees = StripeResource.extend({
|
|
6
|
+
constructor: function (...args) {
|
|
7
|
+
StripeResource.apply(this, args);
|
|
8
|
+
this.versions = new Versions(...args);
|
|
9
|
+
},
|
|
10
|
+
create: stripeMethod({ method: 'POST', fullPath: '/v2/billing/license_fees' }),
|
|
11
|
+
retrieve: stripeMethod({
|
|
12
|
+
method: 'GET',
|
|
13
|
+
fullPath: '/v2/billing/license_fees/{id}',
|
|
14
|
+
}),
|
|
15
|
+
update: stripeMethod({
|
|
16
|
+
method: 'POST',
|
|
17
|
+
fullPath: '/v2/billing/license_fees/{id}',
|
|
18
|
+
}),
|
|
19
|
+
list: stripeMethod({
|
|
20
|
+
method: 'GET',
|
|
21
|
+
fullPath: '/v2/billing/license_fees',
|
|
22
|
+
methodType: 'list',
|
|
23
|
+
}),
|
|
24
|
+
});
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
// File generated from our OpenAPI spec
|
|
2
|
+
import { StripeResource } from '../../../StripeResource.js';
|
|
3
|
+
const stripeMethod = StripeResource.method;
|
|
4
|
+
export const LicensedItems = StripeResource.extend({
|
|
5
|
+
create: stripeMethod({
|
|
6
|
+
method: 'POST',
|
|
7
|
+
fullPath: '/v2/billing/licensed_items',
|
|
8
|
+
}),
|
|
9
|
+
retrieve: stripeMethod({
|
|
10
|
+
method: 'GET',
|
|
11
|
+
fullPath: '/v2/billing/licensed_items/{id}',
|
|
12
|
+
}),
|
|
13
|
+
update: stripeMethod({
|
|
14
|
+
method: 'POST',
|
|
15
|
+
fullPath: '/v2/billing/licensed_items/{id}',
|
|
16
|
+
}),
|
|
17
|
+
list: stripeMethod({
|
|
18
|
+
method: 'GET',
|
|
19
|
+
fullPath: '/v2/billing/licensed_items',
|
|
20
|
+
methodType: 'list',
|
|
21
|
+
}),
|
|
22
|
+
});
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
// File generated from our OpenAPI spec
|
|
2
|
+
import { StripeResource } from '../../../StripeResource.js';
|
|
3
|
+
const stripeMethod = StripeResource.method;
|
|
4
|
+
export const MeteredItems = StripeResource.extend({
|
|
5
|
+
create: stripeMethod({ method: 'POST', fullPath: '/v2/billing/metered_items' }),
|
|
6
|
+
retrieve: stripeMethod({
|
|
7
|
+
method: 'GET',
|
|
8
|
+
fullPath: '/v2/billing/metered_items/{id}',
|
|
9
|
+
}),
|
|
10
|
+
update: stripeMethod({
|
|
11
|
+
method: 'POST',
|
|
12
|
+
fullPath: '/v2/billing/metered_items/{id}',
|
|
13
|
+
}),
|
|
14
|
+
list: stripeMethod({
|
|
15
|
+
method: 'GET',
|
|
16
|
+
fullPath: '/v2/billing/metered_items',
|
|
17
|
+
methodType: 'list',
|
|
18
|
+
}),
|
|
19
|
+
});
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
// File generated from our OpenAPI spec
|
|
2
|
+
import { StripeResource } from '../../../../StripeResource.js';
|
|
3
|
+
const stripeMethod = StripeResource.method;
|
|
4
|
+
export const Components = StripeResource.extend({
|
|
5
|
+
retrieve: stripeMethod({
|
|
6
|
+
method: 'GET',
|
|
7
|
+
fullPath: '/v2/billing/pricing_plan_subscriptions/{id}/components',
|
|
8
|
+
}),
|
|
9
|
+
});
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
// File generated from our OpenAPI spec
|
|
2
|
+
import { StripeResource } from '../../../StripeResource.js';
|
|
3
|
+
import { Components } from './PricingPlanSubscriptions/Components.js';
|
|
4
|
+
const stripeMethod = StripeResource.method;
|
|
5
|
+
export const PricingPlanSubscriptions = StripeResource.extend({
|
|
6
|
+
constructor: function (...args) {
|
|
7
|
+
StripeResource.apply(this, args);
|
|
8
|
+
this.components = new Components(...args);
|
|
9
|
+
},
|
|
10
|
+
retrieve: stripeMethod({
|
|
11
|
+
method: 'GET',
|
|
12
|
+
fullPath: '/v2/billing/pricing_plan_subscriptions/{id}',
|
|
13
|
+
}),
|
|
14
|
+
update: stripeMethod({
|
|
15
|
+
method: 'POST',
|
|
16
|
+
fullPath: '/v2/billing/pricing_plan_subscriptions/{id}',
|
|
17
|
+
}),
|
|
18
|
+
list: stripeMethod({
|
|
19
|
+
method: 'GET',
|
|
20
|
+
fullPath: '/v2/billing/pricing_plan_subscriptions',
|
|
21
|
+
methodType: 'list',
|
|
22
|
+
}),
|
|
23
|
+
});
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
// File generated from our OpenAPI spec
|
|
2
|
+
import { StripeResource } from '../../../../StripeResource.js';
|
|
3
|
+
const stripeMethod = StripeResource.method;
|
|
4
|
+
export const Components = StripeResource.extend({
|
|
5
|
+
create: stripeMethod({
|
|
6
|
+
method: 'POST',
|
|
7
|
+
fullPath: '/v2/billing/pricing_plans/{pricing_plan_id}/components',
|
|
8
|
+
}),
|
|
9
|
+
retrieve: stripeMethod({
|
|
10
|
+
method: 'GET',
|
|
11
|
+
fullPath: '/v2/billing/pricing_plans/{pricing_plan_id}/components/{id}',
|
|
12
|
+
}),
|
|
13
|
+
update: stripeMethod({
|
|
14
|
+
method: 'POST',
|
|
15
|
+
fullPath: '/v2/billing/pricing_plans/{pricing_plan_id}/components/{id}',
|
|
16
|
+
}),
|
|
17
|
+
list: stripeMethod({
|
|
18
|
+
method: 'GET',
|
|
19
|
+
fullPath: '/v2/billing/pricing_plans/{pricing_plan_id}/components',
|
|
20
|
+
methodType: 'list',
|
|
21
|
+
}),
|
|
22
|
+
del: stripeMethod({
|
|
23
|
+
method: 'DELETE',
|
|
24
|
+
fullPath: '/v2/billing/pricing_plans/{pricing_plan_id}/components/{id}',
|
|
25
|
+
}),
|
|
26
|
+
});
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
// File generated from our OpenAPI spec
|
|
2
|
+
import { StripeResource } from '../../../../StripeResource.js';
|
|
3
|
+
const stripeMethod = StripeResource.method;
|
|
4
|
+
export const Versions = StripeResource.extend({
|
|
5
|
+
retrieve: stripeMethod({
|
|
6
|
+
method: 'GET',
|
|
7
|
+
fullPath: '/v2/billing/pricing_plans/{pricing_plan_id}/versions/{id}',
|
|
8
|
+
}),
|
|
9
|
+
list: stripeMethod({
|
|
10
|
+
method: 'GET',
|
|
11
|
+
fullPath: '/v2/billing/pricing_plans/{pricing_plan_id}/versions',
|
|
12
|
+
methodType: 'list',
|
|
13
|
+
}),
|
|
14
|
+
});
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
// File generated from our OpenAPI spec
|
|
2
|
+
import { StripeResource } from '../../../StripeResource.js';
|
|
3
|
+
import { Components } from './PricingPlans/Components.js';
|
|
4
|
+
import { Versions } from './PricingPlans/Versions.js';
|
|
5
|
+
const stripeMethod = StripeResource.method;
|
|
6
|
+
export const PricingPlans = StripeResource.extend({
|
|
7
|
+
constructor: function (...args) {
|
|
8
|
+
StripeResource.apply(this, args);
|
|
9
|
+
this.components = new Components(...args);
|
|
10
|
+
this.versions = new Versions(...args);
|
|
11
|
+
},
|
|
12
|
+
create: stripeMethod({ method: 'POST', fullPath: '/v2/billing/pricing_plans' }),
|
|
13
|
+
retrieve: stripeMethod({
|
|
14
|
+
method: 'GET',
|
|
15
|
+
fullPath: '/v2/billing/pricing_plans/{id}',
|
|
16
|
+
}),
|
|
17
|
+
update: stripeMethod({
|
|
18
|
+
method: 'POST',
|
|
19
|
+
fullPath: '/v2/billing/pricing_plans/{id}',
|
|
20
|
+
}),
|
|
21
|
+
list: stripeMethod({
|
|
22
|
+
method: 'GET',
|
|
23
|
+
fullPath: '/v2/billing/pricing_plans',
|
|
24
|
+
methodType: 'list',
|
|
25
|
+
}),
|
|
26
|
+
});
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
// File generated from our OpenAPI spec
|
|
2
|
+
import { StripeResource } from '../../../StripeResource.js';
|
|
3
|
+
const stripeMethod = StripeResource.method;
|
|
4
|
+
export const RateCardSubscriptions = StripeResource.extend({
|
|
5
|
+
create: stripeMethod({
|
|
6
|
+
method: 'POST',
|
|
7
|
+
fullPath: '/v2/billing/rate_card_subscriptions',
|
|
8
|
+
}),
|
|
9
|
+
retrieve: stripeMethod({
|
|
10
|
+
method: 'GET',
|
|
11
|
+
fullPath: '/v2/billing/rate_card_subscriptions/{id}',
|
|
12
|
+
}),
|
|
13
|
+
update: stripeMethod({
|
|
14
|
+
method: 'POST',
|
|
15
|
+
fullPath: '/v2/billing/rate_card_subscriptions/{id}',
|
|
16
|
+
}),
|
|
17
|
+
list: stripeMethod({
|
|
18
|
+
method: 'GET',
|
|
19
|
+
fullPath: '/v2/billing/rate_card_subscriptions',
|
|
20
|
+
methodType: 'list',
|
|
21
|
+
}),
|
|
22
|
+
cancel: stripeMethod({
|
|
23
|
+
method: 'POST',
|
|
24
|
+
fullPath: '/v2/billing/rate_card_subscriptions/{id}/cancel',
|
|
25
|
+
}),
|
|
26
|
+
});
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
// File generated from our OpenAPI spec
|
|
2
|
+
import { StripeResource } from '../../../../StripeResource.js';
|
|
3
|
+
const stripeMethod = StripeResource.method;
|
|
4
|
+
export const Rates = StripeResource.extend({
|
|
5
|
+
create: stripeMethod({
|
|
6
|
+
method: 'POST',
|
|
7
|
+
fullPath: '/v2/billing/rate_cards/{rate_card_id}/rates',
|
|
8
|
+
}),
|
|
9
|
+
retrieve: stripeMethod({
|
|
10
|
+
method: 'GET',
|
|
11
|
+
fullPath: '/v2/billing/rate_cards/{rate_card_id}/rates/{id}',
|
|
12
|
+
}),
|
|
13
|
+
list: stripeMethod({
|
|
14
|
+
method: 'GET',
|
|
15
|
+
fullPath: '/v2/billing/rate_cards/{rate_card_id}/rates',
|
|
16
|
+
methodType: 'list',
|
|
17
|
+
}),
|
|
18
|
+
del: stripeMethod({
|
|
19
|
+
method: 'DELETE',
|
|
20
|
+
fullPath: '/v2/billing/rate_cards/{rate_card_id}/rates/{id}',
|
|
21
|
+
}),
|
|
22
|
+
});
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
// File generated from our OpenAPI spec
|
|
2
|
+
import { StripeResource } from '../../../../StripeResource.js';
|
|
3
|
+
const stripeMethod = StripeResource.method;
|
|
4
|
+
export const Versions = StripeResource.extend({
|
|
5
|
+
retrieve: stripeMethod({
|
|
6
|
+
method: 'GET',
|
|
7
|
+
fullPath: '/v2/billing/rate_cards/{rate_card_id}/versions/{id}',
|
|
8
|
+
}),
|
|
9
|
+
list: stripeMethod({
|
|
10
|
+
method: 'GET',
|
|
11
|
+
fullPath: '/v2/billing/rate_cards/{rate_card_id}/versions',
|
|
12
|
+
methodType: 'list',
|
|
13
|
+
}),
|
|
14
|
+
});
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
// File generated from our OpenAPI spec
|
|
2
|
+
import { StripeResource } from '../../../StripeResource.js';
|
|
3
|
+
import { Rates } from './RateCards/Rates.js';
|
|
4
|
+
import { Versions } from './RateCards/Versions.js';
|
|
5
|
+
const stripeMethod = StripeResource.method;
|
|
6
|
+
export const RateCards = StripeResource.extend({
|
|
7
|
+
constructor: function (...args) {
|
|
8
|
+
StripeResource.apply(this, args);
|
|
9
|
+
this.rates = new Rates(...args);
|
|
10
|
+
this.versions = new Versions(...args);
|
|
11
|
+
},
|
|
12
|
+
create: stripeMethod({ method: 'POST', fullPath: '/v2/billing/rate_cards' }),
|
|
13
|
+
retrieve: stripeMethod({
|
|
14
|
+
method: 'GET',
|
|
15
|
+
fullPath: '/v2/billing/rate_cards/{id}',
|
|
16
|
+
}),
|
|
17
|
+
update: stripeMethod({
|
|
18
|
+
method: 'POST',
|
|
19
|
+
fullPath: '/v2/billing/rate_cards/{id}',
|
|
20
|
+
}),
|
|
21
|
+
list: stripeMethod({
|
|
22
|
+
method: 'GET',
|
|
23
|
+
fullPath: '/v2/billing/rate_cards',
|
|
24
|
+
methodType: 'list',
|
|
25
|
+
}),
|
|
26
|
+
});
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
// File generated from our OpenAPI spec
|
|
2
|
+
import { StripeResource } from '../../../StripeResource.js';
|
|
3
|
+
const stripeMethod = StripeResource.method;
|
|
4
|
+
export const ServiceActions = StripeResource.extend({
|
|
5
|
+
create: stripeMethod({
|
|
6
|
+
method: 'POST',
|
|
7
|
+
fullPath: '/v2/billing/service_actions',
|
|
8
|
+
}),
|
|
9
|
+
retrieve: stripeMethod({
|
|
10
|
+
method: 'GET',
|
|
11
|
+
fullPath: '/v2/billing/service_actions/{id}',
|
|
12
|
+
}),
|
|
13
|
+
update: stripeMethod({
|
|
14
|
+
method: 'POST',
|
|
15
|
+
fullPath: '/v2/billing/service_actions/{id}',
|
|
16
|
+
}),
|
|
17
|
+
});
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
// File generated from our OpenAPI spec
|
|
2
|
+
import { StripeResource } from '../../../StripeResource.js';
|
|
3
|
+
const stripeMethod = StripeResource.method;
|
|
4
|
+
export const ClaimableSandboxes = StripeResource.extend({
|
|
5
|
+
create: stripeMethod({
|
|
6
|
+
method: 'POST',
|
|
7
|
+
fullPath: '/v2/core/claimable_sandboxes',
|
|
8
|
+
}),
|
|
9
|
+
retrieve: stripeMethod({
|
|
10
|
+
method: 'GET',
|
|
11
|
+
fullPath: '/v2/core/claimable_sandboxes/{id}',
|
|
12
|
+
}),
|
|
13
|
+
});
|
|
@@ -10,6 +10,11 @@ export const GbBankAccounts = StripeResource.extend({
|
|
|
10
10
|
method: 'GET',
|
|
11
11
|
fullPath: '/v2/core/vault/gb_bank_accounts/{id}',
|
|
12
12
|
}),
|
|
13
|
+
list: stripeMethod({
|
|
14
|
+
method: 'GET',
|
|
15
|
+
fullPath: '/v2/core/vault/gb_bank_accounts',
|
|
16
|
+
methodType: 'list',
|
|
17
|
+
}),
|
|
13
18
|
acknowledgeConfirmationOfPayee: stripeMethod({
|
|
14
19
|
method: 'POST',
|
|
15
20
|
fullPath: '/v2/core/vault/gb_bank_accounts/{id}/acknowledge_confirmation_of_payee',
|
|
@@ -14,8 +14,21 @@ export const UsBankAccounts = StripeResource.extend({
|
|
|
14
14
|
method: 'POST',
|
|
15
15
|
fullPath: '/v2/core/vault/us_bank_accounts/{id}',
|
|
16
16
|
}),
|
|
17
|
+
list: stripeMethod({
|
|
18
|
+
method: 'GET',
|
|
19
|
+
fullPath: '/v2/core/vault/us_bank_accounts',
|
|
20
|
+
methodType: 'list',
|
|
21
|
+
}),
|
|
17
22
|
archive: stripeMethod({
|
|
18
23
|
method: 'POST',
|
|
19
24
|
fullPath: '/v2/core/vault/us_bank_accounts/{id}/archive',
|
|
20
25
|
}),
|
|
26
|
+
confirmMicrodeposits: stripeMethod({
|
|
27
|
+
method: 'POST',
|
|
28
|
+
fullPath: '/v2/core/vault/us_bank_accounts/{id}/confirm_microdeposits',
|
|
29
|
+
}),
|
|
30
|
+
sendMicrodeposits: stripeMethod({
|
|
31
|
+
method: 'POST',
|
|
32
|
+
fullPath: '/v2/core/vault/us_bank_accounts/{id}/send_microdeposits',
|
|
33
|
+
}),
|
|
21
34
|
});
|
|
@@ -10,6 +10,10 @@ export const FinancialAccounts = StripeResource.extend({
|
|
|
10
10
|
method: 'GET',
|
|
11
11
|
fullPath: '/v2/money_management/financial_accounts/{id}',
|
|
12
12
|
}),
|
|
13
|
+
update: stripeMethod({
|
|
14
|
+
method: 'POST',
|
|
15
|
+
fullPath: '/v2/money_management/financial_accounts/{id}',
|
|
16
|
+
}),
|
|
13
17
|
list: stripeMethod({
|
|
14
18
|
method: 'GET',
|
|
15
19
|
fullPath: '/v2/money_management/financial_accounts',
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
// File generated from our OpenAPI spec
|
|
2
|
+
import { StripeResource } from '../../../StripeResource.js';
|
|
3
|
+
const stripeMethod = StripeResource.method;
|
|
4
|
+
export const RecipientVerifications = StripeResource.extend({
|
|
5
|
+
create: stripeMethod({
|
|
6
|
+
method: 'POST',
|
|
7
|
+
fullPath: '/v2/money_management/recipient_verifications',
|
|
8
|
+
}),
|
|
9
|
+
retrieve: stripeMethod({
|
|
10
|
+
method: 'GET',
|
|
11
|
+
fullPath: '/v2/money_management/recipient_verifications/{id}',
|
|
12
|
+
}),
|
|
13
|
+
acknowledge: stripeMethod({
|
|
14
|
+
method: 'POST',
|
|
15
|
+
fullPath: '/v2/money_management/recipient_verifications/{id}/acknowledge',
|
|
16
|
+
}),
|
|
17
|
+
});
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
// File generated from our OpenAPI spec
|
|
2
|
+
import { StripeResource } from '../../../StripeResource.js';
|
|
3
|
+
const stripeMethod = StripeResource.method;
|
|
4
|
+
export const AutomaticRules = StripeResource.extend({
|
|
5
|
+
create: stripeMethod({ method: 'POST', fullPath: '/v2/tax/automatic_rules' }),
|
|
6
|
+
retrieve: stripeMethod({
|
|
7
|
+
method: 'GET',
|
|
8
|
+
fullPath: '/v2/tax/automatic_rules/{id}',
|
|
9
|
+
}),
|
|
10
|
+
update: stripeMethod({
|
|
11
|
+
method: 'POST',
|
|
12
|
+
fullPath: '/v2/tax/automatic_rules/{id}',
|
|
13
|
+
}),
|
|
14
|
+
deactivate: stripeMethod({
|
|
15
|
+
method: 'POST',
|
|
16
|
+
fullPath: '/v2/tax/automatic_rules/{id}/deactivate',
|
|
17
|
+
}),
|
|
18
|
+
find: stripeMethod({ method: 'GET', fullPath: '/v2/tax/automatic_rules/find' }),
|
|
19
|
+
});
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
// File generated from our OpenAPI spec
|
|
2
|
+
import { StripeResource } from '../../../StripeResource.js';
|
|
3
|
+
const stripeMethod = StripeResource.method;
|
|
4
|
+
export const MoneyManagement = StripeResource.extend({
|
|
5
|
+
recipientVerifications: stripeMethod({
|
|
6
|
+
method: 'POST',
|
|
7
|
+
fullPath: '/v2/test_helpers/money_management/recipient_verifications',
|
|
8
|
+
}),
|
|
9
|
+
});
|
package/esm/resources.js
CHANGED
|
@@ -9,12 +9,15 @@ import { Alerts as BillingAlerts } from './resources/Billing/Alerts.js';
|
|
|
9
9
|
import { Associations as TaxAssociations } from './resources/Tax/Associations.js';
|
|
10
10
|
import { Authorizations as IssuingAuthorizations } from './resources/Issuing/Authorizations.js';
|
|
11
11
|
import { Authorizations as TestHelpersIssuingAuthorizations } from './resources/TestHelpers/Issuing/Authorizations.js';
|
|
12
|
+
import { AutomaticRules as V2TaxAutomaticRules } from './resources/V2/Tax/AutomaticRules.js';
|
|
12
13
|
import { BillSettings as V2BillingBillSettings } from './resources/V2/Billing/BillSettings.js';
|
|
14
|
+
import { BlocklistEntries as IdentityBlocklistEntries } from './resources/Identity/BlocklistEntries.js';
|
|
13
15
|
import { Cadences as V2BillingCadences } from './resources/V2/Billing/Cadences.js';
|
|
14
16
|
import { Calculations as TaxCalculations } from './resources/Tax/Calculations.js';
|
|
15
17
|
import { Cardholders as IssuingCardholders } from './resources/Issuing/Cardholders.js';
|
|
16
18
|
import { Cards as IssuingCards } from './resources/Issuing/Cards.js';
|
|
17
19
|
import { Cards as TestHelpersIssuingCards } from './resources/TestHelpers/Issuing/Cards.js';
|
|
20
|
+
import { ClaimableSandboxes as V2CoreClaimableSandboxes } from './resources/V2/Core/ClaimableSandboxes.js';
|
|
18
21
|
import { CollectionSettings as V2BillingCollectionSettings } from './resources/V2/Billing/CollectionSettings.js';
|
|
19
22
|
import { Configurations as BillingPortalConfigurations } from './resources/BillingPortal/Configurations.js';
|
|
20
23
|
import { Configurations as TerminalConfigurations } from './resources/Terminal/Configurations.js';
|
|
@@ -25,6 +28,7 @@ import { CreditBalanceTransactions as BillingCreditBalanceTransactions } from '.
|
|
|
25
28
|
import { CreditGrants as BillingCreditGrants } from './resources/Billing/CreditGrants.js';
|
|
26
29
|
import { CreditReversals as TreasuryCreditReversals } from './resources/Treasury/CreditReversals.js';
|
|
27
30
|
import { CreditUnderwritingRecords as IssuingCreditUnderwritingRecords } from './resources/Issuing/CreditUnderwritingRecords.js';
|
|
31
|
+
import { CustomPricingUnits as V2BillingCustomPricingUnits } from './resources/V2/Billing/CustomPricingUnits.js';
|
|
28
32
|
import { Customers as TestHelpersCustomers } from './resources/TestHelpers/Customers.js';
|
|
29
33
|
import { DebitReversals as TreasuryDebitReversals } from './resources/Treasury/DebitReversals.js';
|
|
30
34
|
import { DisputeSettlementDetails as IssuingDisputeSettlementDetails } from './resources/Issuing/DisputeSettlementDetails.js';
|
|
@@ -47,6 +51,10 @@ import { InboundTransfers as TestHelpersTreasuryInboundTransfers } from './resou
|
|
|
47
51
|
import { InboundTransfers as TreasuryInboundTransfers } from './resources/Treasury/InboundTransfers.js';
|
|
48
52
|
import { InboundTransfers as V2MoneyManagementInboundTransfers } from './resources/V2/MoneyManagement/InboundTransfers.js';
|
|
49
53
|
import { Institutions as FinancialConnectionsInstitutions } from './resources/FinancialConnections/Institutions.js';
|
|
54
|
+
import { Intents as V2BillingIntents } from './resources/V2/Billing/Intents.js';
|
|
55
|
+
import { LicenseFeeSubscriptions as V2BillingLicenseFeeSubscriptions } from './resources/V2/Billing/LicenseFeeSubscriptions.js';
|
|
56
|
+
import { LicenseFees as V2BillingLicenseFees } from './resources/V2/Billing/LicenseFees.js';
|
|
57
|
+
import { LicensedItems as V2BillingLicensedItems } from './resources/V2/Billing/LicensedItems.js';
|
|
50
58
|
import { Locations as TerminalLocations } from './resources/Terminal/Locations.js';
|
|
51
59
|
import { MeterEventAdjustments as BillingMeterEventAdjustments } from './resources/Billing/MeterEventAdjustments.js';
|
|
52
60
|
import { MeterEventAdjustments as V2BillingMeterEventAdjustments } from './resources/V2/Billing/MeterEventAdjustments.js';
|
|
@@ -55,7 +63,9 @@ import { MeterEventStream as V2BillingMeterEventStream } from './resources/V2/Bi
|
|
|
55
63
|
import { MeterEvents as BillingMeterEvents } from './resources/Billing/MeterEvents.js';
|
|
56
64
|
import { MeterEvents as V2BillingMeterEvents } from './resources/V2/Billing/MeterEvents.js';
|
|
57
65
|
import { MeterUsage as BillingAnalyticsMeterUsage } from './resources/Billing/Analytics/MeterUsage.js';
|
|
66
|
+
import { MeteredItems as V2BillingMeteredItems } from './resources/V2/Billing/MeteredItems.js';
|
|
58
67
|
import { Meters as BillingMeters } from './resources/Billing/Meters.js';
|
|
68
|
+
import { MoneyManagement as V2TestHelpersMoneyManagement } from './resources/V2/TestHelpers/MoneyManagement.js';
|
|
59
69
|
import { OffSessionPayments as V2PaymentsOffSessionPayments } from './resources/V2/Payments/OffSessionPayments.js';
|
|
60
70
|
import { OnboardingLinks as TerminalOnboardingLinks } from './resources/Terminal/OnboardingLinks.js';
|
|
61
71
|
import { Orders as ClimateOrders } from './resources/Climate/Orders.js';
|
|
@@ -72,8 +82,12 @@ import { PayoutMethodsBankAccountSpec as V2MoneyManagementPayoutMethodsBankAccou
|
|
|
72
82
|
import { PersonalizationDesigns as IssuingPersonalizationDesigns } from './resources/Issuing/PersonalizationDesigns.js';
|
|
73
83
|
import { PersonalizationDesigns as TestHelpersIssuingPersonalizationDesigns } from './resources/TestHelpers/Issuing/PersonalizationDesigns.js';
|
|
74
84
|
import { PhysicalBundles as IssuingPhysicalBundles } from './resources/Issuing/PhysicalBundles.js';
|
|
85
|
+
import { PricingPlanSubscriptions as V2BillingPricingPlanSubscriptions } from './resources/V2/Billing/PricingPlanSubscriptions.js';
|
|
86
|
+
import { PricingPlans as V2BillingPricingPlans } from './resources/V2/Billing/PricingPlans.js';
|
|
75
87
|
import { Products as ClimateProducts } from './resources/Climate/Products.js';
|
|
76
88
|
import { Profiles as V2BillingProfiles } from './resources/V2/Billing/Profiles.js';
|
|
89
|
+
import { RateCardSubscriptions as V2BillingRateCardSubscriptions } from './resources/V2/Billing/RateCardSubscriptions.js';
|
|
90
|
+
import { RateCards as V2BillingRateCards } from './resources/V2/Billing/RateCards.js';
|
|
77
91
|
import { ReaderCollectedData as TerminalReaderCollectedData } from './resources/Terminal/ReaderCollectedData.js';
|
|
78
92
|
import { Readers as TerminalReaders } from './resources/Terminal/Readers.js';
|
|
79
93
|
import { Readers as TestHelpersTerminalReaders } from './resources/TestHelpers/Terminal/Readers.js';
|
|
@@ -83,14 +97,17 @@ import { ReceivedCredits as V2MoneyManagementReceivedCredits } from './resources
|
|
|
83
97
|
import { ReceivedDebits as TestHelpersTreasuryReceivedDebits } from './resources/TestHelpers/Treasury/ReceivedDebits.js';
|
|
84
98
|
import { ReceivedDebits as TreasuryReceivedDebits } from './resources/Treasury/ReceivedDebits.js';
|
|
85
99
|
import { ReceivedDebits as V2MoneyManagementReceivedDebits } from './resources/V2/MoneyManagement/ReceivedDebits.js';
|
|
100
|
+
import { RecipientVerifications as V2MoneyManagementRecipientVerifications } from './resources/V2/MoneyManagement/RecipientVerifications.js';
|
|
86
101
|
import { RedactionJobs as PrivacyRedactionJobs } from './resources/Privacy/RedactionJobs.js';
|
|
87
102
|
import { Refunds as TestHelpersRefunds } from './resources/TestHelpers/Refunds.js';
|
|
88
103
|
import { Registrations as TaxRegistrations } from './resources/Tax/Registrations.js';
|
|
89
104
|
import { ReportRuns as ReportingReportRuns } from './resources/Reporting/ReportRuns.js';
|
|
90
105
|
import { ReportTypes as ReportingReportTypes } from './resources/Reporting/ReportTypes.js';
|
|
106
|
+
import { RequestedSessions as DelegatedCheckoutRequestedSessions } from './resources/DelegatedCheckout/RequestedSessions.js';
|
|
91
107
|
import { Requests as ForwardingRequests } from './resources/Forwarding/Requests.js';
|
|
92
108
|
import { ScheduledQueryRuns as SigmaScheduledQueryRuns } from './resources/Sigma/ScheduledQueryRuns.js';
|
|
93
109
|
import { Secrets as AppsSecrets } from './resources/Apps/Secrets.js';
|
|
110
|
+
import { ServiceActions as V2BillingServiceActions } from './resources/V2/Billing/ServiceActions.js';
|
|
94
111
|
import { Sessions as BillingPortalSessions } from './resources/BillingPortal/Sessions.js';
|
|
95
112
|
import { Sessions as CheckoutSessions } from './resources/Checkout/Sessions.js';
|
|
96
113
|
import { Sessions as FinancialConnectionsSessions } from './resources/FinancialConnections/Sessions.js';
|
|
@@ -203,6 +220,9 @@ export const Climate = resourceNamespace('climate', {
|
|
|
203
220
|
Products: ClimateProducts,
|
|
204
221
|
Suppliers: ClimateSuppliers,
|
|
205
222
|
});
|
|
223
|
+
export const DelegatedCheckout = resourceNamespace('delegatedCheckout', {
|
|
224
|
+
RequestedSessions: DelegatedCheckoutRequestedSessions,
|
|
225
|
+
});
|
|
206
226
|
export const Entitlements = resourceNamespace('entitlements', {
|
|
207
227
|
ActiveEntitlements: EntitlementsActiveEntitlements,
|
|
208
228
|
Features: EntitlementsFeatures,
|
|
@@ -217,6 +237,7 @@ export const Forwarding = resourceNamespace('forwarding', {
|
|
|
217
237
|
Requests: ForwardingRequests,
|
|
218
238
|
});
|
|
219
239
|
export const Identity = resourceNamespace('identity', {
|
|
240
|
+
BlocklistEntries: IdentityBlocklistEntries,
|
|
220
241
|
VerificationReports: IdentityVerificationReports,
|
|
221
242
|
VerificationSessions: IdentityVerificationSessions,
|
|
222
243
|
});
|
|
@@ -303,15 +324,27 @@ export const V2 = resourceNamespace('v2', {
|
|
|
303
324
|
BillSettings: V2BillingBillSettings,
|
|
304
325
|
Cadences: V2BillingCadences,
|
|
305
326
|
CollectionSettings: V2BillingCollectionSettings,
|
|
327
|
+
CustomPricingUnits: V2BillingCustomPricingUnits,
|
|
328
|
+
Intents: V2BillingIntents,
|
|
329
|
+
LicenseFeeSubscriptions: V2BillingLicenseFeeSubscriptions,
|
|
330
|
+
LicenseFees: V2BillingLicenseFees,
|
|
331
|
+
LicensedItems: V2BillingLicensedItems,
|
|
306
332
|
MeterEventAdjustments: V2BillingMeterEventAdjustments,
|
|
307
333
|
MeterEventSession: V2BillingMeterEventSession,
|
|
308
334
|
MeterEventStream: V2BillingMeterEventStream,
|
|
309
335
|
MeterEvents: V2BillingMeterEvents,
|
|
336
|
+
MeteredItems: V2BillingMeteredItems,
|
|
337
|
+
PricingPlanSubscriptions: V2BillingPricingPlanSubscriptions,
|
|
338
|
+
PricingPlans: V2BillingPricingPlans,
|
|
310
339
|
Profiles: V2BillingProfiles,
|
|
340
|
+
RateCardSubscriptions: V2BillingRateCardSubscriptions,
|
|
341
|
+
RateCards: V2BillingRateCards,
|
|
342
|
+
ServiceActions: V2BillingServiceActions,
|
|
311
343
|
}),
|
|
312
344
|
Core: resourceNamespace('core', {
|
|
313
345
|
AccountLinks: V2CoreAccountLinks,
|
|
314
346
|
Accounts: V2CoreAccounts,
|
|
347
|
+
ClaimableSandboxes: V2CoreClaimableSandboxes,
|
|
315
348
|
EventDestinations: V2CoreEventDestinations,
|
|
316
349
|
Events: V2CoreEvents,
|
|
317
350
|
Vault: resourceNamespace('vault', {
|
|
@@ -332,13 +365,16 @@ export const V2 = resourceNamespace('v2', {
|
|
|
332
365
|
PayoutMethodsBankAccountSpec: V2MoneyManagementPayoutMethodsBankAccountSpec,
|
|
333
366
|
ReceivedCredits: V2MoneyManagementReceivedCredits,
|
|
334
367
|
ReceivedDebits: V2MoneyManagementReceivedDebits,
|
|
368
|
+
RecipientVerifications: V2MoneyManagementRecipientVerifications,
|
|
335
369
|
TransactionEntries: V2MoneyManagementTransactionEntries,
|
|
336
370
|
Transactions: V2MoneyManagementTransactions,
|
|
337
371
|
}),
|
|
338
372
|
Payment: resourceNamespace('payment', {
|
|
339
373
|
OffSessionPayments: V2PaymentsOffSessionPayments,
|
|
340
374
|
}),
|
|
375
|
+
Tax: resourceNamespace('tax', { AutomaticRules: V2TaxAutomaticRules }),
|
|
341
376
|
TestHelper: resourceNamespace('testHelper', {
|
|
342
377
|
FinancialAddresses: V2TestHelpersFinancialAddresses,
|
|
378
|
+
MoneyManagement: V2TestHelpersMoneyManagement,
|
|
343
379
|
}),
|
|
344
380
|
});
|