ballast alternatives and similar packages
Based on the "Web" category.
Alternatively, view ballast alternatives based on common mentions on social networks and blogs.
-
swagger-petstore
swagger-codegen contains a template-driven engine to generate documentation, API clients and server stubs in different languages by parsing your OpenAPI / Swagger definition. -
servant
Servant is a Haskell DSL for describing, serving, querying, mocking, documenting web applications and more! -
haskell-bitmex-rest
swagger-codegen contains a template-driven engine to generate documentation, API clients and server stubs in different languages by parsing your OpenAPI / Swagger definition. -
neuron
Future-proof note-taking and publishing based on Zettelkasten (superseded by Emanote: https://github.com/srid/emanote) -
tagsoup
Haskell library for parsing and extracting information from (possibly malformed) HTML/XML documents -
keera-hails-reactive-htmldom
Keera Hails: Haskell on Rails - Reactive Programming Framework for Interactive Haskell applications -
ghcjs-dom
Make Document Object Model (DOM) apps that run in any browser and natively using WebKitGtk
CodeRabbit: AI Code Reviews for Developers

* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of ballast or a related project?
README
Ballast 
[Ship cross-section showing ballast](./ballast.jpg) Image courtesy University of Edinburgh
A Haskell wrapper for the Shipwire API
Example Usage
You should set up two ENV variables: SHIPWIRE_USER
and SHIPWIRE_PASS
that represent your Shipwire account's email and password.
Get all receivings with expand=all
query parameter:
import Ballast.Client
import Ballast.Types (sandboxEnvConfig, (-&-), ExpandProductsParam(..), ExpandProducts(..))
main :: IO ()
main = do
config <- sandboxEnvConfig
result <- shipwire config $ getReceivings -&- (ExpandReceivingsParam [ExpandAll])
print result
Create a new order:
{-# LANGUAGE OverloadedStrings #-}
import Ballast.Client
import Ballast.Types
myOrder :: CreateOrder
myOrder =
CreateOrder
Nothing
(Just $ OrderNo "testorder")
Nothing
Nothing
(Just $
CreateOrderOptions
(Just $ WarehouseId 10281)
Nothing
Nothing
Nothing
DomesticOneDay
Nothing
NotSameDay
(Just DontForceDuplicate)
(Just DontForceAddress)
Nothing
Nothing
Nothing
USD
Nothing
Nothing
Nothing
Nothing
Nothing
Nothing)
Nothing
(OrderShipTo
(Just $ Email "[email protected]")
(Name "Test Person")
(Just $ Company "Best Company")
(AddressLine "First line")
(Just $ AddressLine "Second line 25")
(Just $ AddressLine "")
(City "Best city")
(State "WA")
(Just $ PostalCode "100100")
(Country "US")
(Phone "1234567891")
NotCommercial
(Just NotPoBox))
Nothing
Nothing
(OrderItems
[ OrderItem
(Just $ CommercialInvoiceValue 4.5)
(Just $ CommercialInvoiceValueCurrency "USD")
(Quantity 5)
(SKU "mySKU")
])
main :: IO ()
main = do
config <- sandboxEnvConfig
result <- shipwire config $ createOrder myOrder
print result
Testing
The TravisCI tests are run using Stack. You should use Stack instead of cabal
to build and test Ballast to avoid compatibility problems.
Steps to run the tests locally:
- Create a sandbox Shipwire account.
- Go to Warehouse
overview
and add a warehouse named
Test Warehouse
. - Accept the
accurate dimensions
agreement by creating a dummy product. - Install Stack.
- In your local Ballast directory, run
stack setup && stack build
. - Run
stack test
in your local Ballast directory.
What's implemented so far
The core functionality is complete. What's left is to add request and return types for the remaining endpoints.
[ ] Order
- [x] GET /api/v3/orders
- [x] GET /api/v3/orders/{id} or /api/v3/orders/E{externalId}
- [x] POST /api/v3/orders
- [ ] PUT /api/v3/orders/{id} or /api/v3/orders/E{externalId}
- [x] POST /api/v3/orders/{id}/cancel or /api/v3/orders/E{externalId}/cancel
- [ ] GET /api/v3/orders/{id}/items or /api/v3/orders/E{externalId}/items
- [ ] GET /api/v3/orders/{id}/holds or /api/v3/orders/E{externalId}/holds
- [x] GET /api/v3/orders/{id}/trackings or /api/v3/orders/E{externalId}/trackings
- [ ] GET /api/v3/orders/{id}/splitOrders or /api/v3/orders/E{externalId}/splitOrders
- [ ] GET /api/v3/orders/{id}/pieces or /api/v3/orders/E{externalId}/pieces
- [ ] GET /api/v3/orders/{id}/extendedAttributes or /api/v3/orders/E{externalId}/extendedAttributes
- [ ] GET /api/v3/orders/{id}/returns or /api/v3/orders/E{externalId}/returns
- [ ] POST /api/v3/orders/{id}/holds/clear or /api/v3/orders/E{externalId}/holds/clear
- [ ] POST /api/v3/orders/{id}/markProcessed or /api/v3/orders/E{externalId}/markProcessed
- [ ] POST /api/v3/orders/{id}/markSubmitted or /api/v3/orders/E{externalId}/markSubmitted
- [ ] POST /api/v3/orders/{id}/markComplete or /api/v3/orders/E{externalId}/markComplete
[ ] Purchase Order
- [ ] GET /api/v3/purchaseOrders
- [ ] GET /api/v3/purchaseOrders/{id} or /api/v3/purchaseOrders/E{externalId}
- [ ] POST /api/v3/purchaseOrders
- [ ] PUT /api/v3/purchaseOrders/{id} or /api/v3/purchaseOrders/E{externalId}
- [ ] POST /api/v3/purchaseOrders/{id}/cancel or /api/v3/purchaseOrders/E{externalId}/cancel
- [ ] POST /api/v3/purchaseOrders/{id}/hold or /api/v3/purchaseOrders/E{externalId}/hold
- [ ] POST /api/v3/purchaseOrders/{id}/hold/clear or /api/v3/purchaseOrders/E{externalId}/hold/clear
- [ ] GET /api/v3/purchaseOrders/{id}/items or /api/v3/purchaseOrders/E{externalId}/items
- [ ] GET /api/v3/purchaseOrders/{id}/trackings or /api/v3/purchaseOrders/E{externalId}/trackings
- [ ] POST /api/v3/purchaseOrders/{id}/approve or /api/v3/purchaseOrders/E{externalId}/approve
[ ] Container (API v3.1)
- [ ] GET /api/v3.1/containers?isActive={isActive}&type={type}&warehouseIds={warehouseIds}&warehouseExternalIds={warehouseExternalIds}
- [ ] POST /api/v3.1/containers
- [ ] PUT /api/v3.1/containers/{id}
- [ ] GET /api/v3.1/containers/{id}
[x] Address Validation (API v3.1)
- [x] POST /api/v3.1/addressValidation
[ ] Stock
- [x] GET /api/v3/stock
- [ ] POST /api/v3/stock/adjust
[ ] Rate
- [x] POST /api/v3/rate
- [ ] POST /api/v3.1/rate
[x] Receiving
- [x] GET /api/v3/receivings
- [x] POST /api/v3/receivings
- [x] GET /api/v3/receivings/{id}
- [x] PUT /api/v3/receivings/{id}
- [x] POST /api/v3/receivings/{id}/cancel
- [x] POST /api/v3/receivings/{id}/labels/cancel
- [x] GET /api/v3/receivings/{id}/holds
- [x] GET /api/v3/receivings/{id}/instructionsRecipients
- [x] GET /api/v3/receivings/{id}/items
- [x] GET /api/v3/receivings/{id}/shipments
- [x] GET /api/v3/receivings/{id}/trackings
- [x] GET /api/v3/receivings/{id}/labels
[ ] Return
- [ ] GET /api/v3/returns
- [ ] POST /api/v3/returns
- [ ] GET /api/v3/returns/{id}
- [ ] POST /api/v3/returns/{id}/cancel
- [ ] GET /api/v3/returns/{id}/holds
- [ ] GET /api/v3/returns/{id}/items
- [ ] GET /api/v3/returns/{id}/trackings
- [ ] GET /api/v3/returns/{id}/labels
[x] Product
- [x] GET /api/v3/products
- [x] POST /api/v3/products
- [x] PUT /api/v3/products
- [x] PUT /api/v3/products/{id}
- [x] GET /api/v3/products/{id}
- [x] POST /api/v3/products/retire
[ ] Vendor (API v3.1)
- [ ] GET /api/v3.1/vendors?id={id}&externalId={externalId}&name={name}&status={status}
- [ ] POST /api/v3.1/vendors
- [ ] PUT /api/v3.1/vendors/{id}
- [ ] GET /api/v3.1/vendors/{id}
- [ ] POST /api/v3.1/vendors/{id}/retire
- [ ] GET /api/v3.1/vendors/{id}/extendedAttributes
[ ] Webhook
- [ ] GET /api/v3/webhooks
- [ ] POST /api/v3/webhooks
- [ ] GET /api/v3/webhooks/{id}
- [ ] PUT /api/v3/webhooks/{id}
- [ ] DELETE /api/v3/webhooks/{id}
- [ ] GET /api/v3/secret
- [ ] POST /api/v3/secret
- [ ] GET /api/v3/secret/{id}
- [ ] DELETE /api/v3/secret/{id}