@shopware-ag/acceptance-test-suite 12.13.3 → 12.13.4

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
@@ -136,6 +136,7 @@ type Product = Omit<components["schemas"]["Product"], "price" | "prices" | "opti
136
136
  tags?: Record<string, string>[];
137
137
  visibilities?: Record<string, unknown>[];
138
138
  variantListingConfig?: VariantListingConfig;
139
+ type?: string;
139
140
  };
140
141
  type ProductReview = components["schemas"]["ProductReview"] & {
141
142
  id: string;
package/dist/index.d.ts CHANGED
@@ -136,6 +136,7 @@ type Product = Omit<components["schemas"]["Product"], "price" | "prices" | "opti
136
136
  tags?: Record<string, string>[];
137
137
  visibilities?: Record<string, unknown>[];
138
138
  variantListingConfig?: VariantListingConfig;
139
+ type?: string;
139
140
  };
140
141
  type ProductReview = components["schemas"]["ProductReview"] & {
141
142
  id: string;
package/dist/index.mjs CHANGED
@@ -4296,7 +4296,7 @@ class TestDataService {
4296
4296
  * @param currencyId - The uuid of the currency to use for the product pricing.
4297
4297
  */
4298
4298
  async createDigitalProduct(content = "Lorem ipsum dolor", overrides = {}, taxId = this.defaultTaxId, currencyId = this.defaultCurrencyId) {
4299
- const product = await this.createBasicProduct(overrides, taxId, currencyId);
4299
+ const product = await this.createBasicProduct({ type: "digital", ...overrides }, taxId, currencyId);
4300
4300
  const media = await this.createMediaTXT(content);
4301
4301
  await this.assignProductDownload(product.id, media.id);
4302
4302
  return product;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shopware-ag/acceptance-test-suite",
3
- "version": "12.13.3",
3
+ "version": "12.13.4",
4
4
  "description": "Shopware Acceptance Test Suite",
5
5
  "keywords": [
6
6
  "fixtures",