@cimplify/cli 0.6.8 → 0.6.10
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/dist/{add-U4S5DBPN.mjs → add-GDHA7MKM.mjs} +1 -1
- package/dist/{chunk-AS2SIMRN.mjs → chunk-5L6LJE6I.mjs} +1 -1
- package/dist/{chunk-EALN6SAN.mjs → chunk-EKJ6T66O.mjs} +25 -25
- package/dist/{chunk-KPEMFKKN.mjs → chunk-ZTKQOLAC.mjs} +1 -1
- package/dist/dispatcher.mjs +9 -9
- package/dist/{doctor-Y6XJWZVX.mjs → doctor-SSSYBYCL.mjs} +2 -2
- package/dist/{explain-WDIQSCUY.mjs → explain-VG7XUP62.mjs} +1 -1
- package/dist/{introspect-3EMAYETR.mjs → introspect-HYJ6VI3U.mjs} +2 -2
- package/dist/{list-KO2QX42Q.mjs → list-NQP4SU5K.mjs} +1 -1
- package/dist/{update-J6ZDMCOB.mjs → update-HHRCPKSU.mjs} +1 -1
- package/package.json +1 -1
- package/templates/storefront-auto/app/layout.tsx +3 -1
- package/templates/storefront-auto/components/product-modal.tsx +104 -0
- package/templates/storefront-auto/lib/site-url.ts +3 -26
- package/templates/storefront-auto/lib/site.config.ts +7 -0
- package/templates/storefront-auto/next.config.ts +7 -0
- package/templates/storefront-bakery/app/layout.tsx +3 -1
- package/templates/storefront-bakery/lib/site-url.ts +3 -26
- package/templates/storefront-bakery/lib/site.config.ts +7 -0
- package/templates/storefront-bakery/next.config.ts +7 -0
- package/templates/storefront-fashion/app/layout.tsx +3 -1
- package/templates/storefront-fashion/components/product-modal.tsx +104 -0
- package/templates/storefront-fashion/lib/site-url.ts +3 -26
- package/templates/storefront-fashion/lib/site.config.ts +7 -0
- package/templates/storefront-fashion/next.config.ts +7 -0
- package/templates/storefront-grocery/app/layout.tsx +3 -1
- package/templates/storefront-grocery/lib/site-url.ts +3 -26
- package/templates/storefront-grocery/lib/site.config.ts +7 -0
- package/templates/storefront-grocery/next.config.ts +7 -0
- package/templates/storefront-pharmacy/app/layout.tsx +3 -1
- package/templates/storefront-pharmacy/components/product-modal.tsx +104 -0
- package/templates/storefront-pharmacy/lib/site-url.ts +3 -26
- package/templates/storefront-pharmacy/lib/site.config.ts +7 -0
- package/templates/storefront-pharmacy/next.config.ts +7 -0
- package/templates/storefront-restaurant/app/layout.tsx +3 -1
- package/templates/storefront-restaurant/app/reservations/reservations-client.tsx +1 -1
- package/templates/storefront-restaurant/lib/site-url.ts +3 -26
- package/templates/storefront-restaurant/lib/site.config.ts +7 -0
- package/templates/storefront-restaurant/next.config.ts +7 -0
- package/templates/storefront-retail/app/layout.tsx +3 -1
- package/templates/storefront-retail/components/product-modal.tsx +104 -0
- package/templates/storefront-retail/lib/site-url.ts +3 -26
- package/templates/storefront-retail/lib/site.config.ts +7 -0
- package/templates/storefront-retail/next.config.ts +7 -0
- package/templates/storefront-services/app/book/book-client.tsx +2 -1
- package/templates/storefront-services/app/layout.tsx +3 -1
- package/templates/storefront-services/lib/site-url.ts +3 -26
- package/templates/storefront-services/lib/site.config.ts +7 -0
- package/templates/storefront-services/next.config.ts +7 -0
- package/templates/storefront-auto/app/login/page.tsx +0 -17
- package/templates/storefront-auto/app/signup/page.tsx +0 -17
- package/templates/storefront-bakery/app/login/page.tsx +0 -17
- package/templates/storefront-bakery/app/signup/page.tsx +0 -17
- package/templates/storefront-fashion/app/login/page.tsx +0 -17
- package/templates/storefront-fashion/app/signup/page.tsx +0 -17
- package/templates/storefront-grocery/app/login/page.tsx +0 -17
- package/templates/storefront-grocery/app/signup/page.tsx +0 -17
- package/templates/storefront-pharmacy/app/login/page.tsx +0 -17
- package/templates/storefront-pharmacy/app/signup/page.tsx +0 -17
- package/templates/storefront-restaurant/app/login/page.tsx +0 -17
- package/templates/storefront-restaurant/app/signup/page.tsx +0 -17
- package/templates/storefront-retail/app/login/page.tsx +0 -17
- package/templates/storefront-retail/app/signup/page.tsx +0 -17
- package/templates/storefront-services/app/login/page.tsx +0 -17
- package/templates/storefront-services/app/signup/page.tsx +0 -17
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import type { Metadata } from "next";
|
|
2
|
-
import { redirect } from "next/navigation";
|
|
3
|
-
import { brand } from "@/lib/brand";
|
|
4
|
-
|
|
5
|
-
export const metadata: Metadata = {
|
|
6
|
-
title: `Sign in — ${brand.name}`,
|
|
7
|
-
description: brand.account.loginSubtitle,
|
|
8
|
-
};
|
|
9
|
-
|
|
10
|
-
/**
|
|
11
|
-
* Cimplify Link (the iframe in `<CimplifyAccount>`) handles sign-in
|
|
12
|
-
* automatically when no session exists. We just bounce /login to /account
|
|
13
|
-
* so consumers landing here get the right UI without a duplicate form.
|
|
14
|
-
*/
|
|
15
|
-
export default function LoginPage(): never {
|
|
16
|
-
redirect("/account");
|
|
17
|
-
}
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import type { Metadata } from "next";
|
|
2
|
-
import { redirect } from "next/navigation";
|
|
3
|
-
import { brand } from "@/lib/brand";
|
|
4
|
-
|
|
5
|
-
export const metadata: Metadata = {
|
|
6
|
-
title: `Create an account — ${brand.name}`,
|
|
7
|
-
description: brand.account.signupSubtitle,
|
|
8
|
-
};
|
|
9
|
-
|
|
10
|
-
/**
|
|
11
|
-
* Cimplify Link handles sign-up inside the `<CimplifyAccount>` iframe.
|
|
12
|
-
* We bounce /signup to /account; the iframe shows the create-account UI
|
|
13
|
-
* for visitors with no session.
|
|
14
|
-
*/
|
|
15
|
-
export default function SignupPage(): never {
|
|
16
|
-
redirect("/account");
|
|
17
|
-
}
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import type { Metadata } from "next";
|
|
2
|
-
import { redirect } from "next/navigation";
|
|
3
|
-
import { brand } from "@/lib/brand";
|
|
4
|
-
|
|
5
|
-
export const metadata: Metadata = {
|
|
6
|
-
title: `Sign in — ${brand.name}`,
|
|
7
|
-
description: brand.account.loginSubtitle,
|
|
8
|
-
};
|
|
9
|
-
|
|
10
|
-
/**
|
|
11
|
-
* Cimplify Link (the iframe in `<CimplifyAccount>`) handles sign-in
|
|
12
|
-
* automatically when no session exists. We just bounce /login to /account
|
|
13
|
-
* so consumers landing here get the right UI without a duplicate form.
|
|
14
|
-
*/
|
|
15
|
-
export default function LoginPage(): never {
|
|
16
|
-
redirect("/account");
|
|
17
|
-
}
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import type { Metadata } from "next";
|
|
2
|
-
import { redirect } from "next/navigation";
|
|
3
|
-
import { brand } from "@/lib/brand";
|
|
4
|
-
|
|
5
|
-
export const metadata: Metadata = {
|
|
6
|
-
title: `Create an account — ${brand.name}`,
|
|
7
|
-
description: brand.account.signupSubtitle,
|
|
8
|
-
};
|
|
9
|
-
|
|
10
|
-
/**
|
|
11
|
-
* Cimplify Link handles sign-up inside the `<CimplifyAccount>` iframe.
|
|
12
|
-
* We bounce /signup to /account; the iframe shows the create-account UI
|
|
13
|
-
* for visitors with no session.
|
|
14
|
-
*/
|
|
15
|
-
export default function SignupPage(): never {
|
|
16
|
-
redirect("/account");
|
|
17
|
-
}
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import type { Metadata } from "next";
|
|
2
|
-
import { redirect } from "next/navigation";
|
|
3
|
-
import { brand } from "@/lib/brand";
|
|
4
|
-
|
|
5
|
-
export const metadata: Metadata = {
|
|
6
|
-
title: `Sign in — ${brand.name}`,
|
|
7
|
-
description: brand.account.loginSubtitle,
|
|
8
|
-
};
|
|
9
|
-
|
|
10
|
-
/**
|
|
11
|
-
* Cimplify Link (the iframe in `<CimplifyAccount>`) handles sign-in
|
|
12
|
-
* automatically when no session exists. We just bounce /login to /account
|
|
13
|
-
* so consumers landing here get the right UI without a duplicate form.
|
|
14
|
-
*/
|
|
15
|
-
export default function LoginPage(): never {
|
|
16
|
-
redirect("/account");
|
|
17
|
-
}
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import type { Metadata } from "next";
|
|
2
|
-
import { redirect } from "next/navigation";
|
|
3
|
-
import { brand } from "@/lib/brand";
|
|
4
|
-
|
|
5
|
-
export const metadata: Metadata = {
|
|
6
|
-
title: `Create an account — ${brand.name}`,
|
|
7
|
-
description: brand.account.signupSubtitle,
|
|
8
|
-
};
|
|
9
|
-
|
|
10
|
-
/**
|
|
11
|
-
* Cimplify Link handles sign-up inside the `<CimplifyAccount>` iframe.
|
|
12
|
-
* We bounce /signup to /account; the iframe shows the create-account UI
|
|
13
|
-
* for visitors with no session.
|
|
14
|
-
*/
|
|
15
|
-
export default function SignupPage(): never {
|
|
16
|
-
redirect("/account");
|
|
17
|
-
}
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import type { Metadata } from "next";
|
|
2
|
-
import { redirect } from "next/navigation";
|
|
3
|
-
import { brand } from "@/lib/brand";
|
|
4
|
-
|
|
5
|
-
export const metadata: Metadata = {
|
|
6
|
-
title: `Sign in — ${brand.name}`,
|
|
7
|
-
description: brand.account.loginSubtitle,
|
|
8
|
-
};
|
|
9
|
-
|
|
10
|
-
/**
|
|
11
|
-
* Cimplify Link (the iframe in `<CimplifyAccount>`) handles sign-in
|
|
12
|
-
* automatically when no session exists. We just bounce /login to /account
|
|
13
|
-
* so consumers landing here get the right UI without a duplicate form.
|
|
14
|
-
*/
|
|
15
|
-
export default function LoginPage(): never {
|
|
16
|
-
redirect("/account");
|
|
17
|
-
}
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import type { Metadata } from "next";
|
|
2
|
-
import { redirect } from "next/navigation";
|
|
3
|
-
import { brand } from "@/lib/brand";
|
|
4
|
-
|
|
5
|
-
export const metadata: Metadata = {
|
|
6
|
-
title: `Create an account — ${brand.name}`,
|
|
7
|
-
description: brand.account.signupSubtitle,
|
|
8
|
-
};
|
|
9
|
-
|
|
10
|
-
/**
|
|
11
|
-
* Cimplify Link handles sign-up inside the `<CimplifyAccount>` iframe.
|
|
12
|
-
* We bounce /signup to /account; the iframe shows the create-account UI
|
|
13
|
-
* for visitors with no session.
|
|
14
|
-
*/
|
|
15
|
-
export default function SignupPage(): never {
|
|
16
|
-
redirect("/account");
|
|
17
|
-
}
|