griest024
griest024
The core work has been finished for this feature. Do we still need some design work on this?
> I thought the plan was to delete the checkout package. Not true? Originally we had no use for it but @damienwebdev pointed out that "placed order" stuff that introduces...
Is `in_stock` needed for composites and configurables? I think @damienwebdev mentioned that pricing and in stock calculations would be different for comps and configs.
Pretty sure the steps can't have the same name so the `ngBuildCache` var checking logic will ahve to go in the bash script
@damienwebdev Should we: 1) Allow extensions to `DaffStateError` in error state so that apps can transform to ```ts { code message itemId } ``` and Daffodil stores it in the...
By "Individual DaffState" you mean storing the errors on the cart item entity? ```ts interface DaffStatefulCartItem extends DaffCartItem { ... errors: DaffStateError[]; } ``` Or just having another piece of...
I would argue creating an entity is not an individual error for the exact reason you stated, the "individual entity" is not well-defined. `collection.add(new Entity())` feels like more of an...
Hm, good point. This is a complex problem in general. At least to progress with tracking cart item update errors, I'll just put the list of errors in the entity...
Could you get the best of both worlds by setting the return type of the function to `Observable | BehaviorSubject`? I know that makes writing the mock facades more tedious...