2019-06-19 14:40:52 +00:00
|
|
|
import { AuthorizationKeyType } from "../types/globalTypes";
|
|
|
|
import { SiteSettings_shop } from "./types/SiteSettings";
|
|
|
|
|
|
|
|
export const shop: SiteSettings_shop = {
|
|
|
|
__typename: "Shop",
|
|
|
|
authorizationKeys: [
|
|
|
|
{
|
|
|
|
__typename: "AuthorizationKey",
|
|
|
|
key: "n1n62jkn2123:123n",
|
|
|
|
name: AuthorizationKeyType.FACEBOOK
|
|
|
|
}
|
|
|
|
],
|
2019-08-09 11:14:35 +00:00
|
|
|
companyAddress: {
|
|
|
|
__typename: "Address",
|
|
|
|
city: "Kenstad",
|
|
|
|
cityArea: "Alabama",
|
|
|
|
companyName: "Saleor e-commerce",
|
|
|
|
country: {
|
|
|
|
__typename: "CountryDisplay",
|
|
|
|
code: "UA",
|
|
|
|
country: "United Arab Emirates"
|
|
|
|
},
|
|
|
|
countryArea: null,
|
|
|
|
firstName: null,
|
|
|
|
id: "1",
|
|
|
|
lastName: null,
|
|
|
|
phone: "+41 876-373-9137",
|
|
|
|
postalCode: "89880-6342",
|
|
|
|
streetAddress1: "01419 Bernhard Plain",
|
|
|
|
streetAddress2: null
|
|
|
|
},
|
|
|
|
countries: [
|
|
|
|
{
|
|
|
|
__typename: "CountryDisplay",
|
|
|
|
code: "UA",
|
|
|
|
country: "United Arab Emirates"
|
|
|
|
}
|
|
|
|
],
|
2019-06-19 14:40:52 +00:00
|
|
|
description: "Lorem ipsum dolor sit amet",
|
|
|
|
domain: {
|
|
|
|
__typename: "Domain",
|
|
|
|
host: "localhost:8000"
|
|
|
|
},
|
|
|
|
name: "Saleor e-commerce"
|
|
|
|
};
|