Skip to main content

Changelog

Traide Changelog

We regularly update our product and API while providing detailed notes on each release. We first release to staging, then to production about a week later. Learn more about our release process.

: Staging

: Production

✨ New

Catalog
Capture variant dimensions

Added the following new size fields to the productVariant model: length, width, height, size_units.

Learn more ->

🪲 Fixed

Inventory

Fixed an issue where STOCK_UPDATED events were not triggered during certain stock update scenarios.

: Staging

: Production

✨ New

Orders

User tracking on fulfillments

Added a user field to fulfillments, making it easier to track which team member processed each fulfillment.

✨ New

Permissions

Inventory management permission

Introduced a new "Manage Inventory" permission, allowing more granular control over who can update stock levels and manage product inventory.

🪲 Fixed

Orders

Fixed an issue where refund lines could not be queried immediately after being added to an order.

Integrations

Resolved a problem with the plugin system that could cause errors when loading plugins dynamically.

Orders

Fixed an issue where the order fully paid event could be triggered before the transaction was fully committed, potentially causing inconsistencies in order status.

API

Corrected internal data handling that could cause errors when working with related objects in certain edge cases.

🚫 Deprecated

Orders

Marked older refund APIs as deprecated. These will be removed in a future release. Please migrate to the newer refund API endpoints.

: Staging

: Production

✨ New

Catalog
Filtering by attributes with AND operators

We've made filtering by attributes more powerful by introducing support for AND operators.

This allows users to build detailed filters, improving the accuracy of their product or productVariant filtering, and enhancing their browsing experience.

To facilitate this this, the AttributeInput filter input has been extended with two fields:

  • condition: How to combine the specified attribute values, using either AND (default) or OR operators.
  • connector: How to link multiple filter clauses, connecting the current filter clause to the previous ones with either AND (default) or OR operators.
query {
products(
first: 100
filter: {
attributes: [
{
slug: "color",
values: [
"purple",
"violet",
"red"
],
condition: OR
}
{
slug: "brand",
values: ["acme"],
connector: AND
}
]
features: {
operations: {
name: "Season"
values: ["summer", "spring"]
condition: OR
}
connector: AND
}
}
) {
totalCount
edges {
node {
id
name
description
variants {
name
id
}
}
}
}
}
Show more ↓
Orders
Automatic invoice generation

You can now configure the Invoicing plugin to generate invoices automatically once payment is received for an order.

Learn more ->

Orders
Secondary order lines

Added the NauticalSecondaryOrderLine object, which represents a sub-order-line for grouped products.

Inventory
Allocate inventory configuration

Added more control over inventory allocation and stock validation handling.

The following new boolean fields are added to the MarketplaceConfigurationInput, for global settings on how your marketplace behaves:

  • enableStockAllocationForQuotes: When true (default), allocates inventory when a quote order is created.
  • enableStockAllocationForOffers: When true (default), allocates inventory when an offer order is created.
  • enableStockAllocationForDrafts: When true (default), allocates inventory when a draft order is created.
  • validate_stock_on_order_payment_creation: When true, validates stock quantity to fulfill the order when a payment is created. Defaults to false.
Security
Manage fulfillment permission

Added a new MANAGE_FULFILLMENT permission to the PermissionEnum. Users with this permission can manage order fulfillments, including reading, creating, updating, and cancelling, along with handling tracking information and shipping labels.

Without this permission, users are limited to reading fulfillment information for orders they have access to, but cannot perform any other fulfillment actions.

💎 Changed

Integrations
New address fields added to Typeform payload

The postal_code and phone_number fields have been added to the Typeform payload for seller onboarding.

🪲 Fixed

Integrations

Fixed an issue where product images imported from Shopify were not being rendered properly.

Catalog

Fixed an issue with applying an attribute filter to the productVariants query, where duplicate results could be returned.

Security

Fixed an issue with the pluginUpdate mutation, where a seller user with manage plugins permission could update any plugin. Now seller admins can only change plugin configurations owned by their seller.

: Staging

: Production

✨ New

Orders
Capture the user who completed a fulfillment

Added the user field to the fulfillment model, which can be queried to view which user performed a fulfillment.

Security
Manage inventory permission

Added the MANAGE_INVENTORY permission, providing more control over which staff members can manage inventory-related fields (sku, track_inventory, stocks).

🪲 Fixed

Catalog

Fixed an issue where the products query was not returning complete information about grouped products in certain circumstances.

Integrations

Fixed an issue where mapping the Tax ID (identification) field for seller onboarding with Typeform could cause the SELLER_CREATE webhook jobs to become stuck.

💎 Changed

Documents
Enhanced invoice header with marketplace information

When the marketplace logo is unavailable, the upper left header of customer and proforma invoices now displays the marketplace name and contact information.

✨ New

Inventory
Webhooks for stock events

New webhooks have been added for the STOCK_CREATED and STOCK_UPDATED events.

Toggle the following tabs to see example webhook payloads:

[
{
"id": "U3RvY2s6MzU5",
"new": {
"quantity": 110,
"quantity_allocated": 0,
"quantity_available": 110,
},
"old": {
"quantity": 10,
"quantity_allocated": 0,
"quantity_available": 10,
},
"type": "Stock",
"warehouse_id": "V2FyZWhvd...",
"warehouse_name": "Americas",
"product_variant_id": "UHJvZHVj..."
}
]
Show more ↓

💎 Changed

Documents
Secure document URLs

Document handling has been enhanced for greater security. Documents are now stored in a private container, accessible through secure URLs with time-limited access tokens.

By default, these URLs are valid for one day but can be adjusted upon request. When sharing URLs with customers, they will have a limited timeframe to access them. The document URL stored in the API and Dashboard will always return the most recent signed URL.

This change applies to digital_contents on products, documents attached to objects such as customers or products, export_files, import_files, and invoices. Previously added documents remain compatible with this change.

Orders
Updated at timestamp for fulfillments

The updated datetime field has been added to the fulfillment object model and related webhooks.

🚫 Deprecated

Integrations
ShippyPro

ShippyPro is no longer supported and it has been removed from the list of natively supported applications.

🪲 Fixed

Documents

Fixed an issue where the "Price" column on customer and proforma invoices displayed the price including tax instead of the net price of the product.

Checkout

Fixed an issue that prevented customers from checking out when all products in the cart had taxes turned off.

Catalog

Fixed an issue where a seller admin was unable to assign an image to a product variant they owned if the marketplace operator had previously attempted to assign the same image.

Catalog

Fixed an issue where marketplace operators were unable to upload or assign images for a product or variant owned by a seller when strict product image handling was enabled.

💎 Changed

Accounts
Account register mutation enhancements

Extended the accountRegister mutation to support new input fields and adding default addresses when creating accounts.

The following fields have been added to the AccountRegisterInput:

  • firstName
  • lastName
  • defaultBillingAddress
  • defaultShippingAddress
Vendor Mgmt
Create seller with owner enhancements

Extended the sellerWithOwnerCreate mutation to accept metadata for the seller or the user being created as part of the mutation, through the metadata field.

Furthermore, the sellerWithOwnerCreate mutation can now be run with a custom app bearer authentication token.

🚫 Deprecated

Vendor mgmt
Create seller with owner status input

The DetailedSellerInput.status field, which is used in the sellerWithOwnerCreate mutation, has been deprecated.

Going forward, this field will be ignored. The seller will always be created in the PENDING state.

🪲 Fixed

Checkout

Fixed an issue where the API could return a 500 error and prevent checkout after receiving a 404 error from Stripe when trying to find a PaymentIntent.

✨ New

Inventory
Country code HTTP header

A new HTTP_COUNTRYCODE header is supported, which allows you to override the default IP-based customer location detection and specify the country directly.

💎 Changed

Checkout
Performance improvements

Performance has been improved for checkouts requiring currency conversion.

🪲 Fixed

Integrations

Fixed an issue where orders containing only untaxed items resulted in an Avalara error.

🪲 Fixed

Microsites

Fixed a permission issue with querying microsites with a JWT token associated with a buyer account.

note

Release notes for version 1.4.1 were skipped due to an internal deployment. Changes from version 1.4.1 are included in these notes.

💎 Changed

Inventory
Retrieve product warehouse stats

Added warehouseStats to the product query, which will return aggregated stock quantities for all of a product's variants.

query {
products(last: 15) {
edges {
node {
id
name
warehousesStats {
warehouseId
quantity
quantityAllocated
quantityAvailable
}
}
}
}
}

🪲 Fixed

Orders

Fixed a permission check issue with the retrieving the identification field through a seller query.

Catalog

Fixed an issue where you could not query products for a seller.

: Staging

: Production

✨ New

Emails

Custom email template suffixes

Added support for user-defined suffixes in SendGrid email templates, allowing marketplace operators to customize email template naming conventions.

Products

Warehouse availability statistics

Product queries now include warehouse statistics, making it easier to view inventory availability across multiple warehouses at a glance.

Seller mgmt

Enhanced seller product queries

Enabled the seller.products query and added field-level permissions to the Seller type, providing more granular control over seller data access.

💎 Changed

Payouts

Refund payment validation

Refunds are now validated to ensure they are fully paid before moving to the PAID status, preventing issues with incomplete refund processing.

🪲 Fixed

Payouts

Fixed an issue where refunds could move to the approved state without proper validation.

Seller mgmt

Fixed a permission issue where seller Tax Identification Numbers (TINs) could be viewed by any seller member, instead of being restricted to authorized personnel only.

Was this page helpful?