@depup/stripe 21.0.0-depup.0
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 +4529 -0
- package/LICENSE +20 -0
- package/OPENAPI_VERSION +1 -0
- package/README.md +25 -0
- package/VERSION +1 -0
- package/changes.json +5 -0
- package/cjs/Decimal.js +854 -0
- package/cjs/Error.js +284 -0
- package/cjs/RequestSender.js +469 -0
- package/cjs/ResourceNamespace.js +21 -0
- package/cjs/StripeContext.js +56 -0
- package/cjs/StripeEmitter.js +46 -0
- package/cjs/StripeMethod.js +36 -0
- package/cjs/StripeResource.js +188 -0
- package/cjs/V2Coercion.js +109 -0
- package/cjs/Webhooks.js +225 -0
- package/cjs/apiVersion.js +6 -0
- package/cjs/autoPagination.js +294 -0
- package/cjs/crypto/CryptoProvider.js +51 -0
- package/cjs/crypto/NodeCryptoProvider.js +30 -0
- package/cjs/crypto/SubtleCryptoProvider.js +51 -0
- package/cjs/multipart.js +61 -0
- package/cjs/net/FetchHttpClient.js +145 -0
- package/cjs/net/HttpClient.js +53 -0
- package/cjs/net/NodeHttpClient.js +108 -0
- package/cjs/package.json +1 -0
- package/cjs/platform/NodePlatformFunctions.js +98 -0
- package/cjs/platform/PlatformFunctions.js +98 -0
- package/cjs/platform/WebPlatformFunctions.js +38 -0
- package/cjs/resources/AccountLinks.js +9 -0
- package/cjs/resources/AccountSessions.js +9 -0
- package/cjs/resources/Accounts.js +101 -0
- package/cjs/resources/ApplePayDomains.js +22 -0
- package/cjs/resources/ApplicationFees.js +34 -0
- package/cjs/resources/Apps/Secrets.js +19 -0
- package/cjs/resources/Balance.js +9 -0
- package/cjs/resources/BalanceSettings.js +10 -0
- package/cjs/resources/BalanceTransactions.js +17 -0
- package/cjs/resources/Billing/Alerts.js +27 -0
- package/cjs/resources/Billing/CreditBalanceSummary.js +12 -0
- package/cjs/resources/Billing/CreditBalanceTransactions.js +17 -0
- package/cjs/resources/Billing/CreditGrants.js +30 -0
- package/cjs/resources/Billing/MeterEventAdjustments.js +12 -0
- package/cjs/resources/Billing/MeterEvents.js +9 -0
- package/cjs/resources/Billing/Meters.js +29 -0
- package/cjs/resources/BillingPortal/Configurations.js +25 -0
- package/cjs/resources/BillingPortal/Sessions.js +12 -0
- package/cjs/resources/Charges.js +25 -0
- package/cjs/resources/Checkout/Sessions.js +538 -0
- package/cjs/resources/Climate/Orders.js +61 -0
- package/cjs/resources/Climate/Products.js +33 -0
- package/cjs/resources/Climate/Suppliers.js +17 -0
- package/cjs/resources/ConfirmationTokens.js +12 -0
- package/cjs/resources/CountrySpecs.js +17 -0
- package/cjs/resources/Coupons.js +17 -0
- package/cjs/resources/CreditNotes.js +253 -0
- package/cjs/resources/CustomerSessions.js +9 -0
- package/cjs/resources/Customers.js +581 -0
- package/cjs/resources/Disputes.js +19 -0
- package/cjs/resources/Entitlements/ActiveEntitlements.js +17 -0
- package/cjs/resources/Entitlements/Features.js +22 -0
- package/cjs/resources/EphemeralKeys.js +18 -0
- package/cjs/resources/Events.js +14 -0
- package/cjs/resources/ExchangeRates.js +17 -0
- package/cjs/resources/FileLinks.js +16 -0
- package/cjs/resources/Files.js +24 -0
- package/cjs/resources/FinancialConnections/Accounts.js +38 -0
- package/cjs/resources/FinancialConnections/Sessions.js +16 -0
- package/cjs/resources/FinancialConnections/Transactions.js +17 -0
- package/cjs/resources/Forwarding/Requests.js +18 -0
- package/cjs/resources/Identity/VerificationReports.js +17 -0
- package/cjs/resources/Identity/VerificationSessions.js +33 -0
- package/cjs/resources/InvoiceItems.js +131 -0
- package/cjs/resources/InvoicePayments.js +17 -0
- package/cjs/resources/InvoiceRenderingTemplates.js +25 -0
- package/cjs/resources/Invoices.js +776 -0
- package/cjs/resources/Issuing/Authorizations.js +847 -0
- package/cjs/resources/Issuing/Cardholders.js +22 -0
- package/cjs/resources/Issuing/Cards.js +16 -0
- package/cjs/resources/Issuing/Disputes.js +26 -0
- package/cjs/resources/Issuing/PersonalizationDesigns.js +25 -0
- package/cjs/resources/Issuing/PhysicalBundles.js +17 -0
- package/cjs/resources/Issuing/Tokens.js +21 -0
- package/cjs/resources/Issuing/Transactions.js +275 -0
- package/cjs/resources/Mandates.js +9 -0
- package/cjs/resources/OAuth.js +44 -0
- package/cjs/resources/PaymentAttemptRecords.js +17 -0
- package/cjs/resources/PaymentIntents.js +56 -0
- package/cjs/resources/PaymentLinks.js +420 -0
- package/cjs/resources/PaymentMethodConfigurations.js +25 -0
- package/cjs/resources/PaymentMethodDomains.js +29 -0
- package/cjs/resources/PaymentMethods.js +30 -0
- package/cjs/resources/PaymentRecords.js +37 -0
- package/cjs/resources/Payouts.js +24 -0
- package/cjs/resources/Plans.js +141 -0
- package/cjs/resources/Prices.js +346 -0
- package/cjs/resources/Products.js +72 -0
- package/cjs/resources/PromotionCodes.js +22 -0
- package/cjs/resources/Quotes.js +825 -0
- package/cjs/resources/Radar/EarlyFraudWarnings.js +17 -0
- package/cjs/resources/Radar/PaymentEvaluations.js +12 -0
- package/cjs/resources/Radar/ValueListItems.js +25 -0
- package/cjs/resources/Radar/ValueLists.js +26 -0
- package/cjs/resources/Refunds.js +20 -0
- package/cjs/resources/Reporting/ReportRuns.js +18 -0
- package/cjs/resources/Reporting/ReportTypes.js +17 -0
- package/cjs/resources/Reviews.js +18 -0
- package/cjs/resources/SetupAttempts.js +13 -0
- package/cjs/resources/SetupIntents.js +34 -0
- package/cjs/resources/ShippingRates.js +22 -0
- package/cjs/resources/Sigma/ScheduledQueryRuns.js +17 -0
- package/cjs/resources/Sources.js +20 -0
- package/cjs/resources/SubscriptionItems.js +378 -0
- package/cjs/resources/SubscriptionSchedules.js +107 -0
- package/cjs/resources/Subscriptions.js +888 -0
- package/cjs/resources/Tax/Associations.js +9 -0
- package/cjs/resources/Tax/Calculations.js +18 -0
- package/cjs/resources/Tax/Registrations.js +22 -0
- package/cjs/resources/Tax/Settings.js +10 -0
- package/cjs/resources/Tax/Transactions.js +25 -0
- package/cjs/resources/TaxCodes.js +14 -0
- package/cjs/resources/TaxIds.js +16 -0
- package/cjs/resources/TaxRates.js +16 -0
- package/cjs/resources/Terminal/Configurations.js +29 -0
- package/cjs/resources/Terminal/ConnectionTokens.js +12 -0
- package/cjs/resources/Terminal/Locations.js +26 -0
- package/cjs/resources/Terminal/OnboardingLinks.js +12 -0
- package/cjs/resources/Terminal/Readers.js +58 -0
- package/cjs/resources/TestHelpers/ConfirmationTokens.js +12 -0
- package/cjs/resources/TestHelpers/Customers.js +12 -0
- package/cjs/resources/TestHelpers/Issuing/Authorizations.js +1293 -0
- package/cjs/resources/TestHelpers/Issuing/Cards.js +28 -0
- package/cjs/resources/TestHelpers/Issuing/PersonalizationDesigns.js +20 -0
- package/cjs/resources/TestHelpers/Issuing/Transactions.js +364 -0
- package/cjs/resources/TestHelpers/Refunds.js +12 -0
- package/cjs/resources/TestHelpers/Terminal/Readers.js +20 -0
- package/cjs/resources/TestHelpers/TestClocks.js +29 -0
- package/cjs/resources/TestHelpers/Treasury/InboundTransfers.js +20 -0
- package/cjs/resources/TestHelpers/Treasury/OutboundPayments.js +24 -0
- package/cjs/resources/TestHelpers/Treasury/OutboundTransfers.js +24 -0
- package/cjs/resources/TestHelpers/Treasury/ReceivedCredits.js +12 -0
- package/cjs/resources/TestHelpers/Treasury/ReceivedDebits.js +12 -0
- package/cjs/resources/Tokens.js +10 -0
- package/cjs/resources/Topups.js +17 -0
- package/cjs/resources/Transfers.js +33 -0
- package/cjs/resources/Treasury/CreditReversals.js +21 -0
- package/cjs/resources/Treasury/DebitReversals.js +21 -0
- package/cjs/resources/Treasury/FinancialAccounts.js +37 -0
- package/cjs/resources/Treasury/InboundTransfers.js +25 -0
- package/cjs/resources/Treasury/OutboundPayments.js +25 -0
- package/cjs/resources/Treasury/OutboundTransfers.js +25 -0
- package/cjs/resources/Treasury/ReceivedCredits.js +17 -0
- package/cjs/resources/Treasury/ReceivedDebits.js +17 -0
- package/cjs/resources/Treasury/TransactionEntries.js +393 -0
- package/cjs/resources/Treasury/Transactions.js +447 -0
- package/cjs/resources/V2/Billing/MeterEventAdjustments.js +12 -0
- package/cjs/resources/V2/Billing/MeterEventSession.js +12 -0
- package/cjs/resources/V2/Billing/MeterEventStream.js +13 -0
- package/cjs/resources/V2/Billing/MeterEvents.js +9 -0
- package/cjs/resources/V2/Core/AccountLinks.js +9 -0
- package/cjs/resources/V2/Core/AccountTokens.js +35 -0
- package/cjs/resources/V2/Core/Accounts/PersonTokens.js +25 -0
- package/cjs/resources/V2/Core/Accounts/Persons.js +91 -0
- package/cjs/resources/V2/Core/Accounts.js +177 -0
- package/cjs/resources/V2/Core/EventDestinations.js +41 -0
- package/cjs/resources/V2/Core/Events.js +66 -0
- package/cjs/resources/WebhookEndpoints.js +26 -0
- package/cjs/resources.js +324 -0
- package/cjs/stripe.cjs.node.js +13 -0
- package/cjs/stripe.cjs.worker.js +13 -0
- package/cjs/stripe.core.js +412 -0
- package/cjs/utils.js +477 -0
- package/esm/Decimal.js +850 -0
- package/esm/Error.js +259 -0
- package/esm/RequestSender.js +465 -0
- package/esm/ResourceNamespace.js +17 -0
- package/esm/StripeContext.js +52 -0
- package/esm/StripeEmitter.js +42 -0
- package/esm/StripeMethod.js +32 -0
- package/esm/StripeResource.js +185 -0
- package/esm/V2Coercion.js +104 -0
- package/esm/Webhooks.js +221 -0
- package/esm/apiVersion.js +3 -0
- package/esm/autoPagination.js +290 -0
- package/esm/crypto/CryptoProvider.js +46 -0
- package/esm/crypto/NodeCryptoProvider.js +26 -0
- package/esm/crypto/SubtleCryptoProvider.js +47 -0
- package/esm/multipart.js +57 -0
- package/esm/net/FetchHttpClient.js +140 -0
- package/esm/net/HttpClient.js +48 -0
- package/esm/net/NodeHttpClient.js +103 -0
- package/esm/package.json +1 -0
- package/esm/platform/NodePlatformFunctions.js +94 -0
- package/esm/platform/PlatformFunctions.js +94 -0
- package/esm/platform/WebPlatformFunctions.js +34 -0
- package/esm/resources/AccountLinks.js +6 -0
- package/esm/resources/AccountSessions.js +6 -0
- package/esm/resources/Accounts.js +98 -0
- package/esm/resources/ApplePayDomains.js +19 -0
- package/esm/resources/ApplicationFees.js +31 -0
- package/esm/resources/Apps/Secrets.js +16 -0
- package/esm/resources/Balance.js +6 -0
- package/esm/resources/BalanceSettings.js +7 -0
- package/esm/resources/BalanceTransactions.js +14 -0
- package/esm/resources/Billing/Alerts.js +24 -0
- package/esm/resources/Billing/CreditBalanceSummary.js +9 -0
- package/esm/resources/Billing/CreditBalanceTransactions.js +14 -0
- package/esm/resources/Billing/CreditGrants.js +27 -0
- package/esm/resources/Billing/MeterEventAdjustments.js +9 -0
- package/esm/resources/Billing/MeterEvents.js +6 -0
- package/esm/resources/Billing/Meters.js +26 -0
- package/esm/resources/BillingPortal/Configurations.js +22 -0
- package/esm/resources/BillingPortal/Sessions.js +9 -0
- package/esm/resources/Charges.js +22 -0
- package/esm/resources/Checkout/Sessions.js +535 -0
- package/esm/resources/Climate/Orders.js +58 -0
- package/esm/resources/Climate/Products.js +30 -0
- package/esm/resources/Climate/Suppliers.js +14 -0
- package/esm/resources/ConfirmationTokens.js +9 -0
- package/esm/resources/CountrySpecs.js +14 -0
- package/esm/resources/Coupons.js +14 -0
- package/esm/resources/CreditNotes.js +250 -0
- package/esm/resources/CustomerSessions.js +6 -0
- package/esm/resources/Customers.js +578 -0
- package/esm/resources/Disputes.js +16 -0
- package/esm/resources/Entitlements/ActiveEntitlements.js +14 -0
- package/esm/resources/Entitlements/Features.js +19 -0
- package/esm/resources/EphemeralKeys.js +15 -0
- package/esm/resources/Events.js +11 -0
- package/esm/resources/ExchangeRates.js +14 -0
- package/esm/resources/FileLinks.js +13 -0
- package/esm/resources/Files.js +21 -0
- package/esm/resources/FinancialConnections/Accounts.js +35 -0
- package/esm/resources/FinancialConnections/Sessions.js +13 -0
- package/esm/resources/FinancialConnections/Transactions.js +14 -0
- package/esm/resources/Forwarding/Requests.js +15 -0
- package/esm/resources/Identity/VerificationReports.js +14 -0
- package/esm/resources/Identity/VerificationSessions.js +30 -0
- package/esm/resources/InvoiceItems.js +128 -0
- package/esm/resources/InvoicePayments.js +14 -0
- package/esm/resources/InvoiceRenderingTemplates.js +22 -0
- package/esm/resources/Invoices.js +773 -0
- package/esm/resources/Issuing/Authorizations.js +844 -0
- package/esm/resources/Issuing/Cardholders.js +19 -0
- package/esm/resources/Issuing/Cards.js +13 -0
- package/esm/resources/Issuing/Disputes.js +23 -0
- package/esm/resources/Issuing/PersonalizationDesigns.js +22 -0
- package/esm/resources/Issuing/PhysicalBundles.js +14 -0
- package/esm/resources/Issuing/Tokens.js +18 -0
- package/esm/resources/Issuing/Transactions.js +272 -0
- package/esm/resources/Mandates.js +6 -0
- package/esm/resources/OAuth.js +42 -0
- package/esm/resources/PaymentAttemptRecords.js +14 -0
- package/esm/resources/PaymentIntents.js +53 -0
- package/esm/resources/PaymentLinks.js +417 -0
- package/esm/resources/PaymentMethodConfigurations.js +22 -0
- package/esm/resources/PaymentMethodDomains.js +26 -0
- package/esm/resources/PaymentMethods.js +27 -0
- package/esm/resources/PaymentRecords.js +34 -0
- package/esm/resources/Payouts.js +21 -0
- package/esm/resources/Plans.js +138 -0
- package/esm/resources/Prices.js +343 -0
- package/esm/resources/Products.js +69 -0
- package/esm/resources/PromotionCodes.js +19 -0
- package/esm/resources/Quotes.js +822 -0
- package/esm/resources/Radar/EarlyFraudWarnings.js +14 -0
- package/esm/resources/Radar/PaymentEvaluations.js +9 -0
- package/esm/resources/Radar/ValueListItems.js +22 -0
- package/esm/resources/Radar/ValueLists.js +23 -0
- package/esm/resources/Refunds.js +17 -0
- package/esm/resources/Reporting/ReportRuns.js +15 -0
- package/esm/resources/Reporting/ReportTypes.js +14 -0
- package/esm/resources/Reviews.js +15 -0
- package/esm/resources/SetupAttempts.js +10 -0
- package/esm/resources/SetupIntents.js +31 -0
- package/esm/resources/ShippingRates.js +19 -0
- package/esm/resources/Sigma/ScheduledQueryRuns.js +14 -0
- package/esm/resources/Sources.js +17 -0
- package/esm/resources/SubscriptionItems.js +375 -0
- package/esm/resources/SubscriptionSchedules.js +104 -0
- package/esm/resources/Subscriptions.js +885 -0
- package/esm/resources/Tax/Associations.js +6 -0
- package/esm/resources/Tax/Calculations.js +15 -0
- package/esm/resources/Tax/Registrations.js +19 -0
- package/esm/resources/Tax/Settings.js +7 -0
- package/esm/resources/Tax/Transactions.js +22 -0
- package/esm/resources/TaxCodes.js +11 -0
- package/esm/resources/TaxIds.js +13 -0
- package/esm/resources/TaxRates.js +13 -0
- package/esm/resources/Terminal/Configurations.js +26 -0
- package/esm/resources/Terminal/ConnectionTokens.js +9 -0
- package/esm/resources/Terminal/Locations.js +23 -0
- package/esm/resources/Terminal/OnboardingLinks.js +9 -0
- package/esm/resources/Terminal/Readers.js +55 -0
- package/esm/resources/TestHelpers/ConfirmationTokens.js +9 -0
- package/esm/resources/TestHelpers/Customers.js +9 -0
- package/esm/resources/TestHelpers/Issuing/Authorizations.js +1290 -0
- package/esm/resources/TestHelpers/Issuing/Cards.js +25 -0
- package/esm/resources/TestHelpers/Issuing/PersonalizationDesigns.js +17 -0
- package/esm/resources/TestHelpers/Issuing/Transactions.js +361 -0
- package/esm/resources/TestHelpers/Refunds.js +9 -0
- package/esm/resources/TestHelpers/Terminal/Readers.js +17 -0
- package/esm/resources/TestHelpers/TestClocks.js +26 -0
- package/esm/resources/TestHelpers/Treasury/InboundTransfers.js +17 -0
- package/esm/resources/TestHelpers/Treasury/OutboundPayments.js +21 -0
- package/esm/resources/TestHelpers/Treasury/OutboundTransfers.js +21 -0
- package/esm/resources/TestHelpers/Treasury/ReceivedCredits.js +9 -0
- package/esm/resources/TestHelpers/Treasury/ReceivedDebits.js +9 -0
- package/esm/resources/Tokens.js +7 -0
- package/esm/resources/Topups.js +14 -0
- package/esm/resources/Transfers.js +30 -0
- package/esm/resources/Treasury/CreditReversals.js +18 -0
- package/esm/resources/Treasury/DebitReversals.js +18 -0
- package/esm/resources/Treasury/FinancialAccounts.js +34 -0
- package/esm/resources/Treasury/InboundTransfers.js +22 -0
- package/esm/resources/Treasury/OutboundPayments.js +22 -0
- package/esm/resources/Treasury/OutboundTransfers.js +22 -0
- package/esm/resources/Treasury/ReceivedCredits.js +14 -0
- package/esm/resources/Treasury/ReceivedDebits.js +14 -0
- package/esm/resources/Treasury/TransactionEntries.js +390 -0
- package/esm/resources/Treasury/Transactions.js +444 -0
- package/esm/resources/V2/Billing/MeterEventAdjustments.js +9 -0
- package/esm/resources/V2/Billing/MeterEventSession.js +9 -0
- package/esm/resources/V2/Billing/MeterEventStream.js +10 -0
- package/esm/resources/V2/Billing/MeterEvents.js +6 -0
- package/esm/resources/V2/Core/AccountLinks.js +6 -0
- package/esm/resources/V2/Core/AccountTokens.js +32 -0
- package/esm/resources/V2/Core/Accounts/PersonTokens.js +22 -0
- package/esm/resources/V2/Core/Accounts/Persons.js +88 -0
- package/esm/resources/V2/Core/Accounts.js +174 -0
- package/esm/resources/V2/Core/EventDestinations.js +38 -0
- package/esm/resources/V2/Core/Events.js +63 -0
- package/esm/resources/WebhookEndpoints.js +23 -0
- package/esm/resources.js +263 -0
- package/esm/stripe.core.js +408 -0
- package/esm/stripe.esm.node.js +5 -0
- package/esm/stripe.esm.worker.js +5 -0
- package/esm/utils.js +450 -0
- package/package.json +110 -0
- package/types/.eslintrc.js +22 -0
- package/types/AccountLinks.d.ts +33 -0
- package/types/AccountLinksResource.d.ts +78 -0
- package/types/AccountSessions.d.ts +578 -0
- package/types/AccountSessionsResource.d.ts +677 -0
- package/types/Accounts.d.ts +1736 -0
- package/types/AccountsResource.d.ts +5312 -0
- package/types/ApplePayDomains.d.ts +57 -0
- package/types/ApplePayDomainsResource.d.ts +77 -0
- package/types/ApplicationFees.d.ts +108 -0
- package/types/ApplicationFeesResource.d.ts +162 -0
- package/types/Applications.d.ts +55 -0
- package/types/Apps/Secrets.d.ts +80 -0
- package/types/Apps/SecretsResource.d.ts +186 -0
- package/types/Balance.d.ts +343 -0
- package/types/BalanceResource.d.ts +26 -0
- package/types/BalanceSettings.d.ts +103 -0
- package/types/BalanceSettingsResource.d.ts +124 -0
- package/types/BalanceTransactionSources.d.ts +23 -0
- package/types/BalanceTransactions.d.ts +176 -0
- package/types/BalanceTransactionsResource.d.ts +72 -0
- package/types/BankAccounts.d.ts +433 -0
- package/types/Billing/AlertTriggereds.d.ts +42 -0
- package/types/Billing/Alerts.d.ts +84 -0
- package/types/Billing/AlertsResource.d.ts +183 -0
- package/types/Billing/CreditBalanceSummary.d.ts +99 -0
- package/types/Billing/CreditBalanceSummaryResource.d.ts +83 -0
- package/types/Billing/CreditBalanceTransactions.d.ts +178 -0
- package/types/Billing/CreditBalanceTransactionsResource.d.ts +62 -0
- package/types/Billing/CreditGrants.d.ts +150 -0
- package/types/Billing/CreditGrantsResource.d.ts +248 -0
- package/types/Billing/MeterEventAdjustments.d.ts +53 -0
- package/types/Billing/MeterEventAdjustmentsResource.d.ts +48 -0
- package/types/Billing/MeterEventSummaries.d.ts +50 -0
- package/types/Billing/MeterEvents.d.ts +49 -0
- package/types/Billing/MeterEventsResource.d.ts +46 -0
- package/types/Billing/Meters.d.ts +110 -0
- package/types/Billing/MetersResource.d.ts +234 -0
- package/types/BillingPortal/Configurations.d.ts +319 -0
- package/types/BillingPortal/ConfigurationsResource.d.ts +679 -0
- package/types/BillingPortal/Sessions.d.ts +293 -0
- package/types/BillingPortal/SessionsResource.d.ts +273 -0
- package/types/Capabilities.d.ts +422 -0
- package/types/Cards.d.ts +225 -0
- package/types/CashBalances.d.ts +57 -0
- package/types/Charges.d.ts +2646 -0
- package/types/ChargesResource.d.ts +426 -0
- package/types/Checkout/Sessions.d.ts +2878 -0
- package/types/Checkout/SessionsResource.d.ts +4027 -0
- package/types/Climate/Orders.d.ts +197 -0
- package/types/Climate/OrdersResource.d.ts +159 -0
- package/types/Climate/Products.d.ts +81 -0
- package/types/Climate/ProductsResource.d.ts +45 -0
- package/types/Climate/Suppliers.d.ts +82 -0
- package/types/Climate/SuppliersResource.d.ts +45 -0
- package/types/ConfirmationTokens.d.ts +1755 -0
- package/types/ConfirmationTokensResource.d.ts +27 -0
- package/types/ConnectCollectionTransfers.d.ts +40 -0
- package/types/CountrySpecs.d.ts +88 -0
- package/types/CountrySpecsResource.d.ts +43 -0
- package/types/Coupons.d.ts +139 -0
- package/types/CouponsResource.d.ts +203 -0
- package/types/CreditNoteLineItems.d.ts +195 -0
- package/types/CreditNotes.d.ts +408 -0
- package/types/CreditNotesResource.d.ts +765 -0
- package/types/CustomerBalanceTransactions.d.ts +106 -0
- package/types/CustomerCashBalanceTransactions.d.ts +230 -0
- package/types/CustomerSessions.d.ts +283 -0
- package/types/CustomerSessionsResource.d.ts +263 -0
- package/types/CustomerSources.d.ts +9 -0
- package/types/Customers.d.ts +326 -0
- package/types/CustomersResource.d.ts +1554 -0
- package/types/Discounts.d.ts +175 -0
- package/types/Disputes.d.ts +519 -0
- package/types/DisputesResource.d.ts +384 -0
- package/types/Entitlements/ActiveEntitlementSummaries.d.ts +32 -0
- package/types/Entitlements/ActiveEntitlements.d.ts +37 -0
- package/types/Entitlements/ActiveEntitlementsResource.d.ts +49 -0
- package/types/Entitlements/Features.d.ts +48 -0
- package/types/Entitlements/FeaturesResource.d.ts +118 -0
- package/types/EphemeralKeys.d.ts +40 -0
- package/types/EphemeralKeysResource.d.ts +65 -0
- package/types/Errors.d.ts +356 -0
- package/types/EventTypes.d.ts +4443 -0
- package/types/Events.d.ts +373 -0
- package/types/EventsResource.d.ts +63 -0
- package/types/ExchangeRates.d.ts +54 -0
- package/types/ExchangeRatesResource.d.ts +49 -0
- package/types/ExternalAccounts.d.ts +9 -0
- package/types/FeeRefunds.d.ts +54 -0
- package/types/FileLinks.d.ts +57 -0
- package/types/FileLinksResource.d.ts +114 -0
- package/types/Files.d.ts +96 -0
- package/types/FilesResource.d.ts +146 -0
- package/types/FinancialConnections/AccountOwners.d.ts +52 -0
- package/types/FinancialConnections/AccountOwnerships.d.ts +32 -0
- package/types/FinancialConnections/Accounts.d.ts +325 -0
- package/types/FinancialConnections/AccountsResource.d.ts +184 -0
- package/types/FinancialConnections/Sessions.d.ts +113 -0
- package/types/FinancialConnections/SessionsResource.d.ts +128 -0
- package/types/FinancialConnections/Transactions.d.ts +85 -0
- package/types/FinancialConnections/TransactionsResource.d.ts +68 -0
- package/types/Forwarding/Requests.d.ts +165 -0
- package/types/Forwarding/RequestsResource.d.ts +127 -0
- package/types/FundingInstructions.d.ts +297 -0
- package/types/Identity/VerificationReports.d.ts +487 -0
- package/types/Identity/VerificationReportsResource.d.ts +71 -0
- package/types/Identity/VerificationSessions.d.ts +352 -0
- package/types/Identity/VerificationSessionsResource.d.ts +366 -0
- package/types/InvoiceItems.d.ts +240 -0
- package/types/InvoiceItemsResource.d.ts +424 -0
- package/types/InvoiceLineItems.d.ts +366 -0
- package/types/InvoicePayments.d.ts +111 -0
- package/types/InvoicePaymentsResource.d.ts +88 -0
- package/types/InvoiceRenderingTemplates.d.ts +55 -0
- package/types/InvoiceRenderingTemplatesResource.d.ts +93 -0
- package/types/Invoices.d.ts +1650 -0
- package/types/InvoicesResource.d.ts +4196 -0
- package/types/Issuing/Authorizations.d.ts +689 -0
- package/types/Issuing/AuthorizationsResource.d.ts +151 -0
- package/types/Issuing/Cardholders.d.ts +1184 -0
- package/types/Issuing/CardholdersResource.d.ts +2411 -0
- package/types/Issuing/Cards.d.ts +1312 -0
- package/types/Issuing/CardsResource.d.ts +2371 -0
- package/types/Issuing/Disputes.d.ts +383 -0
- package/types/Issuing/DisputesResource.d.ts +776 -0
- package/types/Issuing/PersonalizationDesigns.d.ts +142 -0
- package/types/Issuing/PersonalizationDesignsResource.d.ts +253 -0
- package/types/Issuing/PhysicalBundles.d.ts +75 -0
- package/types/Issuing/PhysicalBundlesResource.d.ts +63 -0
- package/types/Issuing/Tokens.d.ts +273 -0
- package/types/Issuing/TokensResource.d.ts +88 -0
- package/types/Issuing/Transactions.d.ts +479 -0
- package/types/Issuing/TransactionsResource.d.ts +92 -0
- package/types/LineItems.d.ts +145 -0
- package/types/LoginLinks.d.ts +26 -0
- package/types/Mandates.d.ts +373 -0
- package/types/MandatesResource.d.ts +27 -0
- package/types/OAuth.d.ts +355 -0
- package/types/PaymentAttemptRecords.d.ts +2438 -0
- package/types/PaymentAttemptRecordsResource.d.ts +57 -0
- package/types/PaymentIntentAmountDetailsLineItems.d.ts +126 -0
- package/types/PaymentIntents.d.ts +3162 -0
- package/types/PaymentIntentsResource.d.ts +11473 -0
- package/types/PaymentLinks.d.ts +1051 -0
- package/types/PaymentLinksResource.d.ts +2334 -0
- package/types/PaymentMethodConfigurations.d.ts +2045 -0
- package/types/PaymentMethodConfigurationsResource.d.ts +2958 -0
- package/types/PaymentMethodDomains.d.ts +213 -0
- package/types/PaymentMethodDomainsResource.d.ts +126 -0
- package/types/PaymentMethods.d.ts +1645 -0
- package/types/PaymentMethodsResource.d.ts +1223 -0
- package/types/PaymentRecords.d.ts +2438 -0
- package/types/PaymentRecordsResource.d.ts +657 -0
- package/types/Payouts.d.ts +177 -0
- package/types/PayoutsResource.d.ts +201 -0
- package/types/Persons.d.ts +824 -0
- package/types/Plans.d.ts +195 -0
- package/types/PlansResource.d.ts +303 -0
- package/types/Prices.d.ts +325 -0
- package/types/PricesResource.d.ts +607 -0
- package/types/ProductFeatures.d.ts +57 -0
- package/types/Products.d.ts +170 -0
- package/types/ProductsResource.d.ts +616 -0
- package/types/PromotionCodes.d.ts +125 -0
- package/types/PromotionCodesResource.d.ts +233 -0
- package/types/Quotes.d.ts +690 -0
- package/types/QuotesResource.d.ts +898 -0
- package/types/Radar/EarlyFraudWarnings.d.ts +55 -0
- package/types/Radar/EarlyFraudWarningsResource.d.ts +64 -0
- package/types/Radar/PaymentEvaluations.d.ts +580 -0
- package/types/Radar/PaymentEvaluationsResource.d.ts +208 -0
- package/types/Radar/ValueListItems.d.ts +74 -0
- package/types/Radar/ValueListItemsResource.d.ts +99 -0
- package/types/Radar/ValueLists.d.ts +104 -0
- package/types/Radar/ValueListsResource.d.ts +156 -0
- package/types/Refunds.d.ts +487 -0
- package/types/RefundsResource.d.ts +187 -0
- package/types/Reporting/ReportRuns.d.ts +115 -0
- package/types/Reporting/ReportRunsResource.d.ts +763 -0
- package/types/Reporting/ReportTypes.d.ts +64 -0
- package/types/Reporting/ReportTypesResource.d.ts +47 -0
- package/types/Reserve/Holds.d.ts +104 -0
- package/types/Reserve/Plans.d.ts +103 -0
- package/types/Reserve/Releases.d.ts +105 -0
- package/types/ReserveTransactions.d.ts +32 -0
- package/types/Reviews.d.ts +146 -0
- package/types/ReviewsResource.d.ts +68 -0
- package/types/SetupAttempts.d.ts +878 -0
- package/types/SetupAttemptsResource.d.ts +35 -0
- package/types/SetupIntents.d.ts +1105 -0
- package/types/SetupIntentsResource.d.ts +5251 -0
- package/types/ShippingRates.d.ts +155 -0
- package/types/ShippingRatesResource.d.ts +262 -0
- package/types/Sigma/ScheduledQueryRuns.d.ts +76 -0
- package/types/Sigma/ScheduledQueryRunsResource.d.ts +47 -0
- package/types/SourceMandateNotifications.d.ts +105 -0
- package/types/SourceTransactions.d.ts +203 -0
- package/types/Sources.d.ts +746 -0
- package/types/SourcesResource.d.ts +611 -0
- package/types/SubscriptionItems.d.ts +122 -0
- package/types/SubscriptionItemsResource.d.ts +441 -0
- package/types/SubscriptionSchedules.d.ts +687 -0
- package/types/SubscriptionSchedulesResource.d.ts +1565 -0
- package/types/Subscriptions.d.ts +852 -0
- package/types/SubscriptionsResource.d.ts +2326 -0
- package/types/Tax/Associations.d.ts +82 -0
- package/types/Tax/AssociationsResource.d.ts +29 -0
- package/types/Tax/CalculationLineItems.d.ts +187 -0
- package/types/Tax/Calculations.d.ts +511 -0
- package/types/Tax/CalculationsResource.d.ts +406 -0
- package/types/Tax/Registrations.d.ts +1710 -0
- package/types/Tax/RegistrationsResource.d.ts +2583 -0
- package/types/Tax/Settings.d.ts +86 -0
- package/types/Tax/SettingsResource.d.ts +77 -0
- package/types/Tax/TransactionLineItems.d.ts +90 -0
- package/types/Tax/Transactions.d.ts +418 -0
- package/types/Tax/TransactionsResource.d.ts +182 -0
- package/types/TaxCodes.d.ts +30 -0
- package/types/TaxCodesResource.d.ts +43 -0
- package/types/TaxDeductedAtSources.d.ts +35 -0
- package/types/TaxIds.d.ts +262 -0
- package/types/TaxIdsResource.d.ts +263 -0
- package/types/TaxRates.d.ts +144 -0
- package/types/TaxRatesResource.d.ts +215 -0
- package/types/Terminal/Configurations.d.ts +630 -0
- package/types/Terminal/ConfigurationsResource.d.ts +1469 -0
- package/types/Terminal/ConnectionTokens.d.ts +29 -0
- package/types/Terminal/ConnectionTokensResource.d.ts +32 -0
- package/types/Terminal/Locations.d.ts +166 -0
- package/types/Terminal/LocationsResource.d.ts +233 -0
- package/types/Terminal/OnboardingLinks.d.ts +57 -0
- package/types/Terminal/OnboardingLinksResource.d.ts +62 -0
- package/types/Terminal/Readers.d.ts +676 -0
- package/types/Terminal/ReadersResource.d.ts +665 -0
- package/types/TestHelpers/ConfirmationTokensResource.d.ts +936 -0
- package/types/TestHelpers/CustomersResource.d.ts +40 -0
- package/types/TestHelpers/Issuing/AuthorizationsResource.d.ts +1404 -0
- package/types/TestHelpers/Issuing/CardsResource.d.ts +121 -0
- package/types/TestHelpers/Issuing/PersonalizationDesignsResource.d.ts +113 -0
- package/types/TestHelpers/Issuing/TransactionsResource.d.ts +1354 -0
- package/types/TestHelpers/RefundsResource.d.ts +29 -0
- package/types/TestHelpers/Terminal/ReadersResource.d.ts +151 -0
- package/types/TestHelpers/TestClocks.d.ts +98 -0
- package/types/TestHelpers/TestClocksResource.d.ts +108 -0
- package/types/TestHelpers/Treasury/InboundTransfersResource.d.ts +108 -0
- package/types/TestHelpers/Treasury/OutboundPaymentsResource.d.ts +175 -0
- package/types/TestHelpers/Treasury/OutboundTransfersResource.d.ts +175 -0
- package/types/TestHelpers/Treasury/ReceivedCreditsResource.d.ts +93 -0
- package/types/TestHelpers/Treasury/ReceivedDebitsResource.d.ts +91 -0
- package/types/Tokens.d.ts +84 -0
- package/types/TokensResource.d.ts +1086 -0
- package/types/Topups.d.ts +103 -0
- package/types/TopupsResource.d.ts +158 -0
- package/types/TransferReversals.d.ts +72 -0
- package/types/Transfers.d.ts +104 -0
- package/types/TransfersResource.d.ts +260 -0
- package/types/Treasury/CreditReversals.d.ts +92 -0
- package/types/Treasury/CreditReversalsResource.d.ts +88 -0
- package/types/Treasury/DebitReversals.d.ts +104 -0
- package/types/Treasury/DebitReversalsResource.d.ts +95 -0
- package/types/Treasury/FinancialAccountFeatures.d.ts +623 -0
- package/types/Treasury/FinancialAccounts.d.ts +250 -0
- package/types/Treasury/FinancialAccountsResource.d.ts +733 -0
- package/types/Treasury/InboundTransfers.d.ts +235 -0
- package/types/Treasury/InboundTransfersResource.d.ts +128 -0
- package/types/Treasury/OutboundPayments.d.ts +324 -0
- package/types/Treasury/OutboundPaymentsResource.d.ts +285 -0
- package/types/Treasury/OutboundTransfers.d.ts +299 -0
- package/types/Treasury/OutboundTransfersResource.d.ts +179 -0
- package/types/Treasury/ReceivedCredits.d.ts +279 -0
- package/types/Treasury/ReceivedCreditsResource.d.ts +79 -0
- package/types/Treasury/ReceivedDebits.d.ts +227 -0
- package/types/Treasury/ReceivedDebitsResource.d.ts +58 -0
- package/types/Treasury/TransactionEntries.d.ts +203 -0
- package/types/Treasury/TransactionEntriesResource.d.ts +70 -0
- package/types/Treasury/Transactions.d.ts +202 -0
- package/types/Treasury/TransactionsResource.d.ts +82 -0
- package/types/UpcomingInvoices.d.ts +5 -0
- package/types/V2/Billing/MeterEventAdjustments.d.ts +65 -0
- package/types/V2/Billing/MeterEventAdjustmentsResource.d.ts +47 -0
- package/types/V2/Billing/MeterEventSessionResource.d.ts +26 -0
- package/types/V2/Billing/MeterEventSessions.d.ts +45 -0
- package/types/V2/Billing/MeterEventStreamResource.d.ts +62 -0
- package/types/V2/Billing/MeterEvents.d.ts +55 -0
- package/types/V2/Billing/MeterEventsResource.d.ts +52 -0
- package/types/V2/Core/AccountLinks.d.ts +160 -0
- package/types/V2/Core/AccountLinksResource.d.ts +145 -0
- package/types/V2/Core/AccountPersonTokens.d.ts +44 -0
- package/types/V2/Core/AccountPersons.d.ts +661 -0
- package/types/V2/Core/AccountTokens.d.ts +44 -0
- package/types/V2/Core/AccountTokensResource.d.ts +1149 -0
- package/types/V2/Core/Accounts/PersonTokensResource.d.ts +556 -0
- package/types/V2/Core/Accounts/PersonsResource.d.ts +1260 -0
- package/types/V2/Core/Accounts.d.ts +5422 -0
- package/types/V2/Core/AccountsResource.d.ts +5042 -0
- package/types/V2/Core/EventDestinations.d.ts +168 -0
- package/types/V2/Core/EventDestinationsResource.d.ts +278 -0
- package/types/V2/Core/EventTypes.d.ts +798 -0
- package/types/V2/Core/Events.d.ts +86 -0
- package/types/V2/Core/EventsResource.d.ts +63 -0
- package/types/V2/DeletedObject.d.ts +22 -0
- package/types/V2/EventMisc.d.ts +80 -0
- package/types/WebhookEndpoints.d.ts +101 -0
- package/types/WebhookEndpointsResource.d.ts +798 -0
- package/types/Webhooks.d.ts +164 -0
- package/types/apiVersion.d.ts +4 -0
- package/types/crypto/crypto.d.ts +59 -0
- package/types/index.d.ts +596 -0
- package/types/lib.d.ts +420 -0
- package/types/net/net.d.ts +99 -0
- package/types/shared.d.ts +178 -0
- package/types/test/.eslintrc.js +6 -0
- package/types/test/tsconfig.json +67 -0
- package/types/test/typescriptTest.ts +357 -0
|
@@ -0,0 +1,1469 @@
|
|
|
1
|
+
// File generated from our OpenAPI spec
|
|
2
|
+
|
|
3
|
+
declare module 'stripe' {
|
|
4
|
+
namespace Stripe {
|
|
5
|
+
namespace Terminal {
|
|
6
|
+
interface ConfigurationCreateParams {
|
|
7
|
+
/**
|
|
8
|
+
* An object containing device type specific settings for BBPOS WisePad 3 readers.
|
|
9
|
+
*/
|
|
10
|
+
bbpos_wisepad3?: ConfigurationCreateParams.BbposWisepad3;
|
|
11
|
+
|
|
12
|
+
/**
|
|
13
|
+
* An object containing device type specific settings for BBPOS WisePOS E readers.
|
|
14
|
+
*/
|
|
15
|
+
bbpos_wisepos_e?: ConfigurationCreateParams.BbposWiseposE;
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
* Configuration for cellular connectivity.
|
|
19
|
+
*/
|
|
20
|
+
cellular?: Stripe.Emptyable<ConfigurationCreateParams.Cellular>;
|
|
21
|
+
|
|
22
|
+
/**
|
|
23
|
+
* Specifies which fields in the response should be expanded.
|
|
24
|
+
*/
|
|
25
|
+
expand?: Array<string>;
|
|
26
|
+
|
|
27
|
+
/**
|
|
28
|
+
* Name of the configuration
|
|
29
|
+
*/
|
|
30
|
+
name?: string;
|
|
31
|
+
|
|
32
|
+
/**
|
|
33
|
+
* Configurations for collecting transactions offline.
|
|
34
|
+
*/
|
|
35
|
+
offline?: Stripe.Emptyable<ConfigurationCreateParams.Offline>;
|
|
36
|
+
|
|
37
|
+
/**
|
|
38
|
+
* Reboot time settings for readers. that support customized reboot time configuration.
|
|
39
|
+
*/
|
|
40
|
+
reboot_window?: ConfigurationCreateParams.RebootWindow;
|
|
41
|
+
|
|
42
|
+
/**
|
|
43
|
+
* An object containing device type specific settings for Stripe S700 readers.
|
|
44
|
+
*/
|
|
45
|
+
stripe_s700?: ConfigurationCreateParams.StripeS700;
|
|
46
|
+
|
|
47
|
+
/**
|
|
48
|
+
* An object containing device type specific settings for Stripe S710 readers.
|
|
49
|
+
*/
|
|
50
|
+
stripe_s710?: ConfigurationCreateParams.StripeS710;
|
|
51
|
+
|
|
52
|
+
/**
|
|
53
|
+
* Tipping configurations for readers that support on-reader tips.
|
|
54
|
+
*/
|
|
55
|
+
tipping?: Stripe.Emptyable<ConfigurationCreateParams.Tipping>;
|
|
56
|
+
|
|
57
|
+
/**
|
|
58
|
+
* An object containing device type specific settings for Verifone P400 readers.
|
|
59
|
+
*/
|
|
60
|
+
verifone_p400?: ConfigurationCreateParams.VerifoneP400;
|
|
61
|
+
|
|
62
|
+
/**
|
|
63
|
+
* Configurations for connecting to a WiFi network.
|
|
64
|
+
*/
|
|
65
|
+
wifi?: Stripe.Emptyable<ConfigurationCreateParams.Wifi>;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
namespace ConfigurationCreateParams {
|
|
69
|
+
interface BbposWisepad3 {
|
|
70
|
+
/**
|
|
71
|
+
* A File ID representing an image you want to display on the reader.
|
|
72
|
+
*/
|
|
73
|
+
splashscreen?: Stripe.Emptyable<string>;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
interface BbposWiseposE {
|
|
77
|
+
/**
|
|
78
|
+
* A File ID representing an image to display on the reader
|
|
79
|
+
*/
|
|
80
|
+
splashscreen?: Stripe.Emptyable<string>;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
interface Cellular {
|
|
84
|
+
/**
|
|
85
|
+
* Determines whether to allow the reader to connect to a cellular network. Defaults to false.
|
|
86
|
+
*/
|
|
87
|
+
enabled: boolean;
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
interface Offline {
|
|
91
|
+
/**
|
|
92
|
+
* Determines whether to allow transactions to be collected while reader is offline. Defaults to false.
|
|
93
|
+
*/
|
|
94
|
+
enabled: boolean;
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
interface RebootWindow {
|
|
98
|
+
/**
|
|
99
|
+
* Integer between 0 to 23 that represents the end hour of the reboot time window. The value must be different than the start_hour.
|
|
100
|
+
*/
|
|
101
|
+
end_hour: number;
|
|
102
|
+
|
|
103
|
+
/**
|
|
104
|
+
* Integer between 0 to 23 that represents the start hour of the reboot time window.
|
|
105
|
+
*/
|
|
106
|
+
start_hour: number;
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
interface StripeS700 {
|
|
110
|
+
/**
|
|
111
|
+
* A File ID representing an image you want to display on the reader.
|
|
112
|
+
*/
|
|
113
|
+
splashscreen?: Stripe.Emptyable<string>;
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
interface StripeS710 {
|
|
117
|
+
/**
|
|
118
|
+
* A File ID representing an image you want to display on the reader.
|
|
119
|
+
*/
|
|
120
|
+
splashscreen?: Stripe.Emptyable<string>;
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
interface Tipping {
|
|
124
|
+
/**
|
|
125
|
+
* Tipping configuration for AED
|
|
126
|
+
*/
|
|
127
|
+
aed?: Tipping.Aed;
|
|
128
|
+
|
|
129
|
+
/**
|
|
130
|
+
* Tipping configuration for AUD
|
|
131
|
+
*/
|
|
132
|
+
aud?: Tipping.Aud;
|
|
133
|
+
|
|
134
|
+
/**
|
|
135
|
+
* Tipping configuration for CAD
|
|
136
|
+
*/
|
|
137
|
+
cad?: Tipping.Cad;
|
|
138
|
+
|
|
139
|
+
/**
|
|
140
|
+
* Tipping configuration for CHF
|
|
141
|
+
*/
|
|
142
|
+
chf?: Tipping.Chf;
|
|
143
|
+
|
|
144
|
+
/**
|
|
145
|
+
* Tipping configuration for CZK
|
|
146
|
+
*/
|
|
147
|
+
czk?: Tipping.Czk;
|
|
148
|
+
|
|
149
|
+
/**
|
|
150
|
+
* Tipping configuration for DKK
|
|
151
|
+
*/
|
|
152
|
+
dkk?: Tipping.Dkk;
|
|
153
|
+
|
|
154
|
+
/**
|
|
155
|
+
* Tipping configuration for EUR
|
|
156
|
+
*/
|
|
157
|
+
eur?: Tipping.Eur;
|
|
158
|
+
|
|
159
|
+
/**
|
|
160
|
+
* Tipping configuration for GBP
|
|
161
|
+
*/
|
|
162
|
+
gbp?: Tipping.Gbp;
|
|
163
|
+
|
|
164
|
+
/**
|
|
165
|
+
* Tipping configuration for GIP
|
|
166
|
+
*/
|
|
167
|
+
gip?: Tipping.Gip;
|
|
168
|
+
|
|
169
|
+
/**
|
|
170
|
+
* Tipping configuration for HKD
|
|
171
|
+
*/
|
|
172
|
+
hkd?: Tipping.Hkd;
|
|
173
|
+
|
|
174
|
+
/**
|
|
175
|
+
* Tipping configuration for HUF
|
|
176
|
+
*/
|
|
177
|
+
huf?: Tipping.Huf;
|
|
178
|
+
|
|
179
|
+
/**
|
|
180
|
+
* Tipping configuration for JPY
|
|
181
|
+
*/
|
|
182
|
+
jpy?: Tipping.Jpy;
|
|
183
|
+
|
|
184
|
+
/**
|
|
185
|
+
* Tipping configuration for MXN
|
|
186
|
+
*/
|
|
187
|
+
mxn?: Tipping.Mxn;
|
|
188
|
+
|
|
189
|
+
/**
|
|
190
|
+
* Tipping configuration for MYR
|
|
191
|
+
*/
|
|
192
|
+
myr?: Tipping.Myr;
|
|
193
|
+
|
|
194
|
+
/**
|
|
195
|
+
* Tipping configuration for NOK
|
|
196
|
+
*/
|
|
197
|
+
nok?: Tipping.Nok;
|
|
198
|
+
|
|
199
|
+
/**
|
|
200
|
+
* Tipping configuration for NZD
|
|
201
|
+
*/
|
|
202
|
+
nzd?: Tipping.Nzd;
|
|
203
|
+
|
|
204
|
+
/**
|
|
205
|
+
* Tipping configuration for PLN
|
|
206
|
+
*/
|
|
207
|
+
pln?: Tipping.Pln;
|
|
208
|
+
|
|
209
|
+
/**
|
|
210
|
+
* Tipping configuration for RON
|
|
211
|
+
*/
|
|
212
|
+
ron?: Tipping.Ron;
|
|
213
|
+
|
|
214
|
+
/**
|
|
215
|
+
* Tipping configuration for SEK
|
|
216
|
+
*/
|
|
217
|
+
sek?: Tipping.Sek;
|
|
218
|
+
|
|
219
|
+
/**
|
|
220
|
+
* Tipping configuration for SGD
|
|
221
|
+
*/
|
|
222
|
+
sgd?: Tipping.Sgd;
|
|
223
|
+
|
|
224
|
+
/**
|
|
225
|
+
* Tipping configuration for USD
|
|
226
|
+
*/
|
|
227
|
+
usd?: Tipping.Usd;
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
namespace Tipping {
|
|
231
|
+
interface Aed {
|
|
232
|
+
/**
|
|
233
|
+
* Fixed amounts displayed when collecting a tip
|
|
234
|
+
*/
|
|
235
|
+
fixed_amounts?: Array<number>;
|
|
236
|
+
|
|
237
|
+
/**
|
|
238
|
+
* Percentages displayed when collecting a tip
|
|
239
|
+
*/
|
|
240
|
+
percentages?: Array<number>;
|
|
241
|
+
|
|
242
|
+
/**
|
|
243
|
+
* Below this amount, fixed amounts will be displayed; above it, percentages will be displayed
|
|
244
|
+
*/
|
|
245
|
+
smart_tip_threshold?: number;
|
|
246
|
+
}
|
|
247
|
+
|
|
248
|
+
interface Aud {
|
|
249
|
+
/**
|
|
250
|
+
* Fixed amounts displayed when collecting a tip
|
|
251
|
+
*/
|
|
252
|
+
fixed_amounts?: Array<number>;
|
|
253
|
+
|
|
254
|
+
/**
|
|
255
|
+
* Percentages displayed when collecting a tip
|
|
256
|
+
*/
|
|
257
|
+
percentages?: Array<number>;
|
|
258
|
+
|
|
259
|
+
/**
|
|
260
|
+
* Below this amount, fixed amounts will be displayed; above it, percentages will be displayed
|
|
261
|
+
*/
|
|
262
|
+
smart_tip_threshold?: number;
|
|
263
|
+
}
|
|
264
|
+
|
|
265
|
+
interface Cad {
|
|
266
|
+
/**
|
|
267
|
+
* Fixed amounts displayed when collecting a tip
|
|
268
|
+
*/
|
|
269
|
+
fixed_amounts?: Array<number>;
|
|
270
|
+
|
|
271
|
+
/**
|
|
272
|
+
* Percentages displayed when collecting a tip
|
|
273
|
+
*/
|
|
274
|
+
percentages?: Array<number>;
|
|
275
|
+
|
|
276
|
+
/**
|
|
277
|
+
* Below this amount, fixed amounts will be displayed; above it, percentages will be displayed
|
|
278
|
+
*/
|
|
279
|
+
smart_tip_threshold?: number;
|
|
280
|
+
}
|
|
281
|
+
|
|
282
|
+
interface Chf {
|
|
283
|
+
/**
|
|
284
|
+
* Fixed amounts displayed when collecting a tip
|
|
285
|
+
*/
|
|
286
|
+
fixed_amounts?: Array<number>;
|
|
287
|
+
|
|
288
|
+
/**
|
|
289
|
+
* Percentages displayed when collecting a tip
|
|
290
|
+
*/
|
|
291
|
+
percentages?: Array<number>;
|
|
292
|
+
|
|
293
|
+
/**
|
|
294
|
+
* Below this amount, fixed amounts will be displayed; above it, percentages will be displayed
|
|
295
|
+
*/
|
|
296
|
+
smart_tip_threshold?: number;
|
|
297
|
+
}
|
|
298
|
+
|
|
299
|
+
interface Czk {
|
|
300
|
+
/**
|
|
301
|
+
* Fixed amounts displayed when collecting a tip
|
|
302
|
+
*/
|
|
303
|
+
fixed_amounts?: Array<number>;
|
|
304
|
+
|
|
305
|
+
/**
|
|
306
|
+
* Percentages displayed when collecting a tip
|
|
307
|
+
*/
|
|
308
|
+
percentages?: Array<number>;
|
|
309
|
+
|
|
310
|
+
/**
|
|
311
|
+
* Below this amount, fixed amounts will be displayed; above it, percentages will be displayed
|
|
312
|
+
*/
|
|
313
|
+
smart_tip_threshold?: number;
|
|
314
|
+
}
|
|
315
|
+
|
|
316
|
+
interface Dkk {
|
|
317
|
+
/**
|
|
318
|
+
* Fixed amounts displayed when collecting a tip
|
|
319
|
+
*/
|
|
320
|
+
fixed_amounts?: Array<number>;
|
|
321
|
+
|
|
322
|
+
/**
|
|
323
|
+
* Percentages displayed when collecting a tip
|
|
324
|
+
*/
|
|
325
|
+
percentages?: Array<number>;
|
|
326
|
+
|
|
327
|
+
/**
|
|
328
|
+
* Below this amount, fixed amounts will be displayed; above it, percentages will be displayed
|
|
329
|
+
*/
|
|
330
|
+
smart_tip_threshold?: number;
|
|
331
|
+
}
|
|
332
|
+
|
|
333
|
+
interface Eur {
|
|
334
|
+
/**
|
|
335
|
+
* Fixed amounts displayed when collecting a tip
|
|
336
|
+
*/
|
|
337
|
+
fixed_amounts?: Array<number>;
|
|
338
|
+
|
|
339
|
+
/**
|
|
340
|
+
* Percentages displayed when collecting a tip
|
|
341
|
+
*/
|
|
342
|
+
percentages?: Array<number>;
|
|
343
|
+
|
|
344
|
+
/**
|
|
345
|
+
* Below this amount, fixed amounts will be displayed; above it, percentages will be displayed
|
|
346
|
+
*/
|
|
347
|
+
smart_tip_threshold?: number;
|
|
348
|
+
}
|
|
349
|
+
|
|
350
|
+
interface Gbp {
|
|
351
|
+
/**
|
|
352
|
+
* Fixed amounts displayed when collecting a tip
|
|
353
|
+
*/
|
|
354
|
+
fixed_amounts?: Array<number>;
|
|
355
|
+
|
|
356
|
+
/**
|
|
357
|
+
* Percentages displayed when collecting a tip
|
|
358
|
+
*/
|
|
359
|
+
percentages?: Array<number>;
|
|
360
|
+
|
|
361
|
+
/**
|
|
362
|
+
* Below this amount, fixed amounts will be displayed; above it, percentages will be displayed
|
|
363
|
+
*/
|
|
364
|
+
smart_tip_threshold?: number;
|
|
365
|
+
}
|
|
366
|
+
|
|
367
|
+
interface Gip {
|
|
368
|
+
/**
|
|
369
|
+
* Fixed amounts displayed when collecting a tip
|
|
370
|
+
*/
|
|
371
|
+
fixed_amounts?: Array<number>;
|
|
372
|
+
|
|
373
|
+
/**
|
|
374
|
+
* Percentages displayed when collecting a tip
|
|
375
|
+
*/
|
|
376
|
+
percentages?: Array<number>;
|
|
377
|
+
|
|
378
|
+
/**
|
|
379
|
+
* Below this amount, fixed amounts will be displayed; above it, percentages will be displayed
|
|
380
|
+
*/
|
|
381
|
+
smart_tip_threshold?: number;
|
|
382
|
+
}
|
|
383
|
+
|
|
384
|
+
interface Hkd {
|
|
385
|
+
/**
|
|
386
|
+
* Fixed amounts displayed when collecting a tip
|
|
387
|
+
*/
|
|
388
|
+
fixed_amounts?: Array<number>;
|
|
389
|
+
|
|
390
|
+
/**
|
|
391
|
+
* Percentages displayed when collecting a tip
|
|
392
|
+
*/
|
|
393
|
+
percentages?: Array<number>;
|
|
394
|
+
|
|
395
|
+
/**
|
|
396
|
+
* Below this amount, fixed amounts will be displayed; above it, percentages will be displayed
|
|
397
|
+
*/
|
|
398
|
+
smart_tip_threshold?: number;
|
|
399
|
+
}
|
|
400
|
+
|
|
401
|
+
interface Huf {
|
|
402
|
+
/**
|
|
403
|
+
* Fixed amounts displayed when collecting a tip
|
|
404
|
+
*/
|
|
405
|
+
fixed_amounts?: Array<number>;
|
|
406
|
+
|
|
407
|
+
/**
|
|
408
|
+
* Percentages displayed when collecting a tip
|
|
409
|
+
*/
|
|
410
|
+
percentages?: Array<number>;
|
|
411
|
+
|
|
412
|
+
/**
|
|
413
|
+
* Below this amount, fixed amounts will be displayed; above it, percentages will be displayed
|
|
414
|
+
*/
|
|
415
|
+
smart_tip_threshold?: number;
|
|
416
|
+
}
|
|
417
|
+
|
|
418
|
+
interface Jpy {
|
|
419
|
+
/**
|
|
420
|
+
* Fixed amounts displayed when collecting a tip
|
|
421
|
+
*/
|
|
422
|
+
fixed_amounts?: Array<number>;
|
|
423
|
+
|
|
424
|
+
/**
|
|
425
|
+
* Percentages displayed when collecting a tip
|
|
426
|
+
*/
|
|
427
|
+
percentages?: Array<number>;
|
|
428
|
+
|
|
429
|
+
/**
|
|
430
|
+
* Below this amount, fixed amounts will be displayed; above it, percentages will be displayed
|
|
431
|
+
*/
|
|
432
|
+
smart_tip_threshold?: number;
|
|
433
|
+
}
|
|
434
|
+
|
|
435
|
+
interface Mxn {
|
|
436
|
+
/**
|
|
437
|
+
* Fixed amounts displayed when collecting a tip
|
|
438
|
+
*/
|
|
439
|
+
fixed_amounts?: Array<number>;
|
|
440
|
+
|
|
441
|
+
/**
|
|
442
|
+
* Percentages displayed when collecting a tip
|
|
443
|
+
*/
|
|
444
|
+
percentages?: Array<number>;
|
|
445
|
+
|
|
446
|
+
/**
|
|
447
|
+
* Below this amount, fixed amounts will be displayed; above it, percentages will be displayed
|
|
448
|
+
*/
|
|
449
|
+
smart_tip_threshold?: number;
|
|
450
|
+
}
|
|
451
|
+
|
|
452
|
+
interface Myr {
|
|
453
|
+
/**
|
|
454
|
+
* Fixed amounts displayed when collecting a tip
|
|
455
|
+
*/
|
|
456
|
+
fixed_amounts?: Array<number>;
|
|
457
|
+
|
|
458
|
+
/**
|
|
459
|
+
* Percentages displayed when collecting a tip
|
|
460
|
+
*/
|
|
461
|
+
percentages?: Array<number>;
|
|
462
|
+
|
|
463
|
+
/**
|
|
464
|
+
* Below this amount, fixed amounts will be displayed; above it, percentages will be displayed
|
|
465
|
+
*/
|
|
466
|
+
smart_tip_threshold?: number;
|
|
467
|
+
}
|
|
468
|
+
|
|
469
|
+
interface Nok {
|
|
470
|
+
/**
|
|
471
|
+
* Fixed amounts displayed when collecting a tip
|
|
472
|
+
*/
|
|
473
|
+
fixed_amounts?: Array<number>;
|
|
474
|
+
|
|
475
|
+
/**
|
|
476
|
+
* Percentages displayed when collecting a tip
|
|
477
|
+
*/
|
|
478
|
+
percentages?: Array<number>;
|
|
479
|
+
|
|
480
|
+
/**
|
|
481
|
+
* Below this amount, fixed amounts will be displayed; above it, percentages will be displayed
|
|
482
|
+
*/
|
|
483
|
+
smart_tip_threshold?: number;
|
|
484
|
+
}
|
|
485
|
+
|
|
486
|
+
interface Nzd {
|
|
487
|
+
/**
|
|
488
|
+
* Fixed amounts displayed when collecting a tip
|
|
489
|
+
*/
|
|
490
|
+
fixed_amounts?: Array<number>;
|
|
491
|
+
|
|
492
|
+
/**
|
|
493
|
+
* Percentages displayed when collecting a tip
|
|
494
|
+
*/
|
|
495
|
+
percentages?: Array<number>;
|
|
496
|
+
|
|
497
|
+
/**
|
|
498
|
+
* Below this amount, fixed amounts will be displayed; above it, percentages will be displayed
|
|
499
|
+
*/
|
|
500
|
+
smart_tip_threshold?: number;
|
|
501
|
+
}
|
|
502
|
+
|
|
503
|
+
interface Pln {
|
|
504
|
+
/**
|
|
505
|
+
* Fixed amounts displayed when collecting a tip
|
|
506
|
+
*/
|
|
507
|
+
fixed_amounts?: Array<number>;
|
|
508
|
+
|
|
509
|
+
/**
|
|
510
|
+
* Percentages displayed when collecting a tip
|
|
511
|
+
*/
|
|
512
|
+
percentages?: Array<number>;
|
|
513
|
+
|
|
514
|
+
/**
|
|
515
|
+
* Below this amount, fixed amounts will be displayed; above it, percentages will be displayed
|
|
516
|
+
*/
|
|
517
|
+
smart_tip_threshold?: number;
|
|
518
|
+
}
|
|
519
|
+
|
|
520
|
+
interface Ron {
|
|
521
|
+
/**
|
|
522
|
+
* Fixed amounts displayed when collecting a tip
|
|
523
|
+
*/
|
|
524
|
+
fixed_amounts?: Array<number>;
|
|
525
|
+
|
|
526
|
+
/**
|
|
527
|
+
* Percentages displayed when collecting a tip
|
|
528
|
+
*/
|
|
529
|
+
percentages?: Array<number>;
|
|
530
|
+
|
|
531
|
+
/**
|
|
532
|
+
* Below this amount, fixed amounts will be displayed; above it, percentages will be displayed
|
|
533
|
+
*/
|
|
534
|
+
smart_tip_threshold?: number;
|
|
535
|
+
}
|
|
536
|
+
|
|
537
|
+
interface Sek {
|
|
538
|
+
/**
|
|
539
|
+
* Fixed amounts displayed when collecting a tip
|
|
540
|
+
*/
|
|
541
|
+
fixed_amounts?: Array<number>;
|
|
542
|
+
|
|
543
|
+
/**
|
|
544
|
+
* Percentages displayed when collecting a tip
|
|
545
|
+
*/
|
|
546
|
+
percentages?: Array<number>;
|
|
547
|
+
|
|
548
|
+
/**
|
|
549
|
+
* Below this amount, fixed amounts will be displayed; above it, percentages will be displayed
|
|
550
|
+
*/
|
|
551
|
+
smart_tip_threshold?: number;
|
|
552
|
+
}
|
|
553
|
+
|
|
554
|
+
interface Sgd {
|
|
555
|
+
/**
|
|
556
|
+
* Fixed amounts displayed when collecting a tip
|
|
557
|
+
*/
|
|
558
|
+
fixed_amounts?: Array<number>;
|
|
559
|
+
|
|
560
|
+
/**
|
|
561
|
+
* Percentages displayed when collecting a tip
|
|
562
|
+
*/
|
|
563
|
+
percentages?: Array<number>;
|
|
564
|
+
|
|
565
|
+
/**
|
|
566
|
+
* Below this amount, fixed amounts will be displayed; above it, percentages will be displayed
|
|
567
|
+
*/
|
|
568
|
+
smart_tip_threshold?: number;
|
|
569
|
+
}
|
|
570
|
+
|
|
571
|
+
interface Usd {
|
|
572
|
+
/**
|
|
573
|
+
* Fixed amounts displayed when collecting a tip
|
|
574
|
+
*/
|
|
575
|
+
fixed_amounts?: Array<number>;
|
|
576
|
+
|
|
577
|
+
/**
|
|
578
|
+
* Percentages displayed when collecting a tip
|
|
579
|
+
*/
|
|
580
|
+
percentages?: Array<number>;
|
|
581
|
+
|
|
582
|
+
/**
|
|
583
|
+
* Below this amount, fixed amounts will be displayed; above it, percentages will be displayed
|
|
584
|
+
*/
|
|
585
|
+
smart_tip_threshold?: number;
|
|
586
|
+
}
|
|
587
|
+
}
|
|
588
|
+
|
|
589
|
+
interface VerifoneP400 {
|
|
590
|
+
/**
|
|
591
|
+
* A File ID representing an image you want to display on the reader.
|
|
592
|
+
*/
|
|
593
|
+
splashscreen?: Stripe.Emptyable<string>;
|
|
594
|
+
}
|
|
595
|
+
|
|
596
|
+
interface Wifi {
|
|
597
|
+
/**
|
|
598
|
+
* Credentials for a WPA-Enterprise WiFi network using the EAP-PEAP authentication method.
|
|
599
|
+
*/
|
|
600
|
+
enterprise_eap_peap?: Wifi.EnterpriseEapPeap;
|
|
601
|
+
|
|
602
|
+
/**
|
|
603
|
+
* Credentials for a WPA-Enterprise WiFi network using the EAP-TLS authentication method.
|
|
604
|
+
*/
|
|
605
|
+
enterprise_eap_tls?: Wifi.EnterpriseEapTls;
|
|
606
|
+
|
|
607
|
+
/**
|
|
608
|
+
* Credentials for a WPA-Personal WiFi network.
|
|
609
|
+
*/
|
|
610
|
+
personal_psk?: Wifi.PersonalPsk;
|
|
611
|
+
|
|
612
|
+
/**
|
|
613
|
+
* Security type of the WiFi network. Fill out the hash with the corresponding name to provide the set of credentials for this security type.
|
|
614
|
+
*/
|
|
615
|
+
type: Wifi.Type;
|
|
616
|
+
}
|
|
617
|
+
|
|
618
|
+
namespace Wifi {
|
|
619
|
+
interface EnterpriseEapPeap {
|
|
620
|
+
/**
|
|
621
|
+
* A File ID representing a PEM file containing the server certificate
|
|
622
|
+
*/
|
|
623
|
+
ca_certificate_file?: string;
|
|
624
|
+
|
|
625
|
+
/**
|
|
626
|
+
* Password for connecting to the WiFi network
|
|
627
|
+
*/
|
|
628
|
+
password: string;
|
|
629
|
+
|
|
630
|
+
/**
|
|
631
|
+
* Name of the WiFi network
|
|
632
|
+
*/
|
|
633
|
+
ssid: string;
|
|
634
|
+
|
|
635
|
+
/**
|
|
636
|
+
* Username for connecting to the WiFi network
|
|
637
|
+
*/
|
|
638
|
+
username: string;
|
|
639
|
+
}
|
|
640
|
+
|
|
641
|
+
interface EnterpriseEapTls {
|
|
642
|
+
/**
|
|
643
|
+
* A File ID representing a PEM file containing the server certificate
|
|
644
|
+
*/
|
|
645
|
+
ca_certificate_file?: string;
|
|
646
|
+
|
|
647
|
+
/**
|
|
648
|
+
* A File ID representing a PEM file containing the client certificate
|
|
649
|
+
*/
|
|
650
|
+
client_certificate_file: string;
|
|
651
|
+
|
|
652
|
+
/**
|
|
653
|
+
* A File ID representing a PEM file containing the client RSA private key
|
|
654
|
+
*/
|
|
655
|
+
private_key_file: string;
|
|
656
|
+
|
|
657
|
+
/**
|
|
658
|
+
* Password for the private key file
|
|
659
|
+
*/
|
|
660
|
+
private_key_file_password?: string;
|
|
661
|
+
|
|
662
|
+
/**
|
|
663
|
+
* Name of the WiFi network
|
|
664
|
+
*/
|
|
665
|
+
ssid: string;
|
|
666
|
+
}
|
|
667
|
+
|
|
668
|
+
interface PersonalPsk {
|
|
669
|
+
/**
|
|
670
|
+
* Password for connecting to the WiFi network
|
|
671
|
+
*/
|
|
672
|
+
password: string;
|
|
673
|
+
|
|
674
|
+
/**
|
|
675
|
+
* Name of the WiFi network
|
|
676
|
+
*/
|
|
677
|
+
ssid: string;
|
|
678
|
+
}
|
|
679
|
+
|
|
680
|
+
type Type =
|
|
681
|
+
| 'enterprise_eap_peap'
|
|
682
|
+
| 'enterprise_eap_tls'
|
|
683
|
+
| 'personal_psk';
|
|
684
|
+
}
|
|
685
|
+
}
|
|
686
|
+
|
|
687
|
+
interface ConfigurationRetrieveParams {
|
|
688
|
+
/**
|
|
689
|
+
* Specifies which fields in the response should be expanded.
|
|
690
|
+
*/
|
|
691
|
+
expand?: Array<string>;
|
|
692
|
+
}
|
|
693
|
+
|
|
694
|
+
interface ConfigurationUpdateParams {
|
|
695
|
+
/**
|
|
696
|
+
* An object containing device type specific settings for BBPOS WisePad 3 readers.
|
|
697
|
+
*/
|
|
698
|
+
bbpos_wisepad3?: Stripe.Emptyable<
|
|
699
|
+
ConfigurationUpdateParams.BbposWisepad3
|
|
700
|
+
>;
|
|
701
|
+
|
|
702
|
+
/**
|
|
703
|
+
* An object containing device type specific settings for BBPOS WisePOS E readers.
|
|
704
|
+
*/
|
|
705
|
+
bbpos_wisepos_e?: Stripe.Emptyable<
|
|
706
|
+
ConfigurationUpdateParams.BbposWiseposE
|
|
707
|
+
>;
|
|
708
|
+
|
|
709
|
+
/**
|
|
710
|
+
* Configuration for cellular connectivity.
|
|
711
|
+
*/
|
|
712
|
+
cellular?: Stripe.Emptyable<ConfigurationUpdateParams.Cellular>;
|
|
713
|
+
|
|
714
|
+
/**
|
|
715
|
+
* Specifies which fields in the response should be expanded.
|
|
716
|
+
*/
|
|
717
|
+
expand?: Array<string>;
|
|
718
|
+
|
|
719
|
+
/**
|
|
720
|
+
* Name of the configuration
|
|
721
|
+
*/
|
|
722
|
+
name?: string;
|
|
723
|
+
|
|
724
|
+
/**
|
|
725
|
+
* Configurations for collecting transactions offline.
|
|
726
|
+
*/
|
|
727
|
+
offline?: Stripe.Emptyable<ConfigurationUpdateParams.Offline>;
|
|
728
|
+
|
|
729
|
+
/**
|
|
730
|
+
* Reboot time settings for readers. that support customized reboot time configuration.
|
|
731
|
+
*/
|
|
732
|
+
reboot_window?: Stripe.Emptyable<
|
|
733
|
+
ConfigurationUpdateParams.RebootWindow
|
|
734
|
+
>;
|
|
735
|
+
|
|
736
|
+
/**
|
|
737
|
+
* An object containing device type specific settings for Stripe S700 readers.
|
|
738
|
+
*/
|
|
739
|
+
stripe_s700?: Stripe.Emptyable<ConfigurationUpdateParams.StripeS700>;
|
|
740
|
+
|
|
741
|
+
/**
|
|
742
|
+
* An object containing device type specific settings for Stripe S710 readers.
|
|
743
|
+
*/
|
|
744
|
+
stripe_s710?: Stripe.Emptyable<ConfigurationUpdateParams.StripeS710>;
|
|
745
|
+
|
|
746
|
+
/**
|
|
747
|
+
* Tipping configurations for readers that support on-reader tips.
|
|
748
|
+
*/
|
|
749
|
+
tipping?: Stripe.Emptyable<ConfigurationUpdateParams.Tipping>;
|
|
750
|
+
|
|
751
|
+
/**
|
|
752
|
+
* An object containing device type specific settings for Verifone P400 readers.
|
|
753
|
+
*/
|
|
754
|
+
verifone_p400?: Stripe.Emptyable<
|
|
755
|
+
ConfigurationUpdateParams.VerifoneP400
|
|
756
|
+
>;
|
|
757
|
+
|
|
758
|
+
/**
|
|
759
|
+
* Configurations for connecting to a WiFi network.
|
|
760
|
+
*/
|
|
761
|
+
wifi?: Stripe.Emptyable<ConfigurationUpdateParams.Wifi>;
|
|
762
|
+
}
|
|
763
|
+
|
|
764
|
+
namespace ConfigurationUpdateParams {
|
|
765
|
+
interface BbposWisepad3 {
|
|
766
|
+
/**
|
|
767
|
+
* A File ID representing an image you want to display on the reader.
|
|
768
|
+
*/
|
|
769
|
+
splashscreen?: Stripe.Emptyable<string>;
|
|
770
|
+
}
|
|
771
|
+
|
|
772
|
+
interface BbposWiseposE {
|
|
773
|
+
/**
|
|
774
|
+
* A File ID representing an image to display on the reader
|
|
775
|
+
*/
|
|
776
|
+
splashscreen?: Stripe.Emptyable<string>;
|
|
777
|
+
}
|
|
778
|
+
|
|
779
|
+
interface Cellular {
|
|
780
|
+
/**
|
|
781
|
+
* Determines whether to allow the reader to connect to a cellular network. Defaults to false.
|
|
782
|
+
*/
|
|
783
|
+
enabled: boolean;
|
|
784
|
+
}
|
|
785
|
+
|
|
786
|
+
interface Offline {
|
|
787
|
+
/**
|
|
788
|
+
* Determines whether to allow transactions to be collected while reader is offline. Defaults to false.
|
|
789
|
+
*/
|
|
790
|
+
enabled: boolean;
|
|
791
|
+
}
|
|
792
|
+
|
|
793
|
+
interface RebootWindow {
|
|
794
|
+
/**
|
|
795
|
+
* Integer between 0 to 23 that represents the end hour of the reboot time window. The value must be different than the start_hour.
|
|
796
|
+
*/
|
|
797
|
+
end_hour: number;
|
|
798
|
+
|
|
799
|
+
/**
|
|
800
|
+
* Integer between 0 to 23 that represents the start hour of the reboot time window.
|
|
801
|
+
*/
|
|
802
|
+
start_hour: number;
|
|
803
|
+
}
|
|
804
|
+
|
|
805
|
+
interface StripeS700 {
|
|
806
|
+
/**
|
|
807
|
+
* A File ID representing an image you want to display on the reader.
|
|
808
|
+
*/
|
|
809
|
+
splashscreen?: Stripe.Emptyable<string>;
|
|
810
|
+
}
|
|
811
|
+
|
|
812
|
+
interface StripeS710 {
|
|
813
|
+
/**
|
|
814
|
+
* A File ID representing an image you want to display on the reader.
|
|
815
|
+
*/
|
|
816
|
+
splashscreen?: Stripe.Emptyable<string>;
|
|
817
|
+
}
|
|
818
|
+
|
|
819
|
+
interface Tipping {
|
|
820
|
+
/**
|
|
821
|
+
* Tipping configuration for AED
|
|
822
|
+
*/
|
|
823
|
+
aed?: Tipping.Aed;
|
|
824
|
+
|
|
825
|
+
/**
|
|
826
|
+
* Tipping configuration for AUD
|
|
827
|
+
*/
|
|
828
|
+
aud?: Tipping.Aud;
|
|
829
|
+
|
|
830
|
+
/**
|
|
831
|
+
* Tipping configuration for CAD
|
|
832
|
+
*/
|
|
833
|
+
cad?: Tipping.Cad;
|
|
834
|
+
|
|
835
|
+
/**
|
|
836
|
+
* Tipping configuration for CHF
|
|
837
|
+
*/
|
|
838
|
+
chf?: Tipping.Chf;
|
|
839
|
+
|
|
840
|
+
/**
|
|
841
|
+
* Tipping configuration for CZK
|
|
842
|
+
*/
|
|
843
|
+
czk?: Tipping.Czk;
|
|
844
|
+
|
|
845
|
+
/**
|
|
846
|
+
* Tipping configuration for DKK
|
|
847
|
+
*/
|
|
848
|
+
dkk?: Tipping.Dkk;
|
|
849
|
+
|
|
850
|
+
/**
|
|
851
|
+
* Tipping configuration for EUR
|
|
852
|
+
*/
|
|
853
|
+
eur?: Tipping.Eur;
|
|
854
|
+
|
|
855
|
+
/**
|
|
856
|
+
* Tipping configuration for GBP
|
|
857
|
+
*/
|
|
858
|
+
gbp?: Tipping.Gbp;
|
|
859
|
+
|
|
860
|
+
/**
|
|
861
|
+
* Tipping configuration for GIP
|
|
862
|
+
*/
|
|
863
|
+
gip?: Tipping.Gip;
|
|
864
|
+
|
|
865
|
+
/**
|
|
866
|
+
* Tipping configuration for HKD
|
|
867
|
+
*/
|
|
868
|
+
hkd?: Tipping.Hkd;
|
|
869
|
+
|
|
870
|
+
/**
|
|
871
|
+
* Tipping configuration for HUF
|
|
872
|
+
*/
|
|
873
|
+
huf?: Tipping.Huf;
|
|
874
|
+
|
|
875
|
+
/**
|
|
876
|
+
* Tipping configuration for JPY
|
|
877
|
+
*/
|
|
878
|
+
jpy?: Tipping.Jpy;
|
|
879
|
+
|
|
880
|
+
/**
|
|
881
|
+
* Tipping configuration for MXN
|
|
882
|
+
*/
|
|
883
|
+
mxn?: Tipping.Mxn;
|
|
884
|
+
|
|
885
|
+
/**
|
|
886
|
+
* Tipping configuration for MYR
|
|
887
|
+
*/
|
|
888
|
+
myr?: Tipping.Myr;
|
|
889
|
+
|
|
890
|
+
/**
|
|
891
|
+
* Tipping configuration for NOK
|
|
892
|
+
*/
|
|
893
|
+
nok?: Tipping.Nok;
|
|
894
|
+
|
|
895
|
+
/**
|
|
896
|
+
* Tipping configuration for NZD
|
|
897
|
+
*/
|
|
898
|
+
nzd?: Tipping.Nzd;
|
|
899
|
+
|
|
900
|
+
/**
|
|
901
|
+
* Tipping configuration for PLN
|
|
902
|
+
*/
|
|
903
|
+
pln?: Tipping.Pln;
|
|
904
|
+
|
|
905
|
+
/**
|
|
906
|
+
* Tipping configuration for RON
|
|
907
|
+
*/
|
|
908
|
+
ron?: Tipping.Ron;
|
|
909
|
+
|
|
910
|
+
/**
|
|
911
|
+
* Tipping configuration for SEK
|
|
912
|
+
*/
|
|
913
|
+
sek?: Tipping.Sek;
|
|
914
|
+
|
|
915
|
+
/**
|
|
916
|
+
* Tipping configuration for SGD
|
|
917
|
+
*/
|
|
918
|
+
sgd?: Tipping.Sgd;
|
|
919
|
+
|
|
920
|
+
/**
|
|
921
|
+
* Tipping configuration for USD
|
|
922
|
+
*/
|
|
923
|
+
usd?: Tipping.Usd;
|
|
924
|
+
}
|
|
925
|
+
|
|
926
|
+
namespace Tipping {
|
|
927
|
+
interface Aed {
|
|
928
|
+
/**
|
|
929
|
+
* Fixed amounts displayed when collecting a tip
|
|
930
|
+
*/
|
|
931
|
+
fixed_amounts?: Array<number>;
|
|
932
|
+
|
|
933
|
+
/**
|
|
934
|
+
* Percentages displayed when collecting a tip
|
|
935
|
+
*/
|
|
936
|
+
percentages?: Array<number>;
|
|
937
|
+
|
|
938
|
+
/**
|
|
939
|
+
* Below this amount, fixed amounts will be displayed; above it, percentages will be displayed
|
|
940
|
+
*/
|
|
941
|
+
smart_tip_threshold?: number;
|
|
942
|
+
}
|
|
943
|
+
|
|
944
|
+
interface Aud {
|
|
945
|
+
/**
|
|
946
|
+
* Fixed amounts displayed when collecting a tip
|
|
947
|
+
*/
|
|
948
|
+
fixed_amounts?: Array<number>;
|
|
949
|
+
|
|
950
|
+
/**
|
|
951
|
+
* Percentages displayed when collecting a tip
|
|
952
|
+
*/
|
|
953
|
+
percentages?: Array<number>;
|
|
954
|
+
|
|
955
|
+
/**
|
|
956
|
+
* Below this amount, fixed amounts will be displayed; above it, percentages will be displayed
|
|
957
|
+
*/
|
|
958
|
+
smart_tip_threshold?: number;
|
|
959
|
+
}
|
|
960
|
+
|
|
961
|
+
interface Cad {
|
|
962
|
+
/**
|
|
963
|
+
* Fixed amounts displayed when collecting a tip
|
|
964
|
+
*/
|
|
965
|
+
fixed_amounts?: Array<number>;
|
|
966
|
+
|
|
967
|
+
/**
|
|
968
|
+
* Percentages displayed when collecting a tip
|
|
969
|
+
*/
|
|
970
|
+
percentages?: Array<number>;
|
|
971
|
+
|
|
972
|
+
/**
|
|
973
|
+
* Below this amount, fixed amounts will be displayed; above it, percentages will be displayed
|
|
974
|
+
*/
|
|
975
|
+
smart_tip_threshold?: number;
|
|
976
|
+
}
|
|
977
|
+
|
|
978
|
+
interface Chf {
|
|
979
|
+
/**
|
|
980
|
+
* Fixed amounts displayed when collecting a tip
|
|
981
|
+
*/
|
|
982
|
+
fixed_amounts?: Array<number>;
|
|
983
|
+
|
|
984
|
+
/**
|
|
985
|
+
* Percentages displayed when collecting a tip
|
|
986
|
+
*/
|
|
987
|
+
percentages?: Array<number>;
|
|
988
|
+
|
|
989
|
+
/**
|
|
990
|
+
* Below this amount, fixed amounts will be displayed; above it, percentages will be displayed
|
|
991
|
+
*/
|
|
992
|
+
smart_tip_threshold?: number;
|
|
993
|
+
}
|
|
994
|
+
|
|
995
|
+
interface Czk {
|
|
996
|
+
/**
|
|
997
|
+
* Fixed amounts displayed when collecting a tip
|
|
998
|
+
*/
|
|
999
|
+
fixed_amounts?: Array<number>;
|
|
1000
|
+
|
|
1001
|
+
/**
|
|
1002
|
+
* Percentages displayed when collecting a tip
|
|
1003
|
+
*/
|
|
1004
|
+
percentages?: Array<number>;
|
|
1005
|
+
|
|
1006
|
+
/**
|
|
1007
|
+
* Below this amount, fixed amounts will be displayed; above it, percentages will be displayed
|
|
1008
|
+
*/
|
|
1009
|
+
smart_tip_threshold?: number;
|
|
1010
|
+
}
|
|
1011
|
+
|
|
1012
|
+
interface Dkk {
|
|
1013
|
+
/**
|
|
1014
|
+
* Fixed amounts displayed when collecting a tip
|
|
1015
|
+
*/
|
|
1016
|
+
fixed_amounts?: Array<number>;
|
|
1017
|
+
|
|
1018
|
+
/**
|
|
1019
|
+
* Percentages displayed when collecting a tip
|
|
1020
|
+
*/
|
|
1021
|
+
percentages?: Array<number>;
|
|
1022
|
+
|
|
1023
|
+
/**
|
|
1024
|
+
* Below this amount, fixed amounts will be displayed; above it, percentages will be displayed
|
|
1025
|
+
*/
|
|
1026
|
+
smart_tip_threshold?: number;
|
|
1027
|
+
}
|
|
1028
|
+
|
|
1029
|
+
interface Eur {
|
|
1030
|
+
/**
|
|
1031
|
+
* Fixed amounts displayed when collecting a tip
|
|
1032
|
+
*/
|
|
1033
|
+
fixed_amounts?: Array<number>;
|
|
1034
|
+
|
|
1035
|
+
/**
|
|
1036
|
+
* Percentages displayed when collecting a tip
|
|
1037
|
+
*/
|
|
1038
|
+
percentages?: Array<number>;
|
|
1039
|
+
|
|
1040
|
+
/**
|
|
1041
|
+
* Below this amount, fixed amounts will be displayed; above it, percentages will be displayed
|
|
1042
|
+
*/
|
|
1043
|
+
smart_tip_threshold?: number;
|
|
1044
|
+
}
|
|
1045
|
+
|
|
1046
|
+
interface Gbp {
|
|
1047
|
+
/**
|
|
1048
|
+
* Fixed amounts displayed when collecting a tip
|
|
1049
|
+
*/
|
|
1050
|
+
fixed_amounts?: Array<number>;
|
|
1051
|
+
|
|
1052
|
+
/**
|
|
1053
|
+
* Percentages displayed when collecting a tip
|
|
1054
|
+
*/
|
|
1055
|
+
percentages?: Array<number>;
|
|
1056
|
+
|
|
1057
|
+
/**
|
|
1058
|
+
* Below this amount, fixed amounts will be displayed; above it, percentages will be displayed
|
|
1059
|
+
*/
|
|
1060
|
+
smart_tip_threshold?: number;
|
|
1061
|
+
}
|
|
1062
|
+
|
|
1063
|
+
interface Gip {
|
|
1064
|
+
/**
|
|
1065
|
+
* Fixed amounts displayed when collecting a tip
|
|
1066
|
+
*/
|
|
1067
|
+
fixed_amounts?: Array<number>;
|
|
1068
|
+
|
|
1069
|
+
/**
|
|
1070
|
+
* Percentages displayed when collecting a tip
|
|
1071
|
+
*/
|
|
1072
|
+
percentages?: Array<number>;
|
|
1073
|
+
|
|
1074
|
+
/**
|
|
1075
|
+
* Below this amount, fixed amounts will be displayed; above it, percentages will be displayed
|
|
1076
|
+
*/
|
|
1077
|
+
smart_tip_threshold?: number;
|
|
1078
|
+
}
|
|
1079
|
+
|
|
1080
|
+
interface Hkd {
|
|
1081
|
+
/**
|
|
1082
|
+
* Fixed amounts displayed when collecting a tip
|
|
1083
|
+
*/
|
|
1084
|
+
fixed_amounts?: Array<number>;
|
|
1085
|
+
|
|
1086
|
+
/**
|
|
1087
|
+
* Percentages displayed when collecting a tip
|
|
1088
|
+
*/
|
|
1089
|
+
percentages?: Array<number>;
|
|
1090
|
+
|
|
1091
|
+
/**
|
|
1092
|
+
* Below this amount, fixed amounts will be displayed; above it, percentages will be displayed
|
|
1093
|
+
*/
|
|
1094
|
+
smart_tip_threshold?: number;
|
|
1095
|
+
}
|
|
1096
|
+
|
|
1097
|
+
interface Huf {
|
|
1098
|
+
/**
|
|
1099
|
+
* Fixed amounts displayed when collecting a tip
|
|
1100
|
+
*/
|
|
1101
|
+
fixed_amounts?: Array<number>;
|
|
1102
|
+
|
|
1103
|
+
/**
|
|
1104
|
+
* Percentages displayed when collecting a tip
|
|
1105
|
+
*/
|
|
1106
|
+
percentages?: Array<number>;
|
|
1107
|
+
|
|
1108
|
+
/**
|
|
1109
|
+
* Below this amount, fixed amounts will be displayed; above it, percentages will be displayed
|
|
1110
|
+
*/
|
|
1111
|
+
smart_tip_threshold?: number;
|
|
1112
|
+
}
|
|
1113
|
+
|
|
1114
|
+
interface Jpy {
|
|
1115
|
+
/**
|
|
1116
|
+
* Fixed amounts displayed when collecting a tip
|
|
1117
|
+
*/
|
|
1118
|
+
fixed_amounts?: Array<number>;
|
|
1119
|
+
|
|
1120
|
+
/**
|
|
1121
|
+
* Percentages displayed when collecting a tip
|
|
1122
|
+
*/
|
|
1123
|
+
percentages?: Array<number>;
|
|
1124
|
+
|
|
1125
|
+
/**
|
|
1126
|
+
* Below this amount, fixed amounts will be displayed; above it, percentages will be displayed
|
|
1127
|
+
*/
|
|
1128
|
+
smart_tip_threshold?: number;
|
|
1129
|
+
}
|
|
1130
|
+
|
|
1131
|
+
interface Mxn {
|
|
1132
|
+
/**
|
|
1133
|
+
* Fixed amounts displayed when collecting a tip
|
|
1134
|
+
*/
|
|
1135
|
+
fixed_amounts?: Array<number>;
|
|
1136
|
+
|
|
1137
|
+
/**
|
|
1138
|
+
* Percentages displayed when collecting a tip
|
|
1139
|
+
*/
|
|
1140
|
+
percentages?: Array<number>;
|
|
1141
|
+
|
|
1142
|
+
/**
|
|
1143
|
+
* Below this amount, fixed amounts will be displayed; above it, percentages will be displayed
|
|
1144
|
+
*/
|
|
1145
|
+
smart_tip_threshold?: number;
|
|
1146
|
+
}
|
|
1147
|
+
|
|
1148
|
+
interface Myr {
|
|
1149
|
+
/**
|
|
1150
|
+
* Fixed amounts displayed when collecting a tip
|
|
1151
|
+
*/
|
|
1152
|
+
fixed_amounts?: Array<number>;
|
|
1153
|
+
|
|
1154
|
+
/**
|
|
1155
|
+
* Percentages displayed when collecting a tip
|
|
1156
|
+
*/
|
|
1157
|
+
percentages?: Array<number>;
|
|
1158
|
+
|
|
1159
|
+
/**
|
|
1160
|
+
* Below this amount, fixed amounts will be displayed; above it, percentages will be displayed
|
|
1161
|
+
*/
|
|
1162
|
+
smart_tip_threshold?: number;
|
|
1163
|
+
}
|
|
1164
|
+
|
|
1165
|
+
interface Nok {
|
|
1166
|
+
/**
|
|
1167
|
+
* Fixed amounts displayed when collecting a tip
|
|
1168
|
+
*/
|
|
1169
|
+
fixed_amounts?: Array<number>;
|
|
1170
|
+
|
|
1171
|
+
/**
|
|
1172
|
+
* Percentages displayed when collecting a tip
|
|
1173
|
+
*/
|
|
1174
|
+
percentages?: Array<number>;
|
|
1175
|
+
|
|
1176
|
+
/**
|
|
1177
|
+
* Below this amount, fixed amounts will be displayed; above it, percentages will be displayed
|
|
1178
|
+
*/
|
|
1179
|
+
smart_tip_threshold?: number;
|
|
1180
|
+
}
|
|
1181
|
+
|
|
1182
|
+
interface Nzd {
|
|
1183
|
+
/**
|
|
1184
|
+
* Fixed amounts displayed when collecting a tip
|
|
1185
|
+
*/
|
|
1186
|
+
fixed_amounts?: Array<number>;
|
|
1187
|
+
|
|
1188
|
+
/**
|
|
1189
|
+
* Percentages displayed when collecting a tip
|
|
1190
|
+
*/
|
|
1191
|
+
percentages?: Array<number>;
|
|
1192
|
+
|
|
1193
|
+
/**
|
|
1194
|
+
* Below this amount, fixed amounts will be displayed; above it, percentages will be displayed
|
|
1195
|
+
*/
|
|
1196
|
+
smart_tip_threshold?: number;
|
|
1197
|
+
}
|
|
1198
|
+
|
|
1199
|
+
interface Pln {
|
|
1200
|
+
/**
|
|
1201
|
+
* Fixed amounts displayed when collecting a tip
|
|
1202
|
+
*/
|
|
1203
|
+
fixed_amounts?: Array<number>;
|
|
1204
|
+
|
|
1205
|
+
/**
|
|
1206
|
+
* Percentages displayed when collecting a tip
|
|
1207
|
+
*/
|
|
1208
|
+
percentages?: Array<number>;
|
|
1209
|
+
|
|
1210
|
+
/**
|
|
1211
|
+
* Below this amount, fixed amounts will be displayed; above it, percentages will be displayed
|
|
1212
|
+
*/
|
|
1213
|
+
smart_tip_threshold?: number;
|
|
1214
|
+
}
|
|
1215
|
+
|
|
1216
|
+
interface Ron {
|
|
1217
|
+
/**
|
|
1218
|
+
* Fixed amounts displayed when collecting a tip
|
|
1219
|
+
*/
|
|
1220
|
+
fixed_amounts?: Array<number>;
|
|
1221
|
+
|
|
1222
|
+
/**
|
|
1223
|
+
* Percentages displayed when collecting a tip
|
|
1224
|
+
*/
|
|
1225
|
+
percentages?: Array<number>;
|
|
1226
|
+
|
|
1227
|
+
/**
|
|
1228
|
+
* Below this amount, fixed amounts will be displayed; above it, percentages will be displayed
|
|
1229
|
+
*/
|
|
1230
|
+
smart_tip_threshold?: number;
|
|
1231
|
+
}
|
|
1232
|
+
|
|
1233
|
+
interface Sek {
|
|
1234
|
+
/**
|
|
1235
|
+
* Fixed amounts displayed when collecting a tip
|
|
1236
|
+
*/
|
|
1237
|
+
fixed_amounts?: Array<number>;
|
|
1238
|
+
|
|
1239
|
+
/**
|
|
1240
|
+
* Percentages displayed when collecting a tip
|
|
1241
|
+
*/
|
|
1242
|
+
percentages?: Array<number>;
|
|
1243
|
+
|
|
1244
|
+
/**
|
|
1245
|
+
* Below this amount, fixed amounts will be displayed; above it, percentages will be displayed
|
|
1246
|
+
*/
|
|
1247
|
+
smart_tip_threshold?: number;
|
|
1248
|
+
}
|
|
1249
|
+
|
|
1250
|
+
interface Sgd {
|
|
1251
|
+
/**
|
|
1252
|
+
* Fixed amounts displayed when collecting a tip
|
|
1253
|
+
*/
|
|
1254
|
+
fixed_amounts?: Array<number>;
|
|
1255
|
+
|
|
1256
|
+
/**
|
|
1257
|
+
* Percentages displayed when collecting a tip
|
|
1258
|
+
*/
|
|
1259
|
+
percentages?: Array<number>;
|
|
1260
|
+
|
|
1261
|
+
/**
|
|
1262
|
+
* Below this amount, fixed amounts will be displayed; above it, percentages will be displayed
|
|
1263
|
+
*/
|
|
1264
|
+
smart_tip_threshold?: number;
|
|
1265
|
+
}
|
|
1266
|
+
|
|
1267
|
+
interface Usd {
|
|
1268
|
+
/**
|
|
1269
|
+
* Fixed amounts displayed when collecting a tip
|
|
1270
|
+
*/
|
|
1271
|
+
fixed_amounts?: Array<number>;
|
|
1272
|
+
|
|
1273
|
+
/**
|
|
1274
|
+
* Percentages displayed when collecting a tip
|
|
1275
|
+
*/
|
|
1276
|
+
percentages?: Array<number>;
|
|
1277
|
+
|
|
1278
|
+
/**
|
|
1279
|
+
* Below this amount, fixed amounts will be displayed; above it, percentages will be displayed
|
|
1280
|
+
*/
|
|
1281
|
+
smart_tip_threshold?: number;
|
|
1282
|
+
}
|
|
1283
|
+
}
|
|
1284
|
+
|
|
1285
|
+
interface VerifoneP400 {
|
|
1286
|
+
/**
|
|
1287
|
+
* A File ID representing an image you want to display on the reader.
|
|
1288
|
+
*/
|
|
1289
|
+
splashscreen?: Stripe.Emptyable<string>;
|
|
1290
|
+
}
|
|
1291
|
+
|
|
1292
|
+
interface Wifi {
|
|
1293
|
+
/**
|
|
1294
|
+
* Credentials for a WPA-Enterprise WiFi network using the EAP-PEAP authentication method.
|
|
1295
|
+
*/
|
|
1296
|
+
enterprise_eap_peap?: Wifi.EnterpriseEapPeap;
|
|
1297
|
+
|
|
1298
|
+
/**
|
|
1299
|
+
* Credentials for a WPA-Enterprise WiFi network using the EAP-TLS authentication method.
|
|
1300
|
+
*/
|
|
1301
|
+
enterprise_eap_tls?: Wifi.EnterpriseEapTls;
|
|
1302
|
+
|
|
1303
|
+
/**
|
|
1304
|
+
* Credentials for a WPA-Personal WiFi network.
|
|
1305
|
+
*/
|
|
1306
|
+
personal_psk?: Wifi.PersonalPsk;
|
|
1307
|
+
|
|
1308
|
+
/**
|
|
1309
|
+
* Security type of the WiFi network. Fill out the hash with the corresponding name to provide the set of credentials for this security type.
|
|
1310
|
+
*/
|
|
1311
|
+
type: Wifi.Type;
|
|
1312
|
+
}
|
|
1313
|
+
|
|
1314
|
+
namespace Wifi {
|
|
1315
|
+
interface EnterpriseEapPeap {
|
|
1316
|
+
/**
|
|
1317
|
+
* A File ID representing a PEM file containing the server certificate
|
|
1318
|
+
*/
|
|
1319
|
+
ca_certificate_file?: string;
|
|
1320
|
+
|
|
1321
|
+
/**
|
|
1322
|
+
* Password for connecting to the WiFi network
|
|
1323
|
+
*/
|
|
1324
|
+
password: string;
|
|
1325
|
+
|
|
1326
|
+
/**
|
|
1327
|
+
* Name of the WiFi network
|
|
1328
|
+
*/
|
|
1329
|
+
ssid: string;
|
|
1330
|
+
|
|
1331
|
+
/**
|
|
1332
|
+
* Username for connecting to the WiFi network
|
|
1333
|
+
*/
|
|
1334
|
+
username: string;
|
|
1335
|
+
}
|
|
1336
|
+
|
|
1337
|
+
interface EnterpriseEapTls {
|
|
1338
|
+
/**
|
|
1339
|
+
* A File ID representing a PEM file containing the server certificate
|
|
1340
|
+
*/
|
|
1341
|
+
ca_certificate_file?: string;
|
|
1342
|
+
|
|
1343
|
+
/**
|
|
1344
|
+
* A File ID representing a PEM file containing the client certificate
|
|
1345
|
+
*/
|
|
1346
|
+
client_certificate_file: string;
|
|
1347
|
+
|
|
1348
|
+
/**
|
|
1349
|
+
* A File ID representing a PEM file containing the client RSA private key
|
|
1350
|
+
*/
|
|
1351
|
+
private_key_file: string;
|
|
1352
|
+
|
|
1353
|
+
/**
|
|
1354
|
+
* Password for the private key file
|
|
1355
|
+
*/
|
|
1356
|
+
private_key_file_password?: string;
|
|
1357
|
+
|
|
1358
|
+
/**
|
|
1359
|
+
* Name of the WiFi network
|
|
1360
|
+
*/
|
|
1361
|
+
ssid: string;
|
|
1362
|
+
}
|
|
1363
|
+
|
|
1364
|
+
interface PersonalPsk {
|
|
1365
|
+
/**
|
|
1366
|
+
* Password for connecting to the WiFi network
|
|
1367
|
+
*/
|
|
1368
|
+
password: string;
|
|
1369
|
+
|
|
1370
|
+
/**
|
|
1371
|
+
* Name of the WiFi network
|
|
1372
|
+
*/
|
|
1373
|
+
ssid: string;
|
|
1374
|
+
}
|
|
1375
|
+
|
|
1376
|
+
type Type =
|
|
1377
|
+
| 'enterprise_eap_peap'
|
|
1378
|
+
| 'enterprise_eap_tls'
|
|
1379
|
+
| 'personal_psk';
|
|
1380
|
+
}
|
|
1381
|
+
}
|
|
1382
|
+
|
|
1383
|
+
interface ConfigurationListParams extends PaginationParams {
|
|
1384
|
+
/**
|
|
1385
|
+
* Specifies which fields in the response should be expanded.
|
|
1386
|
+
*/
|
|
1387
|
+
expand?: Array<string>;
|
|
1388
|
+
|
|
1389
|
+
/**
|
|
1390
|
+
* if present, only return the account default or non-default configurations.
|
|
1391
|
+
*/
|
|
1392
|
+
is_account_default?: boolean;
|
|
1393
|
+
}
|
|
1394
|
+
|
|
1395
|
+
interface ConfigurationDeleteParams {}
|
|
1396
|
+
|
|
1397
|
+
class ConfigurationsResource {
|
|
1398
|
+
/**
|
|
1399
|
+
* Creates a new Configuration object.
|
|
1400
|
+
*/
|
|
1401
|
+
create(
|
|
1402
|
+
params?: ConfigurationCreateParams,
|
|
1403
|
+
options?: RequestOptions
|
|
1404
|
+
): Promise<Stripe.Response<Stripe.Terminal.Configuration>>;
|
|
1405
|
+
create(
|
|
1406
|
+
options?: RequestOptions
|
|
1407
|
+
): Promise<Stripe.Response<Stripe.Terminal.Configuration>>;
|
|
1408
|
+
|
|
1409
|
+
/**
|
|
1410
|
+
* Retrieves a Configuration object.
|
|
1411
|
+
*/
|
|
1412
|
+
retrieve(
|
|
1413
|
+
id: string,
|
|
1414
|
+
params?: ConfigurationRetrieveParams,
|
|
1415
|
+
options?: RequestOptions
|
|
1416
|
+
): Promise<
|
|
1417
|
+
Stripe.Response<
|
|
1418
|
+
Stripe.Terminal.Configuration | Stripe.Terminal.DeletedConfiguration
|
|
1419
|
+
>
|
|
1420
|
+
>;
|
|
1421
|
+
retrieve(
|
|
1422
|
+
id: string,
|
|
1423
|
+
options?: RequestOptions
|
|
1424
|
+
): Promise<
|
|
1425
|
+
Stripe.Response<
|
|
1426
|
+
Stripe.Terminal.Configuration | Stripe.Terminal.DeletedConfiguration
|
|
1427
|
+
>
|
|
1428
|
+
>;
|
|
1429
|
+
|
|
1430
|
+
/**
|
|
1431
|
+
* Updates a new Configuration object.
|
|
1432
|
+
*/
|
|
1433
|
+
update(
|
|
1434
|
+
id: string,
|
|
1435
|
+
params?: ConfigurationUpdateParams,
|
|
1436
|
+
options?: RequestOptions
|
|
1437
|
+
): Promise<
|
|
1438
|
+
Stripe.Response<
|
|
1439
|
+
Stripe.Terminal.Configuration | Stripe.Terminal.DeletedConfiguration
|
|
1440
|
+
>
|
|
1441
|
+
>;
|
|
1442
|
+
|
|
1443
|
+
/**
|
|
1444
|
+
* Returns a list of Configuration objects.
|
|
1445
|
+
*/
|
|
1446
|
+
list(
|
|
1447
|
+
params?: ConfigurationListParams,
|
|
1448
|
+
options?: RequestOptions
|
|
1449
|
+
): ApiListPromise<Stripe.Terminal.Configuration>;
|
|
1450
|
+
list(
|
|
1451
|
+
options?: RequestOptions
|
|
1452
|
+
): ApiListPromise<Stripe.Terminal.Configuration>;
|
|
1453
|
+
|
|
1454
|
+
/**
|
|
1455
|
+
* Deletes a Configuration object.
|
|
1456
|
+
*/
|
|
1457
|
+
del(
|
|
1458
|
+
id: string,
|
|
1459
|
+
params?: ConfigurationDeleteParams,
|
|
1460
|
+
options?: RequestOptions
|
|
1461
|
+
): Promise<Stripe.Response<Stripe.Terminal.DeletedConfiguration>>;
|
|
1462
|
+
del(
|
|
1463
|
+
id: string,
|
|
1464
|
+
options?: RequestOptions
|
|
1465
|
+
): Promise<Stripe.Response<Stripe.Terminal.DeletedConfiguration>>;
|
|
1466
|
+
}
|
|
1467
|
+
}
|
|
1468
|
+
}
|
|
1469
|
+
}
|