@ikas/storefront 0.0.16 → 0.0.18
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/build/api/product/__generated__/listProduct.d.ts +1 -0
- package/build/index.es.js +141 -113
- package/build/index.js +145 -116
- package/build/models/theme/page/index.d.ts +2 -1
- package/build/pages/[slug]/index.d.ts +7 -5
- package/build/pages/basket.d.ts +10 -0
- package/build/pages/index.d.ts +3 -2
- package/build/pages/{[slug]/[secondSlug].d.ts → pages/[slug].d.ts} +0 -0
- package/package.json +1 -1
package/build/pages/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as IndexPage from "./home";
|
|
2
2
|
import * as SlugPage from "./[slug]/index";
|
|
3
|
-
import * as CustomPage from "./[slug]
|
|
3
|
+
import * as CustomPage from "./pages/[slug]";
|
|
4
4
|
import * as CheckoutPage from "./checkout/[id]";
|
|
5
5
|
import * as AccountPage from "./account/index";
|
|
6
6
|
import * as AddressesPage from "./account/addresses";
|
|
@@ -10,5 +10,6 @@ import * as LoginPage from "./account/login";
|
|
|
10
10
|
import * as RegisterPage from "./account/register";
|
|
11
11
|
import * as ForgotPasswordPage from "./account/forgot-password";
|
|
12
12
|
import * as RecoverPasswordPage from "./account/recover-password";
|
|
13
|
+
import * as BasketPage from "./basket";
|
|
13
14
|
import * as EditorPage from "./editor";
|
|
14
|
-
export { IndexPage, SlugPage, CustomPage, CheckoutPage, AccountPage, AddressesPage, OrdersPage, OrderDetailPage, LoginPage, RegisterPage, ForgotPasswordPage, RecoverPasswordPage, EditorPage, };
|
|
15
|
+
export { IndexPage, SlugPage, CustomPage, CheckoutPage, AccountPage, AddressesPage, OrdersPage, OrderDetailPage, LoginPage, RegisterPage, ForgotPasswordPage, RecoverPasswordPage, BasketPage, EditorPage, };
|
|
File without changes
|