@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.
- package/CHANGELOG.md +2 -1
- package/api/addProductsToWishlist/addProductsToWishlist.d.ts +25 -13
- package/api/addProductsToWishlist/graphql/addProductsToWishlistMutation.d.ts +0 -1
- package/api/addProductsToWishlist/index.d.ts +0 -1
- package/api/constants.d.ts +0 -1
- package/api/fetch-graphql/fetch-graphql.d.ts +3 -4
- package/api/fetch-graphql/index.d.ts +0 -1
- package/api/fragments.d.ts +0 -1
- package/api/getStoreConfig/getStoreConfig.d.ts +16 -2
- package/api/getStoreConfig/graphql/StoreConfigQuery.d.ts +0 -1
- package/api/getStoreConfig/index.d.ts +0 -1
- package/api/getWishlistById/getWishlistById.d.ts +16 -2
- package/api/getWishlistById/graphql/getWishlistById.graphql.d.ts +0 -1
- package/api/getWishlistById/graphql/index.d.ts +0 -1
- package/api/getWishlistById/index.d.ts +0 -1
- package/api/getWishlists/getWishlists.d.ts +16 -2
- package/api/getWishlists/graphql/getWishlists.graphql.d.ts +0 -1
- package/api/getWishlists/graphql/index.d.ts +0 -1
- package/api/getWishlists/index.d.ts +0 -1
- package/api/graphql/CustomizableOptionsFragment.graphql.d.ts +0 -1
- package/api/graphql/WishlistFragment.graphql.d.ts +0 -1
- package/api/graphql/WishlistItemFragment.graphql.d.ts +0 -1
- package/api/index.d.ts +0 -1
- package/api/initialize/index.d.ts +0 -1
- package/api/initialize/initialize.d.ts +2 -13
- package/api/initializeWishlist/index.d.ts +0 -1
- package/api/initializeWishlist/initializeWishlist.d.ts +18 -4
- package/api/localStorage/index.d.ts +0 -1
- package/api/mergeWishlists/index.d.ts +0 -1
- package/api/mergeWishlists/mergeWishlists.d.ts +16 -2
- package/api/populateAllWishlistItems/populateAllWishlistItems.d.ts +27 -0
- package/api/removeProductsFromWishlist/graphql/removeProductsFromWishlistMutation.d.ts +0 -1
- package/api/removeProductsFromWishlist/index.d.ts +0 -1
- package/api/removeProductsFromWishlist/removeProductsFromWishlist.d.ts +16 -2
- package/api/resetWishlist/index.d.ts +0 -1
- package/api/resetWishlist/resetWishlist.d.ts +16 -2
- package/api/updateProductsInWishlist/graphql/updateProductsInWishlistMutation.d.ts +0 -1
- package/api/updateProductsInWishlist/index.d.ts +0 -1
- package/api/updateProductsInWishlist/updateProductsInWishlist.d.ts +16 -2
- package/api.d.ts +1 -1
- package/api.js +24 -24
- package/api.js.map +1 -1
- package/components/EmptyWishlist/EmptyWishlist.d.ts +16 -2
- package/components/EmptyWishlist/index.d.ts +0 -1
- package/components/ImageCarousel/ImageCarousel.d.ts +28 -0
- package/components/ImageCarousel/index.d.ts +0 -1
- package/components/Login/Login.d.ts +16 -2
- package/components/Login/index.d.ts +0 -1
- package/components/ProductItem/ProductItem.d.ts +17 -3
- package/components/ProductItem/index.d.ts +0 -1
- package/components/Wishlist/Wishlist.d.ts +18 -4
- package/components/Wishlist/WishlistItemSkeleton.d.ts +16 -2
- package/components/Wishlist/WishlistSkeleton.d.ts +16 -2
- package/components/Wishlist/index.d.ts +0 -1
- package/components/index.d.ts +0 -1
- package/containers/Wishlist/Wishlist.d.ts +18 -4
- package/containers/Wishlist/index.d.ts +0 -1
- package/containers/Wishlist.d.ts +1 -3
- package/containers/Wishlist.js +1 -1
- package/containers/WishlistAlert/WishlistAlert.d.ts +16 -2
- package/containers/WishlistAlert/index.d.ts +0 -1
- package/containers/WishlistAlert.d.ts +1 -3
- package/containers/WishlistAlert.js +1 -1
- package/containers/WishlistItem/WishlistItem.d.ts +18 -4
- package/containers/WishlistItem/index.d.ts +0 -1
- package/containers/WishlistItem.d.ts +1 -3
- package/containers/WishlistItem.js +15 -1
- package/containers/WishlistItem.js.map +1 -1
- package/containers/WishlistToggle/WishlistToggle.d.ts +17 -3
- package/containers/WishlistToggle/index.d.ts +0 -1
- package/containers/WishlistToggle.d.ts +1 -3
- package/containers/WishlistToggle.js +1 -15
- package/containers/WishlistToggle.js.map +1 -1
- package/containers/index.d.ts +0 -1
- package/data/models/index.d.ts +0 -1
- package/data/models/product.d.ts +0 -1
- package/data/models/selected-customizable-option.d.ts +0 -1
- package/data/models/store-config.d.ts +0 -1
- package/data/models/wishlist.d.ts +16 -2
- package/data/transforms/__fixtures__/productData.d.ts +16 -2
- package/data/transforms/__fixtures__/wishlistData.d.ts +16 -2
- package/data/transforms/index.d.ts +0 -1
- package/data/transforms/transform-store-config.d.ts +16 -2
- package/data/transforms/transform-wishlist.d.ts +16 -2
- package/lib/cookies.d.ts +0 -1
- package/lib/fetch-error.d.ts +0 -1
- package/lib/navigation.d.ts +3 -0
- package/lib/persisted-data.d.ts +24 -3
- package/lib/state.d.ts +16 -2
- package/lib/wishlist-item-comparator.d.ts +16 -2
- package/package.json +1 -1
- package/render/Provider.d.ts +16 -2
- package/render/index.d.ts +0 -1
- package/render/render.d.ts +17 -4
- package/render.d.ts +1 -1
- package/render.js.map +1 -1
- 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-
|
|
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
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
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>;
|
package/api/constants.d.ts
CHANGED
|
@@ -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(
|
|
18
|
-
errors?: import(
|
|
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(
|
|
22
|
+
fetchGraphQlHeaders: import("@adobe-commerce/fetch-graphql").Header;
|
|
23
23
|
};
|
|
24
|
-
//# sourceMappingURL=fetch-graphql.d.ts.map
|
package/api/fragments.d.ts
CHANGED
|
@@ -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
|
|
@@ -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
|
|
@@ -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 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
|
package/api/index.d.ts
CHANGED
|
@@ -1,13 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
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;
|
|
@@ -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<
|
|
9
|
-
export declare function getGuestWishlist(): Promise<
|
|
10
|
-
//# sourceMappingURL=initializeWishlist.d.ts.map
|
|
23
|
+
export declare function getDefaultWishlist(options?: InitializeWishlistOptions): Promise<any>;
|
|
24
|
+
export declare function getGuestWishlist(): Promise<any>;
|
|
@@ -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
|
|
@@ -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
|
|
@@ -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
|
|
@@ -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';
|