83 lines
1.7 KiB
JavaScript
83 lines
1.7 KiB
JavaScript
import { getDefaultAddress } from "./utils/Utils";
|
|
|
|
export function updateShopWeightUnit(weightUnit) {
|
|
const mutation = `mutation{
|
|
shopSettingsUpdate(input:{
|
|
defaultWeightUnit: ${weightUnit}
|
|
}){
|
|
errors{
|
|
field
|
|
message
|
|
}
|
|
shop{
|
|
defaultWeightUnit
|
|
}
|
|
}
|
|
}`;
|
|
return cy
|
|
.sendRequestWithQuery(mutation)
|
|
.wait(5000)
|
|
.its("body.data.shopSettingsUpdate");
|
|
}
|
|
|
|
export function updateStockReservation({
|
|
authenticatedUserStock = 0,
|
|
anonymousUserStock = 0
|
|
}) {
|
|
const mutation = `mutation{
|
|
shopSettingsUpdate(input:{
|
|
reserveStockDurationAnonymousUser: ${anonymousUserStock},
|
|
reserveStockDurationAuthenticatedUser: ${authenticatedUserStock}
|
|
}){
|
|
errors{
|
|
field
|
|
message
|
|
}
|
|
shop{
|
|
reserveStockDurationAnonymousUser,
|
|
reserveStockDurationAuthenticatedUser
|
|
}
|
|
}
|
|
}`;
|
|
return cy.sendRequestWithQuery(mutation).its("body.data.shopSettingsUpdate");
|
|
}
|
|
|
|
export function updateShopAddress(address) {
|
|
const input = getDefaultAddress(address, "input");
|
|
const mutation = `mutation{
|
|
shopAddressUpdate(${input}){
|
|
errors{
|
|
field
|
|
message
|
|
}
|
|
}
|
|
}`;
|
|
return cy.sendRequestWithQuery(mutation);
|
|
}
|
|
|
|
export function getShopInfo() {
|
|
const query = `query{
|
|
shop{
|
|
name
|
|
version
|
|
domain{
|
|
host
|
|
}
|
|
description
|
|
companyAddress{
|
|
companyName
|
|
streetAddress1
|
|
streetAddress2
|
|
city
|
|
cityArea
|
|
postalCode
|
|
country{
|
|
code
|
|
}
|
|
countryArea
|
|
phone
|
|
}
|
|
}
|
|
}`;
|
|
return cy.sendRequestWithQuery(query).its("body.data.shop");
|
|
}
|