@veloceapps/sdk 3.0.14 → 3.0.16

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -526,12 +526,14 @@
526
526
  if (control.invalid) {
527
527
  return;
528
528
  }
529
- this.flowConfiguration.update({
530
- dataType: 'LINEITEM',
531
- attributeType: 'QTY',
532
- id: product.id,
533
- newValue: control.value,
534
- });
529
+ this.flowConfiguration.update([
530
+ {
531
+ dataType: 'LINEITEM',
532
+ attributeType: 'QTY',
533
+ id: product.id,
534
+ newValue: control.value,
535
+ },
536
+ ]);
535
537
  };
536
538
  HeaderCartOverlayComponent.prototype.deleteHandler = function (product) {
537
539
  this.flowConfiguration.delete([product.id]);