@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,1710 @@
|
|
|
1
|
+
// File generated from our OpenAPI spec
|
|
2
|
+
|
|
3
|
+
declare module 'stripe' {
|
|
4
|
+
namespace Stripe {
|
|
5
|
+
namespace Tax {
|
|
6
|
+
/**
|
|
7
|
+
* A Tax `Registration` lets us know that your business is registered to collect tax on payments within a region, enabling you to [automatically collect tax](https://docs.stripe.com/tax).
|
|
8
|
+
*
|
|
9
|
+
* Stripe doesn't register on your behalf with the relevant authorities when you create a Tax `Registration` object. For more information on how to register to collect tax, see [our guide](https://docs.stripe.com/tax/registering).
|
|
10
|
+
*
|
|
11
|
+
* Related guide: [Using the Registrations API](https://docs.stripe.com/tax/registrations-api)
|
|
12
|
+
*/
|
|
13
|
+
interface Registration {
|
|
14
|
+
/**
|
|
15
|
+
* Unique identifier for the object.
|
|
16
|
+
*/
|
|
17
|
+
id: string;
|
|
18
|
+
|
|
19
|
+
/**
|
|
20
|
+
* String representing the object's type. Objects of the same type share the same value.
|
|
21
|
+
*/
|
|
22
|
+
object: 'tax.registration';
|
|
23
|
+
|
|
24
|
+
/**
|
|
25
|
+
* Time at which the registration becomes active. Measured in seconds since the Unix epoch.
|
|
26
|
+
*/
|
|
27
|
+
active_from: number;
|
|
28
|
+
|
|
29
|
+
/**
|
|
30
|
+
* Two-letter country code ([ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2)).
|
|
31
|
+
*/
|
|
32
|
+
country: string;
|
|
33
|
+
|
|
34
|
+
country_options: Registration.CountryOptions;
|
|
35
|
+
|
|
36
|
+
/**
|
|
37
|
+
* Time at which the object was created. Measured in seconds since the Unix epoch.
|
|
38
|
+
*/
|
|
39
|
+
created: number;
|
|
40
|
+
|
|
41
|
+
/**
|
|
42
|
+
* If set, the registration stops being active at this time. If not set, the registration will be active indefinitely. Measured in seconds since the Unix epoch.
|
|
43
|
+
*/
|
|
44
|
+
expires_at: number | null;
|
|
45
|
+
|
|
46
|
+
/**
|
|
47
|
+
* If the object exists in live mode, the value is `true`. If the object exists in test mode, the value is `false`.
|
|
48
|
+
*/
|
|
49
|
+
livemode: boolean;
|
|
50
|
+
|
|
51
|
+
/**
|
|
52
|
+
* The status of the registration. This field is present for convenience and can be deduced from `active_from` and `expires_at`.
|
|
53
|
+
*/
|
|
54
|
+
status: Registration.Status;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
namespace Registration {
|
|
58
|
+
interface CountryOptions {
|
|
59
|
+
ae?: CountryOptions.Ae;
|
|
60
|
+
|
|
61
|
+
al?: CountryOptions.Al;
|
|
62
|
+
|
|
63
|
+
am?: CountryOptions.Am;
|
|
64
|
+
|
|
65
|
+
ao?: CountryOptions.Ao;
|
|
66
|
+
|
|
67
|
+
at?: CountryOptions.At;
|
|
68
|
+
|
|
69
|
+
au?: CountryOptions.Au;
|
|
70
|
+
|
|
71
|
+
aw?: CountryOptions.Aw;
|
|
72
|
+
|
|
73
|
+
az?: CountryOptions.Az;
|
|
74
|
+
|
|
75
|
+
ba?: CountryOptions.Ba;
|
|
76
|
+
|
|
77
|
+
bb?: CountryOptions.Bb;
|
|
78
|
+
|
|
79
|
+
bd?: CountryOptions.Bd;
|
|
80
|
+
|
|
81
|
+
be?: CountryOptions.Be;
|
|
82
|
+
|
|
83
|
+
bf?: CountryOptions.Bf;
|
|
84
|
+
|
|
85
|
+
bg?: CountryOptions.Bg;
|
|
86
|
+
|
|
87
|
+
bh?: CountryOptions.Bh;
|
|
88
|
+
|
|
89
|
+
bj?: CountryOptions.Bj;
|
|
90
|
+
|
|
91
|
+
bs?: CountryOptions.Bs;
|
|
92
|
+
|
|
93
|
+
by?: CountryOptions.By;
|
|
94
|
+
|
|
95
|
+
ca?: CountryOptions.Ca;
|
|
96
|
+
|
|
97
|
+
cd?: CountryOptions.Cd;
|
|
98
|
+
|
|
99
|
+
ch?: CountryOptions.Ch;
|
|
100
|
+
|
|
101
|
+
cl?: CountryOptions.Cl;
|
|
102
|
+
|
|
103
|
+
cm?: CountryOptions.Cm;
|
|
104
|
+
|
|
105
|
+
co?: CountryOptions.Co;
|
|
106
|
+
|
|
107
|
+
cr?: CountryOptions.Cr;
|
|
108
|
+
|
|
109
|
+
cv?: CountryOptions.Cv;
|
|
110
|
+
|
|
111
|
+
cy?: CountryOptions.Cy;
|
|
112
|
+
|
|
113
|
+
cz?: CountryOptions.Cz;
|
|
114
|
+
|
|
115
|
+
de?: CountryOptions.De;
|
|
116
|
+
|
|
117
|
+
dk?: CountryOptions.Dk;
|
|
118
|
+
|
|
119
|
+
ec?: CountryOptions.Ec;
|
|
120
|
+
|
|
121
|
+
ee?: CountryOptions.Ee;
|
|
122
|
+
|
|
123
|
+
eg?: CountryOptions.Eg;
|
|
124
|
+
|
|
125
|
+
es?: CountryOptions.Es;
|
|
126
|
+
|
|
127
|
+
et?: CountryOptions.Et;
|
|
128
|
+
|
|
129
|
+
fi?: CountryOptions.Fi;
|
|
130
|
+
|
|
131
|
+
fr?: CountryOptions.Fr;
|
|
132
|
+
|
|
133
|
+
gb?: CountryOptions.Gb;
|
|
134
|
+
|
|
135
|
+
ge?: CountryOptions.Ge;
|
|
136
|
+
|
|
137
|
+
gn?: CountryOptions.Gn;
|
|
138
|
+
|
|
139
|
+
gr?: CountryOptions.Gr;
|
|
140
|
+
|
|
141
|
+
hr?: CountryOptions.Hr;
|
|
142
|
+
|
|
143
|
+
hu?: CountryOptions.Hu;
|
|
144
|
+
|
|
145
|
+
id?: CountryOptions.Id;
|
|
146
|
+
|
|
147
|
+
ie?: CountryOptions.Ie;
|
|
148
|
+
|
|
149
|
+
in?: CountryOptions.In;
|
|
150
|
+
|
|
151
|
+
is?: CountryOptions.Is;
|
|
152
|
+
|
|
153
|
+
it?: CountryOptions.It;
|
|
154
|
+
|
|
155
|
+
jp?: CountryOptions.Jp;
|
|
156
|
+
|
|
157
|
+
ke?: CountryOptions.Ke;
|
|
158
|
+
|
|
159
|
+
kg?: CountryOptions.Kg;
|
|
160
|
+
|
|
161
|
+
kh?: CountryOptions.Kh;
|
|
162
|
+
|
|
163
|
+
kr?: CountryOptions.Kr;
|
|
164
|
+
|
|
165
|
+
kz?: CountryOptions.Kz;
|
|
166
|
+
|
|
167
|
+
la?: CountryOptions.La;
|
|
168
|
+
|
|
169
|
+
lk?: CountryOptions.Lk;
|
|
170
|
+
|
|
171
|
+
lt?: CountryOptions.Lt;
|
|
172
|
+
|
|
173
|
+
lu?: CountryOptions.Lu;
|
|
174
|
+
|
|
175
|
+
lv?: CountryOptions.Lv;
|
|
176
|
+
|
|
177
|
+
ma?: CountryOptions.Ma;
|
|
178
|
+
|
|
179
|
+
md?: CountryOptions.Md;
|
|
180
|
+
|
|
181
|
+
me?: CountryOptions.Me;
|
|
182
|
+
|
|
183
|
+
mk?: CountryOptions.Mk;
|
|
184
|
+
|
|
185
|
+
mr?: CountryOptions.Mr;
|
|
186
|
+
|
|
187
|
+
mt?: CountryOptions.Mt;
|
|
188
|
+
|
|
189
|
+
mx?: CountryOptions.Mx;
|
|
190
|
+
|
|
191
|
+
my?: CountryOptions.My;
|
|
192
|
+
|
|
193
|
+
ng?: CountryOptions.Ng;
|
|
194
|
+
|
|
195
|
+
nl?: CountryOptions.Nl;
|
|
196
|
+
|
|
197
|
+
no?: CountryOptions.No;
|
|
198
|
+
|
|
199
|
+
np?: CountryOptions.Np;
|
|
200
|
+
|
|
201
|
+
nz?: CountryOptions.Nz;
|
|
202
|
+
|
|
203
|
+
om?: CountryOptions.Om;
|
|
204
|
+
|
|
205
|
+
pe?: CountryOptions.Pe;
|
|
206
|
+
|
|
207
|
+
ph?: CountryOptions.Ph;
|
|
208
|
+
|
|
209
|
+
pl?: CountryOptions.Pl;
|
|
210
|
+
|
|
211
|
+
pt?: CountryOptions.Pt;
|
|
212
|
+
|
|
213
|
+
ro?: CountryOptions.Ro;
|
|
214
|
+
|
|
215
|
+
rs?: CountryOptions.Rs;
|
|
216
|
+
|
|
217
|
+
ru?: CountryOptions.Ru;
|
|
218
|
+
|
|
219
|
+
sa?: CountryOptions.Sa;
|
|
220
|
+
|
|
221
|
+
se?: CountryOptions.Se;
|
|
222
|
+
|
|
223
|
+
sg?: CountryOptions.Sg;
|
|
224
|
+
|
|
225
|
+
si?: CountryOptions.Si;
|
|
226
|
+
|
|
227
|
+
sk?: CountryOptions.Sk;
|
|
228
|
+
|
|
229
|
+
sn?: CountryOptions.Sn;
|
|
230
|
+
|
|
231
|
+
sr?: CountryOptions.Sr;
|
|
232
|
+
|
|
233
|
+
th?: CountryOptions.Th;
|
|
234
|
+
|
|
235
|
+
tj?: CountryOptions.Tj;
|
|
236
|
+
|
|
237
|
+
tr?: CountryOptions.Tr;
|
|
238
|
+
|
|
239
|
+
tw?: CountryOptions.Tw;
|
|
240
|
+
|
|
241
|
+
tz?: CountryOptions.Tz;
|
|
242
|
+
|
|
243
|
+
ua?: CountryOptions.Ua;
|
|
244
|
+
|
|
245
|
+
ug?: CountryOptions.Ug;
|
|
246
|
+
|
|
247
|
+
us?: CountryOptions.Us;
|
|
248
|
+
|
|
249
|
+
uy?: CountryOptions.Uy;
|
|
250
|
+
|
|
251
|
+
uz?: CountryOptions.Uz;
|
|
252
|
+
|
|
253
|
+
vn?: CountryOptions.Vn;
|
|
254
|
+
|
|
255
|
+
za?: CountryOptions.Za;
|
|
256
|
+
|
|
257
|
+
zm?: CountryOptions.Zm;
|
|
258
|
+
|
|
259
|
+
zw?: CountryOptions.Zw;
|
|
260
|
+
}
|
|
261
|
+
|
|
262
|
+
namespace CountryOptions {
|
|
263
|
+
interface Ae {
|
|
264
|
+
standard?: Ae.Standard;
|
|
265
|
+
|
|
266
|
+
/**
|
|
267
|
+
* Type of registration in `country`.
|
|
268
|
+
*/
|
|
269
|
+
type: 'standard';
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
namespace Ae {
|
|
273
|
+
interface Standard {
|
|
274
|
+
/**
|
|
275
|
+
* Place of supply scheme used in an Default standard registration.
|
|
276
|
+
*/
|
|
277
|
+
place_of_supply_scheme: Standard.PlaceOfSupplyScheme;
|
|
278
|
+
}
|
|
279
|
+
|
|
280
|
+
namespace Standard {
|
|
281
|
+
type PlaceOfSupplyScheme = 'inbound_goods' | 'standard';
|
|
282
|
+
}
|
|
283
|
+
}
|
|
284
|
+
|
|
285
|
+
interface Al {
|
|
286
|
+
/**
|
|
287
|
+
* Type of registration in `country`.
|
|
288
|
+
*/
|
|
289
|
+
type: 'standard';
|
|
290
|
+
}
|
|
291
|
+
|
|
292
|
+
interface Am {
|
|
293
|
+
/**
|
|
294
|
+
* Type of registration in `country`.
|
|
295
|
+
*/
|
|
296
|
+
type: 'simplified';
|
|
297
|
+
}
|
|
298
|
+
|
|
299
|
+
interface Ao {
|
|
300
|
+
/**
|
|
301
|
+
* Type of registration in `country`.
|
|
302
|
+
*/
|
|
303
|
+
type: 'standard';
|
|
304
|
+
}
|
|
305
|
+
|
|
306
|
+
interface At {
|
|
307
|
+
standard?: At.Standard;
|
|
308
|
+
|
|
309
|
+
/**
|
|
310
|
+
* Type of registration in an EU country.
|
|
311
|
+
*/
|
|
312
|
+
type: At.Type;
|
|
313
|
+
}
|
|
314
|
+
|
|
315
|
+
namespace At {
|
|
316
|
+
interface Standard {
|
|
317
|
+
/**
|
|
318
|
+
* Place of supply scheme used in an EU standard registration.
|
|
319
|
+
*/
|
|
320
|
+
place_of_supply_scheme: Standard.PlaceOfSupplyScheme;
|
|
321
|
+
}
|
|
322
|
+
|
|
323
|
+
namespace Standard {
|
|
324
|
+
type PlaceOfSupplyScheme =
|
|
325
|
+
| 'inbound_goods'
|
|
326
|
+
| 'small_seller'
|
|
327
|
+
| 'standard';
|
|
328
|
+
}
|
|
329
|
+
|
|
330
|
+
type Type = 'ioss' | 'oss_non_union' | 'oss_union' | 'standard';
|
|
331
|
+
}
|
|
332
|
+
|
|
333
|
+
interface Au {
|
|
334
|
+
standard?: Au.Standard;
|
|
335
|
+
|
|
336
|
+
/**
|
|
337
|
+
* Type of registration in `country`.
|
|
338
|
+
*/
|
|
339
|
+
type: 'standard';
|
|
340
|
+
}
|
|
341
|
+
|
|
342
|
+
namespace Au {
|
|
343
|
+
interface Standard {
|
|
344
|
+
/**
|
|
345
|
+
* Place of supply scheme used in an Default standard registration.
|
|
346
|
+
*/
|
|
347
|
+
place_of_supply_scheme: Standard.PlaceOfSupplyScheme;
|
|
348
|
+
}
|
|
349
|
+
|
|
350
|
+
namespace Standard {
|
|
351
|
+
type PlaceOfSupplyScheme = 'inbound_goods' | 'standard';
|
|
352
|
+
}
|
|
353
|
+
}
|
|
354
|
+
|
|
355
|
+
interface Aw {
|
|
356
|
+
/**
|
|
357
|
+
* Type of registration in `country`.
|
|
358
|
+
*/
|
|
359
|
+
type: 'standard';
|
|
360
|
+
}
|
|
361
|
+
|
|
362
|
+
interface Az {
|
|
363
|
+
/**
|
|
364
|
+
* Type of registration in `country`.
|
|
365
|
+
*/
|
|
366
|
+
type: 'simplified';
|
|
367
|
+
}
|
|
368
|
+
|
|
369
|
+
interface Ba {
|
|
370
|
+
/**
|
|
371
|
+
* Type of registration in `country`.
|
|
372
|
+
*/
|
|
373
|
+
type: 'standard';
|
|
374
|
+
}
|
|
375
|
+
|
|
376
|
+
interface Bb {
|
|
377
|
+
/**
|
|
378
|
+
* Type of registration in `country`.
|
|
379
|
+
*/
|
|
380
|
+
type: 'standard';
|
|
381
|
+
}
|
|
382
|
+
|
|
383
|
+
interface Bd {
|
|
384
|
+
/**
|
|
385
|
+
* Type of registration in `country`.
|
|
386
|
+
*/
|
|
387
|
+
type: 'standard';
|
|
388
|
+
}
|
|
389
|
+
|
|
390
|
+
interface Be {
|
|
391
|
+
standard?: Be.Standard;
|
|
392
|
+
|
|
393
|
+
/**
|
|
394
|
+
* Type of registration in an EU country.
|
|
395
|
+
*/
|
|
396
|
+
type: Be.Type;
|
|
397
|
+
}
|
|
398
|
+
|
|
399
|
+
namespace Be {
|
|
400
|
+
interface Standard {
|
|
401
|
+
/**
|
|
402
|
+
* Place of supply scheme used in an EU standard registration.
|
|
403
|
+
*/
|
|
404
|
+
place_of_supply_scheme: Standard.PlaceOfSupplyScheme;
|
|
405
|
+
}
|
|
406
|
+
|
|
407
|
+
namespace Standard {
|
|
408
|
+
type PlaceOfSupplyScheme =
|
|
409
|
+
| 'inbound_goods'
|
|
410
|
+
| 'small_seller'
|
|
411
|
+
| 'standard';
|
|
412
|
+
}
|
|
413
|
+
|
|
414
|
+
type Type = 'ioss' | 'oss_non_union' | 'oss_union' | 'standard';
|
|
415
|
+
}
|
|
416
|
+
|
|
417
|
+
interface Bf {
|
|
418
|
+
/**
|
|
419
|
+
* Type of registration in `country`.
|
|
420
|
+
*/
|
|
421
|
+
type: 'standard';
|
|
422
|
+
}
|
|
423
|
+
|
|
424
|
+
interface Bg {
|
|
425
|
+
standard?: Bg.Standard;
|
|
426
|
+
|
|
427
|
+
/**
|
|
428
|
+
* Type of registration in an EU country.
|
|
429
|
+
*/
|
|
430
|
+
type: Bg.Type;
|
|
431
|
+
}
|
|
432
|
+
|
|
433
|
+
namespace Bg {
|
|
434
|
+
interface Standard {
|
|
435
|
+
/**
|
|
436
|
+
* Place of supply scheme used in an EU standard registration.
|
|
437
|
+
*/
|
|
438
|
+
place_of_supply_scheme: Standard.PlaceOfSupplyScheme;
|
|
439
|
+
}
|
|
440
|
+
|
|
441
|
+
namespace Standard {
|
|
442
|
+
type PlaceOfSupplyScheme =
|
|
443
|
+
| 'inbound_goods'
|
|
444
|
+
| 'small_seller'
|
|
445
|
+
| 'standard';
|
|
446
|
+
}
|
|
447
|
+
|
|
448
|
+
type Type = 'ioss' | 'oss_non_union' | 'oss_union' | 'standard';
|
|
449
|
+
}
|
|
450
|
+
|
|
451
|
+
interface Bh {
|
|
452
|
+
/**
|
|
453
|
+
* Type of registration in `country`.
|
|
454
|
+
*/
|
|
455
|
+
type: 'standard';
|
|
456
|
+
}
|
|
457
|
+
|
|
458
|
+
interface Bj {
|
|
459
|
+
/**
|
|
460
|
+
* Type of registration in `country`.
|
|
461
|
+
*/
|
|
462
|
+
type: 'simplified';
|
|
463
|
+
}
|
|
464
|
+
|
|
465
|
+
interface Bs {
|
|
466
|
+
/**
|
|
467
|
+
* Type of registration in `country`.
|
|
468
|
+
*/
|
|
469
|
+
type: 'standard';
|
|
470
|
+
}
|
|
471
|
+
|
|
472
|
+
interface By {
|
|
473
|
+
/**
|
|
474
|
+
* Type of registration in `country`.
|
|
475
|
+
*/
|
|
476
|
+
type: 'simplified';
|
|
477
|
+
}
|
|
478
|
+
|
|
479
|
+
interface Ca {
|
|
480
|
+
province_standard?: Ca.ProvinceStandard;
|
|
481
|
+
|
|
482
|
+
/**
|
|
483
|
+
* Type of registration in Canada.
|
|
484
|
+
*/
|
|
485
|
+
type: Ca.Type;
|
|
486
|
+
}
|
|
487
|
+
|
|
488
|
+
namespace Ca {
|
|
489
|
+
interface ProvinceStandard {
|
|
490
|
+
/**
|
|
491
|
+
* Two-letter CA province code ([ISO 3166-2](https://en.wikipedia.org/wiki/ISO_3166-2)).
|
|
492
|
+
*/
|
|
493
|
+
province: string;
|
|
494
|
+
}
|
|
495
|
+
|
|
496
|
+
type Type = 'province_standard' | 'simplified' | 'standard';
|
|
497
|
+
}
|
|
498
|
+
|
|
499
|
+
interface Cd {
|
|
500
|
+
/**
|
|
501
|
+
* Type of registration in `country`.
|
|
502
|
+
*/
|
|
503
|
+
type: 'standard';
|
|
504
|
+
}
|
|
505
|
+
|
|
506
|
+
interface Ch {
|
|
507
|
+
standard?: Ch.Standard;
|
|
508
|
+
|
|
509
|
+
/**
|
|
510
|
+
* Type of registration in `country`.
|
|
511
|
+
*/
|
|
512
|
+
type: 'standard';
|
|
513
|
+
}
|
|
514
|
+
|
|
515
|
+
namespace Ch {
|
|
516
|
+
interface Standard {
|
|
517
|
+
/**
|
|
518
|
+
* Place of supply scheme used in an Default standard registration.
|
|
519
|
+
*/
|
|
520
|
+
place_of_supply_scheme: Standard.PlaceOfSupplyScheme;
|
|
521
|
+
}
|
|
522
|
+
|
|
523
|
+
namespace Standard {
|
|
524
|
+
type PlaceOfSupplyScheme = 'inbound_goods' | 'standard';
|
|
525
|
+
}
|
|
526
|
+
}
|
|
527
|
+
|
|
528
|
+
interface Cl {
|
|
529
|
+
/**
|
|
530
|
+
* Type of registration in `country`.
|
|
531
|
+
*/
|
|
532
|
+
type: 'simplified';
|
|
533
|
+
}
|
|
534
|
+
|
|
535
|
+
interface Cm {
|
|
536
|
+
/**
|
|
537
|
+
* Type of registration in `country`.
|
|
538
|
+
*/
|
|
539
|
+
type: 'simplified';
|
|
540
|
+
}
|
|
541
|
+
|
|
542
|
+
interface Co {
|
|
543
|
+
/**
|
|
544
|
+
* Type of registration in `country`.
|
|
545
|
+
*/
|
|
546
|
+
type: 'simplified';
|
|
547
|
+
}
|
|
548
|
+
|
|
549
|
+
interface Cr {
|
|
550
|
+
/**
|
|
551
|
+
* Type of registration in `country`.
|
|
552
|
+
*/
|
|
553
|
+
type: 'simplified';
|
|
554
|
+
}
|
|
555
|
+
|
|
556
|
+
interface Cv {
|
|
557
|
+
/**
|
|
558
|
+
* Type of registration in `country`.
|
|
559
|
+
*/
|
|
560
|
+
type: 'simplified';
|
|
561
|
+
}
|
|
562
|
+
|
|
563
|
+
interface Cy {
|
|
564
|
+
standard?: Cy.Standard;
|
|
565
|
+
|
|
566
|
+
/**
|
|
567
|
+
* Type of registration in an EU country.
|
|
568
|
+
*/
|
|
569
|
+
type: Cy.Type;
|
|
570
|
+
}
|
|
571
|
+
|
|
572
|
+
namespace Cy {
|
|
573
|
+
interface Standard {
|
|
574
|
+
/**
|
|
575
|
+
* Place of supply scheme used in an EU standard registration.
|
|
576
|
+
*/
|
|
577
|
+
place_of_supply_scheme: Standard.PlaceOfSupplyScheme;
|
|
578
|
+
}
|
|
579
|
+
|
|
580
|
+
namespace Standard {
|
|
581
|
+
type PlaceOfSupplyScheme =
|
|
582
|
+
| 'inbound_goods'
|
|
583
|
+
| 'small_seller'
|
|
584
|
+
| 'standard';
|
|
585
|
+
}
|
|
586
|
+
|
|
587
|
+
type Type = 'ioss' | 'oss_non_union' | 'oss_union' | 'standard';
|
|
588
|
+
}
|
|
589
|
+
|
|
590
|
+
interface Cz {
|
|
591
|
+
standard?: Cz.Standard;
|
|
592
|
+
|
|
593
|
+
/**
|
|
594
|
+
* Type of registration in an EU country.
|
|
595
|
+
*/
|
|
596
|
+
type: Cz.Type;
|
|
597
|
+
}
|
|
598
|
+
|
|
599
|
+
namespace Cz {
|
|
600
|
+
interface Standard {
|
|
601
|
+
/**
|
|
602
|
+
* Place of supply scheme used in an EU standard registration.
|
|
603
|
+
*/
|
|
604
|
+
place_of_supply_scheme: Standard.PlaceOfSupplyScheme;
|
|
605
|
+
}
|
|
606
|
+
|
|
607
|
+
namespace Standard {
|
|
608
|
+
type PlaceOfSupplyScheme =
|
|
609
|
+
| 'inbound_goods'
|
|
610
|
+
| 'small_seller'
|
|
611
|
+
| 'standard';
|
|
612
|
+
}
|
|
613
|
+
|
|
614
|
+
type Type = 'ioss' | 'oss_non_union' | 'oss_union' | 'standard';
|
|
615
|
+
}
|
|
616
|
+
|
|
617
|
+
interface De {
|
|
618
|
+
standard?: De.Standard;
|
|
619
|
+
|
|
620
|
+
/**
|
|
621
|
+
* Type of registration in an EU country.
|
|
622
|
+
*/
|
|
623
|
+
type: De.Type;
|
|
624
|
+
}
|
|
625
|
+
|
|
626
|
+
namespace De {
|
|
627
|
+
interface Standard {
|
|
628
|
+
/**
|
|
629
|
+
* Place of supply scheme used in an EU standard registration.
|
|
630
|
+
*/
|
|
631
|
+
place_of_supply_scheme: Standard.PlaceOfSupplyScheme;
|
|
632
|
+
}
|
|
633
|
+
|
|
634
|
+
namespace Standard {
|
|
635
|
+
type PlaceOfSupplyScheme =
|
|
636
|
+
| 'inbound_goods'
|
|
637
|
+
| 'small_seller'
|
|
638
|
+
| 'standard';
|
|
639
|
+
}
|
|
640
|
+
|
|
641
|
+
type Type = 'ioss' | 'oss_non_union' | 'oss_union' | 'standard';
|
|
642
|
+
}
|
|
643
|
+
|
|
644
|
+
interface Dk {
|
|
645
|
+
standard?: Dk.Standard;
|
|
646
|
+
|
|
647
|
+
/**
|
|
648
|
+
* Type of registration in an EU country.
|
|
649
|
+
*/
|
|
650
|
+
type: Dk.Type;
|
|
651
|
+
}
|
|
652
|
+
|
|
653
|
+
namespace Dk {
|
|
654
|
+
interface Standard {
|
|
655
|
+
/**
|
|
656
|
+
* Place of supply scheme used in an EU standard registration.
|
|
657
|
+
*/
|
|
658
|
+
place_of_supply_scheme: Standard.PlaceOfSupplyScheme;
|
|
659
|
+
}
|
|
660
|
+
|
|
661
|
+
namespace Standard {
|
|
662
|
+
type PlaceOfSupplyScheme =
|
|
663
|
+
| 'inbound_goods'
|
|
664
|
+
| 'small_seller'
|
|
665
|
+
| 'standard';
|
|
666
|
+
}
|
|
667
|
+
|
|
668
|
+
type Type = 'ioss' | 'oss_non_union' | 'oss_union' | 'standard';
|
|
669
|
+
}
|
|
670
|
+
|
|
671
|
+
interface Ec {
|
|
672
|
+
/**
|
|
673
|
+
* Type of registration in `country`.
|
|
674
|
+
*/
|
|
675
|
+
type: 'simplified';
|
|
676
|
+
}
|
|
677
|
+
|
|
678
|
+
interface Ee {
|
|
679
|
+
standard?: Ee.Standard;
|
|
680
|
+
|
|
681
|
+
/**
|
|
682
|
+
* Type of registration in an EU country.
|
|
683
|
+
*/
|
|
684
|
+
type: Ee.Type;
|
|
685
|
+
}
|
|
686
|
+
|
|
687
|
+
namespace Ee {
|
|
688
|
+
interface Standard {
|
|
689
|
+
/**
|
|
690
|
+
* Place of supply scheme used in an EU standard registration.
|
|
691
|
+
*/
|
|
692
|
+
place_of_supply_scheme: Standard.PlaceOfSupplyScheme;
|
|
693
|
+
}
|
|
694
|
+
|
|
695
|
+
namespace Standard {
|
|
696
|
+
type PlaceOfSupplyScheme =
|
|
697
|
+
| 'inbound_goods'
|
|
698
|
+
| 'small_seller'
|
|
699
|
+
| 'standard';
|
|
700
|
+
}
|
|
701
|
+
|
|
702
|
+
type Type = 'ioss' | 'oss_non_union' | 'oss_union' | 'standard';
|
|
703
|
+
}
|
|
704
|
+
|
|
705
|
+
interface Eg {
|
|
706
|
+
/**
|
|
707
|
+
* Type of registration in `country`.
|
|
708
|
+
*/
|
|
709
|
+
type: 'simplified';
|
|
710
|
+
}
|
|
711
|
+
|
|
712
|
+
interface Es {
|
|
713
|
+
standard?: Es.Standard;
|
|
714
|
+
|
|
715
|
+
/**
|
|
716
|
+
* Type of registration in an EU country.
|
|
717
|
+
*/
|
|
718
|
+
type: Es.Type;
|
|
719
|
+
}
|
|
720
|
+
|
|
721
|
+
namespace Es {
|
|
722
|
+
interface Standard {
|
|
723
|
+
/**
|
|
724
|
+
* Place of supply scheme used in an EU standard registration.
|
|
725
|
+
*/
|
|
726
|
+
place_of_supply_scheme: Standard.PlaceOfSupplyScheme;
|
|
727
|
+
}
|
|
728
|
+
|
|
729
|
+
namespace Standard {
|
|
730
|
+
type PlaceOfSupplyScheme =
|
|
731
|
+
| 'inbound_goods'
|
|
732
|
+
| 'small_seller'
|
|
733
|
+
| 'standard';
|
|
734
|
+
}
|
|
735
|
+
|
|
736
|
+
type Type = 'ioss' | 'oss_non_union' | 'oss_union' | 'standard';
|
|
737
|
+
}
|
|
738
|
+
|
|
739
|
+
interface Et {
|
|
740
|
+
/**
|
|
741
|
+
* Type of registration in `country`.
|
|
742
|
+
*/
|
|
743
|
+
type: 'standard';
|
|
744
|
+
}
|
|
745
|
+
|
|
746
|
+
interface Fi {
|
|
747
|
+
standard?: Fi.Standard;
|
|
748
|
+
|
|
749
|
+
/**
|
|
750
|
+
* Type of registration in an EU country.
|
|
751
|
+
*/
|
|
752
|
+
type: Fi.Type;
|
|
753
|
+
}
|
|
754
|
+
|
|
755
|
+
namespace Fi {
|
|
756
|
+
interface Standard {
|
|
757
|
+
/**
|
|
758
|
+
* Place of supply scheme used in an EU standard registration.
|
|
759
|
+
*/
|
|
760
|
+
place_of_supply_scheme: Standard.PlaceOfSupplyScheme;
|
|
761
|
+
}
|
|
762
|
+
|
|
763
|
+
namespace Standard {
|
|
764
|
+
type PlaceOfSupplyScheme =
|
|
765
|
+
| 'inbound_goods'
|
|
766
|
+
| 'small_seller'
|
|
767
|
+
| 'standard';
|
|
768
|
+
}
|
|
769
|
+
|
|
770
|
+
type Type = 'ioss' | 'oss_non_union' | 'oss_union' | 'standard';
|
|
771
|
+
}
|
|
772
|
+
|
|
773
|
+
interface Fr {
|
|
774
|
+
standard?: Fr.Standard;
|
|
775
|
+
|
|
776
|
+
/**
|
|
777
|
+
* Type of registration in an EU country.
|
|
778
|
+
*/
|
|
779
|
+
type: Fr.Type;
|
|
780
|
+
}
|
|
781
|
+
|
|
782
|
+
namespace Fr {
|
|
783
|
+
interface Standard {
|
|
784
|
+
/**
|
|
785
|
+
* Place of supply scheme used in an EU standard registration.
|
|
786
|
+
*/
|
|
787
|
+
place_of_supply_scheme: Standard.PlaceOfSupplyScheme;
|
|
788
|
+
}
|
|
789
|
+
|
|
790
|
+
namespace Standard {
|
|
791
|
+
type PlaceOfSupplyScheme =
|
|
792
|
+
| 'inbound_goods'
|
|
793
|
+
| 'small_seller'
|
|
794
|
+
| 'standard';
|
|
795
|
+
}
|
|
796
|
+
|
|
797
|
+
type Type = 'ioss' | 'oss_non_union' | 'oss_union' | 'standard';
|
|
798
|
+
}
|
|
799
|
+
|
|
800
|
+
interface Gb {
|
|
801
|
+
standard?: Gb.Standard;
|
|
802
|
+
|
|
803
|
+
/**
|
|
804
|
+
* Type of registration in `country`.
|
|
805
|
+
*/
|
|
806
|
+
type: 'standard';
|
|
807
|
+
}
|
|
808
|
+
|
|
809
|
+
namespace Gb {
|
|
810
|
+
interface Standard {
|
|
811
|
+
/**
|
|
812
|
+
* Place of supply scheme used in an Default standard registration.
|
|
813
|
+
*/
|
|
814
|
+
place_of_supply_scheme: Standard.PlaceOfSupplyScheme;
|
|
815
|
+
}
|
|
816
|
+
|
|
817
|
+
namespace Standard {
|
|
818
|
+
type PlaceOfSupplyScheme = 'inbound_goods' | 'standard';
|
|
819
|
+
}
|
|
820
|
+
}
|
|
821
|
+
|
|
822
|
+
interface Ge {
|
|
823
|
+
/**
|
|
824
|
+
* Type of registration in `country`.
|
|
825
|
+
*/
|
|
826
|
+
type: 'simplified';
|
|
827
|
+
}
|
|
828
|
+
|
|
829
|
+
interface Gn {
|
|
830
|
+
/**
|
|
831
|
+
* Type of registration in `country`.
|
|
832
|
+
*/
|
|
833
|
+
type: 'standard';
|
|
834
|
+
}
|
|
835
|
+
|
|
836
|
+
interface Gr {
|
|
837
|
+
standard?: Gr.Standard;
|
|
838
|
+
|
|
839
|
+
/**
|
|
840
|
+
* Type of registration in an EU country.
|
|
841
|
+
*/
|
|
842
|
+
type: Gr.Type;
|
|
843
|
+
}
|
|
844
|
+
|
|
845
|
+
namespace Gr {
|
|
846
|
+
interface Standard {
|
|
847
|
+
/**
|
|
848
|
+
* Place of supply scheme used in an EU standard registration.
|
|
849
|
+
*/
|
|
850
|
+
place_of_supply_scheme: Standard.PlaceOfSupplyScheme;
|
|
851
|
+
}
|
|
852
|
+
|
|
853
|
+
namespace Standard {
|
|
854
|
+
type PlaceOfSupplyScheme =
|
|
855
|
+
| 'inbound_goods'
|
|
856
|
+
| 'small_seller'
|
|
857
|
+
| 'standard';
|
|
858
|
+
}
|
|
859
|
+
|
|
860
|
+
type Type = 'ioss' | 'oss_non_union' | 'oss_union' | 'standard';
|
|
861
|
+
}
|
|
862
|
+
|
|
863
|
+
interface Hr {
|
|
864
|
+
standard?: Hr.Standard;
|
|
865
|
+
|
|
866
|
+
/**
|
|
867
|
+
* Type of registration in an EU country.
|
|
868
|
+
*/
|
|
869
|
+
type: Hr.Type;
|
|
870
|
+
}
|
|
871
|
+
|
|
872
|
+
namespace Hr {
|
|
873
|
+
interface Standard {
|
|
874
|
+
/**
|
|
875
|
+
* Place of supply scheme used in an EU standard registration.
|
|
876
|
+
*/
|
|
877
|
+
place_of_supply_scheme: Standard.PlaceOfSupplyScheme;
|
|
878
|
+
}
|
|
879
|
+
|
|
880
|
+
namespace Standard {
|
|
881
|
+
type PlaceOfSupplyScheme =
|
|
882
|
+
| 'inbound_goods'
|
|
883
|
+
| 'small_seller'
|
|
884
|
+
| 'standard';
|
|
885
|
+
}
|
|
886
|
+
|
|
887
|
+
type Type = 'ioss' | 'oss_non_union' | 'oss_union' | 'standard';
|
|
888
|
+
}
|
|
889
|
+
|
|
890
|
+
interface Hu {
|
|
891
|
+
standard?: Hu.Standard;
|
|
892
|
+
|
|
893
|
+
/**
|
|
894
|
+
* Type of registration in an EU country.
|
|
895
|
+
*/
|
|
896
|
+
type: Hu.Type;
|
|
897
|
+
}
|
|
898
|
+
|
|
899
|
+
namespace Hu {
|
|
900
|
+
interface Standard {
|
|
901
|
+
/**
|
|
902
|
+
* Place of supply scheme used in an EU standard registration.
|
|
903
|
+
*/
|
|
904
|
+
place_of_supply_scheme: Standard.PlaceOfSupplyScheme;
|
|
905
|
+
}
|
|
906
|
+
|
|
907
|
+
namespace Standard {
|
|
908
|
+
type PlaceOfSupplyScheme =
|
|
909
|
+
| 'inbound_goods'
|
|
910
|
+
| 'small_seller'
|
|
911
|
+
| 'standard';
|
|
912
|
+
}
|
|
913
|
+
|
|
914
|
+
type Type = 'ioss' | 'oss_non_union' | 'oss_union' | 'standard';
|
|
915
|
+
}
|
|
916
|
+
|
|
917
|
+
interface Id {
|
|
918
|
+
/**
|
|
919
|
+
* Type of registration in `country`.
|
|
920
|
+
*/
|
|
921
|
+
type: 'simplified';
|
|
922
|
+
}
|
|
923
|
+
|
|
924
|
+
interface Ie {
|
|
925
|
+
standard?: Ie.Standard;
|
|
926
|
+
|
|
927
|
+
/**
|
|
928
|
+
* Type of registration in an EU country.
|
|
929
|
+
*/
|
|
930
|
+
type: Ie.Type;
|
|
931
|
+
}
|
|
932
|
+
|
|
933
|
+
namespace Ie {
|
|
934
|
+
interface Standard {
|
|
935
|
+
/**
|
|
936
|
+
* Place of supply scheme used in an EU standard registration.
|
|
937
|
+
*/
|
|
938
|
+
place_of_supply_scheme: Standard.PlaceOfSupplyScheme;
|
|
939
|
+
}
|
|
940
|
+
|
|
941
|
+
namespace Standard {
|
|
942
|
+
type PlaceOfSupplyScheme =
|
|
943
|
+
| 'inbound_goods'
|
|
944
|
+
| 'small_seller'
|
|
945
|
+
| 'standard';
|
|
946
|
+
}
|
|
947
|
+
|
|
948
|
+
type Type = 'ioss' | 'oss_non_union' | 'oss_union' | 'standard';
|
|
949
|
+
}
|
|
950
|
+
|
|
951
|
+
interface In {
|
|
952
|
+
/**
|
|
953
|
+
* Type of registration in `country`.
|
|
954
|
+
*/
|
|
955
|
+
type: 'simplified';
|
|
956
|
+
}
|
|
957
|
+
|
|
958
|
+
interface Is {
|
|
959
|
+
/**
|
|
960
|
+
* Type of registration in `country`.
|
|
961
|
+
*/
|
|
962
|
+
type: 'standard';
|
|
963
|
+
}
|
|
964
|
+
|
|
965
|
+
interface It {
|
|
966
|
+
standard?: It.Standard;
|
|
967
|
+
|
|
968
|
+
/**
|
|
969
|
+
* Type of registration in an EU country.
|
|
970
|
+
*/
|
|
971
|
+
type: It.Type;
|
|
972
|
+
}
|
|
973
|
+
|
|
974
|
+
namespace It {
|
|
975
|
+
interface Standard {
|
|
976
|
+
/**
|
|
977
|
+
* Place of supply scheme used in an EU standard registration.
|
|
978
|
+
*/
|
|
979
|
+
place_of_supply_scheme: Standard.PlaceOfSupplyScheme;
|
|
980
|
+
}
|
|
981
|
+
|
|
982
|
+
namespace Standard {
|
|
983
|
+
type PlaceOfSupplyScheme =
|
|
984
|
+
| 'inbound_goods'
|
|
985
|
+
| 'small_seller'
|
|
986
|
+
| 'standard';
|
|
987
|
+
}
|
|
988
|
+
|
|
989
|
+
type Type = 'ioss' | 'oss_non_union' | 'oss_union' | 'standard';
|
|
990
|
+
}
|
|
991
|
+
|
|
992
|
+
interface Jp {
|
|
993
|
+
standard?: Jp.Standard;
|
|
994
|
+
|
|
995
|
+
/**
|
|
996
|
+
* Type of registration in `country`.
|
|
997
|
+
*/
|
|
998
|
+
type: 'standard';
|
|
999
|
+
}
|
|
1000
|
+
|
|
1001
|
+
namespace Jp {
|
|
1002
|
+
interface Standard {
|
|
1003
|
+
/**
|
|
1004
|
+
* Place of supply scheme used in an Default standard registration.
|
|
1005
|
+
*/
|
|
1006
|
+
place_of_supply_scheme: Standard.PlaceOfSupplyScheme;
|
|
1007
|
+
}
|
|
1008
|
+
|
|
1009
|
+
namespace Standard {
|
|
1010
|
+
type PlaceOfSupplyScheme = 'inbound_goods' | 'standard';
|
|
1011
|
+
}
|
|
1012
|
+
}
|
|
1013
|
+
|
|
1014
|
+
interface Ke {
|
|
1015
|
+
/**
|
|
1016
|
+
* Type of registration in `country`.
|
|
1017
|
+
*/
|
|
1018
|
+
type: 'simplified';
|
|
1019
|
+
}
|
|
1020
|
+
|
|
1021
|
+
interface Kg {
|
|
1022
|
+
/**
|
|
1023
|
+
* Type of registration in `country`.
|
|
1024
|
+
*/
|
|
1025
|
+
type: 'simplified';
|
|
1026
|
+
}
|
|
1027
|
+
|
|
1028
|
+
interface Kh {
|
|
1029
|
+
/**
|
|
1030
|
+
* Type of registration in `country`.
|
|
1031
|
+
*/
|
|
1032
|
+
type: 'simplified';
|
|
1033
|
+
}
|
|
1034
|
+
|
|
1035
|
+
interface Kr {
|
|
1036
|
+
/**
|
|
1037
|
+
* Type of registration in `country`.
|
|
1038
|
+
*/
|
|
1039
|
+
type: 'simplified';
|
|
1040
|
+
}
|
|
1041
|
+
|
|
1042
|
+
interface Kz {
|
|
1043
|
+
/**
|
|
1044
|
+
* Type of registration in `country`.
|
|
1045
|
+
*/
|
|
1046
|
+
type: 'simplified';
|
|
1047
|
+
}
|
|
1048
|
+
|
|
1049
|
+
interface La {
|
|
1050
|
+
/**
|
|
1051
|
+
* Type of registration in `country`.
|
|
1052
|
+
*/
|
|
1053
|
+
type: 'simplified';
|
|
1054
|
+
}
|
|
1055
|
+
|
|
1056
|
+
interface Lk {
|
|
1057
|
+
/**
|
|
1058
|
+
* Type of registration in `country`.
|
|
1059
|
+
*/
|
|
1060
|
+
type: 'simplified';
|
|
1061
|
+
}
|
|
1062
|
+
|
|
1063
|
+
interface Lt {
|
|
1064
|
+
standard?: Lt.Standard;
|
|
1065
|
+
|
|
1066
|
+
/**
|
|
1067
|
+
* Type of registration in an EU country.
|
|
1068
|
+
*/
|
|
1069
|
+
type: Lt.Type;
|
|
1070
|
+
}
|
|
1071
|
+
|
|
1072
|
+
namespace Lt {
|
|
1073
|
+
interface Standard {
|
|
1074
|
+
/**
|
|
1075
|
+
* Place of supply scheme used in an EU standard registration.
|
|
1076
|
+
*/
|
|
1077
|
+
place_of_supply_scheme: Standard.PlaceOfSupplyScheme;
|
|
1078
|
+
}
|
|
1079
|
+
|
|
1080
|
+
namespace Standard {
|
|
1081
|
+
type PlaceOfSupplyScheme =
|
|
1082
|
+
| 'inbound_goods'
|
|
1083
|
+
| 'small_seller'
|
|
1084
|
+
| 'standard';
|
|
1085
|
+
}
|
|
1086
|
+
|
|
1087
|
+
type Type = 'ioss' | 'oss_non_union' | 'oss_union' | 'standard';
|
|
1088
|
+
}
|
|
1089
|
+
|
|
1090
|
+
interface Lu {
|
|
1091
|
+
standard?: Lu.Standard;
|
|
1092
|
+
|
|
1093
|
+
/**
|
|
1094
|
+
* Type of registration in an EU country.
|
|
1095
|
+
*/
|
|
1096
|
+
type: Lu.Type;
|
|
1097
|
+
}
|
|
1098
|
+
|
|
1099
|
+
namespace Lu {
|
|
1100
|
+
interface Standard {
|
|
1101
|
+
/**
|
|
1102
|
+
* Place of supply scheme used in an EU standard registration.
|
|
1103
|
+
*/
|
|
1104
|
+
place_of_supply_scheme: Standard.PlaceOfSupplyScheme;
|
|
1105
|
+
}
|
|
1106
|
+
|
|
1107
|
+
namespace Standard {
|
|
1108
|
+
type PlaceOfSupplyScheme =
|
|
1109
|
+
| 'inbound_goods'
|
|
1110
|
+
| 'small_seller'
|
|
1111
|
+
| 'standard';
|
|
1112
|
+
}
|
|
1113
|
+
|
|
1114
|
+
type Type = 'ioss' | 'oss_non_union' | 'oss_union' | 'standard';
|
|
1115
|
+
}
|
|
1116
|
+
|
|
1117
|
+
interface Lv {
|
|
1118
|
+
standard?: Lv.Standard;
|
|
1119
|
+
|
|
1120
|
+
/**
|
|
1121
|
+
* Type of registration in an EU country.
|
|
1122
|
+
*/
|
|
1123
|
+
type: Lv.Type;
|
|
1124
|
+
}
|
|
1125
|
+
|
|
1126
|
+
namespace Lv {
|
|
1127
|
+
interface Standard {
|
|
1128
|
+
/**
|
|
1129
|
+
* Place of supply scheme used in an EU standard registration.
|
|
1130
|
+
*/
|
|
1131
|
+
place_of_supply_scheme: Standard.PlaceOfSupplyScheme;
|
|
1132
|
+
}
|
|
1133
|
+
|
|
1134
|
+
namespace Standard {
|
|
1135
|
+
type PlaceOfSupplyScheme =
|
|
1136
|
+
| 'inbound_goods'
|
|
1137
|
+
| 'small_seller'
|
|
1138
|
+
| 'standard';
|
|
1139
|
+
}
|
|
1140
|
+
|
|
1141
|
+
type Type = 'ioss' | 'oss_non_union' | 'oss_union' | 'standard';
|
|
1142
|
+
}
|
|
1143
|
+
|
|
1144
|
+
interface Ma {
|
|
1145
|
+
/**
|
|
1146
|
+
* Type of registration in `country`.
|
|
1147
|
+
*/
|
|
1148
|
+
type: 'simplified';
|
|
1149
|
+
}
|
|
1150
|
+
|
|
1151
|
+
interface Md {
|
|
1152
|
+
/**
|
|
1153
|
+
* Type of registration in `country`.
|
|
1154
|
+
*/
|
|
1155
|
+
type: 'simplified';
|
|
1156
|
+
}
|
|
1157
|
+
|
|
1158
|
+
interface Me {
|
|
1159
|
+
/**
|
|
1160
|
+
* Type of registration in `country`.
|
|
1161
|
+
*/
|
|
1162
|
+
type: 'standard';
|
|
1163
|
+
}
|
|
1164
|
+
|
|
1165
|
+
interface Mk {
|
|
1166
|
+
/**
|
|
1167
|
+
* Type of registration in `country`.
|
|
1168
|
+
*/
|
|
1169
|
+
type: 'standard';
|
|
1170
|
+
}
|
|
1171
|
+
|
|
1172
|
+
interface Mr {
|
|
1173
|
+
/**
|
|
1174
|
+
* Type of registration in `country`.
|
|
1175
|
+
*/
|
|
1176
|
+
type: 'standard';
|
|
1177
|
+
}
|
|
1178
|
+
|
|
1179
|
+
interface Mt {
|
|
1180
|
+
standard?: Mt.Standard;
|
|
1181
|
+
|
|
1182
|
+
/**
|
|
1183
|
+
* Type of registration in an EU country.
|
|
1184
|
+
*/
|
|
1185
|
+
type: Mt.Type;
|
|
1186
|
+
}
|
|
1187
|
+
|
|
1188
|
+
namespace Mt {
|
|
1189
|
+
interface Standard {
|
|
1190
|
+
/**
|
|
1191
|
+
* Place of supply scheme used in an EU standard registration.
|
|
1192
|
+
*/
|
|
1193
|
+
place_of_supply_scheme: Standard.PlaceOfSupplyScheme;
|
|
1194
|
+
}
|
|
1195
|
+
|
|
1196
|
+
namespace Standard {
|
|
1197
|
+
type PlaceOfSupplyScheme =
|
|
1198
|
+
| 'inbound_goods'
|
|
1199
|
+
| 'small_seller'
|
|
1200
|
+
| 'standard';
|
|
1201
|
+
}
|
|
1202
|
+
|
|
1203
|
+
type Type = 'ioss' | 'oss_non_union' | 'oss_union' | 'standard';
|
|
1204
|
+
}
|
|
1205
|
+
|
|
1206
|
+
interface Mx {
|
|
1207
|
+
/**
|
|
1208
|
+
* Type of registration in `country`.
|
|
1209
|
+
*/
|
|
1210
|
+
type: 'simplified';
|
|
1211
|
+
}
|
|
1212
|
+
|
|
1213
|
+
interface My {
|
|
1214
|
+
/**
|
|
1215
|
+
* Type of registration in `country`.
|
|
1216
|
+
*/
|
|
1217
|
+
type: 'simplified';
|
|
1218
|
+
}
|
|
1219
|
+
|
|
1220
|
+
interface Ng {
|
|
1221
|
+
/**
|
|
1222
|
+
* Type of registration in `country`.
|
|
1223
|
+
*/
|
|
1224
|
+
type: 'simplified';
|
|
1225
|
+
}
|
|
1226
|
+
|
|
1227
|
+
interface Nl {
|
|
1228
|
+
standard?: Nl.Standard;
|
|
1229
|
+
|
|
1230
|
+
/**
|
|
1231
|
+
* Type of registration in an EU country.
|
|
1232
|
+
*/
|
|
1233
|
+
type: Nl.Type;
|
|
1234
|
+
}
|
|
1235
|
+
|
|
1236
|
+
namespace Nl {
|
|
1237
|
+
interface Standard {
|
|
1238
|
+
/**
|
|
1239
|
+
* Place of supply scheme used in an EU standard registration.
|
|
1240
|
+
*/
|
|
1241
|
+
place_of_supply_scheme: Standard.PlaceOfSupplyScheme;
|
|
1242
|
+
}
|
|
1243
|
+
|
|
1244
|
+
namespace Standard {
|
|
1245
|
+
type PlaceOfSupplyScheme =
|
|
1246
|
+
| 'inbound_goods'
|
|
1247
|
+
| 'small_seller'
|
|
1248
|
+
| 'standard';
|
|
1249
|
+
}
|
|
1250
|
+
|
|
1251
|
+
type Type = 'ioss' | 'oss_non_union' | 'oss_union' | 'standard';
|
|
1252
|
+
}
|
|
1253
|
+
|
|
1254
|
+
interface No {
|
|
1255
|
+
standard?: No.Standard;
|
|
1256
|
+
|
|
1257
|
+
/**
|
|
1258
|
+
* Type of registration in `country`.
|
|
1259
|
+
*/
|
|
1260
|
+
type: 'standard';
|
|
1261
|
+
}
|
|
1262
|
+
|
|
1263
|
+
namespace No {
|
|
1264
|
+
interface Standard {
|
|
1265
|
+
/**
|
|
1266
|
+
* Place of supply scheme used in an Default standard registration.
|
|
1267
|
+
*/
|
|
1268
|
+
place_of_supply_scheme: Standard.PlaceOfSupplyScheme;
|
|
1269
|
+
}
|
|
1270
|
+
|
|
1271
|
+
namespace Standard {
|
|
1272
|
+
type PlaceOfSupplyScheme = 'inbound_goods' | 'standard';
|
|
1273
|
+
}
|
|
1274
|
+
}
|
|
1275
|
+
|
|
1276
|
+
interface Np {
|
|
1277
|
+
/**
|
|
1278
|
+
* Type of registration in `country`.
|
|
1279
|
+
*/
|
|
1280
|
+
type: 'simplified';
|
|
1281
|
+
}
|
|
1282
|
+
|
|
1283
|
+
interface Nz {
|
|
1284
|
+
standard?: Nz.Standard;
|
|
1285
|
+
|
|
1286
|
+
/**
|
|
1287
|
+
* Type of registration in `country`.
|
|
1288
|
+
*/
|
|
1289
|
+
type: 'standard';
|
|
1290
|
+
}
|
|
1291
|
+
|
|
1292
|
+
namespace Nz {
|
|
1293
|
+
interface Standard {
|
|
1294
|
+
/**
|
|
1295
|
+
* Place of supply scheme used in an Default standard registration.
|
|
1296
|
+
*/
|
|
1297
|
+
place_of_supply_scheme: Standard.PlaceOfSupplyScheme;
|
|
1298
|
+
}
|
|
1299
|
+
|
|
1300
|
+
namespace Standard {
|
|
1301
|
+
type PlaceOfSupplyScheme = 'inbound_goods' | 'standard';
|
|
1302
|
+
}
|
|
1303
|
+
}
|
|
1304
|
+
|
|
1305
|
+
interface Om {
|
|
1306
|
+
/**
|
|
1307
|
+
* Type of registration in `country`.
|
|
1308
|
+
*/
|
|
1309
|
+
type: 'standard';
|
|
1310
|
+
}
|
|
1311
|
+
|
|
1312
|
+
interface Pe {
|
|
1313
|
+
/**
|
|
1314
|
+
* Type of registration in `country`.
|
|
1315
|
+
*/
|
|
1316
|
+
type: 'simplified';
|
|
1317
|
+
}
|
|
1318
|
+
|
|
1319
|
+
interface Ph {
|
|
1320
|
+
/**
|
|
1321
|
+
* Type of registration in `country`.
|
|
1322
|
+
*/
|
|
1323
|
+
type: 'simplified';
|
|
1324
|
+
}
|
|
1325
|
+
|
|
1326
|
+
interface Pl {
|
|
1327
|
+
standard?: Pl.Standard;
|
|
1328
|
+
|
|
1329
|
+
/**
|
|
1330
|
+
* Type of registration in an EU country.
|
|
1331
|
+
*/
|
|
1332
|
+
type: Pl.Type;
|
|
1333
|
+
}
|
|
1334
|
+
|
|
1335
|
+
namespace Pl {
|
|
1336
|
+
interface Standard {
|
|
1337
|
+
/**
|
|
1338
|
+
* Place of supply scheme used in an EU standard registration.
|
|
1339
|
+
*/
|
|
1340
|
+
place_of_supply_scheme: Standard.PlaceOfSupplyScheme;
|
|
1341
|
+
}
|
|
1342
|
+
|
|
1343
|
+
namespace Standard {
|
|
1344
|
+
type PlaceOfSupplyScheme =
|
|
1345
|
+
| 'inbound_goods'
|
|
1346
|
+
| 'small_seller'
|
|
1347
|
+
| 'standard';
|
|
1348
|
+
}
|
|
1349
|
+
|
|
1350
|
+
type Type = 'ioss' | 'oss_non_union' | 'oss_union' | 'standard';
|
|
1351
|
+
}
|
|
1352
|
+
|
|
1353
|
+
interface Pt {
|
|
1354
|
+
standard?: Pt.Standard;
|
|
1355
|
+
|
|
1356
|
+
/**
|
|
1357
|
+
* Type of registration in an EU country.
|
|
1358
|
+
*/
|
|
1359
|
+
type: Pt.Type;
|
|
1360
|
+
}
|
|
1361
|
+
|
|
1362
|
+
namespace Pt {
|
|
1363
|
+
interface Standard {
|
|
1364
|
+
/**
|
|
1365
|
+
* Place of supply scheme used in an EU standard registration.
|
|
1366
|
+
*/
|
|
1367
|
+
place_of_supply_scheme: Standard.PlaceOfSupplyScheme;
|
|
1368
|
+
}
|
|
1369
|
+
|
|
1370
|
+
namespace Standard {
|
|
1371
|
+
type PlaceOfSupplyScheme =
|
|
1372
|
+
| 'inbound_goods'
|
|
1373
|
+
| 'small_seller'
|
|
1374
|
+
| 'standard';
|
|
1375
|
+
}
|
|
1376
|
+
|
|
1377
|
+
type Type = 'ioss' | 'oss_non_union' | 'oss_union' | 'standard';
|
|
1378
|
+
}
|
|
1379
|
+
|
|
1380
|
+
interface Ro {
|
|
1381
|
+
standard?: Ro.Standard;
|
|
1382
|
+
|
|
1383
|
+
/**
|
|
1384
|
+
* Type of registration in an EU country.
|
|
1385
|
+
*/
|
|
1386
|
+
type: Ro.Type;
|
|
1387
|
+
}
|
|
1388
|
+
|
|
1389
|
+
namespace Ro {
|
|
1390
|
+
interface Standard {
|
|
1391
|
+
/**
|
|
1392
|
+
* Place of supply scheme used in an EU standard registration.
|
|
1393
|
+
*/
|
|
1394
|
+
place_of_supply_scheme: Standard.PlaceOfSupplyScheme;
|
|
1395
|
+
}
|
|
1396
|
+
|
|
1397
|
+
namespace Standard {
|
|
1398
|
+
type PlaceOfSupplyScheme =
|
|
1399
|
+
| 'inbound_goods'
|
|
1400
|
+
| 'small_seller'
|
|
1401
|
+
| 'standard';
|
|
1402
|
+
}
|
|
1403
|
+
|
|
1404
|
+
type Type = 'ioss' | 'oss_non_union' | 'oss_union' | 'standard';
|
|
1405
|
+
}
|
|
1406
|
+
|
|
1407
|
+
interface Rs {
|
|
1408
|
+
/**
|
|
1409
|
+
* Type of registration in `country`.
|
|
1410
|
+
*/
|
|
1411
|
+
type: 'standard';
|
|
1412
|
+
}
|
|
1413
|
+
|
|
1414
|
+
interface Ru {
|
|
1415
|
+
/**
|
|
1416
|
+
* Type of registration in `country`.
|
|
1417
|
+
*/
|
|
1418
|
+
type: 'simplified';
|
|
1419
|
+
}
|
|
1420
|
+
|
|
1421
|
+
interface Sa {
|
|
1422
|
+
/**
|
|
1423
|
+
* Type of registration in `country`.
|
|
1424
|
+
*/
|
|
1425
|
+
type: 'simplified';
|
|
1426
|
+
}
|
|
1427
|
+
|
|
1428
|
+
interface Se {
|
|
1429
|
+
standard?: Se.Standard;
|
|
1430
|
+
|
|
1431
|
+
/**
|
|
1432
|
+
* Type of registration in an EU country.
|
|
1433
|
+
*/
|
|
1434
|
+
type: Se.Type;
|
|
1435
|
+
}
|
|
1436
|
+
|
|
1437
|
+
namespace Se {
|
|
1438
|
+
interface Standard {
|
|
1439
|
+
/**
|
|
1440
|
+
* Place of supply scheme used in an EU standard registration.
|
|
1441
|
+
*/
|
|
1442
|
+
place_of_supply_scheme: Standard.PlaceOfSupplyScheme;
|
|
1443
|
+
}
|
|
1444
|
+
|
|
1445
|
+
namespace Standard {
|
|
1446
|
+
type PlaceOfSupplyScheme =
|
|
1447
|
+
| 'inbound_goods'
|
|
1448
|
+
| 'small_seller'
|
|
1449
|
+
| 'standard';
|
|
1450
|
+
}
|
|
1451
|
+
|
|
1452
|
+
type Type = 'ioss' | 'oss_non_union' | 'oss_union' | 'standard';
|
|
1453
|
+
}
|
|
1454
|
+
|
|
1455
|
+
interface Sg {
|
|
1456
|
+
standard?: Sg.Standard;
|
|
1457
|
+
|
|
1458
|
+
/**
|
|
1459
|
+
* Type of registration in `country`.
|
|
1460
|
+
*/
|
|
1461
|
+
type: 'standard';
|
|
1462
|
+
}
|
|
1463
|
+
|
|
1464
|
+
namespace Sg {
|
|
1465
|
+
interface Standard {
|
|
1466
|
+
/**
|
|
1467
|
+
* Place of supply scheme used in an Default standard registration.
|
|
1468
|
+
*/
|
|
1469
|
+
place_of_supply_scheme: Standard.PlaceOfSupplyScheme;
|
|
1470
|
+
}
|
|
1471
|
+
|
|
1472
|
+
namespace Standard {
|
|
1473
|
+
type PlaceOfSupplyScheme = 'inbound_goods' | 'standard';
|
|
1474
|
+
}
|
|
1475
|
+
}
|
|
1476
|
+
|
|
1477
|
+
interface Si {
|
|
1478
|
+
standard?: Si.Standard;
|
|
1479
|
+
|
|
1480
|
+
/**
|
|
1481
|
+
* Type of registration in an EU country.
|
|
1482
|
+
*/
|
|
1483
|
+
type: Si.Type;
|
|
1484
|
+
}
|
|
1485
|
+
|
|
1486
|
+
namespace Si {
|
|
1487
|
+
interface Standard {
|
|
1488
|
+
/**
|
|
1489
|
+
* Place of supply scheme used in an EU standard registration.
|
|
1490
|
+
*/
|
|
1491
|
+
place_of_supply_scheme: Standard.PlaceOfSupplyScheme;
|
|
1492
|
+
}
|
|
1493
|
+
|
|
1494
|
+
namespace Standard {
|
|
1495
|
+
type PlaceOfSupplyScheme =
|
|
1496
|
+
| 'inbound_goods'
|
|
1497
|
+
| 'small_seller'
|
|
1498
|
+
| 'standard';
|
|
1499
|
+
}
|
|
1500
|
+
|
|
1501
|
+
type Type = 'ioss' | 'oss_non_union' | 'oss_union' | 'standard';
|
|
1502
|
+
}
|
|
1503
|
+
|
|
1504
|
+
interface Sk {
|
|
1505
|
+
standard?: Sk.Standard;
|
|
1506
|
+
|
|
1507
|
+
/**
|
|
1508
|
+
* Type of registration in an EU country.
|
|
1509
|
+
*/
|
|
1510
|
+
type: Sk.Type;
|
|
1511
|
+
}
|
|
1512
|
+
|
|
1513
|
+
namespace Sk {
|
|
1514
|
+
interface Standard {
|
|
1515
|
+
/**
|
|
1516
|
+
* Place of supply scheme used in an EU standard registration.
|
|
1517
|
+
*/
|
|
1518
|
+
place_of_supply_scheme: Standard.PlaceOfSupplyScheme;
|
|
1519
|
+
}
|
|
1520
|
+
|
|
1521
|
+
namespace Standard {
|
|
1522
|
+
type PlaceOfSupplyScheme =
|
|
1523
|
+
| 'inbound_goods'
|
|
1524
|
+
| 'small_seller'
|
|
1525
|
+
| 'standard';
|
|
1526
|
+
}
|
|
1527
|
+
|
|
1528
|
+
type Type = 'ioss' | 'oss_non_union' | 'oss_union' | 'standard';
|
|
1529
|
+
}
|
|
1530
|
+
|
|
1531
|
+
interface Sn {
|
|
1532
|
+
/**
|
|
1533
|
+
* Type of registration in `country`.
|
|
1534
|
+
*/
|
|
1535
|
+
type: 'simplified';
|
|
1536
|
+
}
|
|
1537
|
+
|
|
1538
|
+
interface Sr {
|
|
1539
|
+
/**
|
|
1540
|
+
* Type of registration in `country`.
|
|
1541
|
+
*/
|
|
1542
|
+
type: 'standard';
|
|
1543
|
+
}
|
|
1544
|
+
|
|
1545
|
+
interface Th {
|
|
1546
|
+
/**
|
|
1547
|
+
* Type of registration in `country`.
|
|
1548
|
+
*/
|
|
1549
|
+
type: 'simplified';
|
|
1550
|
+
}
|
|
1551
|
+
|
|
1552
|
+
interface Tj {
|
|
1553
|
+
/**
|
|
1554
|
+
* Type of registration in `country`.
|
|
1555
|
+
*/
|
|
1556
|
+
type: 'simplified';
|
|
1557
|
+
}
|
|
1558
|
+
|
|
1559
|
+
interface Tr {
|
|
1560
|
+
/**
|
|
1561
|
+
* Type of registration in `country`.
|
|
1562
|
+
*/
|
|
1563
|
+
type: 'simplified';
|
|
1564
|
+
}
|
|
1565
|
+
|
|
1566
|
+
interface Tw {
|
|
1567
|
+
/**
|
|
1568
|
+
* Type of registration in `country`.
|
|
1569
|
+
*/
|
|
1570
|
+
type: 'simplified';
|
|
1571
|
+
}
|
|
1572
|
+
|
|
1573
|
+
interface Tz {
|
|
1574
|
+
/**
|
|
1575
|
+
* Type of registration in `country`.
|
|
1576
|
+
*/
|
|
1577
|
+
type: 'simplified';
|
|
1578
|
+
}
|
|
1579
|
+
|
|
1580
|
+
interface Ua {
|
|
1581
|
+
/**
|
|
1582
|
+
* Type of registration in `country`.
|
|
1583
|
+
*/
|
|
1584
|
+
type: 'simplified';
|
|
1585
|
+
}
|
|
1586
|
+
|
|
1587
|
+
interface Ug {
|
|
1588
|
+
/**
|
|
1589
|
+
* Type of registration in `country`.
|
|
1590
|
+
*/
|
|
1591
|
+
type: 'simplified';
|
|
1592
|
+
}
|
|
1593
|
+
|
|
1594
|
+
interface Us {
|
|
1595
|
+
local_amusement_tax?: Us.LocalAmusementTax;
|
|
1596
|
+
|
|
1597
|
+
local_lease_tax?: Us.LocalLeaseTax;
|
|
1598
|
+
|
|
1599
|
+
/**
|
|
1600
|
+
* Two-letter US state code ([ISO 3166-2](https://en.wikipedia.org/wiki/ISO_3166-2)).
|
|
1601
|
+
*/
|
|
1602
|
+
state: string;
|
|
1603
|
+
|
|
1604
|
+
state_sales_tax?: Us.StateSalesTax;
|
|
1605
|
+
|
|
1606
|
+
/**
|
|
1607
|
+
* Type of registration in the US.
|
|
1608
|
+
*/
|
|
1609
|
+
type: Us.Type;
|
|
1610
|
+
}
|
|
1611
|
+
|
|
1612
|
+
namespace Us {
|
|
1613
|
+
interface LocalAmusementTax {
|
|
1614
|
+
/**
|
|
1615
|
+
* A [FIPS code](https://www.census.gov/library/reference/code-lists/ansi.html) representing the local jurisdiction.
|
|
1616
|
+
*/
|
|
1617
|
+
jurisdiction: string;
|
|
1618
|
+
}
|
|
1619
|
+
|
|
1620
|
+
interface LocalLeaseTax {
|
|
1621
|
+
/**
|
|
1622
|
+
* A [FIPS code](https://www.census.gov/library/reference/code-lists/ansi.html) representing the local jurisdiction.
|
|
1623
|
+
*/
|
|
1624
|
+
jurisdiction: string;
|
|
1625
|
+
}
|
|
1626
|
+
|
|
1627
|
+
interface StateSalesTax {
|
|
1628
|
+
/**
|
|
1629
|
+
* Elections for the state sales tax registration.
|
|
1630
|
+
*/
|
|
1631
|
+
elections?: Array<StateSalesTax.Election>;
|
|
1632
|
+
}
|
|
1633
|
+
|
|
1634
|
+
namespace StateSalesTax {
|
|
1635
|
+
interface Election {
|
|
1636
|
+
/**
|
|
1637
|
+
* A [FIPS code](https://www.census.gov/library/reference/code-lists/ansi.html) representing the local jurisdiction.
|
|
1638
|
+
*/
|
|
1639
|
+
jurisdiction?: string;
|
|
1640
|
+
|
|
1641
|
+
/**
|
|
1642
|
+
* The type of the election for the state sales tax registration.
|
|
1643
|
+
*/
|
|
1644
|
+
type: Election.Type;
|
|
1645
|
+
}
|
|
1646
|
+
|
|
1647
|
+
namespace Election {
|
|
1648
|
+
type Type =
|
|
1649
|
+
| 'local_use_tax'
|
|
1650
|
+
| 'simplified_sellers_use_tax'
|
|
1651
|
+
| 'single_local_use_tax';
|
|
1652
|
+
}
|
|
1653
|
+
}
|
|
1654
|
+
|
|
1655
|
+
type Type =
|
|
1656
|
+
| 'local_amusement_tax'
|
|
1657
|
+
| 'local_lease_tax'
|
|
1658
|
+
| 'state_communications_tax'
|
|
1659
|
+
| 'state_retail_delivery_fee'
|
|
1660
|
+
| 'state_sales_tax';
|
|
1661
|
+
}
|
|
1662
|
+
|
|
1663
|
+
interface Uy {
|
|
1664
|
+
/**
|
|
1665
|
+
* Type of registration in `country`.
|
|
1666
|
+
*/
|
|
1667
|
+
type: 'standard';
|
|
1668
|
+
}
|
|
1669
|
+
|
|
1670
|
+
interface Uz {
|
|
1671
|
+
/**
|
|
1672
|
+
* Type of registration in `country`.
|
|
1673
|
+
*/
|
|
1674
|
+
type: 'simplified';
|
|
1675
|
+
}
|
|
1676
|
+
|
|
1677
|
+
interface Vn {
|
|
1678
|
+
/**
|
|
1679
|
+
* Type of registration in `country`.
|
|
1680
|
+
*/
|
|
1681
|
+
type: 'simplified';
|
|
1682
|
+
}
|
|
1683
|
+
|
|
1684
|
+
interface Za {
|
|
1685
|
+
/**
|
|
1686
|
+
* Type of registration in `country`.
|
|
1687
|
+
*/
|
|
1688
|
+
type: 'standard';
|
|
1689
|
+
}
|
|
1690
|
+
|
|
1691
|
+
interface Zm {
|
|
1692
|
+
/**
|
|
1693
|
+
* Type of registration in `country`.
|
|
1694
|
+
*/
|
|
1695
|
+
type: 'simplified';
|
|
1696
|
+
}
|
|
1697
|
+
|
|
1698
|
+
interface Zw {
|
|
1699
|
+
/**
|
|
1700
|
+
* Type of registration in `country`.
|
|
1701
|
+
*/
|
|
1702
|
+
type: 'standard';
|
|
1703
|
+
}
|
|
1704
|
+
}
|
|
1705
|
+
|
|
1706
|
+
type Status = 'active' | 'expired' | 'scheduled';
|
|
1707
|
+
}
|
|
1708
|
+
}
|
|
1709
|
+
}
|
|
1710
|
+
}
|