A Vapor client for the TaxJar API.
You will want to create a TaxJar account if you don't have one already. You will then need to generate an API token, which you will then be able to access from your dashboard.
Add the package instance to your manifest's dependencies
array with the latest version:
.package(url: "https://github.com/skelpo/TaxJar.git", from: "0.1.0")
And run swift package update
.
To use the TaxJar client, you will need to add the TaxJarProvider
to your app's services. The initializer takes in your API key. It is recommended that you don't hard code the value into your app. Instead you should assign it to an environment variable and get it when your app boots.
export TAXJAR_KEY=API-KEY
guard let key = Environment.get("TAXJAR_KEY") else {
throw Abort(.internalServerError, reason: "Missing env var `TAXJAR_KEY `")
}
try services.register(TaxJarProvider(key: key))
Right now, only the POST /taxes
endpoint is supported. You can access it by getting the SalesTax
instance from a container and calling .tax(for:)
with the information to calculate the tax:
let from = Address(country: .unitedStates, zip: "92093", state: .ca, city: "La Jolla", street: "9500 Gilman Drive")
let to = Address(country: .unitedStates, zip: "90002", state: .ca, city: "Los Angeles", street: "1335 E 103rd St")
let nexus = [Address(id: "Main Location", country: .unitedStates, zip: "92093", state: .ca, city: "La Jolla", street: "9500 Gilman Drive")]
let items = [LineItem(id: "1", quantity: 1, taxCode: "20010", price: 15, discount: 0)]
let request = Tax.CalculateRequest(from: from, to: to, amount: 15, shipping: 1.5, customer: "31415", nexus: nexus, items: items)
let tax = try self.app.make(SalesTax.self).tax(for: request)