@vonq/hapi-elements-types 1.32.0 → 1.33.0

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.
@@ -17,6 +17,10 @@ export type WindowHapiUtils = WindowHapiModuleWithConstructorArgs<
17
17
  {
18
18
  isObject: (item: any) => boolean
19
19
  mergeDeepOverwriteArrays: (original: any, overwrites: any) => any
20
+ flattenObject: (
21
+ object: Record<string, any>,
22
+ parentKey?: string,
23
+ ) => Record<string, any>
20
24
  getFlattenedTree: (
21
25
  values: any[],
22
26
  childAccessor: string,
@@ -13,6 +13,7 @@ export type BasketState = {
13
13
  totalExceedsMaxPurchaseOrder: boolean
14
14
  productsAreLoading: boolean
15
15
  productIdsBeingAdded: (string | number)[]
16
+ productIdsBeingRemoved: (string | number)[]
16
17
  deliveryAndProcessingTimes: ProductOrderDeliveryTime | null
17
18
  deliveryAndProcessingTimesAreLoading: boolean
18
19
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "private": false,
3
3
  "name": "@vonq/hapi-elements-types",
4
- "version": "1.32.0",
4
+ "version": "1.33.0",
5
5
  "description": "This package contains Typescript definitions for HAPI Elements",
6
6
  "author": "VONQ HAPI Team",
7
7
  "license": "BSD-3-Clause",