@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,2583 @@
|
|
|
1
|
+
// File generated from our OpenAPI spec
|
|
2
|
+
|
|
3
|
+
declare module 'stripe' {
|
|
4
|
+
namespace Stripe {
|
|
5
|
+
namespace Tax {
|
|
6
|
+
interface RegistrationCreateParams {
|
|
7
|
+
/**
|
|
8
|
+
* Time at which the Tax Registration becomes active. It can be either `now` to indicate the current time, or a future timestamp measured in seconds since the Unix epoch.
|
|
9
|
+
*/
|
|
10
|
+
active_from: 'now' | number;
|
|
11
|
+
|
|
12
|
+
/**
|
|
13
|
+
* Two-letter country code ([ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2)).
|
|
14
|
+
*/
|
|
15
|
+
country: string;
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
* Specific options for a registration in the specified `country`.
|
|
19
|
+
*/
|
|
20
|
+
country_options: RegistrationCreateParams.CountryOptions;
|
|
21
|
+
|
|
22
|
+
/**
|
|
23
|
+
* Specifies which fields in the response should be expanded.
|
|
24
|
+
*/
|
|
25
|
+
expand?: Array<string>;
|
|
26
|
+
|
|
27
|
+
/**
|
|
28
|
+
* If set, the Tax Registration stops being active at this time. If not set, the Tax Registration will be active indefinitely. Timestamp measured in seconds since the Unix epoch.
|
|
29
|
+
*/
|
|
30
|
+
expires_at?: number;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
namespace RegistrationCreateParams {
|
|
34
|
+
interface CountryOptions {
|
|
35
|
+
/**
|
|
36
|
+
* Options for the registration in AE.
|
|
37
|
+
*/
|
|
38
|
+
ae?: CountryOptions.Ae;
|
|
39
|
+
|
|
40
|
+
/**
|
|
41
|
+
* Options for the registration in AL.
|
|
42
|
+
*/
|
|
43
|
+
al?: CountryOptions.Al;
|
|
44
|
+
|
|
45
|
+
/**
|
|
46
|
+
* Options for the registration in AM.
|
|
47
|
+
*/
|
|
48
|
+
am?: CountryOptions.Am;
|
|
49
|
+
|
|
50
|
+
/**
|
|
51
|
+
* Options for the registration in AO.
|
|
52
|
+
*/
|
|
53
|
+
ao?: CountryOptions.Ao;
|
|
54
|
+
|
|
55
|
+
/**
|
|
56
|
+
* Options for the registration in AT.
|
|
57
|
+
*/
|
|
58
|
+
at?: CountryOptions.At;
|
|
59
|
+
|
|
60
|
+
/**
|
|
61
|
+
* Options for the registration in AU.
|
|
62
|
+
*/
|
|
63
|
+
au?: CountryOptions.Au;
|
|
64
|
+
|
|
65
|
+
/**
|
|
66
|
+
* Options for the registration in AW.
|
|
67
|
+
*/
|
|
68
|
+
aw?: CountryOptions.Aw;
|
|
69
|
+
|
|
70
|
+
/**
|
|
71
|
+
* Options for the registration in AZ.
|
|
72
|
+
*/
|
|
73
|
+
az?: CountryOptions.Az;
|
|
74
|
+
|
|
75
|
+
/**
|
|
76
|
+
* Options for the registration in BA.
|
|
77
|
+
*/
|
|
78
|
+
ba?: CountryOptions.Ba;
|
|
79
|
+
|
|
80
|
+
/**
|
|
81
|
+
* Options for the registration in BB.
|
|
82
|
+
*/
|
|
83
|
+
bb?: CountryOptions.Bb;
|
|
84
|
+
|
|
85
|
+
/**
|
|
86
|
+
* Options for the registration in BD.
|
|
87
|
+
*/
|
|
88
|
+
bd?: CountryOptions.Bd;
|
|
89
|
+
|
|
90
|
+
/**
|
|
91
|
+
* Options for the registration in BE.
|
|
92
|
+
*/
|
|
93
|
+
be?: CountryOptions.Be;
|
|
94
|
+
|
|
95
|
+
/**
|
|
96
|
+
* Options for the registration in BF.
|
|
97
|
+
*/
|
|
98
|
+
bf?: CountryOptions.Bf;
|
|
99
|
+
|
|
100
|
+
/**
|
|
101
|
+
* Options for the registration in BG.
|
|
102
|
+
*/
|
|
103
|
+
bg?: CountryOptions.Bg;
|
|
104
|
+
|
|
105
|
+
/**
|
|
106
|
+
* Options for the registration in BH.
|
|
107
|
+
*/
|
|
108
|
+
bh?: CountryOptions.Bh;
|
|
109
|
+
|
|
110
|
+
/**
|
|
111
|
+
* Options for the registration in BJ.
|
|
112
|
+
*/
|
|
113
|
+
bj?: CountryOptions.Bj;
|
|
114
|
+
|
|
115
|
+
/**
|
|
116
|
+
* Options for the registration in BS.
|
|
117
|
+
*/
|
|
118
|
+
bs?: CountryOptions.Bs;
|
|
119
|
+
|
|
120
|
+
/**
|
|
121
|
+
* Options for the registration in BY.
|
|
122
|
+
*/
|
|
123
|
+
by?: CountryOptions.By;
|
|
124
|
+
|
|
125
|
+
/**
|
|
126
|
+
* Options for the registration in CA.
|
|
127
|
+
*/
|
|
128
|
+
ca?: CountryOptions.Ca;
|
|
129
|
+
|
|
130
|
+
/**
|
|
131
|
+
* Options for the registration in CD.
|
|
132
|
+
*/
|
|
133
|
+
cd?: CountryOptions.Cd;
|
|
134
|
+
|
|
135
|
+
/**
|
|
136
|
+
* Options for the registration in CH.
|
|
137
|
+
*/
|
|
138
|
+
ch?: CountryOptions.Ch;
|
|
139
|
+
|
|
140
|
+
/**
|
|
141
|
+
* Options for the registration in CL.
|
|
142
|
+
*/
|
|
143
|
+
cl?: CountryOptions.Cl;
|
|
144
|
+
|
|
145
|
+
/**
|
|
146
|
+
* Options for the registration in CM.
|
|
147
|
+
*/
|
|
148
|
+
cm?: CountryOptions.Cm;
|
|
149
|
+
|
|
150
|
+
/**
|
|
151
|
+
* Options for the registration in CO.
|
|
152
|
+
*/
|
|
153
|
+
co?: CountryOptions.Co;
|
|
154
|
+
|
|
155
|
+
/**
|
|
156
|
+
* Options for the registration in CR.
|
|
157
|
+
*/
|
|
158
|
+
cr?: CountryOptions.Cr;
|
|
159
|
+
|
|
160
|
+
/**
|
|
161
|
+
* Options for the registration in CV.
|
|
162
|
+
*/
|
|
163
|
+
cv?: CountryOptions.Cv;
|
|
164
|
+
|
|
165
|
+
/**
|
|
166
|
+
* Options for the registration in CY.
|
|
167
|
+
*/
|
|
168
|
+
cy?: CountryOptions.Cy;
|
|
169
|
+
|
|
170
|
+
/**
|
|
171
|
+
* Options for the registration in CZ.
|
|
172
|
+
*/
|
|
173
|
+
cz?: CountryOptions.Cz;
|
|
174
|
+
|
|
175
|
+
/**
|
|
176
|
+
* Options for the registration in DE.
|
|
177
|
+
*/
|
|
178
|
+
de?: CountryOptions.De;
|
|
179
|
+
|
|
180
|
+
/**
|
|
181
|
+
* Options for the registration in DK.
|
|
182
|
+
*/
|
|
183
|
+
dk?: CountryOptions.Dk;
|
|
184
|
+
|
|
185
|
+
/**
|
|
186
|
+
* Options for the registration in EC.
|
|
187
|
+
*/
|
|
188
|
+
ec?: CountryOptions.Ec;
|
|
189
|
+
|
|
190
|
+
/**
|
|
191
|
+
* Options for the registration in EE.
|
|
192
|
+
*/
|
|
193
|
+
ee?: CountryOptions.Ee;
|
|
194
|
+
|
|
195
|
+
/**
|
|
196
|
+
* Options for the registration in EG.
|
|
197
|
+
*/
|
|
198
|
+
eg?: CountryOptions.Eg;
|
|
199
|
+
|
|
200
|
+
/**
|
|
201
|
+
* Options for the registration in ES.
|
|
202
|
+
*/
|
|
203
|
+
es?: CountryOptions.Es;
|
|
204
|
+
|
|
205
|
+
/**
|
|
206
|
+
* Options for the registration in ET.
|
|
207
|
+
*/
|
|
208
|
+
et?: CountryOptions.Et;
|
|
209
|
+
|
|
210
|
+
/**
|
|
211
|
+
* Options for the registration in FI.
|
|
212
|
+
*/
|
|
213
|
+
fi?: CountryOptions.Fi;
|
|
214
|
+
|
|
215
|
+
/**
|
|
216
|
+
* Options for the registration in FR.
|
|
217
|
+
*/
|
|
218
|
+
fr?: CountryOptions.Fr;
|
|
219
|
+
|
|
220
|
+
/**
|
|
221
|
+
* Options for the registration in GB.
|
|
222
|
+
*/
|
|
223
|
+
gb?: CountryOptions.Gb;
|
|
224
|
+
|
|
225
|
+
/**
|
|
226
|
+
* Options for the registration in GE.
|
|
227
|
+
*/
|
|
228
|
+
ge?: CountryOptions.Ge;
|
|
229
|
+
|
|
230
|
+
/**
|
|
231
|
+
* Options for the registration in GN.
|
|
232
|
+
*/
|
|
233
|
+
gn?: CountryOptions.Gn;
|
|
234
|
+
|
|
235
|
+
/**
|
|
236
|
+
* Options for the registration in GR.
|
|
237
|
+
*/
|
|
238
|
+
gr?: CountryOptions.Gr;
|
|
239
|
+
|
|
240
|
+
/**
|
|
241
|
+
* Options for the registration in HR.
|
|
242
|
+
*/
|
|
243
|
+
hr?: CountryOptions.Hr;
|
|
244
|
+
|
|
245
|
+
/**
|
|
246
|
+
* Options for the registration in HU.
|
|
247
|
+
*/
|
|
248
|
+
hu?: CountryOptions.Hu;
|
|
249
|
+
|
|
250
|
+
/**
|
|
251
|
+
* Options for the registration in ID.
|
|
252
|
+
*/
|
|
253
|
+
id?: CountryOptions.Id;
|
|
254
|
+
|
|
255
|
+
/**
|
|
256
|
+
* Options for the registration in IE.
|
|
257
|
+
*/
|
|
258
|
+
ie?: CountryOptions.Ie;
|
|
259
|
+
|
|
260
|
+
/**
|
|
261
|
+
* Options for the registration in IN.
|
|
262
|
+
*/
|
|
263
|
+
in?: CountryOptions.In;
|
|
264
|
+
|
|
265
|
+
/**
|
|
266
|
+
* Options for the registration in IS.
|
|
267
|
+
*/
|
|
268
|
+
is?: CountryOptions.Is;
|
|
269
|
+
|
|
270
|
+
/**
|
|
271
|
+
* Options for the registration in IT.
|
|
272
|
+
*/
|
|
273
|
+
it?: CountryOptions.It;
|
|
274
|
+
|
|
275
|
+
/**
|
|
276
|
+
* Options for the registration in JP.
|
|
277
|
+
*/
|
|
278
|
+
jp?: CountryOptions.Jp;
|
|
279
|
+
|
|
280
|
+
/**
|
|
281
|
+
* Options for the registration in KE.
|
|
282
|
+
*/
|
|
283
|
+
ke?: CountryOptions.Ke;
|
|
284
|
+
|
|
285
|
+
/**
|
|
286
|
+
* Options for the registration in KG.
|
|
287
|
+
*/
|
|
288
|
+
kg?: CountryOptions.Kg;
|
|
289
|
+
|
|
290
|
+
/**
|
|
291
|
+
* Options for the registration in KH.
|
|
292
|
+
*/
|
|
293
|
+
kh?: CountryOptions.Kh;
|
|
294
|
+
|
|
295
|
+
/**
|
|
296
|
+
* Options for the registration in KR.
|
|
297
|
+
*/
|
|
298
|
+
kr?: CountryOptions.Kr;
|
|
299
|
+
|
|
300
|
+
/**
|
|
301
|
+
* Options for the registration in KZ.
|
|
302
|
+
*/
|
|
303
|
+
kz?: CountryOptions.Kz;
|
|
304
|
+
|
|
305
|
+
/**
|
|
306
|
+
* Options for the registration in LA.
|
|
307
|
+
*/
|
|
308
|
+
la?: CountryOptions.La;
|
|
309
|
+
|
|
310
|
+
/**
|
|
311
|
+
* Options for the registration in LK.
|
|
312
|
+
*/
|
|
313
|
+
lk?: CountryOptions.Lk;
|
|
314
|
+
|
|
315
|
+
/**
|
|
316
|
+
* Options for the registration in LT.
|
|
317
|
+
*/
|
|
318
|
+
lt?: CountryOptions.Lt;
|
|
319
|
+
|
|
320
|
+
/**
|
|
321
|
+
* Options for the registration in LU.
|
|
322
|
+
*/
|
|
323
|
+
lu?: CountryOptions.Lu;
|
|
324
|
+
|
|
325
|
+
/**
|
|
326
|
+
* Options for the registration in LV.
|
|
327
|
+
*/
|
|
328
|
+
lv?: CountryOptions.Lv;
|
|
329
|
+
|
|
330
|
+
/**
|
|
331
|
+
* Options for the registration in MA.
|
|
332
|
+
*/
|
|
333
|
+
ma?: CountryOptions.Ma;
|
|
334
|
+
|
|
335
|
+
/**
|
|
336
|
+
* Options for the registration in MD.
|
|
337
|
+
*/
|
|
338
|
+
md?: CountryOptions.Md;
|
|
339
|
+
|
|
340
|
+
/**
|
|
341
|
+
* Options for the registration in ME.
|
|
342
|
+
*/
|
|
343
|
+
me?: CountryOptions.Me;
|
|
344
|
+
|
|
345
|
+
/**
|
|
346
|
+
* Options for the registration in MK.
|
|
347
|
+
*/
|
|
348
|
+
mk?: CountryOptions.Mk;
|
|
349
|
+
|
|
350
|
+
/**
|
|
351
|
+
* Options for the registration in MR.
|
|
352
|
+
*/
|
|
353
|
+
mr?: CountryOptions.Mr;
|
|
354
|
+
|
|
355
|
+
/**
|
|
356
|
+
* Options for the registration in MT.
|
|
357
|
+
*/
|
|
358
|
+
mt?: CountryOptions.Mt;
|
|
359
|
+
|
|
360
|
+
/**
|
|
361
|
+
* Options for the registration in MX.
|
|
362
|
+
*/
|
|
363
|
+
mx?: CountryOptions.Mx;
|
|
364
|
+
|
|
365
|
+
/**
|
|
366
|
+
* Options for the registration in MY.
|
|
367
|
+
*/
|
|
368
|
+
my?: CountryOptions.My;
|
|
369
|
+
|
|
370
|
+
/**
|
|
371
|
+
* Options for the registration in NG.
|
|
372
|
+
*/
|
|
373
|
+
ng?: CountryOptions.Ng;
|
|
374
|
+
|
|
375
|
+
/**
|
|
376
|
+
* Options for the registration in NL.
|
|
377
|
+
*/
|
|
378
|
+
nl?: CountryOptions.Nl;
|
|
379
|
+
|
|
380
|
+
/**
|
|
381
|
+
* Options for the registration in NO.
|
|
382
|
+
*/
|
|
383
|
+
no?: CountryOptions.No;
|
|
384
|
+
|
|
385
|
+
/**
|
|
386
|
+
* Options for the registration in NP.
|
|
387
|
+
*/
|
|
388
|
+
np?: CountryOptions.Np;
|
|
389
|
+
|
|
390
|
+
/**
|
|
391
|
+
* Options for the registration in NZ.
|
|
392
|
+
*/
|
|
393
|
+
nz?: CountryOptions.Nz;
|
|
394
|
+
|
|
395
|
+
/**
|
|
396
|
+
* Options for the registration in OM.
|
|
397
|
+
*/
|
|
398
|
+
om?: CountryOptions.Om;
|
|
399
|
+
|
|
400
|
+
/**
|
|
401
|
+
* Options for the registration in PE.
|
|
402
|
+
*/
|
|
403
|
+
pe?: CountryOptions.Pe;
|
|
404
|
+
|
|
405
|
+
/**
|
|
406
|
+
* Options for the registration in PH.
|
|
407
|
+
*/
|
|
408
|
+
ph?: CountryOptions.Ph;
|
|
409
|
+
|
|
410
|
+
/**
|
|
411
|
+
* Options for the registration in PL.
|
|
412
|
+
*/
|
|
413
|
+
pl?: CountryOptions.Pl;
|
|
414
|
+
|
|
415
|
+
/**
|
|
416
|
+
* Options for the registration in PT.
|
|
417
|
+
*/
|
|
418
|
+
pt?: CountryOptions.Pt;
|
|
419
|
+
|
|
420
|
+
/**
|
|
421
|
+
* Options for the registration in RO.
|
|
422
|
+
*/
|
|
423
|
+
ro?: CountryOptions.Ro;
|
|
424
|
+
|
|
425
|
+
/**
|
|
426
|
+
* Options for the registration in RS.
|
|
427
|
+
*/
|
|
428
|
+
rs?: CountryOptions.Rs;
|
|
429
|
+
|
|
430
|
+
/**
|
|
431
|
+
* Options for the registration in RU.
|
|
432
|
+
*/
|
|
433
|
+
ru?: CountryOptions.Ru;
|
|
434
|
+
|
|
435
|
+
/**
|
|
436
|
+
* Options for the registration in SA.
|
|
437
|
+
*/
|
|
438
|
+
sa?: CountryOptions.Sa;
|
|
439
|
+
|
|
440
|
+
/**
|
|
441
|
+
* Options for the registration in SE.
|
|
442
|
+
*/
|
|
443
|
+
se?: CountryOptions.Se;
|
|
444
|
+
|
|
445
|
+
/**
|
|
446
|
+
* Options for the registration in SG.
|
|
447
|
+
*/
|
|
448
|
+
sg?: CountryOptions.Sg;
|
|
449
|
+
|
|
450
|
+
/**
|
|
451
|
+
* Options for the registration in SI.
|
|
452
|
+
*/
|
|
453
|
+
si?: CountryOptions.Si;
|
|
454
|
+
|
|
455
|
+
/**
|
|
456
|
+
* Options for the registration in SK.
|
|
457
|
+
*/
|
|
458
|
+
sk?: CountryOptions.Sk;
|
|
459
|
+
|
|
460
|
+
/**
|
|
461
|
+
* Options for the registration in SN.
|
|
462
|
+
*/
|
|
463
|
+
sn?: CountryOptions.Sn;
|
|
464
|
+
|
|
465
|
+
/**
|
|
466
|
+
* Options for the registration in SR.
|
|
467
|
+
*/
|
|
468
|
+
sr?: CountryOptions.Sr;
|
|
469
|
+
|
|
470
|
+
/**
|
|
471
|
+
* Options for the registration in TH.
|
|
472
|
+
*/
|
|
473
|
+
th?: CountryOptions.Th;
|
|
474
|
+
|
|
475
|
+
/**
|
|
476
|
+
* Options for the registration in TJ.
|
|
477
|
+
*/
|
|
478
|
+
tj?: CountryOptions.Tj;
|
|
479
|
+
|
|
480
|
+
/**
|
|
481
|
+
* Options for the registration in TR.
|
|
482
|
+
*/
|
|
483
|
+
tr?: CountryOptions.Tr;
|
|
484
|
+
|
|
485
|
+
/**
|
|
486
|
+
* Options for the registration in TW.
|
|
487
|
+
*/
|
|
488
|
+
tw?: CountryOptions.Tw;
|
|
489
|
+
|
|
490
|
+
/**
|
|
491
|
+
* Options for the registration in TZ.
|
|
492
|
+
*/
|
|
493
|
+
tz?: CountryOptions.Tz;
|
|
494
|
+
|
|
495
|
+
/**
|
|
496
|
+
* Options for the registration in UA.
|
|
497
|
+
*/
|
|
498
|
+
ua?: CountryOptions.Ua;
|
|
499
|
+
|
|
500
|
+
/**
|
|
501
|
+
* Options for the registration in UG.
|
|
502
|
+
*/
|
|
503
|
+
ug?: CountryOptions.Ug;
|
|
504
|
+
|
|
505
|
+
/**
|
|
506
|
+
* Options for the registration in US.
|
|
507
|
+
*/
|
|
508
|
+
us?: CountryOptions.Us;
|
|
509
|
+
|
|
510
|
+
/**
|
|
511
|
+
* Options for the registration in UY.
|
|
512
|
+
*/
|
|
513
|
+
uy?: CountryOptions.Uy;
|
|
514
|
+
|
|
515
|
+
/**
|
|
516
|
+
* Options for the registration in UZ.
|
|
517
|
+
*/
|
|
518
|
+
uz?: CountryOptions.Uz;
|
|
519
|
+
|
|
520
|
+
/**
|
|
521
|
+
* Options for the registration in VN.
|
|
522
|
+
*/
|
|
523
|
+
vn?: CountryOptions.Vn;
|
|
524
|
+
|
|
525
|
+
/**
|
|
526
|
+
* Options for the registration in ZA.
|
|
527
|
+
*/
|
|
528
|
+
za?: CountryOptions.Za;
|
|
529
|
+
|
|
530
|
+
/**
|
|
531
|
+
* Options for the registration in ZM.
|
|
532
|
+
*/
|
|
533
|
+
zm?: CountryOptions.Zm;
|
|
534
|
+
|
|
535
|
+
/**
|
|
536
|
+
* Options for the registration in ZW.
|
|
537
|
+
*/
|
|
538
|
+
zw?: CountryOptions.Zw;
|
|
539
|
+
}
|
|
540
|
+
|
|
541
|
+
namespace CountryOptions {
|
|
542
|
+
interface Ae {
|
|
543
|
+
/**
|
|
544
|
+
* Options for the standard registration.
|
|
545
|
+
*/
|
|
546
|
+
standard?: Ae.Standard;
|
|
547
|
+
|
|
548
|
+
/**
|
|
549
|
+
* Type of registration to be created in `country`.
|
|
550
|
+
*/
|
|
551
|
+
type: 'standard';
|
|
552
|
+
}
|
|
553
|
+
|
|
554
|
+
namespace Ae {
|
|
555
|
+
interface Standard {
|
|
556
|
+
/**
|
|
557
|
+
* Place of supply scheme used in an standard registration.
|
|
558
|
+
*/
|
|
559
|
+
place_of_supply_scheme?: Standard.PlaceOfSupplyScheme;
|
|
560
|
+
}
|
|
561
|
+
|
|
562
|
+
namespace Standard {
|
|
563
|
+
type PlaceOfSupplyScheme = 'inbound_goods' | 'standard';
|
|
564
|
+
}
|
|
565
|
+
}
|
|
566
|
+
|
|
567
|
+
interface Al {
|
|
568
|
+
/**
|
|
569
|
+
* Options for the standard registration.
|
|
570
|
+
*/
|
|
571
|
+
standard?: Al.Standard;
|
|
572
|
+
|
|
573
|
+
/**
|
|
574
|
+
* Type of registration to be created in `country`.
|
|
575
|
+
*/
|
|
576
|
+
type: 'standard';
|
|
577
|
+
}
|
|
578
|
+
|
|
579
|
+
namespace Al {
|
|
580
|
+
interface Standard {
|
|
581
|
+
/**
|
|
582
|
+
* Place of supply scheme used in an standard registration.
|
|
583
|
+
*/
|
|
584
|
+
place_of_supply_scheme?: Standard.PlaceOfSupplyScheme;
|
|
585
|
+
}
|
|
586
|
+
|
|
587
|
+
namespace Standard {
|
|
588
|
+
type PlaceOfSupplyScheme = 'inbound_goods' | 'standard';
|
|
589
|
+
}
|
|
590
|
+
}
|
|
591
|
+
|
|
592
|
+
interface Am {
|
|
593
|
+
/**
|
|
594
|
+
* Type of registration to be created in `country`.
|
|
595
|
+
*/
|
|
596
|
+
type: 'simplified';
|
|
597
|
+
}
|
|
598
|
+
|
|
599
|
+
interface Ao {
|
|
600
|
+
/**
|
|
601
|
+
* Options for the standard registration.
|
|
602
|
+
*/
|
|
603
|
+
standard?: Ao.Standard;
|
|
604
|
+
|
|
605
|
+
/**
|
|
606
|
+
* Type of registration to be created in `country`.
|
|
607
|
+
*/
|
|
608
|
+
type: 'standard';
|
|
609
|
+
}
|
|
610
|
+
|
|
611
|
+
namespace Ao {
|
|
612
|
+
interface Standard {
|
|
613
|
+
/**
|
|
614
|
+
* Place of supply scheme used in an standard registration.
|
|
615
|
+
*/
|
|
616
|
+
place_of_supply_scheme?: Standard.PlaceOfSupplyScheme;
|
|
617
|
+
}
|
|
618
|
+
|
|
619
|
+
namespace Standard {
|
|
620
|
+
type PlaceOfSupplyScheme = 'inbound_goods' | 'standard';
|
|
621
|
+
}
|
|
622
|
+
}
|
|
623
|
+
|
|
624
|
+
interface At {
|
|
625
|
+
/**
|
|
626
|
+
* Options for the standard registration.
|
|
627
|
+
*/
|
|
628
|
+
standard?: At.Standard;
|
|
629
|
+
|
|
630
|
+
/**
|
|
631
|
+
* Type of registration to be created in an EU country.
|
|
632
|
+
*/
|
|
633
|
+
type: At.Type;
|
|
634
|
+
}
|
|
635
|
+
|
|
636
|
+
namespace At {
|
|
637
|
+
interface Standard {
|
|
638
|
+
/**
|
|
639
|
+
* Place of supply scheme used in an EU standard registration.
|
|
640
|
+
*/
|
|
641
|
+
place_of_supply_scheme: Standard.PlaceOfSupplyScheme;
|
|
642
|
+
}
|
|
643
|
+
|
|
644
|
+
namespace Standard {
|
|
645
|
+
type PlaceOfSupplyScheme =
|
|
646
|
+
| 'inbound_goods'
|
|
647
|
+
| 'small_seller'
|
|
648
|
+
| 'standard';
|
|
649
|
+
}
|
|
650
|
+
|
|
651
|
+
type Type = 'ioss' | 'oss_non_union' | 'oss_union' | 'standard';
|
|
652
|
+
}
|
|
653
|
+
|
|
654
|
+
interface Au {
|
|
655
|
+
/**
|
|
656
|
+
* Options for the standard registration.
|
|
657
|
+
*/
|
|
658
|
+
standard?: Au.Standard;
|
|
659
|
+
|
|
660
|
+
/**
|
|
661
|
+
* Type of registration to be created in `country`.
|
|
662
|
+
*/
|
|
663
|
+
type: 'standard';
|
|
664
|
+
}
|
|
665
|
+
|
|
666
|
+
namespace Au {
|
|
667
|
+
interface Standard {
|
|
668
|
+
/**
|
|
669
|
+
* Place of supply scheme used in an standard registration.
|
|
670
|
+
*/
|
|
671
|
+
place_of_supply_scheme?: Standard.PlaceOfSupplyScheme;
|
|
672
|
+
}
|
|
673
|
+
|
|
674
|
+
namespace Standard {
|
|
675
|
+
type PlaceOfSupplyScheme = 'inbound_goods' | 'standard';
|
|
676
|
+
}
|
|
677
|
+
}
|
|
678
|
+
|
|
679
|
+
interface Aw {
|
|
680
|
+
/**
|
|
681
|
+
* Options for the standard registration.
|
|
682
|
+
*/
|
|
683
|
+
standard?: Aw.Standard;
|
|
684
|
+
|
|
685
|
+
/**
|
|
686
|
+
* Type of registration to be created in `country`.
|
|
687
|
+
*/
|
|
688
|
+
type: 'standard';
|
|
689
|
+
}
|
|
690
|
+
|
|
691
|
+
namespace Aw {
|
|
692
|
+
interface Standard {
|
|
693
|
+
/**
|
|
694
|
+
* Place of supply scheme used in an standard registration.
|
|
695
|
+
*/
|
|
696
|
+
place_of_supply_scheme?: Standard.PlaceOfSupplyScheme;
|
|
697
|
+
}
|
|
698
|
+
|
|
699
|
+
namespace Standard {
|
|
700
|
+
type PlaceOfSupplyScheme = 'inbound_goods' | 'standard';
|
|
701
|
+
}
|
|
702
|
+
}
|
|
703
|
+
|
|
704
|
+
interface Az {
|
|
705
|
+
/**
|
|
706
|
+
* Type of registration to be created in `country`.
|
|
707
|
+
*/
|
|
708
|
+
type: 'simplified';
|
|
709
|
+
}
|
|
710
|
+
|
|
711
|
+
interface Ba {
|
|
712
|
+
/**
|
|
713
|
+
* Options for the standard registration.
|
|
714
|
+
*/
|
|
715
|
+
standard?: Ba.Standard;
|
|
716
|
+
|
|
717
|
+
/**
|
|
718
|
+
* Type of registration to be created in `country`.
|
|
719
|
+
*/
|
|
720
|
+
type: 'standard';
|
|
721
|
+
}
|
|
722
|
+
|
|
723
|
+
namespace Ba {
|
|
724
|
+
interface Standard {
|
|
725
|
+
/**
|
|
726
|
+
* Place of supply scheme used in an standard registration.
|
|
727
|
+
*/
|
|
728
|
+
place_of_supply_scheme?: Standard.PlaceOfSupplyScheme;
|
|
729
|
+
}
|
|
730
|
+
|
|
731
|
+
namespace Standard {
|
|
732
|
+
type PlaceOfSupplyScheme = 'inbound_goods' | 'standard';
|
|
733
|
+
}
|
|
734
|
+
}
|
|
735
|
+
|
|
736
|
+
interface Bb {
|
|
737
|
+
/**
|
|
738
|
+
* Options for the standard registration.
|
|
739
|
+
*/
|
|
740
|
+
standard?: Bb.Standard;
|
|
741
|
+
|
|
742
|
+
/**
|
|
743
|
+
* Type of registration to be created in `country`.
|
|
744
|
+
*/
|
|
745
|
+
type: 'standard';
|
|
746
|
+
}
|
|
747
|
+
|
|
748
|
+
namespace Bb {
|
|
749
|
+
interface Standard {
|
|
750
|
+
/**
|
|
751
|
+
* Place of supply scheme used in an standard registration.
|
|
752
|
+
*/
|
|
753
|
+
place_of_supply_scheme?: Standard.PlaceOfSupplyScheme;
|
|
754
|
+
}
|
|
755
|
+
|
|
756
|
+
namespace Standard {
|
|
757
|
+
type PlaceOfSupplyScheme = 'inbound_goods' | 'standard';
|
|
758
|
+
}
|
|
759
|
+
}
|
|
760
|
+
|
|
761
|
+
interface Bd {
|
|
762
|
+
/**
|
|
763
|
+
* Options for the standard registration.
|
|
764
|
+
*/
|
|
765
|
+
standard?: Bd.Standard;
|
|
766
|
+
|
|
767
|
+
/**
|
|
768
|
+
* Type of registration to be created in `country`.
|
|
769
|
+
*/
|
|
770
|
+
type: 'standard';
|
|
771
|
+
}
|
|
772
|
+
|
|
773
|
+
namespace Bd {
|
|
774
|
+
interface Standard {
|
|
775
|
+
/**
|
|
776
|
+
* Place of supply scheme used in an standard registration.
|
|
777
|
+
*/
|
|
778
|
+
place_of_supply_scheme?: Standard.PlaceOfSupplyScheme;
|
|
779
|
+
}
|
|
780
|
+
|
|
781
|
+
namespace Standard {
|
|
782
|
+
type PlaceOfSupplyScheme = 'inbound_goods' | 'standard';
|
|
783
|
+
}
|
|
784
|
+
}
|
|
785
|
+
|
|
786
|
+
interface Be {
|
|
787
|
+
/**
|
|
788
|
+
* Options for the standard registration.
|
|
789
|
+
*/
|
|
790
|
+
standard?: Be.Standard;
|
|
791
|
+
|
|
792
|
+
/**
|
|
793
|
+
* Type of registration to be created in an EU country.
|
|
794
|
+
*/
|
|
795
|
+
type: Be.Type;
|
|
796
|
+
}
|
|
797
|
+
|
|
798
|
+
namespace Be {
|
|
799
|
+
interface Standard {
|
|
800
|
+
/**
|
|
801
|
+
* Place of supply scheme used in an EU standard registration.
|
|
802
|
+
*/
|
|
803
|
+
place_of_supply_scheme: Standard.PlaceOfSupplyScheme;
|
|
804
|
+
}
|
|
805
|
+
|
|
806
|
+
namespace Standard {
|
|
807
|
+
type PlaceOfSupplyScheme =
|
|
808
|
+
| 'inbound_goods'
|
|
809
|
+
| 'small_seller'
|
|
810
|
+
| 'standard';
|
|
811
|
+
}
|
|
812
|
+
|
|
813
|
+
type Type = 'ioss' | 'oss_non_union' | 'oss_union' | 'standard';
|
|
814
|
+
}
|
|
815
|
+
|
|
816
|
+
interface Bf {
|
|
817
|
+
/**
|
|
818
|
+
* Options for the standard registration.
|
|
819
|
+
*/
|
|
820
|
+
standard?: Bf.Standard;
|
|
821
|
+
|
|
822
|
+
/**
|
|
823
|
+
* Type of registration to be created in `country`.
|
|
824
|
+
*/
|
|
825
|
+
type: 'standard';
|
|
826
|
+
}
|
|
827
|
+
|
|
828
|
+
namespace Bf {
|
|
829
|
+
interface Standard {
|
|
830
|
+
/**
|
|
831
|
+
* Place of supply scheme used in an standard registration.
|
|
832
|
+
*/
|
|
833
|
+
place_of_supply_scheme?: Standard.PlaceOfSupplyScheme;
|
|
834
|
+
}
|
|
835
|
+
|
|
836
|
+
namespace Standard {
|
|
837
|
+
type PlaceOfSupplyScheme = 'inbound_goods' | 'standard';
|
|
838
|
+
}
|
|
839
|
+
}
|
|
840
|
+
|
|
841
|
+
interface Bg {
|
|
842
|
+
/**
|
|
843
|
+
* Options for the standard registration.
|
|
844
|
+
*/
|
|
845
|
+
standard?: Bg.Standard;
|
|
846
|
+
|
|
847
|
+
/**
|
|
848
|
+
* Type of registration to be created in an EU country.
|
|
849
|
+
*/
|
|
850
|
+
type: Bg.Type;
|
|
851
|
+
}
|
|
852
|
+
|
|
853
|
+
namespace Bg {
|
|
854
|
+
interface Standard {
|
|
855
|
+
/**
|
|
856
|
+
* Place of supply scheme used in an EU standard registration.
|
|
857
|
+
*/
|
|
858
|
+
place_of_supply_scheme: Standard.PlaceOfSupplyScheme;
|
|
859
|
+
}
|
|
860
|
+
|
|
861
|
+
namespace Standard {
|
|
862
|
+
type PlaceOfSupplyScheme =
|
|
863
|
+
| 'inbound_goods'
|
|
864
|
+
| 'small_seller'
|
|
865
|
+
| 'standard';
|
|
866
|
+
}
|
|
867
|
+
|
|
868
|
+
type Type = 'ioss' | 'oss_non_union' | 'oss_union' | 'standard';
|
|
869
|
+
}
|
|
870
|
+
|
|
871
|
+
interface Bh {
|
|
872
|
+
/**
|
|
873
|
+
* Options for the standard registration.
|
|
874
|
+
*/
|
|
875
|
+
standard?: Bh.Standard;
|
|
876
|
+
|
|
877
|
+
/**
|
|
878
|
+
* Type of registration to be created in `country`.
|
|
879
|
+
*/
|
|
880
|
+
type: 'standard';
|
|
881
|
+
}
|
|
882
|
+
|
|
883
|
+
namespace Bh {
|
|
884
|
+
interface Standard {
|
|
885
|
+
/**
|
|
886
|
+
* Place of supply scheme used in an standard registration.
|
|
887
|
+
*/
|
|
888
|
+
place_of_supply_scheme?: Standard.PlaceOfSupplyScheme;
|
|
889
|
+
}
|
|
890
|
+
|
|
891
|
+
namespace Standard {
|
|
892
|
+
type PlaceOfSupplyScheme = 'inbound_goods' | 'standard';
|
|
893
|
+
}
|
|
894
|
+
}
|
|
895
|
+
|
|
896
|
+
interface Bj {
|
|
897
|
+
/**
|
|
898
|
+
* Type of registration to be created in `country`.
|
|
899
|
+
*/
|
|
900
|
+
type: 'simplified';
|
|
901
|
+
}
|
|
902
|
+
|
|
903
|
+
interface Bs {
|
|
904
|
+
/**
|
|
905
|
+
* Options for the standard registration.
|
|
906
|
+
*/
|
|
907
|
+
standard?: Bs.Standard;
|
|
908
|
+
|
|
909
|
+
/**
|
|
910
|
+
* Type of registration to be created in `country`.
|
|
911
|
+
*/
|
|
912
|
+
type: 'standard';
|
|
913
|
+
}
|
|
914
|
+
|
|
915
|
+
namespace Bs {
|
|
916
|
+
interface Standard {
|
|
917
|
+
/**
|
|
918
|
+
* Place of supply scheme used in an standard registration.
|
|
919
|
+
*/
|
|
920
|
+
place_of_supply_scheme?: Standard.PlaceOfSupplyScheme;
|
|
921
|
+
}
|
|
922
|
+
|
|
923
|
+
namespace Standard {
|
|
924
|
+
type PlaceOfSupplyScheme = 'inbound_goods' | 'standard';
|
|
925
|
+
}
|
|
926
|
+
}
|
|
927
|
+
|
|
928
|
+
interface By {
|
|
929
|
+
/**
|
|
930
|
+
* Type of registration to be created in `country`.
|
|
931
|
+
*/
|
|
932
|
+
type: 'simplified';
|
|
933
|
+
}
|
|
934
|
+
|
|
935
|
+
interface Ca {
|
|
936
|
+
/**
|
|
937
|
+
* Options for the provincial tax registration.
|
|
938
|
+
*/
|
|
939
|
+
province_standard?: Ca.ProvinceStandard;
|
|
940
|
+
|
|
941
|
+
/**
|
|
942
|
+
* Type of registration to be created in Canada.
|
|
943
|
+
*/
|
|
944
|
+
type: Ca.Type;
|
|
945
|
+
}
|
|
946
|
+
|
|
947
|
+
namespace Ca {
|
|
948
|
+
interface ProvinceStandard {
|
|
949
|
+
/**
|
|
950
|
+
* Two-letter CA province code ([ISO 3166-2](https://en.wikipedia.org/wiki/ISO_3166-2)).
|
|
951
|
+
*/
|
|
952
|
+
province: string;
|
|
953
|
+
}
|
|
954
|
+
|
|
955
|
+
type Type = 'province_standard' | 'simplified' | 'standard';
|
|
956
|
+
}
|
|
957
|
+
|
|
958
|
+
interface Cd {
|
|
959
|
+
/**
|
|
960
|
+
* Options for the standard registration.
|
|
961
|
+
*/
|
|
962
|
+
standard?: Cd.Standard;
|
|
963
|
+
|
|
964
|
+
/**
|
|
965
|
+
* Type of registration to be created in `country`.
|
|
966
|
+
*/
|
|
967
|
+
type: 'standard';
|
|
968
|
+
}
|
|
969
|
+
|
|
970
|
+
namespace Cd {
|
|
971
|
+
interface Standard {
|
|
972
|
+
/**
|
|
973
|
+
* Place of supply scheme used in an standard registration.
|
|
974
|
+
*/
|
|
975
|
+
place_of_supply_scheme?: Standard.PlaceOfSupplyScheme;
|
|
976
|
+
}
|
|
977
|
+
|
|
978
|
+
namespace Standard {
|
|
979
|
+
type PlaceOfSupplyScheme = 'inbound_goods' | 'standard';
|
|
980
|
+
}
|
|
981
|
+
}
|
|
982
|
+
|
|
983
|
+
interface Ch {
|
|
984
|
+
/**
|
|
985
|
+
* Options for the standard registration.
|
|
986
|
+
*/
|
|
987
|
+
standard?: Ch.Standard;
|
|
988
|
+
|
|
989
|
+
/**
|
|
990
|
+
* Type of registration to be created in `country`.
|
|
991
|
+
*/
|
|
992
|
+
type: 'standard';
|
|
993
|
+
}
|
|
994
|
+
|
|
995
|
+
namespace Ch {
|
|
996
|
+
interface Standard {
|
|
997
|
+
/**
|
|
998
|
+
* Place of supply scheme used in an standard registration.
|
|
999
|
+
*/
|
|
1000
|
+
place_of_supply_scheme?: Standard.PlaceOfSupplyScheme;
|
|
1001
|
+
}
|
|
1002
|
+
|
|
1003
|
+
namespace Standard {
|
|
1004
|
+
type PlaceOfSupplyScheme = 'inbound_goods' | 'standard';
|
|
1005
|
+
}
|
|
1006
|
+
}
|
|
1007
|
+
|
|
1008
|
+
interface Cl {
|
|
1009
|
+
/**
|
|
1010
|
+
* Type of registration to be created in `country`.
|
|
1011
|
+
*/
|
|
1012
|
+
type: 'simplified';
|
|
1013
|
+
}
|
|
1014
|
+
|
|
1015
|
+
interface Cm {
|
|
1016
|
+
/**
|
|
1017
|
+
* Type of registration to be created in `country`.
|
|
1018
|
+
*/
|
|
1019
|
+
type: 'simplified';
|
|
1020
|
+
}
|
|
1021
|
+
|
|
1022
|
+
interface Co {
|
|
1023
|
+
/**
|
|
1024
|
+
* Type of registration to be created in `country`.
|
|
1025
|
+
*/
|
|
1026
|
+
type: 'simplified';
|
|
1027
|
+
}
|
|
1028
|
+
|
|
1029
|
+
interface Cr {
|
|
1030
|
+
/**
|
|
1031
|
+
* Type of registration to be created in `country`.
|
|
1032
|
+
*/
|
|
1033
|
+
type: 'simplified';
|
|
1034
|
+
}
|
|
1035
|
+
|
|
1036
|
+
interface Cv {
|
|
1037
|
+
/**
|
|
1038
|
+
* Type of registration to be created in `country`.
|
|
1039
|
+
*/
|
|
1040
|
+
type: 'simplified';
|
|
1041
|
+
}
|
|
1042
|
+
|
|
1043
|
+
interface Cy {
|
|
1044
|
+
/**
|
|
1045
|
+
* Options for the standard registration.
|
|
1046
|
+
*/
|
|
1047
|
+
standard?: Cy.Standard;
|
|
1048
|
+
|
|
1049
|
+
/**
|
|
1050
|
+
* Type of registration to be created in an EU country.
|
|
1051
|
+
*/
|
|
1052
|
+
type: Cy.Type;
|
|
1053
|
+
}
|
|
1054
|
+
|
|
1055
|
+
namespace Cy {
|
|
1056
|
+
interface Standard {
|
|
1057
|
+
/**
|
|
1058
|
+
* Place of supply scheme used in an EU standard registration.
|
|
1059
|
+
*/
|
|
1060
|
+
place_of_supply_scheme: Standard.PlaceOfSupplyScheme;
|
|
1061
|
+
}
|
|
1062
|
+
|
|
1063
|
+
namespace Standard {
|
|
1064
|
+
type PlaceOfSupplyScheme =
|
|
1065
|
+
| 'inbound_goods'
|
|
1066
|
+
| 'small_seller'
|
|
1067
|
+
| 'standard';
|
|
1068
|
+
}
|
|
1069
|
+
|
|
1070
|
+
type Type = 'ioss' | 'oss_non_union' | 'oss_union' | 'standard';
|
|
1071
|
+
}
|
|
1072
|
+
|
|
1073
|
+
interface Cz {
|
|
1074
|
+
/**
|
|
1075
|
+
* Options for the standard registration.
|
|
1076
|
+
*/
|
|
1077
|
+
standard?: Cz.Standard;
|
|
1078
|
+
|
|
1079
|
+
/**
|
|
1080
|
+
* Type of registration to be created in an EU country.
|
|
1081
|
+
*/
|
|
1082
|
+
type: Cz.Type;
|
|
1083
|
+
}
|
|
1084
|
+
|
|
1085
|
+
namespace Cz {
|
|
1086
|
+
interface Standard {
|
|
1087
|
+
/**
|
|
1088
|
+
* Place of supply scheme used in an EU standard registration.
|
|
1089
|
+
*/
|
|
1090
|
+
place_of_supply_scheme: Standard.PlaceOfSupplyScheme;
|
|
1091
|
+
}
|
|
1092
|
+
|
|
1093
|
+
namespace Standard {
|
|
1094
|
+
type PlaceOfSupplyScheme =
|
|
1095
|
+
| 'inbound_goods'
|
|
1096
|
+
| 'small_seller'
|
|
1097
|
+
| 'standard';
|
|
1098
|
+
}
|
|
1099
|
+
|
|
1100
|
+
type Type = 'ioss' | 'oss_non_union' | 'oss_union' | 'standard';
|
|
1101
|
+
}
|
|
1102
|
+
|
|
1103
|
+
interface De {
|
|
1104
|
+
/**
|
|
1105
|
+
* Options for the standard registration.
|
|
1106
|
+
*/
|
|
1107
|
+
standard?: De.Standard;
|
|
1108
|
+
|
|
1109
|
+
/**
|
|
1110
|
+
* Type of registration to be created in an EU country.
|
|
1111
|
+
*/
|
|
1112
|
+
type: De.Type;
|
|
1113
|
+
}
|
|
1114
|
+
|
|
1115
|
+
namespace De {
|
|
1116
|
+
interface Standard {
|
|
1117
|
+
/**
|
|
1118
|
+
* Place of supply scheme used in an EU standard registration.
|
|
1119
|
+
*/
|
|
1120
|
+
place_of_supply_scheme: Standard.PlaceOfSupplyScheme;
|
|
1121
|
+
}
|
|
1122
|
+
|
|
1123
|
+
namespace Standard {
|
|
1124
|
+
type PlaceOfSupplyScheme =
|
|
1125
|
+
| 'inbound_goods'
|
|
1126
|
+
| 'small_seller'
|
|
1127
|
+
| 'standard';
|
|
1128
|
+
}
|
|
1129
|
+
|
|
1130
|
+
type Type = 'ioss' | 'oss_non_union' | 'oss_union' | 'standard';
|
|
1131
|
+
}
|
|
1132
|
+
|
|
1133
|
+
interface Dk {
|
|
1134
|
+
/**
|
|
1135
|
+
* Options for the standard registration.
|
|
1136
|
+
*/
|
|
1137
|
+
standard?: Dk.Standard;
|
|
1138
|
+
|
|
1139
|
+
/**
|
|
1140
|
+
* Type of registration to be created in an EU country.
|
|
1141
|
+
*/
|
|
1142
|
+
type: Dk.Type;
|
|
1143
|
+
}
|
|
1144
|
+
|
|
1145
|
+
namespace Dk {
|
|
1146
|
+
interface Standard {
|
|
1147
|
+
/**
|
|
1148
|
+
* Place of supply scheme used in an EU standard registration.
|
|
1149
|
+
*/
|
|
1150
|
+
place_of_supply_scheme: Standard.PlaceOfSupplyScheme;
|
|
1151
|
+
}
|
|
1152
|
+
|
|
1153
|
+
namespace Standard {
|
|
1154
|
+
type PlaceOfSupplyScheme =
|
|
1155
|
+
| 'inbound_goods'
|
|
1156
|
+
| 'small_seller'
|
|
1157
|
+
| 'standard';
|
|
1158
|
+
}
|
|
1159
|
+
|
|
1160
|
+
type Type = 'ioss' | 'oss_non_union' | 'oss_union' | 'standard';
|
|
1161
|
+
}
|
|
1162
|
+
|
|
1163
|
+
interface Ec {
|
|
1164
|
+
/**
|
|
1165
|
+
* Type of registration to be created in `country`.
|
|
1166
|
+
*/
|
|
1167
|
+
type: 'simplified';
|
|
1168
|
+
}
|
|
1169
|
+
|
|
1170
|
+
interface Ee {
|
|
1171
|
+
/**
|
|
1172
|
+
* Options for the standard registration.
|
|
1173
|
+
*/
|
|
1174
|
+
standard?: Ee.Standard;
|
|
1175
|
+
|
|
1176
|
+
/**
|
|
1177
|
+
* Type of registration to be created in an EU country.
|
|
1178
|
+
*/
|
|
1179
|
+
type: Ee.Type;
|
|
1180
|
+
}
|
|
1181
|
+
|
|
1182
|
+
namespace Ee {
|
|
1183
|
+
interface Standard {
|
|
1184
|
+
/**
|
|
1185
|
+
* Place of supply scheme used in an EU standard registration.
|
|
1186
|
+
*/
|
|
1187
|
+
place_of_supply_scheme: Standard.PlaceOfSupplyScheme;
|
|
1188
|
+
}
|
|
1189
|
+
|
|
1190
|
+
namespace Standard {
|
|
1191
|
+
type PlaceOfSupplyScheme =
|
|
1192
|
+
| 'inbound_goods'
|
|
1193
|
+
| 'small_seller'
|
|
1194
|
+
| 'standard';
|
|
1195
|
+
}
|
|
1196
|
+
|
|
1197
|
+
type Type = 'ioss' | 'oss_non_union' | 'oss_union' | 'standard';
|
|
1198
|
+
}
|
|
1199
|
+
|
|
1200
|
+
interface Eg {
|
|
1201
|
+
/**
|
|
1202
|
+
* Type of registration to be created in `country`.
|
|
1203
|
+
*/
|
|
1204
|
+
type: 'simplified';
|
|
1205
|
+
}
|
|
1206
|
+
|
|
1207
|
+
interface Es {
|
|
1208
|
+
/**
|
|
1209
|
+
* Options for the standard registration.
|
|
1210
|
+
*/
|
|
1211
|
+
standard?: Es.Standard;
|
|
1212
|
+
|
|
1213
|
+
/**
|
|
1214
|
+
* Type of registration to be created in an EU country.
|
|
1215
|
+
*/
|
|
1216
|
+
type: Es.Type;
|
|
1217
|
+
}
|
|
1218
|
+
|
|
1219
|
+
namespace Es {
|
|
1220
|
+
interface Standard {
|
|
1221
|
+
/**
|
|
1222
|
+
* Place of supply scheme used in an EU standard registration.
|
|
1223
|
+
*/
|
|
1224
|
+
place_of_supply_scheme: Standard.PlaceOfSupplyScheme;
|
|
1225
|
+
}
|
|
1226
|
+
|
|
1227
|
+
namespace Standard {
|
|
1228
|
+
type PlaceOfSupplyScheme =
|
|
1229
|
+
| 'inbound_goods'
|
|
1230
|
+
| 'small_seller'
|
|
1231
|
+
| 'standard';
|
|
1232
|
+
}
|
|
1233
|
+
|
|
1234
|
+
type Type = 'ioss' | 'oss_non_union' | 'oss_union' | 'standard';
|
|
1235
|
+
}
|
|
1236
|
+
|
|
1237
|
+
interface Et {
|
|
1238
|
+
/**
|
|
1239
|
+
* Options for the standard registration.
|
|
1240
|
+
*/
|
|
1241
|
+
standard?: Et.Standard;
|
|
1242
|
+
|
|
1243
|
+
/**
|
|
1244
|
+
* Type of registration to be created in `country`.
|
|
1245
|
+
*/
|
|
1246
|
+
type: 'standard';
|
|
1247
|
+
}
|
|
1248
|
+
|
|
1249
|
+
namespace Et {
|
|
1250
|
+
interface Standard {
|
|
1251
|
+
/**
|
|
1252
|
+
* Place of supply scheme used in an standard registration.
|
|
1253
|
+
*/
|
|
1254
|
+
place_of_supply_scheme?: Standard.PlaceOfSupplyScheme;
|
|
1255
|
+
}
|
|
1256
|
+
|
|
1257
|
+
namespace Standard {
|
|
1258
|
+
type PlaceOfSupplyScheme = 'inbound_goods' | 'standard';
|
|
1259
|
+
}
|
|
1260
|
+
}
|
|
1261
|
+
|
|
1262
|
+
interface Fi {
|
|
1263
|
+
/**
|
|
1264
|
+
* Options for the standard registration.
|
|
1265
|
+
*/
|
|
1266
|
+
standard?: Fi.Standard;
|
|
1267
|
+
|
|
1268
|
+
/**
|
|
1269
|
+
* Type of registration to be created in an EU country.
|
|
1270
|
+
*/
|
|
1271
|
+
type: Fi.Type;
|
|
1272
|
+
}
|
|
1273
|
+
|
|
1274
|
+
namespace Fi {
|
|
1275
|
+
interface Standard {
|
|
1276
|
+
/**
|
|
1277
|
+
* Place of supply scheme used in an EU standard registration.
|
|
1278
|
+
*/
|
|
1279
|
+
place_of_supply_scheme: Standard.PlaceOfSupplyScheme;
|
|
1280
|
+
}
|
|
1281
|
+
|
|
1282
|
+
namespace Standard {
|
|
1283
|
+
type PlaceOfSupplyScheme =
|
|
1284
|
+
| 'inbound_goods'
|
|
1285
|
+
| 'small_seller'
|
|
1286
|
+
| 'standard';
|
|
1287
|
+
}
|
|
1288
|
+
|
|
1289
|
+
type Type = 'ioss' | 'oss_non_union' | 'oss_union' | 'standard';
|
|
1290
|
+
}
|
|
1291
|
+
|
|
1292
|
+
interface Fr {
|
|
1293
|
+
/**
|
|
1294
|
+
* Options for the standard registration.
|
|
1295
|
+
*/
|
|
1296
|
+
standard?: Fr.Standard;
|
|
1297
|
+
|
|
1298
|
+
/**
|
|
1299
|
+
* Type of registration to be created in an EU country.
|
|
1300
|
+
*/
|
|
1301
|
+
type: Fr.Type;
|
|
1302
|
+
}
|
|
1303
|
+
|
|
1304
|
+
namespace Fr {
|
|
1305
|
+
interface Standard {
|
|
1306
|
+
/**
|
|
1307
|
+
* Place of supply scheme used in an EU standard registration.
|
|
1308
|
+
*/
|
|
1309
|
+
place_of_supply_scheme: Standard.PlaceOfSupplyScheme;
|
|
1310
|
+
}
|
|
1311
|
+
|
|
1312
|
+
namespace Standard {
|
|
1313
|
+
type PlaceOfSupplyScheme =
|
|
1314
|
+
| 'inbound_goods'
|
|
1315
|
+
| 'small_seller'
|
|
1316
|
+
| 'standard';
|
|
1317
|
+
}
|
|
1318
|
+
|
|
1319
|
+
type Type = 'ioss' | 'oss_non_union' | 'oss_union' | 'standard';
|
|
1320
|
+
}
|
|
1321
|
+
|
|
1322
|
+
interface Gb {
|
|
1323
|
+
/**
|
|
1324
|
+
* Options for the standard registration.
|
|
1325
|
+
*/
|
|
1326
|
+
standard?: Gb.Standard;
|
|
1327
|
+
|
|
1328
|
+
/**
|
|
1329
|
+
* Type of registration to be created in `country`.
|
|
1330
|
+
*/
|
|
1331
|
+
type: 'standard';
|
|
1332
|
+
}
|
|
1333
|
+
|
|
1334
|
+
namespace Gb {
|
|
1335
|
+
interface Standard {
|
|
1336
|
+
/**
|
|
1337
|
+
* Place of supply scheme used in an standard registration.
|
|
1338
|
+
*/
|
|
1339
|
+
place_of_supply_scheme?: Standard.PlaceOfSupplyScheme;
|
|
1340
|
+
}
|
|
1341
|
+
|
|
1342
|
+
namespace Standard {
|
|
1343
|
+
type PlaceOfSupplyScheme = 'inbound_goods' | 'standard';
|
|
1344
|
+
}
|
|
1345
|
+
}
|
|
1346
|
+
|
|
1347
|
+
interface Ge {
|
|
1348
|
+
/**
|
|
1349
|
+
* Type of registration to be created in `country`.
|
|
1350
|
+
*/
|
|
1351
|
+
type: 'simplified';
|
|
1352
|
+
}
|
|
1353
|
+
|
|
1354
|
+
interface Gn {
|
|
1355
|
+
/**
|
|
1356
|
+
* Options for the standard registration.
|
|
1357
|
+
*/
|
|
1358
|
+
standard?: Gn.Standard;
|
|
1359
|
+
|
|
1360
|
+
/**
|
|
1361
|
+
* Type of registration to be created in `country`.
|
|
1362
|
+
*/
|
|
1363
|
+
type: 'standard';
|
|
1364
|
+
}
|
|
1365
|
+
|
|
1366
|
+
namespace Gn {
|
|
1367
|
+
interface Standard {
|
|
1368
|
+
/**
|
|
1369
|
+
* Place of supply scheme used in an standard registration.
|
|
1370
|
+
*/
|
|
1371
|
+
place_of_supply_scheme?: Standard.PlaceOfSupplyScheme;
|
|
1372
|
+
}
|
|
1373
|
+
|
|
1374
|
+
namespace Standard {
|
|
1375
|
+
type PlaceOfSupplyScheme = 'inbound_goods' | 'standard';
|
|
1376
|
+
}
|
|
1377
|
+
}
|
|
1378
|
+
|
|
1379
|
+
interface Gr {
|
|
1380
|
+
/**
|
|
1381
|
+
* Options for the standard registration.
|
|
1382
|
+
*/
|
|
1383
|
+
standard?: Gr.Standard;
|
|
1384
|
+
|
|
1385
|
+
/**
|
|
1386
|
+
* Type of registration to be created in an EU country.
|
|
1387
|
+
*/
|
|
1388
|
+
type: Gr.Type;
|
|
1389
|
+
}
|
|
1390
|
+
|
|
1391
|
+
namespace Gr {
|
|
1392
|
+
interface Standard {
|
|
1393
|
+
/**
|
|
1394
|
+
* Place of supply scheme used in an EU standard registration.
|
|
1395
|
+
*/
|
|
1396
|
+
place_of_supply_scheme: Standard.PlaceOfSupplyScheme;
|
|
1397
|
+
}
|
|
1398
|
+
|
|
1399
|
+
namespace Standard {
|
|
1400
|
+
type PlaceOfSupplyScheme =
|
|
1401
|
+
| 'inbound_goods'
|
|
1402
|
+
| 'small_seller'
|
|
1403
|
+
| 'standard';
|
|
1404
|
+
}
|
|
1405
|
+
|
|
1406
|
+
type Type = 'ioss' | 'oss_non_union' | 'oss_union' | 'standard';
|
|
1407
|
+
}
|
|
1408
|
+
|
|
1409
|
+
interface Hr {
|
|
1410
|
+
/**
|
|
1411
|
+
* Options for the standard registration.
|
|
1412
|
+
*/
|
|
1413
|
+
standard?: Hr.Standard;
|
|
1414
|
+
|
|
1415
|
+
/**
|
|
1416
|
+
* Type of registration to be created in an EU country.
|
|
1417
|
+
*/
|
|
1418
|
+
type: Hr.Type;
|
|
1419
|
+
}
|
|
1420
|
+
|
|
1421
|
+
namespace Hr {
|
|
1422
|
+
interface Standard {
|
|
1423
|
+
/**
|
|
1424
|
+
* Place of supply scheme used in an EU standard registration.
|
|
1425
|
+
*/
|
|
1426
|
+
place_of_supply_scheme: Standard.PlaceOfSupplyScheme;
|
|
1427
|
+
}
|
|
1428
|
+
|
|
1429
|
+
namespace Standard {
|
|
1430
|
+
type PlaceOfSupplyScheme =
|
|
1431
|
+
| 'inbound_goods'
|
|
1432
|
+
| 'small_seller'
|
|
1433
|
+
| 'standard';
|
|
1434
|
+
}
|
|
1435
|
+
|
|
1436
|
+
type Type = 'ioss' | 'oss_non_union' | 'oss_union' | 'standard';
|
|
1437
|
+
}
|
|
1438
|
+
|
|
1439
|
+
interface Hu {
|
|
1440
|
+
/**
|
|
1441
|
+
* Options for the standard registration.
|
|
1442
|
+
*/
|
|
1443
|
+
standard?: Hu.Standard;
|
|
1444
|
+
|
|
1445
|
+
/**
|
|
1446
|
+
* Type of registration to be created in an EU country.
|
|
1447
|
+
*/
|
|
1448
|
+
type: Hu.Type;
|
|
1449
|
+
}
|
|
1450
|
+
|
|
1451
|
+
namespace Hu {
|
|
1452
|
+
interface Standard {
|
|
1453
|
+
/**
|
|
1454
|
+
* Place of supply scheme used in an EU standard registration.
|
|
1455
|
+
*/
|
|
1456
|
+
place_of_supply_scheme: Standard.PlaceOfSupplyScheme;
|
|
1457
|
+
}
|
|
1458
|
+
|
|
1459
|
+
namespace Standard {
|
|
1460
|
+
type PlaceOfSupplyScheme =
|
|
1461
|
+
| 'inbound_goods'
|
|
1462
|
+
| 'small_seller'
|
|
1463
|
+
| 'standard';
|
|
1464
|
+
}
|
|
1465
|
+
|
|
1466
|
+
type Type = 'ioss' | 'oss_non_union' | 'oss_union' | 'standard';
|
|
1467
|
+
}
|
|
1468
|
+
|
|
1469
|
+
interface Id {
|
|
1470
|
+
/**
|
|
1471
|
+
* Type of registration to be created in `country`.
|
|
1472
|
+
*/
|
|
1473
|
+
type: 'simplified';
|
|
1474
|
+
}
|
|
1475
|
+
|
|
1476
|
+
interface Ie {
|
|
1477
|
+
/**
|
|
1478
|
+
* Options for the standard registration.
|
|
1479
|
+
*/
|
|
1480
|
+
standard?: Ie.Standard;
|
|
1481
|
+
|
|
1482
|
+
/**
|
|
1483
|
+
* Type of registration to be created in an EU country.
|
|
1484
|
+
*/
|
|
1485
|
+
type: Ie.Type;
|
|
1486
|
+
}
|
|
1487
|
+
|
|
1488
|
+
namespace Ie {
|
|
1489
|
+
interface Standard {
|
|
1490
|
+
/**
|
|
1491
|
+
* Place of supply scheme used in an EU standard registration.
|
|
1492
|
+
*/
|
|
1493
|
+
place_of_supply_scheme: Standard.PlaceOfSupplyScheme;
|
|
1494
|
+
}
|
|
1495
|
+
|
|
1496
|
+
namespace Standard {
|
|
1497
|
+
type PlaceOfSupplyScheme =
|
|
1498
|
+
| 'inbound_goods'
|
|
1499
|
+
| 'small_seller'
|
|
1500
|
+
| 'standard';
|
|
1501
|
+
}
|
|
1502
|
+
|
|
1503
|
+
type Type = 'ioss' | 'oss_non_union' | 'oss_union' | 'standard';
|
|
1504
|
+
}
|
|
1505
|
+
|
|
1506
|
+
interface In {
|
|
1507
|
+
/**
|
|
1508
|
+
* Type of registration to be created in `country`.
|
|
1509
|
+
*/
|
|
1510
|
+
type: 'simplified';
|
|
1511
|
+
}
|
|
1512
|
+
|
|
1513
|
+
interface Is {
|
|
1514
|
+
/**
|
|
1515
|
+
* Options for the standard registration.
|
|
1516
|
+
*/
|
|
1517
|
+
standard?: Is.Standard;
|
|
1518
|
+
|
|
1519
|
+
/**
|
|
1520
|
+
* Type of registration to be created in `country`.
|
|
1521
|
+
*/
|
|
1522
|
+
type: 'standard';
|
|
1523
|
+
}
|
|
1524
|
+
|
|
1525
|
+
namespace Is {
|
|
1526
|
+
interface Standard {
|
|
1527
|
+
/**
|
|
1528
|
+
* Place of supply scheme used in an standard registration.
|
|
1529
|
+
*/
|
|
1530
|
+
place_of_supply_scheme?: Standard.PlaceOfSupplyScheme;
|
|
1531
|
+
}
|
|
1532
|
+
|
|
1533
|
+
namespace Standard {
|
|
1534
|
+
type PlaceOfSupplyScheme = 'inbound_goods' | 'standard';
|
|
1535
|
+
}
|
|
1536
|
+
}
|
|
1537
|
+
|
|
1538
|
+
interface It {
|
|
1539
|
+
/**
|
|
1540
|
+
* Options for the standard registration.
|
|
1541
|
+
*/
|
|
1542
|
+
standard?: It.Standard;
|
|
1543
|
+
|
|
1544
|
+
/**
|
|
1545
|
+
* Type of registration to be created in an EU country.
|
|
1546
|
+
*/
|
|
1547
|
+
type: It.Type;
|
|
1548
|
+
}
|
|
1549
|
+
|
|
1550
|
+
namespace It {
|
|
1551
|
+
interface Standard {
|
|
1552
|
+
/**
|
|
1553
|
+
* Place of supply scheme used in an EU standard registration.
|
|
1554
|
+
*/
|
|
1555
|
+
place_of_supply_scheme: Standard.PlaceOfSupplyScheme;
|
|
1556
|
+
}
|
|
1557
|
+
|
|
1558
|
+
namespace Standard {
|
|
1559
|
+
type PlaceOfSupplyScheme =
|
|
1560
|
+
| 'inbound_goods'
|
|
1561
|
+
| 'small_seller'
|
|
1562
|
+
| 'standard';
|
|
1563
|
+
}
|
|
1564
|
+
|
|
1565
|
+
type Type = 'ioss' | 'oss_non_union' | 'oss_union' | 'standard';
|
|
1566
|
+
}
|
|
1567
|
+
|
|
1568
|
+
interface Jp {
|
|
1569
|
+
/**
|
|
1570
|
+
* Options for the standard registration.
|
|
1571
|
+
*/
|
|
1572
|
+
standard?: Jp.Standard;
|
|
1573
|
+
|
|
1574
|
+
/**
|
|
1575
|
+
* Type of registration to be created in `country`.
|
|
1576
|
+
*/
|
|
1577
|
+
type: 'standard';
|
|
1578
|
+
}
|
|
1579
|
+
|
|
1580
|
+
namespace Jp {
|
|
1581
|
+
interface Standard {
|
|
1582
|
+
/**
|
|
1583
|
+
* Place of supply scheme used in an standard registration.
|
|
1584
|
+
*/
|
|
1585
|
+
place_of_supply_scheme?: Standard.PlaceOfSupplyScheme;
|
|
1586
|
+
}
|
|
1587
|
+
|
|
1588
|
+
namespace Standard {
|
|
1589
|
+
type PlaceOfSupplyScheme = 'inbound_goods' | 'standard';
|
|
1590
|
+
}
|
|
1591
|
+
}
|
|
1592
|
+
|
|
1593
|
+
interface Ke {
|
|
1594
|
+
/**
|
|
1595
|
+
* Type of registration to be created in `country`.
|
|
1596
|
+
*/
|
|
1597
|
+
type: 'simplified';
|
|
1598
|
+
}
|
|
1599
|
+
|
|
1600
|
+
interface Kg {
|
|
1601
|
+
/**
|
|
1602
|
+
* Type of registration to be created in `country`.
|
|
1603
|
+
*/
|
|
1604
|
+
type: 'simplified';
|
|
1605
|
+
}
|
|
1606
|
+
|
|
1607
|
+
interface Kh {
|
|
1608
|
+
/**
|
|
1609
|
+
* Type of registration to be created in `country`.
|
|
1610
|
+
*/
|
|
1611
|
+
type: 'simplified';
|
|
1612
|
+
}
|
|
1613
|
+
|
|
1614
|
+
interface Kr {
|
|
1615
|
+
/**
|
|
1616
|
+
* Type of registration to be created in `country`.
|
|
1617
|
+
*/
|
|
1618
|
+
type: 'simplified';
|
|
1619
|
+
}
|
|
1620
|
+
|
|
1621
|
+
interface Kz {
|
|
1622
|
+
/**
|
|
1623
|
+
* Type of registration to be created in `country`.
|
|
1624
|
+
*/
|
|
1625
|
+
type: 'simplified';
|
|
1626
|
+
}
|
|
1627
|
+
|
|
1628
|
+
interface La {
|
|
1629
|
+
/**
|
|
1630
|
+
* Type of registration to be created in `country`.
|
|
1631
|
+
*/
|
|
1632
|
+
type: 'simplified';
|
|
1633
|
+
}
|
|
1634
|
+
|
|
1635
|
+
interface Lk {
|
|
1636
|
+
/**
|
|
1637
|
+
* Type of registration to be created in `country`.
|
|
1638
|
+
*/
|
|
1639
|
+
type: 'simplified';
|
|
1640
|
+
}
|
|
1641
|
+
|
|
1642
|
+
interface Lt {
|
|
1643
|
+
/**
|
|
1644
|
+
* Options for the standard registration.
|
|
1645
|
+
*/
|
|
1646
|
+
standard?: Lt.Standard;
|
|
1647
|
+
|
|
1648
|
+
/**
|
|
1649
|
+
* Type of registration to be created in an EU country.
|
|
1650
|
+
*/
|
|
1651
|
+
type: Lt.Type;
|
|
1652
|
+
}
|
|
1653
|
+
|
|
1654
|
+
namespace Lt {
|
|
1655
|
+
interface Standard {
|
|
1656
|
+
/**
|
|
1657
|
+
* Place of supply scheme used in an EU standard registration.
|
|
1658
|
+
*/
|
|
1659
|
+
place_of_supply_scheme: Standard.PlaceOfSupplyScheme;
|
|
1660
|
+
}
|
|
1661
|
+
|
|
1662
|
+
namespace Standard {
|
|
1663
|
+
type PlaceOfSupplyScheme =
|
|
1664
|
+
| 'inbound_goods'
|
|
1665
|
+
| 'small_seller'
|
|
1666
|
+
| 'standard';
|
|
1667
|
+
}
|
|
1668
|
+
|
|
1669
|
+
type Type = 'ioss' | 'oss_non_union' | 'oss_union' | 'standard';
|
|
1670
|
+
}
|
|
1671
|
+
|
|
1672
|
+
interface Lu {
|
|
1673
|
+
/**
|
|
1674
|
+
* Options for the standard registration.
|
|
1675
|
+
*/
|
|
1676
|
+
standard?: Lu.Standard;
|
|
1677
|
+
|
|
1678
|
+
/**
|
|
1679
|
+
* Type of registration to be created in an EU country.
|
|
1680
|
+
*/
|
|
1681
|
+
type: Lu.Type;
|
|
1682
|
+
}
|
|
1683
|
+
|
|
1684
|
+
namespace Lu {
|
|
1685
|
+
interface Standard {
|
|
1686
|
+
/**
|
|
1687
|
+
* Place of supply scheme used in an EU standard registration.
|
|
1688
|
+
*/
|
|
1689
|
+
place_of_supply_scheme: Standard.PlaceOfSupplyScheme;
|
|
1690
|
+
}
|
|
1691
|
+
|
|
1692
|
+
namespace Standard {
|
|
1693
|
+
type PlaceOfSupplyScheme =
|
|
1694
|
+
| 'inbound_goods'
|
|
1695
|
+
| 'small_seller'
|
|
1696
|
+
| 'standard';
|
|
1697
|
+
}
|
|
1698
|
+
|
|
1699
|
+
type Type = 'ioss' | 'oss_non_union' | 'oss_union' | 'standard';
|
|
1700
|
+
}
|
|
1701
|
+
|
|
1702
|
+
interface Lv {
|
|
1703
|
+
/**
|
|
1704
|
+
* Options for the standard registration.
|
|
1705
|
+
*/
|
|
1706
|
+
standard?: Lv.Standard;
|
|
1707
|
+
|
|
1708
|
+
/**
|
|
1709
|
+
* Type of registration to be created in an EU country.
|
|
1710
|
+
*/
|
|
1711
|
+
type: Lv.Type;
|
|
1712
|
+
}
|
|
1713
|
+
|
|
1714
|
+
namespace Lv {
|
|
1715
|
+
interface Standard {
|
|
1716
|
+
/**
|
|
1717
|
+
* Place of supply scheme used in an EU standard registration.
|
|
1718
|
+
*/
|
|
1719
|
+
place_of_supply_scheme: Standard.PlaceOfSupplyScheme;
|
|
1720
|
+
}
|
|
1721
|
+
|
|
1722
|
+
namespace Standard {
|
|
1723
|
+
type PlaceOfSupplyScheme =
|
|
1724
|
+
| 'inbound_goods'
|
|
1725
|
+
| 'small_seller'
|
|
1726
|
+
| 'standard';
|
|
1727
|
+
}
|
|
1728
|
+
|
|
1729
|
+
type Type = 'ioss' | 'oss_non_union' | 'oss_union' | 'standard';
|
|
1730
|
+
}
|
|
1731
|
+
|
|
1732
|
+
interface Ma {
|
|
1733
|
+
/**
|
|
1734
|
+
* Type of registration to be created in `country`.
|
|
1735
|
+
*/
|
|
1736
|
+
type: 'simplified';
|
|
1737
|
+
}
|
|
1738
|
+
|
|
1739
|
+
interface Md {
|
|
1740
|
+
/**
|
|
1741
|
+
* Type of registration to be created in `country`.
|
|
1742
|
+
*/
|
|
1743
|
+
type: 'simplified';
|
|
1744
|
+
}
|
|
1745
|
+
|
|
1746
|
+
interface Me {
|
|
1747
|
+
/**
|
|
1748
|
+
* Options for the standard registration.
|
|
1749
|
+
*/
|
|
1750
|
+
standard?: Me.Standard;
|
|
1751
|
+
|
|
1752
|
+
/**
|
|
1753
|
+
* Type of registration to be created in `country`.
|
|
1754
|
+
*/
|
|
1755
|
+
type: 'standard';
|
|
1756
|
+
}
|
|
1757
|
+
|
|
1758
|
+
namespace Me {
|
|
1759
|
+
interface Standard {
|
|
1760
|
+
/**
|
|
1761
|
+
* Place of supply scheme used in an standard registration.
|
|
1762
|
+
*/
|
|
1763
|
+
place_of_supply_scheme?: Standard.PlaceOfSupplyScheme;
|
|
1764
|
+
}
|
|
1765
|
+
|
|
1766
|
+
namespace Standard {
|
|
1767
|
+
type PlaceOfSupplyScheme = 'inbound_goods' | 'standard';
|
|
1768
|
+
}
|
|
1769
|
+
}
|
|
1770
|
+
|
|
1771
|
+
interface Mk {
|
|
1772
|
+
/**
|
|
1773
|
+
* Options for the standard registration.
|
|
1774
|
+
*/
|
|
1775
|
+
standard?: Mk.Standard;
|
|
1776
|
+
|
|
1777
|
+
/**
|
|
1778
|
+
* Type of registration to be created in `country`.
|
|
1779
|
+
*/
|
|
1780
|
+
type: 'standard';
|
|
1781
|
+
}
|
|
1782
|
+
|
|
1783
|
+
namespace Mk {
|
|
1784
|
+
interface Standard {
|
|
1785
|
+
/**
|
|
1786
|
+
* Place of supply scheme used in an standard registration.
|
|
1787
|
+
*/
|
|
1788
|
+
place_of_supply_scheme?: Standard.PlaceOfSupplyScheme;
|
|
1789
|
+
}
|
|
1790
|
+
|
|
1791
|
+
namespace Standard {
|
|
1792
|
+
type PlaceOfSupplyScheme = 'inbound_goods' | 'standard';
|
|
1793
|
+
}
|
|
1794
|
+
}
|
|
1795
|
+
|
|
1796
|
+
interface Mr {
|
|
1797
|
+
/**
|
|
1798
|
+
* Options for the standard registration.
|
|
1799
|
+
*/
|
|
1800
|
+
standard?: Mr.Standard;
|
|
1801
|
+
|
|
1802
|
+
/**
|
|
1803
|
+
* Type of registration to be created in `country`.
|
|
1804
|
+
*/
|
|
1805
|
+
type: 'standard';
|
|
1806
|
+
}
|
|
1807
|
+
|
|
1808
|
+
namespace Mr {
|
|
1809
|
+
interface Standard {
|
|
1810
|
+
/**
|
|
1811
|
+
* Place of supply scheme used in an standard registration.
|
|
1812
|
+
*/
|
|
1813
|
+
place_of_supply_scheme?: Standard.PlaceOfSupplyScheme;
|
|
1814
|
+
}
|
|
1815
|
+
|
|
1816
|
+
namespace Standard {
|
|
1817
|
+
type PlaceOfSupplyScheme = 'inbound_goods' | 'standard';
|
|
1818
|
+
}
|
|
1819
|
+
}
|
|
1820
|
+
|
|
1821
|
+
interface Mt {
|
|
1822
|
+
/**
|
|
1823
|
+
* Options for the standard registration.
|
|
1824
|
+
*/
|
|
1825
|
+
standard?: Mt.Standard;
|
|
1826
|
+
|
|
1827
|
+
/**
|
|
1828
|
+
* Type of registration to be created in an EU country.
|
|
1829
|
+
*/
|
|
1830
|
+
type: Mt.Type;
|
|
1831
|
+
}
|
|
1832
|
+
|
|
1833
|
+
namespace Mt {
|
|
1834
|
+
interface Standard {
|
|
1835
|
+
/**
|
|
1836
|
+
* Place of supply scheme used in an EU standard registration.
|
|
1837
|
+
*/
|
|
1838
|
+
place_of_supply_scheme: Standard.PlaceOfSupplyScheme;
|
|
1839
|
+
}
|
|
1840
|
+
|
|
1841
|
+
namespace Standard {
|
|
1842
|
+
type PlaceOfSupplyScheme =
|
|
1843
|
+
| 'inbound_goods'
|
|
1844
|
+
| 'small_seller'
|
|
1845
|
+
| 'standard';
|
|
1846
|
+
}
|
|
1847
|
+
|
|
1848
|
+
type Type = 'ioss' | 'oss_non_union' | 'oss_union' | 'standard';
|
|
1849
|
+
}
|
|
1850
|
+
|
|
1851
|
+
interface Mx {
|
|
1852
|
+
/**
|
|
1853
|
+
* Type of registration to be created in `country`.
|
|
1854
|
+
*/
|
|
1855
|
+
type: 'simplified';
|
|
1856
|
+
}
|
|
1857
|
+
|
|
1858
|
+
interface My {
|
|
1859
|
+
/**
|
|
1860
|
+
* Type of registration to be created in `country`.
|
|
1861
|
+
*/
|
|
1862
|
+
type: 'simplified';
|
|
1863
|
+
}
|
|
1864
|
+
|
|
1865
|
+
interface Ng {
|
|
1866
|
+
/**
|
|
1867
|
+
* Type of registration to be created in `country`.
|
|
1868
|
+
*/
|
|
1869
|
+
type: 'simplified';
|
|
1870
|
+
}
|
|
1871
|
+
|
|
1872
|
+
interface Nl {
|
|
1873
|
+
/**
|
|
1874
|
+
* Options for the standard registration.
|
|
1875
|
+
*/
|
|
1876
|
+
standard?: Nl.Standard;
|
|
1877
|
+
|
|
1878
|
+
/**
|
|
1879
|
+
* Type of registration to be created in an EU country.
|
|
1880
|
+
*/
|
|
1881
|
+
type: Nl.Type;
|
|
1882
|
+
}
|
|
1883
|
+
|
|
1884
|
+
namespace Nl {
|
|
1885
|
+
interface Standard {
|
|
1886
|
+
/**
|
|
1887
|
+
* Place of supply scheme used in an EU standard registration.
|
|
1888
|
+
*/
|
|
1889
|
+
place_of_supply_scheme: Standard.PlaceOfSupplyScheme;
|
|
1890
|
+
}
|
|
1891
|
+
|
|
1892
|
+
namespace Standard {
|
|
1893
|
+
type PlaceOfSupplyScheme =
|
|
1894
|
+
| 'inbound_goods'
|
|
1895
|
+
| 'small_seller'
|
|
1896
|
+
| 'standard';
|
|
1897
|
+
}
|
|
1898
|
+
|
|
1899
|
+
type Type = 'ioss' | 'oss_non_union' | 'oss_union' | 'standard';
|
|
1900
|
+
}
|
|
1901
|
+
|
|
1902
|
+
interface No {
|
|
1903
|
+
/**
|
|
1904
|
+
* Options for the standard registration.
|
|
1905
|
+
*/
|
|
1906
|
+
standard?: No.Standard;
|
|
1907
|
+
|
|
1908
|
+
/**
|
|
1909
|
+
* Type of registration to be created in `country`.
|
|
1910
|
+
*/
|
|
1911
|
+
type: 'standard';
|
|
1912
|
+
}
|
|
1913
|
+
|
|
1914
|
+
namespace No {
|
|
1915
|
+
interface Standard {
|
|
1916
|
+
/**
|
|
1917
|
+
* Place of supply scheme used in an standard registration.
|
|
1918
|
+
*/
|
|
1919
|
+
place_of_supply_scheme?: Standard.PlaceOfSupplyScheme;
|
|
1920
|
+
}
|
|
1921
|
+
|
|
1922
|
+
namespace Standard {
|
|
1923
|
+
type PlaceOfSupplyScheme = 'inbound_goods' | 'standard';
|
|
1924
|
+
}
|
|
1925
|
+
}
|
|
1926
|
+
|
|
1927
|
+
interface Np {
|
|
1928
|
+
/**
|
|
1929
|
+
* Type of registration to be created in `country`.
|
|
1930
|
+
*/
|
|
1931
|
+
type: 'simplified';
|
|
1932
|
+
}
|
|
1933
|
+
|
|
1934
|
+
interface Nz {
|
|
1935
|
+
/**
|
|
1936
|
+
* Options for the standard registration.
|
|
1937
|
+
*/
|
|
1938
|
+
standard?: Nz.Standard;
|
|
1939
|
+
|
|
1940
|
+
/**
|
|
1941
|
+
* Type of registration to be created in `country`.
|
|
1942
|
+
*/
|
|
1943
|
+
type: 'standard';
|
|
1944
|
+
}
|
|
1945
|
+
|
|
1946
|
+
namespace Nz {
|
|
1947
|
+
interface Standard {
|
|
1948
|
+
/**
|
|
1949
|
+
* Place of supply scheme used in an standard registration.
|
|
1950
|
+
*/
|
|
1951
|
+
place_of_supply_scheme?: Standard.PlaceOfSupplyScheme;
|
|
1952
|
+
}
|
|
1953
|
+
|
|
1954
|
+
namespace Standard {
|
|
1955
|
+
type PlaceOfSupplyScheme = 'inbound_goods' | 'standard';
|
|
1956
|
+
}
|
|
1957
|
+
}
|
|
1958
|
+
|
|
1959
|
+
interface Om {
|
|
1960
|
+
/**
|
|
1961
|
+
* Options for the standard registration.
|
|
1962
|
+
*/
|
|
1963
|
+
standard?: Om.Standard;
|
|
1964
|
+
|
|
1965
|
+
/**
|
|
1966
|
+
* Type of registration to be created in `country`.
|
|
1967
|
+
*/
|
|
1968
|
+
type: 'standard';
|
|
1969
|
+
}
|
|
1970
|
+
|
|
1971
|
+
namespace Om {
|
|
1972
|
+
interface Standard {
|
|
1973
|
+
/**
|
|
1974
|
+
* Place of supply scheme used in an standard registration.
|
|
1975
|
+
*/
|
|
1976
|
+
place_of_supply_scheme?: Standard.PlaceOfSupplyScheme;
|
|
1977
|
+
}
|
|
1978
|
+
|
|
1979
|
+
namespace Standard {
|
|
1980
|
+
type PlaceOfSupplyScheme = 'inbound_goods' | 'standard';
|
|
1981
|
+
}
|
|
1982
|
+
}
|
|
1983
|
+
|
|
1984
|
+
interface Pe {
|
|
1985
|
+
/**
|
|
1986
|
+
* Type of registration to be created in `country`.
|
|
1987
|
+
*/
|
|
1988
|
+
type: 'simplified';
|
|
1989
|
+
}
|
|
1990
|
+
|
|
1991
|
+
interface Ph {
|
|
1992
|
+
/**
|
|
1993
|
+
* Type of registration to be created in `country`.
|
|
1994
|
+
*/
|
|
1995
|
+
type: 'simplified';
|
|
1996
|
+
}
|
|
1997
|
+
|
|
1998
|
+
interface Pl {
|
|
1999
|
+
/**
|
|
2000
|
+
* Options for the standard registration.
|
|
2001
|
+
*/
|
|
2002
|
+
standard?: Pl.Standard;
|
|
2003
|
+
|
|
2004
|
+
/**
|
|
2005
|
+
* Type of registration to be created in an EU country.
|
|
2006
|
+
*/
|
|
2007
|
+
type: Pl.Type;
|
|
2008
|
+
}
|
|
2009
|
+
|
|
2010
|
+
namespace Pl {
|
|
2011
|
+
interface Standard {
|
|
2012
|
+
/**
|
|
2013
|
+
* Place of supply scheme used in an EU standard registration.
|
|
2014
|
+
*/
|
|
2015
|
+
place_of_supply_scheme: Standard.PlaceOfSupplyScheme;
|
|
2016
|
+
}
|
|
2017
|
+
|
|
2018
|
+
namespace Standard {
|
|
2019
|
+
type PlaceOfSupplyScheme =
|
|
2020
|
+
| 'inbound_goods'
|
|
2021
|
+
| 'small_seller'
|
|
2022
|
+
| 'standard';
|
|
2023
|
+
}
|
|
2024
|
+
|
|
2025
|
+
type Type = 'ioss' | 'oss_non_union' | 'oss_union' | 'standard';
|
|
2026
|
+
}
|
|
2027
|
+
|
|
2028
|
+
interface Pt {
|
|
2029
|
+
/**
|
|
2030
|
+
* Options for the standard registration.
|
|
2031
|
+
*/
|
|
2032
|
+
standard?: Pt.Standard;
|
|
2033
|
+
|
|
2034
|
+
/**
|
|
2035
|
+
* Type of registration to be created in an EU country.
|
|
2036
|
+
*/
|
|
2037
|
+
type: Pt.Type;
|
|
2038
|
+
}
|
|
2039
|
+
|
|
2040
|
+
namespace Pt {
|
|
2041
|
+
interface Standard {
|
|
2042
|
+
/**
|
|
2043
|
+
* Place of supply scheme used in an EU standard registration.
|
|
2044
|
+
*/
|
|
2045
|
+
place_of_supply_scheme: Standard.PlaceOfSupplyScheme;
|
|
2046
|
+
}
|
|
2047
|
+
|
|
2048
|
+
namespace Standard {
|
|
2049
|
+
type PlaceOfSupplyScheme =
|
|
2050
|
+
| 'inbound_goods'
|
|
2051
|
+
| 'small_seller'
|
|
2052
|
+
| 'standard';
|
|
2053
|
+
}
|
|
2054
|
+
|
|
2055
|
+
type Type = 'ioss' | 'oss_non_union' | 'oss_union' | 'standard';
|
|
2056
|
+
}
|
|
2057
|
+
|
|
2058
|
+
interface Ro {
|
|
2059
|
+
/**
|
|
2060
|
+
* Options for the standard registration.
|
|
2061
|
+
*/
|
|
2062
|
+
standard?: Ro.Standard;
|
|
2063
|
+
|
|
2064
|
+
/**
|
|
2065
|
+
* Type of registration to be created in an EU country.
|
|
2066
|
+
*/
|
|
2067
|
+
type: Ro.Type;
|
|
2068
|
+
}
|
|
2069
|
+
|
|
2070
|
+
namespace Ro {
|
|
2071
|
+
interface Standard {
|
|
2072
|
+
/**
|
|
2073
|
+
* Place of supply scheme used in an EU standard registration.
|
|
2074
|
+
*/
|
|
2075
|
+
place_of_supply_scheme: Standard.PlaceOfSupplyScheme;
|
|
2076
|
+
}
|
|
2077
|
+
|
|
2078
|
+
namespace Standard {
|
|
2079
|
+
type PlaceOfSupplyScheme =
|
|
2080
|
+
| 'inbound_goods'
|
|
2081
|
+
| 'small_seller'
|
|
2082
|
+
| 'standard';
|
|
2083
|
+
}
|
|
2084
|
+
|
|
2085
|
+
type Type = 'ioss' | 'oss_non_union' | 'oss_union' | 'standard';
|
|
2086
|
+
}
|
|
2087
|
+
|
|
2088
|
+
interface Rs {
|
|
2089
|
+
/**
|
|
2090
|
+
* Options for the standard registration.
|
|
2091
|
+
*/
|
|
2092
|
+
standard?: Rs.Standard;
|
|
2093
|
+
|
|
2094
|
+
/**
|
|
2095
|
+
* Type of registration to be created in `country`.
|
|
2096
|
+
*/
|
|
2097
|
+
type: 'standard';
|
|
2098
|
+
}
|
|
2099
|
+
|
|
2100
|
+
namespace Rs {
|
|
2101
|
+
interface Standard {
|
|
2102
|
+
/**
|
|
2103
|
+
* Place of supply scheme used in an standard registration.
|
|
2104
|
+
*/
|
|
2105
|
+
place_of_supply_scheme?: Standard.PlaceOfSupplyScheme;
|
|
2106
|
+
}
|
|
2107
|
+
|
|
2108
|
+
namespace Standard {
|
|
2109
|
+
type PlaceOfSupplyScheme = 'inbound_goods' | 'standard';
|
|
2110
|
+
}
|
|
2111
|
+
}
|
|
2112
|
+
|
|
2113
|
+
interface Ru {
|
|
2114
|
+
/**
|
|
2115
|
+
* Type of registration to be created in `country`.
|
|
2116
|
+
*/
|
|
2117
|
+
type: 'simplified';
|
|
2118
|
+
}
|
|
2119
|
+
|
|
2120
|
+
interface Sa {
|
|
2121
|
+
/**
|
|
2122
|
+
* Type of registration to be created in `country`.
|
|
2123
|
+
*/
|
|
2124
|
+
type: 'simplified';
|
|
2125
|
+
}
|
|
2126
|
+
|
|
2127
|
+
interface Se {
|
|
2128
|
+
/**
|
|
2129
|
+
* Options for the standard registration.
|
|
2130
|
+
*/
|
|
2131
|
+
standard?: Se.Standard;
|
|
2132
|
+
|
|
2133
|
+
/**
|
|
2134
|
+
* Type of registration to be created in an EU country.
|
|
2135
|
+
*/
|
|
2136
|
+
type: Se.Type;
|
|
2137
|
+
}
|
|
2138
|
+
|
|
2139
|
+
namespace Se {
|
|
2140
|
+
interface Standard {
|
|
2141
|
+
/**
|
|
2142
|
+
* Place of supply scheme used in an EU standard registration.
|
|
2143
|
+
*/
|
|
2144
|
+
place_of_supply_scheme: Standard.PlaceOfSupplyScheme;
|
|
2145
|
+
}
|
|
2146
|
+
|
|
2147
|
+
namespace Standard {
|
|
2148
|
+
type PlaceOfSupplyScheme =
|
|
2149
|
+
| 'inbound_goods'
|
|
2150
|
+
| 'small_seller'
|
|
2151
|
+
| 'standard';
|
|
2152
|
+
}
|
|
2153
|
+
|
|
2154
|
+
type Type = 'ioss' | 'oss_non_union' | 'oss_union' | 'standard';
|
|
2155
|
+
}
|
|
2156
|
+
|
|
2157
|
+
interface Sg {
|
|
2158
|
+
/**
|
|
2159
|
+
* Options for the standard registration.
|
|
2160
|
+
*/
|
|
2161
|
+
standard?: Sg.Standard;
|
|
2162
|
+
|
|
2163
|
+
/**
|
|
2164
|
+
* Type of registration to be created in `country`.
|
|
2165
|
+
*/
|
|
2166
|
+
type: 'standard';
|
|
2167
|
+
}
|
|
2168
|
+
|
|
2169
|
+
namespace Sg {
|
|
2170
|
+
interface Standard {
|
|
2171
|
+
/**
|
|
2172
|
+
* Place of supply scheme used in an standard registration.
|
|
2173
|
+
*/
|
|
2174
|
+
place_of_supply_scheme?: Standard.PlaceOfSupplyScheme;
|
|
2175
|
+
}
|
|
2176
|
+
|
|
2177
|
+
namespace Standard {
|
|
2178
|
+
type PlaceOfSupplyScheme = 'inbound_goods' | 'standard';
|
|
2179
|
+
}
|
|
2180
|
+
}
|
|
2181
|
+
|
|
2182
|
+
interface Si {
|
|
2183
|
+
/**
|
|
2184
|
+
* Options for the standard registration.
|
|
2185
|
+
*/
|
|
2186
|
+
standard?: Si.Standard;
|
|
2187
|
+
|
|
2188
|
+
/**
|
|
2189
|
+
* Type of registration to be created in an EU country.
|
|
2190
|
+
*/
|
|
2191
|
+
type: Si.Type;
|
|
2192
|
+
}
|
|
2193
|
+
|
|
2194
|
+
namespace Si {
|
|
2195
|
+
interface Standard {
|
|
2196
|
+
/**
|
|
2197
|
+
* Place of supply scheme used in an EU standard registration.
|
|
2198
|
+
*/
|
|
2199
|
+
place_of_supply_scheme: Standard.PlaceOfSupplyScheme;
|
|
2200
|
+
}
|
|
2201
|
+
|
|
2202
|
+
namespace Standard {
|
|
2203
|
+
type PlaceOfSupplyScheme =
|
|
2204
|
+
| 'inbound_goods'
|
|
2205
|
+
| 'small_seller'
|
|
2206
|
+
| 'standard';
|
|
2207
|
+
}
|
|
2208
|
+
|
|
2209
|
+
type Type = 'ioss' | 'oss_non_union' | 'oss_union' | 'standard';
|
|
2210
|
+
}
|
|
2211
|
+
|
|
2212
|
+
interface Sk {
|
|
2213
|
+
/**
|
|
2214
|
+
* Options for the standard registration.
|
|
2215
|
+
*/
|
|
2216
|
+
standard?: Sk.Standard;
|
|
2217
|
+
|
|
2218
|
+
/**
|
|
2219
|
+
* Type of registration to be created in an EU country.
|
|
2220
|
+
*/
|
|
2221
|
+
type: Sk.Type;
|
|
2222
|
+
}
|
|
2223
|
+
|
|
2224
|
+
namespace Sk {
|
|
2225
|
+
interface Standard {
|
|
2226
|
+
/**
|
|
2227
|
+
* Place of supply scheme used in an EU standard registration.
|
|
2228
|
+
*/
|
|
2229
|
+
place_of_supply_scheme: Standard.PlaceOfSupplyScheme;
|
|
2230
|
+
}
|
|
2231
|
+
|
|
2232
|
+
namespace Standard {
|
|
2233
|
+
type PlaceOfSupplyScheme =
|
|
2234
|
+
| 'inbound_goods'
|
|
2235
|
+
| 'small_seller'
|
|
2236
|
+
| 'standard';
|
|
2237
|
+
}
|
|
2238
|
+
|
|
2239
|
+
type Type = 'ioss' | 'oss_non_union' | 'oss_union' | 'standard';
|
|
2240
|
+
}
|
|
2241
|
+
|
|
2242
|
+
interface Sn {
|
|
2243
|
+
/**
|
|
2244
|
+
* Type of registration to be created in `country`.
|
|
2245
|
+
*/
|
|
2246
|
+
type: 'simplified';
|
|
2247
|
+
}
|
|
2248
|
+
|
|
2249
|
+
interface Sr {
|
|
2250
|
+
/**
|
|
2251
|
+
* Options for the standard registration.
|
|
2252
|
+
*/
|
|
2253
|
+
standard?: Sr.Standard;
|
|
2254
|
+
|
|
2255
|
+
/**
|
|
2256
|
+
* Type of registration to be created in `country`.
|
|
2257
|
+
*/
|
|
2258
|
+
type: 'standard';
|
|
2259
|
+
}
|
|
2260
|
+
|
|
2261
|
+
namespace Sr {
|
|
2262
|
+
interface Standard {
|
|
2263
|
+
/**
|
|
2264
|
+
* Place of supply scheme used in an standard registration.
|
|
2265
|
+
*/
|
|
2266
|
+
place_of_supply_scheme?: Standard.PlaceOfSupplyScheme;
|
|
2267
|
+
}
|
|
2268
|
+
|
|
2269
|
+
namespace Standard {
|
|
2270
|
+
type PlaceOfSupplyScheme = 'inbound_goods' | 'standard';
|
|
2271
|
+
}
|
|
2272
|
+
}
|
|
2273
|
+
|
|
2274
|
+
interface Th {
|
|
2275
|
+
/**
|
|
2276
|
+
* Type of registration to be created in `country`.
|
|
2277
|
+
*/
|
|
2278
|
+
type: 'simplified';
|
|
2279
|
+
}
|
|
2280
|
+
|
|
2281
|
+
interface Tj {
|
|
2282
|
+
/**
|
|
2283
|
+
* Type of registration to be created in `country`.
|
|
2284
|
+
*/
|
|
2285
|
+
type: 'simplified';
|
|
2286
|
+
}
|
|
2287
|
+
|
|
2288
|
+
interface Tr {
|
|
2289
|
+
/**
|
|
2290
|
+
* Type of registration to be created in `country`.
|
|
2291
|
+
*/
|
|
2292
|
+
type: 'simplified';
|
|
2293
|
+
}
|
|
2294
|
+
|
|
2295
|
+
interface Tw {
|
|
2296
|
+
/**
|
|
2297
|
+
* Type of registration to be created in `country`.
|
|
2298
|
+
*/
|
|
2299
|
+
type: 'simplified';
|
|
2300
|
+
}
|
|
2301
|
+
|
|
2302
|
+
interface Tz {
|
|
2303
|
+
/**
|
|
2304
|
+
* Type of registration to be created in `country`.
|
|
2305
|
+
*/
|
|
2306
|
+
type: 'simplified';
|
|
2307
|
+
}
|
|
2308
|
+
|
|
2309
|
+
interface Ua {
|
|
2310
|
+
/**
|
|
2311
|
+
* Type of registration to be created in `country`.
|
|
2312
|
+
*/
|
|
2313
|
+
type: 'simplified';
|
|
2314
|
+
}
|
|
2315
|
+
|
|
2316
|
+
interface Ug {
|
|
2317
|
+
/**
|
|
2318
|
+
* Type of registration to be created in `country`.
|
|
2319
|
+
*/
|
|
2320
|
+
type: 'simplified';
|
|
2321
|
+
}
|
|
2322
|
+
|
|
2323
|
+
interface Us {
|
|
2324
|
+
/**
|
|
2325
|
+
* Options for the local amusement tax registration.
|
|
2326
|
+
*/
|
|
2327
|
+
local_amusement_tax?: Us.LocalAmusementTax;
|
|
2328
|
+
|
|
2329
|
+
/**
|
|
2330
|
+
* Options for the local lease tax registration.
|
|
2331
|
+
*/
|
|
2332
|
+
local_lease_tax?: Us.LocalLeaseTax;
|
|
2333
|
+
|
|
2334
|
+
/**
|
|
2335
|
+
* Two-letter US state code ([ISO 3166-2](https://en.wikipedia.org/wiki/ISO_3166-2)).
|
|
2336
|
+
*/
|
|
2337
|
+
state: string;
|
|
2338
|
+
|
|
2339
|
+
/**
|
|
2340
|
+
* Options for the state sales tax registration.
|
|
2341
|
+
*/
|
|
2342
|
+
state_sales_tax?: Us.StateSalesTax;
|
|
2343
|
+
|
|
2344
|
+
/**
|
|
2345
|
+
* Type of registration to be created in the US.
|
|
2346
|
+
*/
|
|
2347
|
+
type: Us.Type;
|
|
2348
|
+
}
|
|
2349
|
+
|
|
2350
|
+
namespace Us {
|
|
2351
|
+
interface LocalAmusementTax {
|
|
2352
|
+
/**
|
|
2353
|
+
* A [FIPS code](https://www.census.gov/library/reference/code-lists/ansi.html) representing the local jurisdiction. Supported FIPS codes are: `02154` (Arlington Heights), `05248` (Bensenville), `06613` (Bloomington), `10906` (Campton Hills), `14000` (Chicago), `21696` (East Dundee), `24582` (Evanston), `45421` (Lynwood), `48892` (Midlothian), `64343` (River Grove), `64421` (Riverside), `65806` (Roselle), and `68081` (Schiller Park).
|
|
2354
|
+
*/
|
|
2355
|
+
jurisdiction: string;
|
|
2356
|
+
}
|
|
2357
|
+
|
|
2358
|
+
interface LocalLeaseTax {
|
|
2359
|
+
/**
|
|
2360
|
+
* A [FIPS code](https://www.census.gov/library/reference/code-lists/ansi.html) representing the local jurisdiction. Supported FIPS codes are: `14000` (Chicago).
|
|
2361
|
+
*/
|
|
2362
|
+
jurisdiction: string;
|
|
2363
|
+
}
|
|
2364
|
+
|
|
2365
|
+
interface StateSalesTax {
|
|
2366
|
+
/**
|
|
2367
|
+
* Elections for the state sales tax registration.
|
|
2368
|
+
*/
|
|
2369
|
+
elections: Array<StateSalesTax.Election>;
|
|
2370
|
+
}
|
|
2371
|
+
|
|
2372
|
+
namespace StateSalesTax {
|
|
2373
|
+
interface Election {
|
|
2374
|
+
/**
|
|
2375
|
+
* A [FIPS code](https://www.census.gov/library/reference/code-lists/ansi.html) representing the local jurisdiction. Supported FIPS codes are: `003` (Allegheny County) and `60000` (Philadelphia City).
|
|
2376
|
+
*/
|
|
2377
|
+
jurisdiction?: string;
|
|
2378
|
+
|
|
2379
|
+
/**
|
|
2380
|
+
* The type of the election for the state sales tax registration.
|
|
2381
|
+
*/
|
|
2382
|
+
type: Election.Type;
|
|
2383
|
+
}
|
|
2384
|
+
|
|
2385
|
+
namespace Election {
|
|
2386
|
+
type Type =
|
|
2387
|
+
| 'local_use_tax'
|
|
2388
|
+
| 'simplified_sellers_use_tax'
|
|
2389
|
+
| 'single_local_use_tax';
|
|
2390
|
+
}
|
|
2391
|
+
}
|
|
2392
|
+
|
|
2393
|
+
type Type =
|
|
2394
|
+
| 'local_amusement_tax'
|
|
2395
|
+
| 'local_lease_tax'
|
|
2396
|
+
| 'state_communications_tax'
|
|
2397
|
+
| 'state_retail_delivery_fee'
|
|
2398
|
+
| 'state_sales_tax';
|
|
2399
|
+
}
|
|
2400
|
+
|
|
2401
|
+
interface Uy {
|
|
2402
|
+
/**
|
|
2403
|
+
* Options for the standard registration.
|
|
2404
|
+
*/
|
|
2405
|
+
standard?: Uy.Standard;
|
|
2406
|
+
|
|
2407
|
+
/**
|
|
2408
|
+
* Type of registration to be created in `country`.
|
|
2409
|
+
*/
|
|
2410
|
+
type: 'standard';
|
|
2411
|
+
}
|
|
2412
|
+
|
|
2413
|
+
namespace Uy {
|
|
2414
|
+
interface Standard {
|
|
2415
|
+
/**
|
|
2416
|
+
* Place of supply scheme used in an standard registration.
|
|
2417
|
+
*/
|
|
2418
|
+
place_of_supply_scheme?: Standard.PlaceOfSupplyScheme;
|
|
2419
|
+
}
|
|
2420
|
+
|
|
2421
|
+
namespace Standard {
|
|
2422
|
+
type PlaceOfSupplyScheme = 'inbound_goods' | 'standard';
|
|
2423
|
+
}
|
|
2424
|
+
}
|
|
2425
|
+
|
|
2426
|
+
interface Uz {
|
|
2427
|
+
/**
|
|
2428
|
+
* Type of registration to be created in `country`.
|
|
2429
|
+
*/
|
|
2430
|
+
type: 'simplified';
|
|
2431
|
+
}
|
|
2432
|
+
|
|
2433
|
+
interface Vn {
|
|
2434
|
+
/**
|
|
2435
|
+
* Type of registration to be created in `country`.
|
|
2436
|
+
*/
|
|
2437
|
+
type: 'simplified';
|
|
2438
|
+
}
|
|
2439
|
+
|
|
2440
|
+
interface Za {
|
|
2441
|
+
/**
|
|
2442
|
+
* Options for the standard registration.
|
|
2443
|
+
*/
|
|
2444
|
+
standard?: Za.Standard;
|
|
2445
|
+
|
|
2446
|
+
/**
|
|
2447
|
+
* Type of registration to be created in `country`.
|
|
2448
|
+
*/
|
|
2449
|
+
type: 'standard';
|
|
2450
|
+
}
|
|
2451
|
+
|
|
2452
|
+
namespace Za {
|
|
2453
|
+
interface Standard {
|
|
2454
|
+
/**
|
|
2455
|
+
* Place of supply scheme used in an standard registration.
|
|
2456
|
+
*/
|
|
2457
|
+
place_of_supply_scheme?: Standard.PlaceOfSupplyScheme;
|
|
2458
|
+
}
|
|
2459
|
+
|
|
2460
|
+
namespace Standard {
|
|
2461
|
+
type PlaceOfSupplyScheme = 'inbound_goods' | 'standard';
|
|
2462
|
+
}
|
|
2463
|
+
}
|
|
2464
|
+
|
|
2465
|
+
interface Zm {
|
|
2466
|
+
/**
|
|
2467
|
+
* Type of registration to be created in `country`.
|
|
2468
|
+
*/
|
|
2469
|
+
type: 'simplified';
|
|
2470
|
+
}
|
|
2471
|
+
|
|
2472
|
+
interface Zw {
|
|
2473
|
+
/**
|
|
2474
|
+
* Options for the standard registration.
|
|
2475
|
+
*/
|
|
2476
|
+
standard?: Zw.Standard;
|
|
2477
|
+
|
|
2478
|
+
/**
|
|
2479
|
+
* Type of registration to be created in `country`.
|
|
2480
|
+
*/
|
|
2481
|
+
type: 'standard';
|
|
2482
|
+
}
|
|
2483
|
+
|
|
2484
|
+
namespace Zw {
|
|
2485
|
+
interface Standard {
|
|
2486
|
+
/**
|
|
2487
|
+
* Place of supply scheme used in an standard registration.
|
|
2488
|
+
*/
|
|
2489
|
+
place_of_supply_scheme?: Standard.PlaceOfSupplyScheme;
|
|
2490
|
+
}
|
|
2491
|
+
|
|
2492
|
+
namespace Standard {
|
|
2493
|
+
type PlaceOfSupplyScheme = 'inbound_goods' | 'standard';
|
|
2494
|
+
}
|
|
2495
|
+
}
|
|
2496
|
+
}
|
|
2497
|
+
}
|
|
2498
|
+
|
|
2499
|
+
interface RegistrationRetrieveParams {
|
|
2500
|
+
/**
|
|
2501
|
+
* Specifies which fields in the response should be expanded.
|
|
2502
|
+
*/
|
|
2503
|
+
expand?: Array<string>;
|
|
2504
|
+
}
|
|
2505
|
+
|
|
2506
|
+
interface RegistrationUpdateParams {
|
|
2507
|
+
/**
|
|
2508
|
+
* Time at which the registration becomes active. It can be either `now` to indicate the current time, or a timestamp measured in seconds since the Unix epoch.
|
|
2509
|
+
*/
|
|
2510
|
+
active_from?: 'now' | number;
|
|
2511
|
+
|
|
2512
|
+
/**
|
|
2513
|
+
* Specifies which fields in the response should be expanded.
|
|
2514
|
+
*/
|
|
2515
|
+
expand?: Array<string>;
|
|
2516
|
+
|
|
2517
|
+
/**
|
|
2518
|
+
* If set, the registration stops being active at this time. If not set, the registration will be active indefinitely. It can be either `now` to indicate the current time, or a timestamp measured in seconds since the Unix epoch.
|
|
2519
|
+
*/
|
|
2520
|
+
expires_at?: Stripe.Emptyable<'now' | number>;
|
|
2521
|
+
}
|
|
2522
|
+
|
|
2523
|
+
interface RegistrationListParams extends PaginationParams {
|
|
2524
|
+
/**
|
|
2525
|
+
* Specifies which fields in the response should be expanded.
|
|
2526
|
+
*/
|
|
2527
|
+
expand?: Array<string>;
|
|
2528
|
+
|
|
2529
|
+
/**
|
|
2530
|
+
* The status of the Tax Registration.
|
|
2531
|
+
*/
|
|
2532
|
+
status?: RegistrationListParams.Status;
|
|
2533
|
+
}
|
|
2534
|
+
|
|
2535
|
+
namespace RegistrationListParams {
|
|
2536
|
+
type Status = 'active' | 'all' | 'expired' | 'scheduled';
|
|
2537
|
+
}
|
|
2538
|
+
|
|
2539
|
+
class RegistrationsResource {
|
|
2540
|
+
/**
|
|
2541
|
+
* Creates a new Tax Registration object.
|
|
2542
|
+
*/
|
|
2543
|
+
create(
|
|
2544
|
+
params: RegistrationCreateParams,
|
|
2545
|
+
options?: RequestOptions
|
|
2546
|
+
): Promise<Stripe.Response<Stripe.Tax.Registration>>;
|
|
2547
|
+
|
|
2548
|
+
/**
|
|
2549
|
+
* Returns a Tax Registration object.
|
|
2550
|
+
*/
|
|
2551
|
+
retrieve(
|
|
2552
|
+
id: string,
|
|
2553
|
+
params?: RegistrationRetrieveParams,
|
|
2554
|
+
options?: RequestOptions
|
|
2555
|
+
): Promise<Stripe.Response<Stripe.Tax.Registration>>;
|
|
2556
|
+
retrieve(
|
|
2557
|
+
id: string,
|
|
2558
|
+
options?: RequestOptions
|
|
2559
|
+
): Promise<Stripe.Response<Stripe.Tax.Registration>>;
|
|
2560
|
+
|
|
2561
|
+
/**
|
|
2562
|
+
* Updates an existing Tax Registration object.
|
|
2563
|
+
*
|
|
2564
|
+
* A registration cannot be deleted after it has been created. If you wish to end a registration you may do so by setting expires_at.
|
|
2565
|
+
*/
|
|
2566
|
+
update(
|
|
2567
|
+
id: string,
|
|
2568
|
+
params?: RegistrationUpdateParams,
|
|
2569
|
+
options?: RequestOptions
|
|
2570
|
+
): Promise<Stripe.Response<Stripe.Tax.Registration>>;
|
|
2571
|
+
|
|
2572
|
+
/**
|
|
2573
|
+
* Returns a list of Tax Registration objects.
|
|
2574
|
+
*/
|
|
2575
|
+
list(
|
|
2576
|
+
params?: RegistrationListParams,
|
|
2577
|
+
options?: RequestOptions
|
|
2578
|
+
): ApiListPromise<Stripe.Tax.Registration>;
|
|
2579
|
+
list(options?: RequestOptions): ApiListPromise<Stripe.Tax.Registration>;
|
|
2580
|
+
}
|
|
2581
|
+
}
|
|
2582
|
+
}
|
|
2583
|
+
}
|