@shopware-ag/acceptance-test-suite 1.3.1 → 1.3.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.
package/dist/index.d.mts CHANGED
@@ -121,6 +121,7 @@ interface StoreBaseConfig {
121
121
  enGBLocaleId: string;
122
122
  enGBLanguageId: string;
123
123
  eurCurrencyId: string;
124
+ defaultCurrencyId: string;
124
125
  invoicePaymentMethodId: string;
125
126
  defaultShippingMethod: string;
126
127
  taxId: string;
package/dist/index.d.ts CHANGED
@@ -121,6 +121,7 @@ interface StoreBaseConfig {
121
121
  enGBLocaleId: string;
122
122
  enGBLanguageId: string;
123
123
  eurCurrencyId: string;
124
+ defaultCurrencyId: string;
124
125
  invoicePaymentMethodId: string;
125
126
  defaultShippingMethod: string;
126
127
  taxId: string;
package/dist/index.mjs CHANGED
@@ -218,6 +218,7 @@ const test$a = test$c.extend({
218
218
  enGBLanguageId: lang.id,
219
219
  storefrontTypeId: "8a243080f92e4c719546314b577cf82b",
220
220
  eurCurrencyId: currency.id,
221
+ defaultCurrencyId: "b7d2554b0ce847cd82f3ac9bd1c0dfca",
221
222
  invoicePaymentMethodId: await requests.invoicePaymentMethodId,
222
223
  defaultShippingMethod: await requests.defaultShippingMethod,
223
224
  taxId: await requests.getTaxId,
@@ -1601,6 +1602,12 @@ const ProductData = test$c.extend({
1601
1602
  gross: 10,
1602
1603
  linked: false,
1603
1604
  net: 8.4
1605
+ },
1606
+ {
1607
+ currencyId: SalesChannelBaseConfig.defaultCurrencyId,
1608
+ gross: 10,
1609
+ linked: false,
1610
+ net: 8.4
1604
1611
  }
1605
1612
  ],
1606
1613
  purchasePrices: [
@@ -1609,6 +1616,12 @@ const ProductData = test$c.extend({
1609
1616
  gross: 8,
1610
1617
  linked: false,
1611
1618
  net: 6.7
1619
+ },
1620
+ {
1621
+ currencyId: SalesChannelBaseConfig.defaultCurrencyId,
1622
+ gross: 8,
1623
+ linked: false,
1624
+ net: 6.7
1612
1625
  }
1613
1626
  ],
1614
1627
  visibilities: [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shopware-ag/acceptance-test-suite",
3
- "version": "1.3.1",
3
+ "version": "1.3.2",
4
4
  "description": "Shopware Acceptance Test Suite",
5
5
  "author": "shopware AG",
6
6
  "license": "MIT",