2022-03-09 08:56:55 +00:00
|
|
|
import { SiteSettingsQuery } from "@saleor/graphql";
|
2019-06-19 14:40:52 +00:00
|
|
|
|
2022-03-09 08:56:55 +00:00
|
|
|
export const shop: SiteSettingsQuery["shop"] = {
|
2019-06-19 14:40:52 +00:00
|
|
|
__typename: "Shop",
|
2019-08-09 11:14:35 +00:00
|
|
|
companyAddress: {
|
|
|
|
__typename: "Address",
|
|
|
|
city: "Kenstad",
|
|
|
|
cityArea: "Alabama",
|
|
|
|
companyName: "Saleor e-commerce",
|
|
|
|
country: {
|
|
|
|
__typename: "CountryDisplay",
|
|
|
|
code: "UA",
|
2022-06-21 09:36:55 +00:00
|
|
|
country: "United Arab Emirates",
|
2019-08-09 11:14:35 +00:00
|
|
|
},
|
2022-12-14 17:11:24 +00:00
|
|
|
countryArea: "",
|
|
|
|
firstName: "",
|
2019-08-09 11:14:35 +00:00
|
|
|
id: "1",
|
2022-12-14 17:11:24 +00:00
|
|
|
lastName: "",
|
2019-08-09 11:14:35 +00:00
|
|
|
phone: "+41 876-373-9137",
|
|
|
|
postalCode: "89880-6342",
|
|
|
|
streetAddress1: "01419 Bernhard Plain",
|
2022-12-14 17:11:24 +00:00
|
|
|
streetAddress2: "s",
|
2019-08-09 11:14:35 +00:00
|
|
|
},
|
|
|
|
countries: [
|
|
|
|
{
|
|
|
|
__typename: "CountryDisplay",
|
|
|
|
code: "UA",
|
2022-06-21 09:36:55 +00:00
|
|
|
country: "United Arab Emirates",
|
|
|
|
},
|
2019-08-09 11:14:35 +00:00
|
|
|
],
|
2019-10-21 14:18:09 +00:00
|
|
|
customerSetPasswordUrl: "https://example.com/reset-password",
|
|
|
|
defaultMailSenderAddress: "noreply@example.com",
|
|
|
|
defaultMailSenderName: "Saleor",
|
2019-06-19 14:40:52 +00:00
|
|
|
description: "Lorem ipsum dolor sit amet",
|
|
|
|
domain: {
|
|
|
|
__typename: "Domain",
|
2022-06-21 09:36:55 +00:00
|
|
|
host: "localhost:8000",
|
2019-06-19 14:40:52 +00:00
|
|
|
},
|
2021-10-13 11:35:00 +00:00
|
|
|
name: "Saleor e-commerce",
|
|
|
|
reserveStockDurationAnonymousUser: 10,
|
2021-12-07 09:43:24 +00:00
|
|
|
reserveStockDurationAuthenticatedUser: 10,
|
2022-06-21 09:36:55 +00:00
|
|
|
limitQuantityPerCheckout: 50,
|
2019-06-19 14:40:52 +00:00
|
|
|
};
|