@dropins/storefront-wishlist 3.4.0-alpha-20260710101002 → 3.4.0-beta.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.
Files changed (97) hide show
  1. package/CHANGELOG.md +2 -1
  2. package/api/addProductsToWishlist/addProductsToWishlist.d.ts +25 -13
  3. package/api/addProductsToWishlist/graphql/addProductsToWishlistMutation.d.ts +0 -1
  4. package/api/addProductsToWishlist/index.d.ts +0 -1
  5. package/api/constants.d.ts +0 -1
  6. package/api/fetch-graphql/fetch-graphql.d.ts +3 -4
  7. package/api/fetch-graphql/index.d.ts +0 -1
  8. package/api/fragments.d.ts +0 -1
  9. package/api/getStoreConfig/getStoreConfig.d.ts +16 -2
  10. package/api/getStoreConfig/graphql/StoreConfigQuery.d.ts +0 -1
  11. package/api/getStoreConfig/index.d.ts +0 -1
  12. package/api/getWishlistById/getWishlistById.d.ts +16 -2
  13. package/api/getWishlistById/graphql/getWishlistById.graphql.d.ts +0 -1
  14. package/api/getWishlistById/graphql/index.d.ts +0 -1
  15. package/api/getWishlistById/index.d.ts +0 -1
  16. package/api/getWishlists/getWishlists.d.ts +16 -2
  17. package/api/getWishlists/graphql/getWishlists.graphql.d.ts +0 -1
  18. package/api/getWishlists/graphql/index.d.ts +0 -1
  19. package/api/getWishlists/index.d.ts +0 -1
  20. package/api/graphql/CustomizableOptionsFragment.graphql.d.ts +0 -1
  21. package/api/graphql/WishlistFragment.graphql.d.ts +0 -1
  22. package/api/graphql/WishlistItemFragment.graphql.d.ts +0 -1
  23. package/api/index.d.ts +0 -1
  24. package/api/initialize/index.d.ts +0 -1
  25. package/api/initialize/initialize.d.ts +2 -13
  26. package/api/initializeWishlist/index.d.ts +0 -1
  27. package/api/initializeWishlist/initializeWishlist.d.ts +18 -4
  28. package/api/localStorage/index.d.ts +0 -1
  29. package/api/mergeWishlists/index.d.ts +0 -1
  30. package/api/mergeWishlists/mergeWishlists.d.ts +16 -2
  31. package/api/populateAllWishlistItems/populateAllWishlistItems.d.ts +27 -0
  32. package/api/removeProductsFromWishlist/graphql/removeProductsFromWishlistMutation.d.ts +0 -1
  33. package/api/removeProductsFromWishlist/index.d.ts +0 -1
  34. package/api/removeProductsFromWishlist/removeProductsFromWishlist.d.ts +16 -2
  35. package/api/resetWishlist/index.d.ts +0 -1
  36. package/api/resetWishlist/resetWishlist.d.ts +16 -2
  37. package/api/updateProductsInWishlist/graphql/updateProductsInWishlistMutation.d.ts +0 -1
  38. package/api/updateProductsInWishlist/index.d.ts +0 -1
  39. package/api/updateProductsInWishlist/updateProductsInWishlist.d.ts +16 -2
  40. package/api.d.ts +1 -1
  41. package/api.js +24 -24
  42. package/api.js.map +1 -1
  43. package/components/EmptyWishlist/EmptyWishlist.d.ts +16 -2
  44. package/components/EmptyWishlist/index.d.ts +0 -1
  45. package/components/ImageCarousel/ImageCarousel.d.ts +28 -0
  46. package/components/ImageCarousel/index.d.ts +0 -1
  47. package/components/Login/Login.d.ts +16 -2
  48. package/components/Login/index.d.ts +0 -1
  49. package/components/ProductItem/ProductItem.d.ts +17 -3
  50. package/components/ProductItem/index.d.ts +0 -1
  51. package/components/Wishlist/Wishlist.d.ts +18 -4
  52. package/components/Wishlist/WishlistItemSkeleton.d.ts +16 -2
  53. package/components/Wishlist/WishlistSkeleton.d.ts +16 -2
  54. package/components/Wishlist/index.d.ts +0 -1
  55. package/components/index.d.ts +0 -1
  56. package/containers/Wishlist/Wishlist.d.ts +18 -4
  57. package/containers/Wishlist/index.d.ts +0 -1
  58. package/containers/Wishlist.d.ts +1 -3
  59. package/containers/Wishlist.js +1 -1
  60. package/containers/WishlistAlert/WishlistAlert.d.ts +16 -2
  61. package/containers/WishlistAlert/index.d.ts +0 -1
  62. package/containers/WishlistAlert.d.ts +1 -3
  63. package/containers/WishlistAlert.js +1 -1
  64. package/containers/WishlistItem/WishlistItem.d.ts +18 -4
  65. package/containers/WishlistItem/index.d.ts +0 -1
  66. package/containers/WishlistItem.d.ts +1 -3
  67. package/containers/WishlistItem.js +15 -1
  68. package/containers/WishlistItem.js.map +1 -1
  69. package/containers/WishlistToggle/WishlistToggle.d.ts +17 -3
  70. package/containers/WishlistToggle/index.d.ts +0 -1
  71. package/containers/WishlistToggle.d.ts +1 -3
  72. package/containers/WishlistToggle.js +1 -15
  73. package/containers/WishlistToggle.js.map +1 -1
  74. package/containers/index.d.ts +0 -1
  75. package/data/models/index.d.ts +0 -1
  76. package/data/models/product.d.ts +0 -1
  77. package/data/models/selected-customizable-option.d.ts +0 -1
  78. package/data/models/store-config.d.ts +0 -1
  79. package/data/models/wishlist.d.ts +16 -2
  80. package/data/transforms/__fixtures__/productData.d.ts +16 -2
  81. package/data/transforms/__fixtures__/wishlistData.d.ts +16 -2
  82. package/data/transforms/index.d.ts +0 -1
  83. package/data/transforms/transform-store-config.d.ts +16 -2
  84. package/data/transforms/transform-wishlist.d.ts +16 -2
  85. package/lib/cookies.d.ts +0 -1
  86. package/lib/fetch-error.d.ts +0 -1
  87. package/lib/navigation.d.ts +3 -0
  88. package/lib/persisted-data.d.ts +24 -3
  89. package/lib/state.d.ts +16 -2
  90. package/lib/wishlist-item-comparator.d.ts +16 -2
  91. package/package.json +1 -1
  92. package/render/Provider.d.ts +16 -2
  93. package/render/index.d.ts +0 -1
  94. package/render/render.d.ts +17 -4
  95. package/render.d.ts +1 -1
  96. package/render.js.map +1 -1
  97. package/i18n/en_US.json.d.ts +0 -50
package/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # @dropins/storefront-wishlist
2
2
 
3
- ## 3.4.0-alpha-20260710101002
3
+ ## 3.4.0-beta.0
4
4
 
5
5
  ### Minor Changes
6
6
 
@@ -9,6 +9,7 @@
9
9
  ### Patch Changes
10
10
 
11
11
  - 8a3423a: Redirect gift card wishlist items to the PDP for configuration instead of silently failing on Move to Cart.
12
+ - 0973b90: Fixed WishlistToggle heart icon showing incorrect state on PLP and PDP when a product exists on a wishlist page beyond the first. The drop-in now fetches all wishlist pages in the background on initialization and checks the full item list when determining whether a product is wishlisted, regardless of pagination.
12
13
  - bf0c101: Make image carousel dot controls keyboard accessible by replacing span elements with button elements (USF-3327)
13
14
 
14
15
  ## 3.3.0
@@ -1,14 +1,26 @@
1
+ /********************************************************************
2
+ * ADOBE CONFIDENTIAL
3
+ * __________________
4
+ *
5
+ * Copyright 2025 Adobe
6
+ * All Rights Reserved.
7
+ *
8
+ * NOTICE: All information contained herein is, and remains
9
+ * the property of Adobe and its suppliers, if any. The intellectual
10
+ * and technical concepts contained herein are proprietary to Adobe
11
+ * and its suppliers and are protected by all applicable intellectual
12
+ * property laws, including trade secret and copyright laws.
13
+ * Dissemination of this information or reproduction of this material
14
+ * is strictly forbidden unless prior written permission is obtained
15
+ * from Adobe.
16
+ *******************************************************************/
1
17
  import { Wishlist } from '../../data/models/wishlist';
2
-
3
- export declare const addProductsToWishlist: (items: [
4
- {
5
- sku: string;
6
- quantity: number;
7
- optionsUIDs?: string[];
8
- enteredOptions?: {
9
- uid: string;
10
- value: string;
11
- }[];
12
- }
13
- ]) => Promise<Wishlist | null>;
14
- //# sourceMappingURL=addProductsToWishlist.d.ts.map
18
+ export declare const addProductsToWishlist: (items: [{
19
+ sku: string;
20
+ quantity: number;
21
+ optionsUIDs?: string[];
22
+ enteredOptions?: {
23
+ uid: string;
24
+ value: string;
25
+ }[];
26
+ }]) => Promise<Wishlist | null>;
@@ -15,4 +15,3 @@
15
15
  * from Adobe.
16
16
  *******************************************************************/
17
17
  export declare const ADD_PRODUCTS_TO_WISHLIST_MUTATION: string;
18
- //# sourceMappingURL=addProductsToWishlistMutation.d.ts.map
@@ -15,4 +15,3 @@
15
15
  * from Adobe.
16
16
  ****************************************************************** */
17
17
  export * from './addProductsToWishlist';
18
- //# sourceMappingURL=index.d.ts.map
@@ -16,4 +16,3 @@
16
16
  *******************************************************************/
17
17
  export declare const DEFAULT_PAGE_SIZE = 9;
18
18
  export declare const DEFAULT_CURRENT_PAGE = 1;
19
- //# sourceMappingURL=constants.d.ts.map
@@ -14,11 +14,10 @@
14
14
  * is strictly forbidden unless prior written permission is obtained
15
15
  * from Adobe.
16
16
  *******************************************************************/
17
- export declare const setEndpoint: (endpoint: string) => void, setFetchGraphQlHeader: (key: string, value: string | null) => void, removeFetchGraphQlHeader: (key: string) => void, setFetchGraphQlHeaders: (header: import('@adobe-commerce/fetch-graphql').Header | ((prev: import('@adobe-commerce/fetch-graphql').Header) => import('@adobe-commerce/fetch-graphql').Header)) => void, fetchGraphQl: <T = any>(query: string, options?: import('@adobe-commerce/fetch-graphql').FetchOptions | undefined) => Promise<{
18
- errors?: import('@adobe-commerce/fetch-graphql').FetchQueryError | undefined;
17
+ export declare const setEndpoint: (endpoint: string) => void, setFetchGraphQlHeader: (key: string, value: string | null) => void, removeFetchGraphQlHeader: (key: string) => void, setFetchGraphQlHeaders: (header: import("@adobe-commerce/fetch-graphql").Header | ((prev: import("@adobe-commerce/fetch-graphql").Header) => import("@adobe-commerce/fetch-graphql").Header)) => void, fetchGraphQl: <T = any>(query: string, options?: import("@adobe-commerce/fetch-graphql").FetchOptions) => Promise<{
18
+ errors?: import("@adobe-commerce/fetch-graphql").FetchQueryError;
19
19
  data: T;
20
20
  }>, getConfig: () => {
21
21
  endpoint: string | undefined;
22
- fetchGraphQlHeaders: import('@adobe-commerce/fetch-graphql').Header;
22
+ fetchGraphQlHeaders: import("@adobe-commerce/fetch-graphql").Header;
23
23
  };
24
- //# sourceMappingURL=fetch-graphql.d.ts.map
@@ -15,4 +15,3 @@
15
15
  * from Adobe.
16
16
  *******************************************************************/
17
17
  export * from './fetch-graphql';
18
- //# sourceMappingURL=index.d.ts.map
@@ -1,3 +1,2 @@
1
1
  export { WISHLIST_ITEM_FRAGMENT } from './graphql/WishlistItemFragment.graphql';
2
2
  export { WISHLIST_FRAGMENT } from './graphql/WishlistFragment.graphql';
3
- //# sourceMappingURL=fragments.d.ts.map
@@ -1,4 +1,18 @@
1
+ /********************************************************************
2
+ * ADOBE CONFIDENTIAL
3
+ * __________________
4
+ *
5
+ * Copyright 2024 Adobe
6
+ * All Rights Reserved.
7
+ *
8
+ * NOTICE: All information contained herein is, and remains
9
+ * the property of Adobe and its suppliers, if any. The intellectual
10
+ * and technical concepts contained herein are proprietary to Adobe
11
+ * and its suppliers and are protected by all applicable intellectual
12
+ * property laws, including trade secret and copyright laws.
13
+ * Dissemination of this information or reproduction of this material
14
+ * is strictly forbidden unless prior written permission is obtained
15
+ * from Adobe.
16
+ *******************************************************************/
1
17
  import { StoreConfigModel } from '../../data/models';
2
-
3
18
  export declare const getStoreConfig: () => Promise<StoreConfigModel | null>;
4
- //# sourceMappingURL=getStoreConfig.d.ts.map
@@ -15,4 +15,3 @@
15
15
  * from Adobe.
16
16
  *******************************************************************/
17
17
  export declare const STORE_CONFIG_QUERY = "\nquery STORE_CONFIG_QUERY {\n storeConfig {\n magento_wishlist_general_is_enabled\n enable_multiple_wishlists\n maximum_number_of_wishlists\n }\n}\n";
18
- //# sourceMappingURL=StoreConfigQuery.d.ts.map
@@ -15,4 +15,3 @@
15
15
  * from Adobe.
16
16
  *******************************************************************/
17
17
  export * from './getStoreConfig';
18
- //# sourceMappingURL=index.d.ts.map
@@ -1,4 +1,18 @@
1
+ /********************************************************************
2
+ * ADOBE CONFIDENTIAL
3
+ * __________________
4
+ *
5
+ * Copyright 2025 Adobe
6
+ * All Rights Reserved.
7
+ *
8
+ * NOTICE: All information contained herein is, and remains
9
+ * the property of Adobe and its suppliers, if any. The intellectual
10
+ * and technical concepts contained herein are proprietary to Adobe
11
+ * and its suppliers and are protected by all applicable intellectual
12
+ * property laws, including trade secret and copyright laws.
13
+ * Dissemination of this information or reproduction of this material
14
+ * is strictly forbidden unless prior written permission is obtained
15
+ * from Adobe.
16
+ *******************************************************************/
1
17
  import { Wishlist } from '../../data/models';
2
-
3
18
  export declare const getWishlistById: (wishlistId: string, pageSize?: number, currentPage?: number) => Promise<void | Wishlist | null>;
4
- //# sourceMappingURL=getWishlistById.d.ts.map
@@ -15,4 +15,3 @@
15
15
  * from Adobe.
16
16
  *******************************************************************/
17
17
  export declare const GET_WISHLIST_BY_ID_QUERY: string;
18
- //# sourceMappingURL=getWishlistById.graphql.d.ts.map
@@ -15,4 +15,3 @@
15
15
  * from Adobe.
16
16
  *******************************************************************/
17
17
  export * from './getWishlistById.graphql';
18
- //# sourceMappingURL=index.d.ts.map
@@ -15,4 +15,3 @@
15
15
  * from Adobe.
16
16
  *******************************************************************/
17
17
  export * from './getWishlistById';
18
- //# sourceMappingURL=index.d.ts.map
@@ -1,4 +1,18 @@
1
+ /********************************************************************
2
+ * ADOBE CONFIDENTIAL
3
+ * __________________
4
+ *
5
+ * Copyright 2025 Adobe
6
+ * All Rights Reserved.
7
+ *
8
+ * NOTICE: All information contained herein is, and remains
9
+ * the property of Adobe and its suppliers, if any. The intellectual
10
+ * and technical concepts contained herein are proprietary to Adobe
11
+ * and its suppliers and are protected by all applicable intellectual
12
+ * property laws, including trade secret and copyright laws.
13
+ * Dissemination of this information or reproduction of this material
14
+ * is strictly forbidden unless prior written permission is obtained
15
+ * from Adobe.
16
+ *******************************************************************/
1
17
  import { Wishlist } from '../../data/models';
2
-
3
18
  export declare const getWishlists: (pageSize?: number, currentPage?: number) => Promise<void | Wishlist[] | null>;
4
- //# sourceMappingURL=getWishlists.d.ts.map
@@ -15,4 +15,3 @@
15
15
  * from Adobe.
16
16
  *******************************************************************/
17
17
  export declare const GET_WISHLISTS_QUERY: string;
18
- //# sourceMappingURL=getWishlists.graphql.d.ts.map
@@ -15,4 +15,3 @@
15
15
  * from Adobe.
16
16
  *******************************************************************/
17
17
  export * from './getWishlists.graphql';
18
- //# sourceMappingURL=index.d.ts.map
@@ -15,4 +15,3 @@
15
15
  * from Adobe.
16
16
  *******************************************************************/
17
17
  export * from './getWishlists';
18
- //# sourceMappingURL=index.d.ts.map
@@ -15,4 +15,3 @@
15
15
  * from Adobe.
16
16
  *******************************************************************/
17
17
  export declare const CUSTOMIZABLE_OPTIONS_FRAGMENT = "\n fragment CUSTOMIZABLE_OPTIONS_FRAGMENT on SelectedCustomizableOption {\n type\n customizable_option_uid\n label\n is_required\n values {\n label\n value\n price{\n type\n units\n value\n }\n }\n }\n";
18
- //# sourceMappingURL=CustomizableOptionsFragment.graphql.d.ts.map
@@ -15,4 +15,3 @@
15
15
  * from Adobe.
16
16
  *******************************************************************/
17
17
  export declare const WISHLIST_FRAGMENT: string;
18
- //# sourceMappingURL=WishlistFragment.graphql.d.ts.map
@@ -15,4 +15,3 @@
15
15
  * from Adobe.
16
16
  *******************************************************************/
17
17
  export declare const WISHLIST_ITEM_FRAGMENT: string;
18
- //# sourceMappingURL=WishlistItemFragment.graphql.d.ts.map
package/api/index.d.ts CHANGED
@@ -27,4 +27,3 @@ export * from './updateProductsInWishlist';
27
27
  export * from './resetWishlist';
28
28
  export * from './initializeWishlist';
29
29
  export * from './mergeWishlists';
30
- //# sourceMappingURL=index.d.ts.map
@@ -15,4 +15,3 @@
15
15
  * from Adobe.
16
16
  *******************************************************************/
17
17
  export * from './initialize';
18
- //# sourceMappingURL=index.d.ts.map
@@ -1,13 +1,2 @@
1
- import { Initializer } from '@dropins/tools/types/elsie/src/lib';
2
- import { Lang } from '@dropins/tools/types/elsie/src/i18n';
3
-
4
- type ConfigProps = {
5
- langDefinitions?: Lang;
6
- isGuestWishlistEnabled?: boolean;
7
- storeCode?: string;
8
- pageSize?: number;
9
- };
10
- export declare const initialize: Initializer<ConfigProps>;
11
- export declare const config: import('@dropins/tools/types/elsie/src/lib').Config<ConfigProps>;
12
- export {};
13
- //# sourceMappingURL=initialize.d.ts.map
1
+ export declare const initialize: any;
2
+ export declare const config: any;
@@ -15,4 +15,3 @@
15
15
  * from Adobe.
16
16
  *******************************************************************/
17
17
  export * from './initializeWishlist';
18
- //# sourceMappingURL=index.d.ts.map
@@ -1,10 +1,24 @@
1
+ /********************************************************************
2
+ * ADOBE CONFIDENTIAL
3
+ * __________________
4
+ *
5
+ * Copyright 2025 Adobe
6
+ * All Rights Reserved.
7
+ *
8
+ * NOTICE: All information contained herein is, and remains
9
+ * the property of Adobe and its suppliers, if any. The intellectual
10
+ * and technical concepts contained herein are proprietary to Adobe
11
+ * and its suppliers and are protected by all applicable intellectual
12
+ * property laws, including trade secret and copyright laws.
13
+ * Dissemination of this information or reproduction of this material
14
+ * is strictly forbidden unless prior written permission is obtained
15
+ * from Adobe.
16
+ *******************************************************************/
1
17
  import { Wishlist } from '../../data/models';
2
-
3
18
  export interface InitializeWishlistOptions {
4
19
  pageSize?: number;
5
20
  currentPage?: number;
6
21
  }
7
22
  export declare const initializeWishlist: (options?: InitializeWishlistOptions) => Promise<Wishlist | null>;
8
- export declare function getDefaultWishlist(options?: InitializeWishlistOptions): Promise<Wishlist | null>;
9
- export declare function getGuestWishlist(): Promise<{} | Wishlist>;
10
- //# sourceMappingURL=initializeWishlist.d.ts.map
23
+ export declare function getDefaultWishlist(options?: InitializeWishlistOptions): Promise<any>;
24
+ export declare function getGuestWishlist(): Promise<any>;
@@ -1,2 +1 @@
1
1
  export * from '../../lib/persisted-data';
2
- //# sourceMappingURL=index.d.ts.map
@@ -15,4 +15,3 @@
15
15
  * from Adobe.
16
16
  *******************************************************************/
17
17
  export * from './mergeWishlists';
18
- //# sourceMappingURL=index.d.ts.map
@@ -1,4 +1,18 @@
1
+ /********************************************************************
2
+ * ADOBE CONFIDENTIAL
3
+ * __________________
4
+ *
5
+ * Copyright 2025 Adobe
6
+ * All Rights Reserved.
7
+ *
8
+ * NOTICE: All information contained herein is, and remains
9
+ * the property of Adobe and its suppliers, if any. The intellectual
10
+ * and technical concepts contained herein are proprietary to Adobe
11
+ * and its suppliers and are protected by all applicable intellectual
12
+ * property laws, including trade secret and copyright laws.
13
+ * Dissemination of this information or reproduction of this material
14
+ * is strictly forbidden unless prior written permission is obtained
15
+ * from Adobe.
16
+ *******************************************************************/
1
17
  import { Wishlist } from '../../data/models';
2
-
3
18
  export declare const mergeWishlists: (wishlist: Wishlist) => Promise<Wishlist | null>;
4
- //# sourceMappingURL=mergeWishlists.d.ts.map
@@ -0,0 +1,27 @@
1
+ /********************************************************************
2
+ * ADOBE CONFIDENTIAL
3
+ * __________________
4
+ *
5
+ * Copyright 2026 Adobe
6
+ * All Rights Reserved.
7
+ *
8
+ * NOTICE: All information contained herein is, and remains
9
+ * the property of Adobe and its suppliers, if any. The intellectual
10
+ * and technical concepts contained herein are proprietary to Adobe
11
+ * and its suppliers and are protected by all applicable intellectual
12
+ * property laws, including trade secret and copyright laws.
13
+ * Dissemination of this information or reproduction of this material
14
+ * is strictly forbidden unless prior written permission is obtained
15
+ * from Adobe.
16
+ *******************************************************************/
17
+ import { Wishlist } from '../../data/models/wishlist';
18
+ /**
19
+ * Fetches ALL wishlist items across all pages and stores them in the
20
+ * in-memory all-items store. Called non-blocking after initialization
21
+ * so WishlistToggle can accurately determine heart icon state for
22
+ * products on any page.
23
+ *
24
+ * Uses a generation check to abort if the store was reset or re-seeded
25
+ * (e.g. logout, auth change, or mutation) while fetches were in flight.
26
+ */
27
+ export declare function populateAllWishlistItems(wishlistId: string, firstPageWishlist: Wishlist, pageSize: number): Promise<void>;
@@ -15,4 +15,3 @@
15
15
  * from Adobe.
16
16
  *******************************************************************/
17
17
  export declare const REMOVE_PRODUCTS_FROM_WISHLIST_MUTATION = "\n mutation REMOVE_PRODUCTS_FROM_WISHLIST_MUTATION(\n $wishlistId: ID!, \n $wishlistItemsIds: [ID!]!,\n ) {\n removeProductsFromWishlist(\n wishlistId: $wishlistId\n wishlistItemsIds: $wishlistItemsIds\n ) {\n user_errors {\n code\n message\n }\n }\n }\n";
18
- //# sourceMappingURL=removeProductsFromWishlistMutation.d.ts.map
@@ -15,4 +15,3 @@
15
15
  * from Adobe.
16
16
  ****************************************************************** */
17
17
  export * from './removeProductsFromWishlist';
18
- //# sourceMappingURL=index.d.ts.map
@@ -1,4 +1,18 @@
1
+ /********************************************************************
2
+ * ADOBE CONFIDENTIAL
3
+ * __________________
4
+ *
5
+ * Copyright 2024 Adobe
6
+ * All Rights Reserved.
7
+ *
8
+ * NOTICE: All information contained herein is, and remains
9
+ * the property of Adobe and its suppliers, if any. The intellectual
10
+ * and technical concepts contained herein are proprietary to Adobe
11
+ * and its suppliers and are protected by all applicable intellectual
12
+ * property laws, including trade secret and copyright laws.
13
+ * Dissemination of this information or reproduction of this material
14
+ * is strictly forbidden unless prior written permission is obtained
15
+ * from Adobe.
16
+ *******************************************************************/
1
17
  import { Item, Wishlist } from '../../data/models/wishlist';
2
-
3
18
  export declare const removeProductsFromWishlist: (items: Array<Item>) => Promise<Wishlist | null>;
4
- //# sourceMappingURL=removeProductsFromWishlist.d.ts.map
@@ -15,4 +15,3 @@
15
15
  * from Adobe.
16
16
  *******************************************************************/
17
17
  export * from './resetWishlist';
18
- //# sourceMappingURL=index.d.ts.map
@@ -1,4 +1,18 @@
1
+ /********************************************************************
2
+ * ADOBE CONFIDENTIAL
3
+ * __________________
4
+ *
5
+ * Copyright 2025 Adobe
6
+ * All Rights Reserved.
7
+ *
8
+ * NOTICE: All information contained herein is, and remains
9
+ * the property of Adobe and its suppliers, if any. The intellectual
10
+ * and technical concepts contained herein are proprietary to Adobe
11
+ * and its suppliers and are protected by all applicable intellectual
12
+ * property laws, including trade secret and copyright laws.
13
+ * Dissemination of this information or reproduction of this material
14
+ * is strictly forbidden unless prior written permission is obtained
15
+ * from Adobe.
16
+ *******************************************************************/
1
17
  import { Wishlist } from '../../data/models';
2
-
3
18
  export declare const resetWishlist: () => Promise<Wishlist | null>;
4
- //# sourceMappingURL=resetWishlist.d.ts.map
@@ -15,4 +15,3 @@
15
15
  * from Adobe.
16
16
  *******************************************************************/
17
17
  export declare const UPDATE_PRODUCTS_IN_WISHLIST_MUTATION: string;
18
- //# sourceMappingURL=updateProductsInWishlistMutation.d.ts.map
@@ -15,4 +15,3 @@
15
15
  * from Adobe.
16
16
  ****************************************************************** */
17
17
  export * from './updateProductsInWishlist';
18
- //# sourceMappingURL=index.d.ts.map
@@ -1,5 +1,20 @@
1
+ /********************************************************************
2
+ * ADOBE CONFIDENTIAL
3
+ * __________________
4
+ *
5
+ * Copyright 2025 Adobe
6
+ * All Rights Reserved.
7
+ *
8
+ * NOTICE: All information contained herein is, and remains
9
+ * the property of Adobe and its suppliers, if any. The intellectual
10
+ * and technical concepts contained herein are proprietary to Adobe
11
+ * and its suppliers and are protected by all applicable intellectual
12
+ * property laws, including trade secret and copyright laws.
13
+ * Dissemination of this information or reproduction of this material
14
+ * is strictly forbidden unless prior written permission is obtained
15
+ * from Adobe.
16
+ *******************************************************************/
1
17
  import { Wishlist } from '../../data/models/wishlist';
2
-
3
18
  export declare const updateProductsInWishlist: (items: {
4
19
  wishlistItemId: string;
5
20
  quantity: number;
@@ -10,4 +25,3 @@ export declare const updateProductsInWishlist: (items: {
10
25
  value: string;
11
26
  }[];
12
27
  }[]) => Promise<Wishlist | null>;
13
- //# sourceMappingURL=updateProductsInWishlist.d.ts.map
package/api.d.ts CHANGED
@@ -1 +1 @@
1
- export * from './api/index'
1
+ export * from './api/index';