Open Self Service Release 1.6.0

We're excited to announce Release 1.6.0 of Open Self Service! This release lays the groundwork for cart and checkout capabilities with Medusa integration, introduces an interactive CLI wizard for setting up new projects, brings a major domain-based reorganization of blocks and UI components, and adds Zendesk Help Center support for browsing articles and categories.
Let's dive into what's new!
New features
Cart and checkout
This release introduces the initial version of cart and checkout support. You can now build shopping experiences where users browse products, add items to a cart, go through a multi-step checkout (shipping, billing, payment), and receive an order confirmation — all within O2S.
What's included:
- New blocks covering the full purchase journey: from cart management through checkout steps to order confirmation.
- "Add to Cart" buttons across product blocks (Product List, Product Details, Recommended Products) with promo code support.
- Multi-step checkout with address, company data, and payment forms — including validation and error handling.
Medusa.js commerce integration
To power the cart and checkout features above, we've added a full Medusa.js integration — the first commerce backend supported in O2S. This means you can connect to a real store out of the box, without building your own API layer.
The integration covers six O2S modules:
| Module | What it enables |
|---|---|
| Carts | Cart creation, line items, addresses, shipping methods, promo codes |
| Checkout | Multi-step checkout flow with order placement |
| Customers | Saved address management for authenticated users |
| Orders | Order history and details |
| Payments | Payment session creation and provider selection |
| Products | Product catalog browsing with variants and pricing |
It supports both guest and authenticated checkout, multi-currency pricing, and uses Medusa's Store API with SSO-based authentication. For extended use cases like asset tracking and service subscriptions, there's also an optional Medusa plugin that adds custom entities.
See the full Medusa.js integration docs for setup instructions, and the Cart & Checkout guide for details on the checkout flow.
Interactive CLI wizard
Setting up a new O2S project is now much easier. Instead of cloning a repository and manually configuring packages, you can use the new interactive wizard that walks you through the entire process:
npx create-o2s-app my-project
The wizard lets you choose between three paths:
- O2S — a Self Service Portal with customer-facing blocks (tickets, orders, invoices, etc.).
- DXP — a Digital Experience Platform with marketing-oriented content blocks (hero, features, pricing, etc.).
- Custom — pick exactly which blocks and integrations you need.
After you make your choices, the wizard automatically sets up the project: installs the right packages, generates environment variable configuration, and prepares the app to run. It also includes a new @o2s/integrations.mocked-dxp integration that provides ready-to-use mock content for the DXP path, so you can see a working application right away.
For all available CLI options and usage examples, see the Installation guide.
Domain-based block and UI organization
Blocks and UI components are now organized by business domain. For example, billing-related blocks live under packages/blocks/billing/, support blocks under packages/blocks/support/, and checkout blocks under packages/blocks/checkout/. The same applies to UI components, which are now grouped into categories like Cart, Checkout, Cards, Data, Forms, Products, and others.
This makes it easier to find what you're looking for when working with the codebase, and scales better as the number of blocks grows.
Breaking change: UI import paths have changed. The new format is @o2s/ui/components/<group>/<Component> — for example:
import { ProductCard } from '@o2s/ui/components/Cards/ProductCard';
import { DataGrid } from '@o2s/ui/components/Data/DataGrid';
import { Carousel } from '@o2s/ui/components/Media/Carousel';
Shared block prop types
Previously, every block defined its own props like slug, userId, or isDraftModeEnabled independently. This led to subtle inconsistencies and made it harder to maintain blocks as the number of them grew.
We've introduced a set of shared prop types in @o2s/framework that blocks can now extend:
import { Models } from '@o2s/framework/modules';
// Pick only what your block needs:
type MyBlockProps = Models.BlockProps.FullBlockProps<typeof routing>;
// Available base types:
// - BaseBlockProps → id, locale, accessToken, routing
// - BlockWithSlugProps → + slug
// - BlockWithUserIdProps → + userId
// - BlockWithDraftModeProps → + isDraftModeEnabled
// - FullBlockProps → all of the above combined
If you maintain custom blocks, switching to these shared types keeps your prop contracts consistent with the rest of the ecosystem and reduces the amount of boilerplate.
Zendesk Help Center articles
The Zendesk integration now goes beyond tickets. Users can browse Help Center content — articles and categories — directly within the O2S portal. This is useful when you want to offer a self-service knowledge base alongside your ticketing system.
See the updated Zendesk integration documentation for setup instructions and available features.
Page-level redirects
You can now configure redirects at the page level through your CMS. When a page has a redirect field set, the frontend automatically performs a locale-aware redirect. This is handy for cases like redirecting a homepage (/en) to a specific landing page (/en/personal), or handling URL migrations without touching code.
Other changes
Developer experience
Several improvements make day-to-day work with O2S smoother:
-
Consistent integration services: integration modules now properly extend framework base classes, which avoids issues with NestJS dependency injection that could occur when mixing
implementsandextends. If you maintain custom integrations, make sure your services extend the base class rather than just implementing the interface. -
Shared header constants: instead of repeating string literals like
'x-locale'or'x-client-timezone'throughout the codebase, there's now a single source of truth:import { HeaderName } from '@o2s/framework/utils';
// Use HeaderName.Locale instead of 'x-locale'
// Use HeaderName.Currency instead of 'x-currency' -
Block registry: adding new blocks to the frontend no longer requires editing a large
switchstatement. Blocks are now registered in a typed map, and unrecognized block types produce a clear warning in the console:const BLOCK_REGISTRY = {
TicketListBlock: (props) => <TicketList.Renderer {...props} />,
CartBlock: (props) => <Cart.Renderer {...props} />,
// ...
} satisfies Record<Modules.Page.Model.Blocks, BlockRenderer>; -
Improved generators: CMS integration scaffolding is cleaner, the block generator output matches real-world usage more closely, and the
eject-blockCLI command now correctly sets the source branch.
New UI components
A set of new UI components was added to support the cart and checkout flows:
StepIndicator— visual step progress for multi-step checkout.RadioTile— selectable option tiles (e.g., for shipping or payment methods).CartItem,CartSummary,CartPromoCode— cart display and promo code input.AddressFields,QuantityInput— form building blocks for checkout pages.
Storybook and documentation
- Custom Storybook landing page with O2S branding and navigation guidance.
- Package-level README files are now displayed as Storybook documentation (autodocs enabled across blocks).
- Updated READMEs across blocks, integrations, and framework packages.
- New documentation for Carts, Checkout, Customers, Orders, Payments, and Resources data models.
Testing and quality
- Extensive new unit tests for integration packages: Algolia, Zendesk, Redis, MedusaJS, Contentful, and Strapi — covering services, mappers, and error handling.
- Standardized Vitest configuration with coverage collection and reporting.
Bugfixes
- Fixed an issue where pressing arrow keys would scroll multiple carousels at once instead of only the focused one.
- Fixed duplicated navigation items appearing in the header.
- Blocks now handle incomplete or missing data from the CMS more gracefully instead of throwing errors.
Dependency and security updates
This release includes broad dependency maintenance across the stack, including security patches for axios, flatted, qs, and swiper, as well as an upgrade to Storybook 10.2.