feat(sales): add payment/verification support to treatments, checkout-events, carts, sessions - #7
Merged
Conversation
…-events, carts, sessions BREAKING: treatments().sync() gains optional payment and verification options; userAgent becomes a required, non-empty option since the API now requires the User-Agent header on this endpoint. Also documents the already-pass-through payment field on checkoutEvents().update() order events and verification field on sessions().create()/update(), and adds an optional variant_id to carts() items. Mirrors the AsterMD PHP SDK's feat/treatments-sync-payment-verification branch. Cuts CHANGELOG.md as 0.0.3. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
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.
Summary
treatments().sync()now requiresuserAgent— empty/missing throwsTypeError. Adds optionalpaymentandverificationoptions with new exported types (TreatmentPaymentOptions,TreatmentCardOptions,TreatmentVerificationOptions,TreatmentIdVerificationOptions).paymentfield on anOrderPlacedcheckoutEvents().update()event,verificationonsessions().create()/update(), and optionalvariant_idoncarts()items — no behavior change on these three, docs only.feat/treatments-sync-payment-verificationbranch to keep both SDKs on the same contract.0.0.3,CHANGELOG.mdupdated.Test plan
npm run ci(lint, format, typecheck, vitest, build, publint) greenTreatments.sync: required-userAgentvalidation, payment body shape (with/without card, pre-auth fields), verification body shape (with/without id check)