@soma-vertical-web/multi-lib 0.0.53 → 0.0.54
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/contexts/index.d.ts +2 -0
- package/index.js +14 -14
- package/index.mjs +3023 -3089
- package/index2.js +1 -1
- package/index2.mjs +843 -722
- package/package.json +1 -1
- package/server.d.ts +5 -0
- package/types/contexts/contexts/session.d.ts +2 -0
package/contexts/index.d.ts
CHANGED
|
@@ -4,6 +4,7 @@ import { Mediator } from './contexts/GlobalContext';
|
|
|
4
4
|
import * as cart from './store/cart';
|
|
5
5
|
import * as header from './store/header';
|
|
6
6
|
import * as pdp from './store/pdp';
|
|
7
|
+
import * as wishlist from './store/wishlist';
|
|
7
8
|
export declare const contexts: {
|
|
8
9
|
contexts: {
|
|
9
10
|
addToCart: {
|
|
@@ -164,5 +165,6 @@ export declare const contexts: {
|
|
|
164
165
|
cart: typeof cart;
|
|
165
166
|
header: typeof header;
|
|
166
167
|
pdp: typeof pdp;
|
|
168
|
+
wishlist: typeof wishlist;
|
|
167
169
|
};
|
|
168
170
|
};
|