docs: update line item ids to differentiate from item ids#112
Open
thompson-tomo wants to merge 2 commits intoUniversal-Commerce-Protocol:mainfrom
Open
docs: update line item ids to differentiate from item ids#112thompson-tomo wants to merge 2 commits intoUniversal-Commerce-Protocol:mainfrom
thompson-tomo wants to merge 2 commits intoUniversal-Commerce-Protocol:mainfrom
Conversation
damaz91
approved these changes
Jan 29, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
This goes through and updates the checkout page to increase consistency with the index page and reduces ambiguity as to what the line_items_id refer to.
This is done by:
line_items.[].idis alwaysli_1as per index page example and differentiates it fromline_items.[].item.idwhich isitem_123fulfillment.methods.[].line_items_idis alwaysli_1to referenceline_items.[].idfulfillment.methods.[].groups.[].line_items_idis alwaysli_1to referenceline_items.[].idType of change
Checklist:
Pull Request Title
This repository enforces Conventional Commits. Your PR title must follow
this format:
type: descriptionortype!: descriptionfor breaking changes.Types:
feat: A new featurefix: A bug fixdocs: Documentation only changesstyle: Changes that do not affect the meaning of the code (white-space,formatting, etc)
refactor: A code change that neither fixes a bug nor adds a featureperf: A code change that improves performancetest: Adding missing tests or correcting existing testschore: Changes to the build process or auxiliary tools and librariesBreaking Changes:
If your change is a breaking change (e.g., removing a field or file), you
must add
!before the colon in your title:type!: descriptionExamples:
feat: add new payment gatewayfix: resolve crash on checkoutdocs: update setup guidefeat!: remove deprecated buyer field from checkout