@ikas/storefront 0.0.166-alpha.1 → 0.0.166-alpha.2
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.
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
/// <reference types="node" />
|
|
2
2
|
import * as React from "react";
|
|
3
|
-
import {
|
|
3
|
+
import { GetStaticProps } from "next";
|
|
4
4
|
import { ParsedUrlQuery } from "querystring";
|
|
5
|
-
import { IkasCheckoutCustomizationProps } from "
|
|
5
|
+
import { IkasCheckoutCustomizationProps } from "../components/checkout/index";
|
|
6
6
|
declare type Props = {
|
|
7
|
-
checkoutId: string;
|
|
8
7
|
checkoutSettingsStr: string | null;
|
|
9
8
|
customizationProps: IkasCheckoutCustomizationProps;
|
|
10
9
|
returnPolicy: string;
|
|
@@ -15,4 +14,4 @@ declare type Props = {
|
|
|
15
14
|
};
|
|
16
15
|
declare const _default: React.FunctionComponent<Props>;
|
|
17
16
|
export default _default;
|
|
18
|
-
export declare const
|
|
17
|
+
export declare const getStaticProps: GetStaticProps;
|
package/build/pages/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as IndexPage from "./home";
|
|
2
2
|
import * as SlugPage from "./[slug]/index";
|
|
3
3
|
import * as CustomPage from "./pages/[slug]";
|
|
4
|
-
import * as CheckoutPage from "./checkout
|
|
4
|
+
import * as CheckoutPage from "./checkout";
|
|
5
5
|
import * as AccountPage from "./account/index";
|
|
6
6
|
import * as AddressesPage from "./account/addresses";
|
|
7
7
|
import * as OrdersPage from "./account/orders/index";
|