diff --git a/.changeset/gold-suits-yawn.md b/.changeset/gold-suits-yawn.md new file mode 100644 index 000000000..121d97af6 --- /dev/null +++ b/.changeset/gold-suits-yawn.md @@ -0,0 +1,27 @@ +--- +'@commercetools-test-data/product-discount': major +'@commercetools-test-data/inventory-entry': major +'@commercetools-test-data/shipping-method': major +'@commercetools-test-data/cart-discount': major +'@commercetools-test-data/discount-code': major +'@commercetools-test-data/product-type': major +'@commercetools-test-data/tax-category': major +'@commercetools-test-data/category': major +'@commercetools-test-data/customer': major +'@commercetools-test-data/channel': major +'@commercetools-test-data/commons': major +'@commercetools-test-data/payment': major +'@commercetools-test-data/product': major +'@commercetools-test-data/order': major +'@commercetools-test-data/store': major +'@commercetools-test-data/cart': major +'@commercetools-test-data/zone': major +--- + +Renamed GoodStore dataset to B2C Lifestyle to support Foundry. + +This breaking change updates the export method for GoodStore, now B2C Lifestyle, presets. Presets that use this dataset are also updated. + +Updating this package will require changes in your codebase. To migrate: + +- Replace any instance of `.presets.sampleDataGoodStore.()` with `.presets.sampleDataB2CLifestyle.()` diff --git a/README.md b/README.md index 056b561dc..be7da9416 100644 --- a/README.md +++ b/README.md @@ -35,16 +35,18 @@ const author2 = Author.random().firstName('Rebecca').buildGraphql(); ## Presets Folder -For organization & ownership purposes, Pangolin & FCT house their presets under their respective folders (e.g. change-history-data, sample-data-fashion, sample-data-goodstore). These should not be altered by an external team; however, if modifications occur for any reason, a corresponding team review is mandatory. +For organization & ownership purposes, Pangolin & FCT house their presets under their respective folders (e.g. change-history-data, sample-data-fashion, sample-data-b2c-lifestyle). These should not be altered by an external team; however, if modifications occur for any reason, a corresponding team review is mandatory. ## FAQ #### whose review is mandatory for creating PR? For pull requests concerning your team's specific presets, only your team's approval is required. If modifications are made to the models, inviting representatives from other teams for review is mandatory. + #### Can I simply copy/paste existing test model from other repository (eg: mc-frontend) to test-data? Avoid directly copying and pasting from other repository models, as it may complicate cleanup efforts. While specific sections like generator fields and portions of specs may be copied over as is, be mindful that the overall structure and composition may differ significantly from your current setup. + #### Is there a easy way to know which models are already available? No, there is no overarching inventory page at this time that outlines each package with its corresponding models. @@ -59,6 +61,6 @@ Another trick that we typically do is to add the new models locally in a separat #### What is the procedure after merging the PR? -For merged pull requests, there is no set schedule for releasing version packages (VP). To date it has simply depended on the traffic and urgency at that point in time. -If you need a version released quickly, you are more than welcome to ping the #test-data-migration channel to see if there are any objections to doing so. +For merged pull requests, there is no set schedule for releasing version packages (VP). To date it has simply depended on the traffic and urgency at that point in time. +If you need a version released quickly, you are more than welcome to ping the #test-data-migration channel to see if there are any objections to doing so. Once the VP is released, it is immediately accessible. You have the option to either wait for dependency updates to process (e.g [update all test-data packages to v6.10.0](https://github.com/commercetools/merchant-center-frontend/pull/16069)), or updating them manually. diff --git a/models/cart-discount/src/cart-discount/cart-discount-draft/presets/index.ts b/models/cart-discount/src/cart-discount/cart-discount-draft/presets/index.ts index e3da0cb2b..e248369c8 100644 --- a/models/cart-discount/src/cart-discount/cart-discount-draft/presets/index.ts +++ b/models/cart-discount/src/cart-discount/cart-discount-draft/presets/index.ts @@ -1,13 +1,13 @@ import empty from './empty'; import sampleDataB2B from './sample-data-b2b'; +import sampleDataB2CLifestyle from './sample-data-b2c-lifestyle'; import sampleDataFashion from './sample-data-fashion'; -import sampleDataGoodStore from './sample-data-goodstore'; const presets = { empty, sampleDataB2B, + sampleDataB2CLifestyle, sampleDataFashion, - sampleDataGoodStore, }; export default presets; diff --git a/models/cart-discount/src/cart-discount/cart-discount-draft/presets/sample-data-goodstore/free-shipping.spec.ts b/models/cart-discount/src/cart-discount/cart-discount-draft/presets/sample-data-b2c-lifestyle/free-shipping.spec.ts similarity index 100% rename from models/cart-discount/src/cart-discount/cart-discount-draft/presets/sample-data-goodstore/free-shipping.spec.ts rename to models/cart-discount/src/cart-discount/cart-discount-draft/presets/sample-data-b2c-lifestyle/free-shipping.spec.ts diff --git a/models/cart-discount/src/cart-discount/cart-discount-draft/presets/sample-data-goodstore/free-shipping.ts b/models/cart-discount/src/cart-discount/cart-discount-draft/presets/sample-data-b2c-lifestyle/free-shipping.ts similarity index 100% rename from models/cart-discount/src/cart-discount/cart-discount-draft/presets/sample-data-goodstore/free-shipping.ts rename to models/cart-discount/src/cart-discount/cart-discount-draft/presets/sample-data-b2c-lifestyle/free-shipping.ts diff --git a/models/cart-discount/src/cart-discount/cart-discount-draft/presets/sample-data-goodstore/furniture-bogo.spec.ts b/models/cart-discount/src/cart-discount/cart-discount-draft/presets/sample-data-b2c-lifestyle/furniture-bogo.spec.ts similarity index 100% rename from models/cart-discount/src/cart-discount/cart-discount-draft/presets/sample-data-goodstore/furniture-bogo.spec.ts rename to models/cart-discount/src/cart-discount/cart-discount-draft/presets/sample-data-b2c-lifestyle/furniture-bogo.spec.ts diff --git a/models/cart-discount/src/cart-discount/cart-discount-draft/presets/sample-data-goodstore/furniture-bogo.ts b/models/cart-discount/src/cart-discount/cart-discount-draft/presets/sample-data-b2c-lifestyle/furniture-bogo.ts similarity index 83% rename from models/cart-discount/src/cart-discount/cart-discount-draft/presets/sample-data-goodstore/furniture-bogo.ts rename to models/cart-discount/src/cart-discount/cart-discount-draft/presets/sample-data-b2c-lifestyle/furniture-bogo.ts index 9cd914626..9af7e9031 100644 --- a/models/cart-discount/src/cart-discount/cart-discount-draft/presets/sample-data-goodstore/furniture-bogo.ts +++ b/models/cart-discount/src/cart-discount/cart-discount-draft/presets/sample-data-b2c-lifestyle/furniture-bogo.ts @@ -12,7 +12,7 @@ import { stackingMode } from '../../../constants'; import type { TCartDiscountDraftBuilder } from '../../../types'; import * as CartDiscountDraft from '../../index'; -const productTypeDraft = ProductTypeDraft.presets.sampleDataGoodStore +const productTypeDraft = ProductTypeDraft.presets.sampleDataB2CLifestyle .furnitureAndDecor() .build(); @@ -38,12 +38,12 @@ const furnitureBogo = (): TCartDiscountDraftBuilder => .description( LocalizedStringDraft.presets .empty() - ['en-US']( - 'Two for one on all furniture items (discount on the cheapest item)' - ) - ['en-GB']( - 'Two for one on all furniture items (discount on the cheapest item)' - ) + [ + 'en-US' + ]('Two for one on all furniture items (discount on the cheapest item)') + [ + 'en-GB' + ]('Two for one on all furniture items (discount on the cheapest item)') ) .stackingMode(stackingMode.Stacking) .isActive(true) diff --git a/models/cart-discount/src/cart-discount/cart-discount-draft/presets/sample-data-goodstore/index.ts b/models/cart-discount/src/cart-discount/cart-discount-draft/presets/sample-data-b2c-lifestyle/index.ts similarity index 100% rename from models/cart-discount/src/cart-discount/cart-discount-draft/presets/sample-data-goodstore/index.ts rename to models/cart-discount/src/cart-discount/cart-discount-draft/presets/sample-data-b2c-lifestyle/index.ts diff --git a/models/cart/src/cart/cart-draft/presets/index.ts b/models/cart/src/cart/cart-draft/presets/index.ts index 525c7ef58..45a3396fe 100644 --- a/models/cart/src/cart/cart-draft/presets/index.ts +++ b/models/cart/src/cart/cart-draft/presets/index.ts @@ -1,15 +1,15 @@ import changeHistoryData from './change-history-data'; import empty from './empty'; import sampleDataB2B from './sample-data-b2b'; +import sampleDataB2CLifestyle from './sample-data-b2c-lifestyle'; import sampleDataFashion from './sample-data-fashion'; -import sampleDataGoodStore from './sample-data-goodstore'; const presets = { changeHistoryData, empty, sampleDataB2B, + sampleDataB2CLifestyle, sampleDataFashion, - sampleDataGoodStore, }; export default presets; diff --git a/models/cart/src/cart/cart-draft/presets/sample-data-goodstore/index.ts b/models/cart/src/cart/cart-draft/presets/sample-data-b2c-lifestyle/index.ts similarity index 100% rename from models/cart/src/cart/cart-draft/presets/sample-data-goodstore/index.ts rename to models/cart/src/cart/cart-draft/presets/sample-data-b2c-lifestyle/index.ts diff --git a/models/cart/src/cart/cart-draft/presets/sample-data-b2c-lifestyle/jennifer-jones-01.spec.ts b/models/cart/src/cart/cart-draft/presets/sample-data-b2c-lifestyle/jennifer-jones-01.spec.ts new file mode 100644 index 000000000..8fb4001c1 --- /dev/null +++ b/models/cart/src/cart/cart-draft/presets/sample-data-b2c-lifestyle/jennifer-jones-01.spec.ts @@ -0,0 +1,436 @@ +import { TCartDraft } from '../../../types'; +import jenniferJones01 from './jennifer-jones-01'; + +describe('with the preset cart `jenniferJones01`', () => { + it('should return a cart draft', () => { + const cartDraft = jenniferJones01().build(); + + expect(cartDraft).toMatchInlineSnapshot(` +{ + "anonymousId": undefined, + "billingAddress": { + "additionalAddressInfo": undefined, + "additionalStreetInfo": undefined, + "apartment": undefined, + "building": undefined, + "city": "Westminster", + "company": undefined, + "country": "GB", + "custom": undefined, + "department": undefined, + "email": undefined, + "externalId": undefined, + "fax": undefined, + "firstName": "Jennifer", + "id": undefined, + "key": undefined, + "lastName": "Jones", + "mobile": undefined, + "pOBox": undefined, + "phone": undefined, + "postalCode": "SW1A2AA", + "region": undefined, + "salutation": undefined, + "state": undefined, + "streetName": "Main Road", + "streetNumber": "100", + "title": undefined, + }, + "businessUnit": undefined, + "country": "GB", + "currency": "GBP", + "custom": undefined, + "customLineItems": undefined, + "customShipping": undefined, + "customerEmail": "jen@example.uk", + "customerGroup": undefined, + "customerId": undefined, + "deleteDaysAfterLastModification": undefined, + "discountCodes": undefined, + "externalTaxRateForShippingMethod": undefined, + "inventoryMode": undefined, + "itemShippingAddresses": undefined, + "key": "jennifer-jones-01", + "lineItems": [ + { + "addedAt": undefined, + "custom": undefined, + "distributionChannel": undefined, + "externalPrice": undefined, + "externalTaxRate": undefined, + "externalTotalPrice": undefined, + "inventoryMode": undefined, + "productId": undefined, + "quantity": 1, + "shippingDetails": undefined, + "sku": "RCQB-01", + "supplyChannel": undefined, + "variantId": undefined, + }, + { + "addedAt": undefined, + "custom": undefined, + "distributionChannel": undefined, + "externalPrice": undefined, + "externalTaxRate": undefined, + "externalTotalPrice": undefined, + "inventoryMode": undefined, + "productId": undefined, + "quantity": 1, + "shippingDetails": undefined, + "sku": "MTB-023", + "supplyChannel": undefined, + "variantId": undefined, + }, + { + "addedAt": undefined, + "custom": undefined, + "distributionChannel": undefined, + "externalPrice": undefined, + "externalTaxRate": undefined, + "externalTotalPrice": undefined, + "inventoryMode": undefined, + "productId": undefined, + "quantity": 1, + "shippingDetails": undefined, + "sku": "GPC-01", + "supplyChannel": undefined, + "variantId": undefined, + }, + ], + "locale": undefined, + "origin": "Merchant", + "shipping": undefined, + "shippingAddress": { + "additionalAddressInfo": undefined, + "additionalStreetInfo": undefined, + "apartment": undefined, + "building": undefined, + "city": "Westminster", + "company": undefined, + "country": "GB", + "custom": undefined, + "department": undefined, + "email": undefined, + "externalId": undefined, + "fax": undefined, + "firstName": "Jennifer", + "id": undefined, + "key": undefined, + "lastName": "Jones", + "mobile": undefined, + "pOBox": undefined, + "phone": undefined, + "postalCode": "SW1A2AA", + "region": undefined, + "salutation": undefined, + "state": undefined, + "streetName": "Main Road", + "streetNumber": "100", + "title": undefined, + }, + "shippingMethod": { + "key": "standard-delivery", + "typeId": "shipping-method", + }, + "shippingMode": undefined, + "shippingRateInput": undefined, + "store": { + "key": "b2c-retail-store", + "typeId": "store", + }, + "taxCalculationMode": undefined, + "taxMode": undefined, + "taxRoundingMode": undefined, +} +`); + }); + + it('without customer ID, should return a cart draft', () => { + const cartDraft = jenniferJones01().build(); + + expect(cartDraft).toMatchInlineSnapshot(` +{ + "anonymousId": undefined, + "billingAddress": { + "additionalAddressInfo": undefined, + "additionalStreetInfo": undefined, + "apartment": undefined, + "building": undefined, + "city": "Westminster", + "company": undefined, + "country": "GB", + "custom": undefined, + "department": undefined, + "email": undefined, + "externalId": undefined, + "fax": undefined, + "firstName": "Jennifer", + "id": undefined, + "key": undefined, + "lastName": "Jones", + "mobile": undefined, + "pOBox": undefined, + "phone": undefined, + "postalCode": "SW1A2AA", + "region": undefined, + "salutation": undefined, + "state": undefined, + "streetName": "Main Road", + "streetNumber": "100", + "title": undefined, + }, + "businessUnit": undefined, + "country": "GB", + "currency": "GBP", + "custom": undefined, + "customLineItems": undefined, + "customShipping": undefined, + "customerEmail": "jen@example.uk", + "customerGroup": undefined, + "customerId": undefined, + "deleteDaysAfterLastModification": undefined, + "discountCodes": undefined, + "externalTaxRateForShippingMethod": undefined, + "inventoryMode": undefined, + "itemShippingAddresses": undefined, + "key": "jennifer-jones-01", + "lineItems": [ + { + "addedAt": undefined, + "custom": undefined, + "distributionChannel": undefined, + "externalPrice": undefined, + "externalTaxRate": undefined, + "externalTotalPrice": undefined, + "inventoryMode": undefined, + "productId": undefined, + "quantity": 1, + "shippingDetails": undefined, + "sku": "RCQB-01", + "supplyChannel": undefined, + "variantId": undefined, + }, + { + "addedAt": undefined, + "custom": undefined, + "distributionChannel": undefined, + "externalPrice": undefined, + "externalTaxRate": undefined, + "externalTotalPrice": undefined, + "inventoryMode": undefined, + "productId": undefined, + "quantity": 1, + "shippingDetails": undefined, + "sku": "MTB-023", + "supplyChannel": undefined, + "variantId": undefined, + }, + { + "addedAt": undefined, + "custom": undefined, + "distributionChannel": undefined, + "externalPrice": undefined, + "externalTaxRate": undefined, + "externalTotalPrice": undefined, + "inventoryMode": undefined, + "productId": undefined, + "quantity": 1, + "shippingDetails": undefined, + "sku": "GPC-01", + "supplyChannel": undefined, + "variantId": undefined, + }, + ], + "locale": undefined, + "origin": "Merchant", + "shipping": undefined, + "shippingAddress": { + "additionalAddressInfo": undefined, + "additionalStreetInfo": undefined, + "apartment": undefined, + "building": undefined, + "city": "Westminster", + "company": undefined, + "country": "GB", + "custom": undefined, + "department": undefined, + "email": undefined, + "externalId": undefined, + "fax": undefined, + "firstName": "Jennifer", + "id": undefined, + "key": undefined, + "lastName": "Jones", + "mobile": undefined, + "pOBox": undefined, + "phone": undefined, + "postalCode": "SW1A2AA", + "region": undefined, + "salutation": undefined, + "state": undefined, + "streetName": "Main Road", + "streetNumber": "100", + "title": undefined, + }, + "shippingMethod": { + "key": "standard-delivery", + "typeId": "shipping-method", + }, + "shippingMode": undefined, + "shippingRateInput": undefined, + "store": { + "key": "b2c-retail-store", + "typeId": "store", + }, + "taxCalculationMode": undefined, + "taxMode": undefined, + "taxRoundingMode": undefined, +} +`); + }); + + it('should return a cart draft when build for GraphQL', () => { + const cartDraft = jenniferJones01().buildGraphql(); + + expect(cartDraft).toMatchInlineSnapshot(` +{ + "anonymousId": undefined, + "billingAddress": { + "additionalAddressInfo": undefined, + "additionalStreetInfo": undefined, + "apartment": undefined, + "building": undefined, + "city": "Westminster", + "company": undefined, + "country": "GB", + "custom": undefined, + "department": undefined, + "email": undefined, + "externalId": undefined, + "fax": undefined, + "firstName": "Jennifer", + "id": undefined, + "key": undefined, + "lastName": "Jones", + "mobile": undefined, + "pOBox": undefined, + "phone": undefined, + "postalCode": "SW1A2AA", + "region": undefined, + "salutation": undefined, + "state": undefined, + "streetName": "Main Road", + "streetNumber": "100", + "title": undefined, + }, + "businessUnit": undefined, + "country": "GB", + "currency": "GBP", + "custom": undefined, + "customLineItems": undefined, + "customShipping": undefined, + "customerEmail": "jen@example.uk", + "customerGroup": undefined, + "customerId": undefined, + "deleteDaysAfterLastModification": undefined, + "discountCodes": undefined, + "externalTaxRateForShippingMethod": undefined, + "inventoryMode": undefined, + "itemShippingAddresses": undefined, + "key": "jennifer-jones-01", + "lineItems": [ + { + "addedAt": undefined, + "custom": undefined, + "distributionChannel": undefined, + "externalPrice": undefined, + "externalTaxRate": undefined, + "externalTotalPrice": undefined, + "inventoryMode": undefined, + "productId": undefined, + "quantity": 1, + "shippingDetails": undefined, + "sku": "RCQB-01", + "supplyChannel": undefined, + "variantId": undefined, + }, + { + "addedAt": undefined, + "custom": undefined, + "distributionChannel": undefined, + "externalPrice": undefined, + "externalTaxRate": undefined, + "externalTotalPrice": undefined, + "inventoryMode": undefined, + "productId": undefined, + "quantity": 1, + "shippingDetails": undefined, + "sku": "MTB-023", + "supplyChannel": undefined, + "variantId": undefined, + }, + { + "addedAt": undefined, + "custom": undefined, + "distributionChannel": undefined, + "externalPrice": undefined, + "externalTaxRate": undefined, + "externalTotalPrice": undefined, + "inventoryMode": undefined, + "productId": undefined, + "quantity": 1, + "shippingDetails": undefined, + "sku": "GPC-01", + "supplyChannel": undefined, + "variantId": undefined, + }, + ], + "locale": undefined, + "origin": "Merchant", + "shipping": undefined, + "shippingAddress": { + "additionalAddressInfo": undefined, + "additionalStreetInfo": undefined, + "apartment": undefined, + "building": undefined, + "city": "Westminster", + "company": undefined, + "country": "GB", + "custom": undefined, + "department": undefined, + "email": undefined, + "externalId": undefined, + "fax": undefined, + "firstName": "Jennifer", + "id": undefined, + "key": undefined, + "lastName": "Jones", + "mobile": undefined, + "pOBox": undefined, + "phone": undefined, + "postalCode": "SW1A2AA", + "region": undefined, + "salutation": undefined, + "state": undefined, + "streetName": "Main Road", + "streetNumber": "100", + "title": undefined, + }, + "shippingMethod": { + "key": "standard-delivery", + "typeId": "shipping-method", + }, + "shippingMode": undefined, + "shippingRateInput": undefined, + "store": { + "key": "b2c-retail-store", + "typeId": "store", + }, + "taxCalculationMode": undefined, + "taxMode": undefined, + "taxRoundingMode": undefined, +} +`); + }); +}); diff --git a/models/cart/src/cart/cart-draft/presets/sample-data-goodstore/jennifer-jones-01.ts b/models/cart/src/cart/cart-draft/presets/sample-data-b2c-lifestyle/jennifer-jones-01.ts similarity index 76% rename from models/cart/src/cart/cart-draft/presets/sample-data-goodstore/jennifer-jones-01.ts rename to models/cart/src/cart/cart-draft/presets/sample-data-b2c-lifestyle/jennifer-jones-01.ts index 15f7f4309..30882f87f 100644 --- a/models/cart/src/cart/cart-draft/presets/sample-data-goodstore/jennifer-jones-01.ts +++ b/models/cart/src/cart/cart-draft/presets/sample-data-b2c-lifestyle/jennifer-jones-01.ts @@ -19,24 +19,26 @@ import { CartDraft, LineItemDraft } from '../../../../index'; import { origin } from '../../../constants'; import type { TCartDraftBuilder } from '../../../types'; -const customer = CustomerDraft.presets.sampleDataGoodStore +const customer = CustomerDraft.presets.sampleDataB2CLifestyle .jenniferJones() .build(); -const address = AddressDraft.presets.sampleDataGoodStore.jenniferJonesAddress(); -const rusticCountryQueenBed01 = ProductVariantDraft.presets.sampleDataGoodStore - .rusticCountryQueenBed01() - .build(); -const opalKingBed01 = ProductVariantDraft.presets.sampleDataGoodStore +const address = + AddressDraft.presets.sampleDataB2CLifestyle.jenniferJonesAddress(); +const rusticCountryQueenBed01 = + ProductVariantDraft.presets.sampleDataB2CLifestyle + .rusticCountryQueenBed01() + .build(); +const opalKingBed01 = ProductVariantDraft.presets.sampleDataB2CLifestyle .opalKingBed01() .build(); -const geometricPillowCase01 = ProductVariantDraft.presets.sampleDataGoodStore +const geometricPillowCase01 = ProductVariantDraft.presets.sampleDataB2CLifestyle .geometricPillowCase01() .build(); -const shippingMethod = ShippingMethodDraft.presets.sampleDataGoodStore +const shippingMethod = ShippingMethodDraft.presets.sampleDataB2CLifestyle .standardShippingMethod() .build(); -const store = StoreDraft.presets.sampleDataGoodStore - .theGoodStore() +const store = StoreDraft.presets.sampleDataB2CLifestyle + .b2cRetailStore() .build(); const jenniferJones01 = (customerId?: string): TCartDraftBuilder => diff --git a/models/cart/src/cart/cart-draft/presets/sample-data-b2c-lifestyle/jennifer-schmidt-01.spec.ts b/models/cart/src/cart/cart-draft/presets/sample-data-b2c-lifestyle/jennifer-schmidt-01.spec.ts new file mode 100644 index 000000000..82a4c3d9a --- /dev/null +++ b/models/cart/src/cart/cart-draft/presets/sample-data-b2c-lifestyle/jennifer-schmidt-01.spec.ts @@ -0,0 +1,391 @@ +import { TCartDraft } from '../../../types'; +import jenniferSchmidt01 from './jennnifer-schmidt-01'; + +describe('with the preset cart `jenniferSchmidt01`', () => { + it('should return a cart draft', () => { + const cartDraft = jenniferSchmidt01().build(); + + expect(cartDraft).toMatchInlineSnapshot(` +{ + "anonymousId": undefined, + "billingAddress": { + "additionalAddressInfo": undefined, + "additionalStreetInfo": undefined, + "apartment": undefined, + "building": undefined, + "city": "Potsdam", + "company": undefined, + "country": "DE", + "custom": undefined, + "department": undefined, + "email": undefined, + "externalId": undefined, + "fax": undefined, + "firstName": "Jennifer", + "id": undefined, + "key": undefined, + "lastName": "Schmidt", + "mobile": undefined, + "pOBox": undefined, + "phone": undefined, + "postalCode": "14467", + "region": undefined, + "salutation": undefined, + "state": undefined, + "streetName": "Hauptstrasse", + "streetNumber": "25", + "title": undefined, + }, + "businessUnit": undefined, + "country": "DE", + "currency": "EUR", + "custom": undefined, + "customLineItems": undefined, + "customShipping": undefined, + "customerEmail": "jen@example.de", + "customerGroup": undefined, + "customerId": undefined, + "deleteDaysAfterLastModification": undefined, + "discountCodes": undefined, + "externalTaxRateForShippingMethod": undefined, + "inventoryMode": undefined, + "itemShippingAddresses": undefined, + "key": "jennifer-schmidt-01", + "lineItems": [ + { + "addedAt": undefined, + "custom": undefined, + "distributionChannel": undefined, + "externalPrice": undefined, + "externalTaxRate": undefined, + "externalTotalPrice": undefined, + "inventoryMode": undefined, + "productId": undefined, + "quantity": 1, + "shippingDetails": undefined, + "sku": "GRCG-01", + "supplyChannel": undefined, + "variantId": undefined, + }, + { + "addedAt": undefined, + "custom": undefined, + "distributionChannel": undefined, + "externalPrice": undefined, + "externalTaxRate": undefined, + "externalTotalPrice": undefined, + "inventoryMode": undefined, + "productId": undefined, + "quantity": 1, + "shippingDetails": undefined, + "sku": "MMST-01", + "supplyChannel": undefined, + "variantId": undefined, + }, + ], + "locale": undefined, + "origin": "Merchant", + "shipping": undefined, + "shippingAddress": { + "additionalAddressInfo": undefined, + "additionalStreetInfo": undefined, + "apartment": undefined, + "building": undefined, + "city": "Potsdam", + "company": undefined, + "country": "DE", + "custom": undefined, + "department": undefined, + "email": undefined, + "externalId": undefined, + "fax": undefined, + "firstName": "Jennifer", + "id": undefined, + "key": undefined, + "lastName": "Schmidt", + "mobile": undefined, + "pOBox": undefined, + "phone": undefined, + "postalCode": "14467", + "region": undefined, + "salutation": undefined, + "state": undefined, + "streetName": "Hauptstrasse", + "streetNumber": "25", + "title": undefined, + }, + "shippingMethod": { + "key": "standard-delivery", + "typeId": "shipping-method", + }, + "shippingMode": undefined, + "shippingRateInput": undefined, + "store": { + "key": "b2c-retail-store", + "typeId": "store", + }, + "taxCalculationMode": undefined, + "taxMode": undefined, + "taxRoundingMode": undefined, +} +`); + }); + + it('without customer ID, should return a cart draft', () => { + const cartDraft = jenniferSchmidt01().build(); + + expect(cartDraft).toMatchInlineSnapshot(` +{ + "anonymousId": undefined, + "billingAddress": { + "additionalAddressInfo": undefined, + "additionalStreetInfo": undefined, + "apartment": undefined, + "building": undefined, + "city": "Potsdam", + "company": undefined, + "country": "DE", + "custom": undefined, + "department": undefined, + "email": undefined, + "externalId": undefined, + "fax": undefined, + "firstName": "Jennifer", + "id": undefined, + "key": undefined, + "lastName": "Schmidt", + "mobile": undefined, + "pOBox": undefined, + "phone": undefined, + "postalCode": "14467", + "region": undefined, + "salutation": undefined, + "state": undefined, + "streetName": "Hauptstrasse", + "streetNumber": "25", + "title": undefined, + }, + "businessUnit": undefined, + "country": "DE", + "currency": "EUR", + "custom": undefined, + "customLineItems": undefined, + "customShipping": undefined, + "customerEmail": "jen@example.de", + "customerGroup": undefined, + "customerId": undefined, + "deleteDaysAfterLastModification": undefined, + "discountCodes": undefined, + "externalTaxRateForShippingMethod": undefined, + "inventoryMode": undefined, + "itemShippingAddresses": undefined, + "key": "jennifer-schmidt-01", + "lineItems": [ + { + "addedAt": undefined, + "custom": undefined, + "distributionChannel": undefined, + "externalPrice": undefined, + "externalTaxRate": undefined, + "externalTotalPrice": undefined, + "inventoryMode": undefined, + "productId": undefined, + "quantity": 1, + "shippingDetails": undefined, + "sku": "GRCG-01", + "supplyChannel": undefined, + "variantId": undefined, + }, + { + "addedAt": undefined, + "custom": undefined, + "distributionChannel": undefined, + "externalPrice": undefined, + "externalTaxRate": undefined, + "externalTotalPrice": undefined, + "inventoryMode": undefined, + "productId": undefined, + "quantity": 1, + "shippingDetails": undefined, + "sku": "MMST-01", + "supplyChannel": undefined, + "variantId": undefined, + }, + ], + "locale": undefined, + "origin": "Merchant", + "shipping": undefined, + "shippingAddress": { + "additionalAddressInfo": undefined, + "additionalStreetInfo": undefined, + "apartment": undefined, + "building": undefined, + "city": "Potsdam", + "company": undefined, + "country": "DE", + "custom": undefined, + "department": undefined, + "email": undefined, + "externalId": undefined, + "fax": undefined, + "firstName": "Jennifer", + "id": undefined, + "key": undefined, + "lastName": "Schmidt", + "mobile": undefined, + "pOBox": undefined, + "phone": undefined, + "postalCode": "14467", + "region": undefined, + "salutation": undefined, + "state": undefined, + "streetName": "Hauptstrasse", + "streetNumber": "25", + "title": undefined, + }, + "shippingMethod": { + "key": "standard-delivery", + "typeId": "shipping-method", + }, + "shippingMode": undefined, + "shippingRateInput": undefined, + "store": { + "key": "b2c-retail-store", + "typeId": "store", + }, + "taxCalculationMode": undefined, + "taxMode": undefined, + "taxRoundingMode": undefined, +} +`); + }); + + it('should return a cart draft when build for GraphQL', () => { + const cartDraft = jenniferSchmidt01().buildGraphql(); + + expect(cartDraft).toMatchInlineSnapshot(` +{ + "anonymousId": undefined, + "billingAddress": { + "additionalAddressInfo": undefined, + "additionalStreetInfo": undefined, + "apartment": undefined, + "building": undefined, + "city": "Potsdam", + "company": undefined, + "country": "DE", + "custom": undefined, + "department": undefined, + "email": undefined, + "externalId": undefined, + "fax": undefined, + "firstName": "Jennifer", + "id": undefined, + "key": undefined, + "lastName": "Schmidt", + "mobile": undefined, + "pOBox": undefined, + "phone": undefined, + "postalCode": "14467", + "region": undefined, + "salutation": undefined, + "state": undefined, + "streetName": "Hauptstrasse", + "streetNumber": "25", + "title": undefined, + }, + "businessUnit": undefined, + "country": "DE", + "currency": "EUR", + "custom": undefined, + "customLineItems": undefined, + "customShipping": undefined, + "customerEmail": "jen@example.de", + "customerGroup": undefined, + "customerId": undefined, + "deleteDaysAfterLastModification": undefined, + "discountCodes": undefined, + "externalTaxRateForShippingMethod": undefined, + "inventoryMode": undefined, + "itemShippingAddresses": undefined, + "key": "jennifer-schmidt-01", + "lineItems": [ + { + "addedAt": undefined, + "custom": undefined, + "distributionChannel": undefined, + "externalPrice": undefined, + "externalTaxRate": undefined, + "externalTotalPrice": undefined, + "inventoryMode": undefined, + "productId": undefined, + "quantity": 1, + "shippingDetails": undefined, + "sku": "GRCG-01", + "supplyChannel": undefined, + "variantId": undefined, + }, + { + "addedAt": undefined, + "custom": undefined, + "distributionChannel": undefined, + "externalPrice": undefined, + "externalTaxRate": undefined, + "externalTotalPrice": undefined, + "inventoryMode": undefined, + "productId": undefined, + "quantity": 1, + "shippingDetails": undefined, + "sku": "MMST-01", + "supplyChannel": undefined, + "variantId": undefined, + }, + ], + "locale": undefined, + "origin": "Merchant", + "shipping": undefined, + "shippingAddress": { + "additionalAddressInfo": undefined, + "additionalStreetInfo": undefined, + "apartment": undefined, + "building": undefined, + "city": "Potsdam", + "company": undefined, + "country": "DE", + "custom": undefined, + "department": undefined, + "email": undefined, + "externalId": undefined, + "fax": undefined, + "firstName": "Jennifer", + "id": undefined, + "key": undefined, + "lastName": "Schmidt", + "mobile": undefined, + "pOBox": undefined, + "phone": undefined, + "postalCode": "14467", + "region": undefined, + "salutation": undefined, + "state": undefined, + "streetName": "Hauptstrasse", + "streetNumber": "25", + "title": undefined, + }, + "shippingMethod": { + "key": "standard-delivery", + "typeId": "shipping-method", + }, + "shippingMode": undefined, + "shippingRateInput": undefined, + "store": { + "key": "b2c-retail-store", + "typeId": "store", + }, + "taxCalculationMode": undefined, + "taxMode": undefined, + "taxRoundingMode": undefined, +} +`); + }); +}); diff --git a/models/cart/src/cart/cart-draft/presets/sample-data-goodstore/jennnifer-schmidt-01.ts b/models/cart/src/cart/cart-draft/presets/sample-data-b2c-lifestyle/jennnifer-schmidt-01.ts similarity index 82% rename from models/cart/src/cart/cart-draft/presets/sample-data-goodstore/jennnifer-schmidt-01.ts rename to models/cart/src/cart/cart-draft/presets/sample-data-b2c-lifestyle/jennnifer-schmidt-01.ts index c0d4f9a16..05906c8d5 100644 --- a/models/cart/src/cart/cart-draft/presets/sample-data-goodstore/jennnifer-schmidt-01.ts +++ b/models/cart/src/cart/cart-draft/presets/sample-data-b2c-lifestyle/jennnifer-schmidt-01.ts @@ -19,24 +19,24 @@ import { CartDraft, LineItemDraft } from '../../../../index'; import { origin } from '../../../constants'; import type { TCartDraftBuilder } from '../../../types'; -const customer = CustomerDraft.presets.sampleDataGoodStore +const customer = CustomerDraft.presets.sampleDataB2CLifestyle .jenniferSchmidt() .build(); const address = - AddressDraft.presets.sampleDataGoodStore.jenniferSchmidtAddress(); + AddressDraft.presets.sampleDataB2CLifestyle.jenniferSchmidtAddress(); const goldRimmedChampagneGlasses01 = - ProductVariantDraft.presets.sampleDataGoodStore + ProductVariantDraft.presets.sampleDataB2CLifestyle .goldRimmedChampagneGlasses01() .build(); const minimalistModernSideTable01 = - ProductVariantDraft.presets.sampleDataGoodStore + ProductVariantDraft.presets.sampleDataB2CLifestyle .minimalistModernSideTable01() .build(); -const shippingMethod = ShippingMethodDraft.presets.sampleDataGoodStore +const shippingMethod = ShippingMethodDraft.presets.sampleDataB2CLifestyle .standardShippingMethod() .build(); -const store = StoreDraft.presets.sampleDataGoodStore - .theGoodStore() +const store = StoreDraft.presets.sampleDataB2CLifestyle + .b2cRetailStore() .build(); const jenniferSchmidt01 = (customerId?: string): TCartDraftBuilder => diff --git a/models/cart/src/cart/cart-draft/presets/sample-data-b2c-lifestyle/sebastian-franklin-01.spec.ts b/models/cart/src/cart/cart-draft/presets/sample-data-b2c-lifestyle/sebastian-franklin-01.spec.ts new file mode 100644 index 000000000..6c6d16379 --- /dev/null +++ b/models/cart/src/cart/cart-draft/presets/sample-data-b2c-lifestyle/sebastian-franklin-01.spec.ts @@ -0,0 +1,346 @@ +import { TCartDraft } from '../../../types'; +import sebastianFranklin01 from './sebastian-franklin-01'; + +describe('with the preset cart `sebastianFranklin01`', () => { + it('should return a cart draft', () => { + const cartDraft = sebastianFranklin01().build(); + + expect(cartDraft).toMatchInlineSnapshot(` +{ + "anonymousId": undefined, + "billingAddress": { + "additionalAddressInfo": undefined, + "additionalStreetInfo": undefined, + "apartment": undefined, + "building": undefined, + "city": "Durham", + "company": undefined, + "country": "US", + "custom": undefined, + "department": undefined, + "email": undefined, + "externalId": undefined, + "fax": undefined, + "firstName": "Sebastian", + "id": undefined, + "key": undefined, + "lastName": "Franklin", + "mobile": undefined, + "pOBox": undefined, + "phone": undefined, + "postalCode": "27517", + "region": undefined, + "salutation": undefined, + "state": "North Carolina", + "streetName": "South Road", + "streetNumber": "9", + "title": undefined, + }, + "businessUnit": undefined, + "country": "US", + "currency": "USD", + "custom": undefined, + "customLineItems": undefined, + "customShipping": undefined, + "customerEmail": "seb@example.com", + "customerGroup": undefined, + "customerId": undefined, + "deleteDaysAfterLastModification": undefined, + "discountCodes": undefined, + "externalTaxRateForShippingMethod": undefined, + "inventoryMode": undefined, + "itemShippingAddresses": undefined, + "key": "sebastian-franklin-01", + "lineItems": [ + { + "addedAt": undefined, + "custom": undefined, + "distributionChannel": undefined, + "externalPrice": undefined, + "externalTaxRate": undefined, + "externalTotalPrice": undefined, + "inventoryMode": undefined, + "productId": undefined, + "quantity": 20, + "shippingDetails": undefined, + "sku": "FLAS-094", + "supplyChannel": undefined, + "variantId": undefined, + }, + ], + "locale": undefined, + "origin": "Merchant", + "shipping": undefined, + "shippingAddress": { + "additionalAddressInfo": undefined, + "additionalStreetInfo": undefined, + "apartment": undefined, + "building": undefined, + "city": "Durham", + "company": undefined, + "country": "US", + "custom": undefined, + "department": undefined, + "email": undefined, + "externalId": undefined, + "fax": undefined, + "firstName": "Sebastian", + "id": undefined, + "key": undefined, + "lastName": "Franklin", + "mobile": undefined, + "pOBox": undefined, + "phone": undefined, + "postalCode": "27517", + "region": undefined, + "salutation": undefined, + "state": "North Carolina", + "streetName": "South Road", + "streetNumber": "9", + "title": undefined, + }, + "shippingMethod": { + "key": "us-delivery", + "typeId": "shipping-method", + }, + "shippingMode": undefined, + "shippingRateInput": undefined, + "store": { + "key": "b2c-retail-store", + "typeId": "store", + }, + "taxCalculationMode": undefined, + "taxMode": undefined, + "taxRoundingMode": undefined, +} +`); + }); + + it('without customer ID, should return a cart draft', () => { + const cartDraft = sebastianFranklin01().build(); + + expect(cartDraft).toMatchInlineSnapshot(` +{ + "anonymousId": undefined, + "billingAddress": { + "additionalAddressInfo": undefined, + "additionalStreetInfo": undefined, + "apartment": undefined, + "building": undefined, + "city": "Durham", + "company": undefined, + "country": "US", + "custom": undefined, + "department": undefined, + "email": undefined, + "externalId": undefined, + "fax": undefined, + "firstName": "Sebastian", + "id": undefined, + "key": undefined, + "lastName": "Franklin", + "mobile": undefined, + "pOBox": undefined, + "phone": undefined, + "postalCode": "27517", + "region": undefined, + "salutation": undefined, + "state": "North Carolina", + "streetName": "South Road", + "streetNumber": "9", + "title": undefined, + }, + "businessUnit": undefined, + "country": "US", + "currency": "USD", + "custom": undefined, + "customLineItems": undefined, + "customShipping": undefined, + "customerEmail": "seb@example.com", + "customerGroup": undefined, + "customerId": undefined, + "deleteDaysAfterLastModification": undefined, + "discountCodes": undefined, + "externalTaxRateForShippingMethod": undefined, + "inventoryMode": undefined, + "itemShippingAddresses": undefined, + "key": "sebastian-franklin-01", + "lineItems": [ + { + "addedAt": undefined, + "custom": undefined, + "distributionChannel": undefined, + "externalPrice": undefined, + "externalTaxRate": undefined, + "externalTotalPrice": undefined, + "inventoryMode": undefined, + "productId": undefined, + "quantity": 20, + "shippingDetails": undefined, + "sku": "FLAS-094", + "supplyChannel": undefined, + "variantId": undefined, + }, + ], + "locale": undefined, + "origin": "Merchant", + "shipping": undefined, + "shippingAddress": { + "additionalAddressInfo": undefined, + "additionalStreetInfo": undefined, + "apartment": undefined, + "building": undefined, + "city": "Durham", + "company": undefined, + "country": "US", + "custom": undefined, + "department": undefined, + "email": undefined, + "externalId": undefined, + "fax": undefined, + "firstName": "Sebastian", + "id": undefined, + "key": undefined, + "lastName": "Franklin", + "mobile": undefined, + "pOBox": undefined, + "phone": undefined, + "postalCode": "27517", + "region": undefined, + "salutation": undefined, + "state": "North Carolina", + "streetName": "South Road", + "streetNumber": "9", + "title": undefined, + }, + "shippingMethod": { + "key": "us-delivery", + "typeId": "shipping-method", + }, + "shippingMode": undefined, + "shippingRateInput": undefined, + "store": { + "key": "b2c-retail-store", + "typeId": "store", + }, + "taxCalculationMode": undefined, + "taxMode": undefined, + "taxRoundingMode": undefined, +} +`); + }); + + it('should return a cart draft when build for GraphQL', () => { + const cartDraft = sebastianFranklin01().buildGraphql(); + + expect(cartDraft).toMatchInlineSnapshot(` +{ + "anonymousId": undefined, + "billingAddress": { + "additionalAddressInfo": undefined, + "additionalStreetInfo": undefined, + "apartment": undefined, + "building": undefined, + "city": "Durham", + "company": undefined, + "country": "US", + "custom": undefined, + "department": undefined, + "email": undefined, + "externalId": undefined, + "fax": undefined, + "firstName": "Sebastian", + "id": undefined, + "key": undefined, + "lastName": "Franklin", + "mobile": undefined, + "pOBox": undefined, + "phone": undefined, + "postalCode": "27517", + "region": undefined, + "salutation": undefined, + "state": "North Carolina", + "streetName": "South Road", + "streetNumber": "9", + "title": undefined, + }, + "businessUnit": undefined, + "country": "US", + "currency": "USD", + "custom": undefined, + "customLineItems": undefined, + "customShipping": undefined, + "customerEmail": "seb@example.com", + "customerGroup": undefined, + "customerId": undefined, + "deleteDaysAfterLastModification": undefined, + "discountCodes": undefined, + "externalTaxRateForShippingMethod": undefined, + "inventoryMode": undefined, + "itemShippingAddresses": undefined, + "key": "sebastian-franklin-01", + "lineItems": [ + { + "addedAt": undefined, + "custom": undefined, + "distributionChannel": undefined, + "externalPrice": undefined, + "externalTaxRate": undefined, + "externalTotalPrice": undefined, + "inventoryMode": undefined, + "productId": undefined, + "quantity": 20, + "shippingDetails": undefined, + "sku": "FLAS-094", + "supplyChannel": undefined, + "variantId": undefined, + }, + ], + "locale": undefined, + "origin": "Merchant", + "shipping": undefined, + "shippingAddress": { + "additionalAddressInfo": undefined, + "additionalStreetInfo": undefined, + "apartment": undefined, + "building": undefined, + "city": "Durham", + "company": undefined, + "country": "US", + "custom": undefined, + "department": undefined, + "email": undefined, + "externalId": undefined, + "fax": undefined, + "firstName": "Sebastian", + "id": undefined, + "key": undefined, + "lastName": "Franklin", + "mobile": undefined, + "pOBox": undefined, + "phone": undefined, + "postalCode": "27517", + "region": undefined, + "salutation": undefined, + "state": "North Carolina", + "streetName": "South Road", + "streetNumber": "9", + "title": undefined, + }, + "shippingMethod": { + "key": "us-delivery", + "typeId": "shipping-method", + }, + "shippingMode": undefined, + "shippingRateInput": undefined, + "store": { + "key": "b2c-retail-store", + "typeId": "store", + }, + "taxCalculationMode": undefined, + "taxMode": undefined, + "taxRoundingMode": undefined, +} +`); + }); +}); diff --git a/models/cart/src/cart/cart-draft/presets/sample-data-goodstore/sebastian-franklin-01.ts b/models/cart/src/cart/cart-draft/presets/sample-data-b2c-lifestyle/sebastian-franklin-01.ts similarity index 80% rename from models/cart/src/cart/cart-draft/presets/sample-data-goodstore/sebastian-franklin-01.ts rename to models/cart/src/cart/cart-draft/presets/sample-data-b2c-lifestyle/sebastian-franklin-01.ts index cbe193d6c..226027959 100644 --- a/models/cart/src/cart/cart-draft/presets/sample-data-goodstore/sebastian-franklin-01.ts +++ b/models/cart/src/cart/cart-draft/presets/sample-data-b2c-lifestyle/sebastian-franklin-01.ts @@ -19,20 +19,20 @@ import { CartDraft, LineItemDraft } from '../../../../index'; import { origin } from '../../../constants'; import type { TCartDraftBuilder } from '../../../types'; -const customer = CustomerDraft.presets.sampleDataGoodStore +const customer = CustomerDraft.presets.sampleDataB2CLifestyle .sebastianFranklin() .build(); const address = - AddressDraft.presets.sampleDataGoodStore.sebastianFranklinAddress(); -const steelHipFlask01 = ProductVariantDraft.presets.sampleDataGoodStore + AddressDraft.presets.sampleDataB2CLifestyle.sebastianFranklinAddress(); +const steelHipFlask01 = ProductVariantDraft.presets.sampleDataB2CLifestyle .steelHipFlask01() .build(); -const shippingMethod = ShippingMethodDraft.presets.sampleDataGoodStore +const shippingMethod = ShippingMethodDraft.presets.sampleDataB2CLifestyle .usaShippingMethod() .build(); -const store = StoreDraft.presets.sampleDataGoodStore - .theGoodStore() +const store = StoreDraft.presets.sampleDataB2CLifestyle + .b2cRetailStore() .build(); const sebastianFranklin01 = (customerId?: string): TCartDraftBuilder => diff --git a/models/cart/src/cart/cart-draft/presets/sample-data-b2c-lifestyle/sebastian-mueller-01.spec.ts b/models/cart/src/cart/cart-draft/presets/sample-data-b2c-lifestyle/sebastian-mueller-01.spec.ts new file mode 100644 index 000000000..58d983925 --- /dev/null +++ b/models/cart/src/cart/cart-draft/presets/sample-data-b2c-lifestyle/sebastian-mueller-01.spec.ts @@ -0,0 +1,346 @@ +import { TCartDraft } from '../../../types'; +import sebastianMueller01 from './sebastian-mueller-01'; + +describe('with the preset cart `sebastianMueller01`', () => { + it('should return a cart draft', () => { + const cartDraft = sebastianMueller01().build(); + + expect(cartDraft).toMatchInlineSnapshot(` +{ + "anonymousId": undefined, + "billingAddress": { + "additionalAddressInfo": undefined, + "additionalStreetInfo": undefined, + "apartment": undefined, + "building": undefined, + "city": "München", + "company": undefined, + "country": "DE", + "custom": undefined, + "department": undefined, + "email": undefined, + "externalId": undefined, + "fax": undefined, + "firstName": "Sebastian", + "id": undefined, + "key": undefined, + "lastName": "Müller", + "mobile": undefined, + "pOBox": undefined, + "phone": undefined, + "postalCode": "80331", + "region": undefined, + "salutation": undefined, + "state": undefined, + "streetName": "Schulstrasse", + "streetNumber": "12", + "title": undefined, + }, + "businessUnit": undefined, + "country": "DE", + "currency": "EUR", + "custom": undefined, + "customLineItems": undefined, + "customShipping": undefined, + "customerEmail": "seb@example.de", + "customerGroup": undefined, + "customerId": undefined, + "deleteDaysAfterLastModification": undefined, + "discountCodes": undefined, + "externalTaxRateForShippingMethod": undefined, + "inventoryMode": undefined, + "itemShippingAddresses": undefined, + "key": "sebastian-mueller-01", + "lineItems": [ + { + "addedAt": undefined, + "custom": undefined, + "distributionChannel": undefined, + "externalPrice": undefined, + "externalTaxRate": undefined, + "externalTotalPrice": undefined, + "inventoryMode": undefined, + "productId": undefined, + "quantity": 1, + "shippingDetails": undefined, + "sku": "TLSS-01", + "supplyChannel": undefined, + "variantId": undefined, + }, + ], + "locale": undefined, + "origin": "Merchant", + "shipping": undefined, + "shippingAddress": { + "additionalAddressInfo": undefined, + "additionalStreetInfo": undefined, + "apartment": undefined, + "building": undefined, + "city": "München", + "company": undefined, + "country": "DE", + "custom": undefined, + "department": undefined, + "email": undefined, + "externalId": undefined, + "fax": undefined, + "firstName": "Sebastian", + "id": undefined, + "key": undefined, + "lastName": "Müller", + "mobile": undefined, + "pOBox": undefined, + "phone": undefined, + "postalCode": "80331", + "region": undefined, + "salutation": undefined, + "state": undefined, + "streetName": "Schulstrasse", + "streetNumber": "12", + "title": undefined, + }, + "shippingMethod": { + "key": "standard-delivery", + "typeId": "shipping-method", + }, + "shippingMode": undefined, + "shippingRateInput": undefined, + "store": { + "key": "b2c-retail-store", + "typeId": "store", + }, + "taxCalculationMode": undefined, + "taxMode": undefined, + "taxRoundingMode": undefined, +} +`); + }); + + it('without customer ID, should return a cart draft', () => { + const cartDraft = sebastianMueller01().build(); + + expect(cartDraft).toMatchInlineSnapshot(` +{ + "anonymousId": undefined, + "billingAddress": { + "additionalAddressInfo": undefined, + "additionalStreetInfo": undefined, + "apartment": undefined, + "building": undefined, + "city": "München", + "company": undefined, + "country": "DE", + "custom": undefined, + "department": undefined, + "email": undefined, + "externalId": undefined, + "fax": undefined, + "firstName": "Sebastian", + "id": undefined, + "key": undefined, + "lastName": "Müller", + "mobile": undefined, + "pOBox": undefined, + "phone": undefined, + "postalCode": "80331", + "region": undefined, + "salutation": undefined, + "state": undefined, + "streetName": "Schulstrasse", + "streetNumber": "12", + "title": undefined, + }, + "businessUnit": undefined, + "country": "DE", + "currency": "EUR", + "custom": undefined, + "customLineItems": undefined, + "customShipping": undefined, + "customerEmail": "seb@example.de", + "customerGroup": undefined, + "customerId": undefined, + "deleteDaysAfterLastModification": undefined, + "discountCodes": undefined, + "externalTaxRateForShippingMethod": undefined, + "inventoryMode": undefined, + "itemShippingAddresses": undefined, + "key": "sebastian-mueller-01", + "lineItems": [ + { + "addedAt": undefined, + "custom": undefined, + "distributionChannel": undefined, + "externalPrice": undefined, + "externalTaxRate": undefined, + "externalTotalPrice": undefined, + "inventoryMode": undefined, + "productId": undefined, + "quantity": 1, + "shippingDetails": undefined, + "sku": "TLSS-01", + "supplyChannel": undefined, + "variantId": undefined, + }, + ], + "locale": undefined, + "origin": "Merchant", + "shipping": undefined, + "shippingAddress": { + "additionalAddressInfo": undefined, + "additionalStreetInfo": undefined, + "apartment": undefined, + "building": undefined, + "city": "München", + "company": undefined, + "country": "DE", + "custom": undefined, + "department": undefined, + "email": undefined, + "externalId": undefined, + "fax": undefined, + "firstName": "Sebastian", + "id": undefined, + "key": undefined, + "lastName": "Müller", + "mobile": undefined, + "pOBox": undefined, + "phone": undefined, + "postalCode": "80331", + "region": undefined, + "salutation": undefined, + "state": undefined, + "streetName": "Schulstrasse", + "streetNumber": "12", + "title": undefined, + }, + "shippingMethod": { + "key": "standard-delivery", + "typeId": "shipping-method", + }, + "shippingMode": undefined, + "shippingRateInput": undefined, + "store": { + "key": "b2c-retail-store", + "typeId": "store", + }, + "taxCalculationMode": undefined, + "taxMode": undefined, + "taxRoundingMode": undefined, +} +`); + }); + + it('should return a cart draft when build for GraphQL', () => { + const cartDraft = sebastianMueller01().buildGraphql(); + + expect(cartDraft).toMatchInlineSnapshot(` +{ + "anonymousId": undefined, + "billingAddress": { + "additionalAddressInfo": undefined, + "additionalStreetInfo": undefined, + "apartment": undefined, + "building": undefined, + "city": "München", + "company": undefined, + "country": "DE", + "custom": undefined, + "department": undefined, + "email": undefined, + "externalId": undefined, + "fax": undefined, + "firstName": "Sebastian", + "id": undefined, + "key": undefined, + "lastName": "Müller", + "mobile": undefined, + "pOBox": undefined, + "phone": undefined, + "postalCode": "80331", + "region": undefined, + "salutation": undefined, + "state": undefined, + "streetName": "Schulstrasse", + "streetNumber": "12", + "title": undefined, + }, + "businessUnit": undefined, + "country": "DE", + "currency": "EUR", + "custom": undefined, + "customLineItems": undefined, + "customShipping": undefined, + "customerEmail": "seb@example.de", + "customerGroup": undefined, + "customerId": undefined, + "deleteDaysAfterLastModification": undefined, + "discountCodes": undefined, + "externalTaxRateForShippingMethod": undefined, + "inventoryMode": undefined, + "itemShippingAddresses": undefined, + "key": "sebastian-mueller-01", + "lineItems": [ + { + "addedAt": undefined, + "custom": undefined, + "distributionChannel": undefined, + "externalPrice": undefined, + "externalTaxRate": undefined, + "externalTotalPrice": undefined, + "inventoryMode": undefined, + "productId": undefined, + "quantity": 1, + "shippingDetails": undefined, + "sku": "TLSS-01", + "supplyChannel": undefined, + "variantId": undefined, + }, + ], + "locale": undefined, + "origin": "Merchant", + "shipping": undefined, + "shippingAddress": { + "additionalAddressInfo": undefined, + "additionalStreetInfo": undefined, + "apartment": undefined, + "building": undefined, + "city": "München", + "company": undefined, + "country": "DE", + "custom": undefined, + "department": undefined, + "email": undefined, + "externalId": undefined, + "fax": undefined, + "firstName": "Sebastian", + "id": undefined, + "key": undefined, + "lastName": "Müller", + "mobile": undefined, + "pOBox": undefined, + "phone": undefined, + "postalCode": "80331", + "region": undefined, + "salutation": undefined, + "state": undefined, + "streetName": "Schulstrasse", + "streetNumber": "12", + "title": undefined, + }, + "shippingMethod": { + "key": "standard-delivery", + "typeId": "shipping-method", + }, + "shippingMode": undefined, + "shippingRateInput": undefined, + "store": { + "key": "b2c-retail-store", + "typeId": "store", + }, + "taxCalculationMode": undefined, + "taxMode": undefined, + "taxRoundingMode": undefined, +} +`); + }); +}); diff --git a/models/cart/src/cart/cart-draft/presets/sample-data-goodstore/sebastian-mueller-01.ts b/models/cart/src/cart/cart-draft/presets/sample-data-b2c-lifestyle/sebastian-mueller-01.ts similarity index 76% rename from models/cart/src/cart/cart-draft/presets/sample-data-goodstore/sebastian-mueller-01.ts rename to models/cart/src/cart/cart-draft/presets/sample-data-b2c-lifestyle/sebastian-mueller-01.ts index 8d0801f36..8bc99efd0 100644 --- a/models/cart/src/cart/cart-draft/presets/sample-data-goodstore/sebastian-mueller-01.ts +++ b/models/cart/src/cart/cart-draft/presets/sample-data-b2c-lifestyle/sebastian-mueller-01.ts @@ -19,20 +19,21 @@ import { CartDraft, LineItemDraft } from '../../../../index'; import { origin } from '../../../constants'; import type { TCartDraftBuilder } from '../../../types'; -const customer = CustomerDraft.presets.sampleDataGoodStore +const customer = CustomerDraft.presets.sampleDataB2CLifestyle .sebastianMuller() .build(); const address = - AddressDraft.presets.sampleDataGoodStore.sebastianMullerAddress(); -const traditionalLSeaterSofa01 = ProductVariantDraft.presets.sampleDataGoodStore - .traditionalLSeaterSofa01() - .build(); + AddressDraft.presets.sampleDataB2CLifestyle.sebastianMullerAddress(); +const traditionalLSeaterSofa01 = + ProductVariantDraft.presets.sampleDataB2CLifestyle + .traditionalLSeaterSofa01() + .build(); -const shippingMethod = ShippingMethodDraft.presets.sampleDataGoodStore +const shippingMethod = ShippingMethodDraft.presets.sampleDataB2CLifestyle .standardShippingMethod() .build(); -const store = StoreDraft.presets.sampleDataGoodStore - .theGoodStore() +const store = StoreDraft.presets.sampleDataB2CLifestyle + .b2cRetailStore() .build(); const sebastianMueller01 = (customerId?: string): TCartDraftBuilder => diff --git a/models/cart/src/cart/cart-draft/presets/sample-data-b2c-lifestyle/sebastian-smith-01.spec.ts b/models/cart/src/cart/cart-draft/presets/sample-data-b2c-lifestyle/sebastian-smith-01.spec.ts new file mode 100644 index 000000000..3d4d8a1dd --- /dev/null +++ b/models/cart/src/cart/cart-draft/presets/sample-data-b2c-lifestyle/sebastian-smith-01.spec.ts @@ -0,0 +1,481 @@ +import { TCartDraft } from '../../../types'; +import sebastianSmith01 from './sebastian-smith-01'; + +describe('with the preset cart `sebastianSmith01`', () => { + it('should return a cart draft', () => { + const cartDraft = sebastianSmith01().build(); + + expect(cartDraft).toMatchInlineSnapshot(` +{ + "anonymousId": undefined, + "billingAddress": { + "additionalAddressInfo": undefined, + "additionalStreetInfo": undefined, + "apartment": undefined, + "building": undefined, + "city": "Fareham", + "company": undefined, + "country": "GB", + "custom": undefined, + "department": undefined, + "email": undefined, + "externalId": undefined, + "fax": undefined, + "firstName": "Sebastian", + "id": undefined, + "key": undefined, + "lastName": "Smith", + "mobile": undefined, + "pOBox": undefined, + "phone": undefined, + "postalCode": "PO167GZ", + "region": undefined, + "salutation": undefined, + "state": undefined, + "streetName": "Center Street", + "streetNumber": "1", + "title": undefined, + }, + "businessUnit": undefined, + "country": "GB", + "currency": "GBP", + "custom": undefined, + "customLineItems": undefined, + "customShipping": undefined, + "customerEmail": "seb@example.uk", + "customerGroup": undefined, + "customerId": undefined, + "deleteDaysAfterLastModification": undefined, + "discountCodes": undefined, + "externalTaxRateForShippingMethod": undefined, + "inventoryMode": undefined, + "itemShippingAddresses": undefined, + "key": "sebastian-smith-01", + "lineItems": [ + { + "addedAt": undefined, + "custom": undefined, + "distributionChannel": undefined, + "externalPrice": undefined, + "externalTaxRate": undefined, + "externalTotalPrice": undefined, + "inventoryMode": undefined, + "productId": undefined, + "quantity": 1, + "shippingDetails": undefined, + "sku": "RCQB-01", + "supplyChannel": undefined, + "variantId": undefined, + }, + { + "addedAt": undefined, + "custom": undefined, + "distributionChannel": undefined, + "externalPrice": undefined, + "externalTaxRate": undefined, + "externalTotalPrice": undefined, + "inventoryMode": undefined, + "productId": undefined, + "quantity": 1, + "shippingDetails": undefined, + "sku": "MLP-01", + "supplyChannel": undefined, + "variantId": undefined, + }, + { + "addedAt": undefined, + "custom": undefined, + "distributionChannel": undefined, + "externalPrice": undefined, + "externalTaxRate": undefined, + "externalTotalPrice": undefined, + "inventoryMode": undefined, + "productId": undefined, + "quantity": 1, + "shippingDetails": undefined, + "sku": "GPC-01", + "supplyChannel": undefined, + "variantId": undefined, + }, + { + "addedAt": undefined, + "custom": undefined, + "distributionChannel": undefined, + "externalPrice": undefined, + "externalTaxRate": undefined, + "externalTotalPrice": undefined, + "inventoryMode": undefined, + "productId": undefined, + "quantity": 1, + "shippingDetails": undefined, + "sku": "MTSS-01", + "supplyChannel": undefined, + "variantId": undefined, + }, + ], + "locale": undefined, + "origin": "Merchant", + "shipping": undefined, + "shippingAddress": { + "additionalAddressInfo": undefined, + "additionalStreetInfo": undefined, + "apartment": undefined, + "building": undefined, + "city": "Fareham", + "company": undefined, + "country": "GB", + "custom": undefined, + "department": undefined, + "email": undefined, + "externalId": undefined, + "fax": undefined, + "firstName": "Sebastian", + "id": undefined, + "key": undefined, + "lastName": "Smith", + "mobile": undefined, + "pOBox": undefined, + "phone": undefined, + "postalCode": "PO167GZ", + "region": undefined, + "salutation": undefined, + "state": undefined, + "streetName": "Center Street", + "streetNumber": "1", + "title": undefined, + }, + "shippingMethod": { + "key": "express-delivery", + "typeId": "shipping-method", + }, + "shippingMode": undefined, + "shippingRateInput": undefined, + "store": { + "key": "b2c-retail-store", + "typeId": "store", + }, + "taxCalculationMode": undefined, + "taxMode": undefined, + "taxRoundingMode": undefined, +} +`); + }); + + it('without customer ID, should return a cart draft', () => { + const cartDraft = sebastianSmith01().build(); + + expect(cartDraft).toMatchInlineSnapshot(` +{ + "anonymousId": undefined, + "billingAddress": { + "additionalAddressInfo": undefined, + "additionalStreetInfo": undefined, + "apartment": undefined, + "building": undefined, + "city": "Fareham", + "company": undefined, + "country": "GB", + "custom": undefined, + "department": undefined, + "email": undefined, + "externalId": undefined, + "fax": undefined, + "firstName": "Sebastian", + "id": undefined, + "key": undefined, + "lastName": "Smith", + "mobile": undefined, + "pOBox": undefined, + "phone": undefined, + "postalCode": "PO167GZ", + "region": undefined, + "salutation": undefined, + "state": undefined, + "streetName": "Center Street", + "streetNumber": "1", + "title": undefined, + }, + "businessUnit": undefined, + "country": "GB", + "currency": "GBP", + "custom": undefined, + "customLineItems": undefined, + "customShipping": undefined, + "customerEmail": "seb@example.uk", + "customerGroup": undefined, + "customerId": undefined, + "deleteDaysAfterLastModification": undefined, + "discountCodes": undefined, + "externalTaxRateForShippingMethod": undefined, + "inventoryMode": undefined, + "itemShippingAddresses": undefined, + "key": "sebastian-smith-01", + "lineItems": [ + { + "addedAt": undefined, + "custom": undefined, + "distributionChannel": undefined, + "externalPrice": undefined, + "externalTaxRate": undefined, + "externalTotalPrice": undefined, + "inventoryMode": undefined, + "productId": undefined, + "quantity": 1, + "shippingDetails": undefined, + "sku": "RCQB-01", + "supplyChannel": undefined, + "variantId": undefined, + }, + { + "addedAt": undefined, + "custom": undefined, + "distributionChannel": undefined, + "externalPrice": undefined, + "externalTaxRate": undefined, + "externalTotalPrice": undefined, + "inventoryMode": undefined, + "productId": undefined, + "quantity": 1, + "shippingDetails": undefined, + "sku": "MLP-01", + "supplyChannel": undefined, + "variantId": undefined, + }, + { + "addedAt": undefined, + "custom": undefined, + "distributionChannel": undefined, + "externalPrice": undefined, + "externalTaxRate": undefined, + "externalTotalPrice": undefined, + "inventoryMode": undefined, + "productId": undefined, + "quantity": 1, + "shippingDetails": undefined, + "sku": "GPC-01", + "supplyChannel": undefined, + "variantId": undefined, + }, + { + "addedAt": undefined, + "custom": undefined, + "distributionChannel": undefined, + "externalPrice": undefined, + "externalTaxRate": undefined, + "externalTotalPrice": undefined, + "inventoryMode": undefined, + "productId": undefined, + "quantity": 1, + "shippingDetails": undefined, + "sku": "MTSS-01", + "supplyChannel": undefined, + "variantId": undefined, + }, + ], + "locale": undefined, + "origin": "Merchant", + "shipping": undefined, + "shippingAddress": { + "additionalAddressInfo": undefined, + "additionalStreetInfo": undefined, + "apartment": undefined, + "building": undefined, + "city": "Fareham", + "company": undefined, + "country": "GB", + "custom": undefined, + "department": undefined, + "email": undefined, + "externalId": undefined, + "fax": undefined, + "firstName": "Sebastian", + "id": undefined, + "key": undefined, + "lastName": "Smith", + "mobile": undefined, + "pOBox": undefined, + "phone": undefined, + "postalCode": "PO167GZ", + "region": undefined, + "salutation": undefined, + "state": undefined, + "streetName": "Center Street", + "streetNumber": "1", + "title": undefined, + }, + "shippingMethod": { + "key": "express-delivery", + "typeId": "shipping-method", + }, + "shippingMode": undefined, + "shippingRateInput": undefined, + "store": { + "key": "b2c-retail-store", + "typeId": "store", + }, + "taxCalculationMode": undefined, + "taxMode": undefined, + "taxRoundingMode": undefined, +} +`); + }); + + it('should return a cart draft when build for GraphQL', () => { + const cartDraft = sebastianSmith01().buildGraphql(); + + expect(cartDraft).toMatchInlineSnapshot(` +{ + "anonymousId": undefined, + "billingAddress": { + "additionalAddressInfo": undefined, + "additionalStreetInfo": undefined, + "apartment": undefined, + "building": undefined, + "city": "Fareham", + "company": undefined, + "country": "GB", + "custom": undefined, + "department": undefined, + "email": undefined, + "externalId": undefined, + "fax": undefined, + "firstName": "Sebastian", + "id": undefined, + "key": undefined, + "lastName": "Smith", + "mobile": undefined, + "pOBox": undefined, + "phone": undefined, + "postalCode": "PO167GZ", + "region": undefined, + "salutation": undefined, + "state": undefined, + "streetName": "Center Street", + "streetNumber": "1", + "title": undefined, + }, + "businessUnit": undefined, + "country": "GB", + "currency": "GBP", + "custom": undefined, + "customLineItems": undefined, + "customShipping": undefined, + "customerEmail": "seb@example.uk", + "customerGroup": undefined, + "customerId": undefined, + "deleteDaysAfterLastModification": undefined, + "discountCodes": undefined, + "externalTaxRateForShippingMethod": undefined, + "inventoryMode": undefined, + "itemShippingAddresses": undefined, + "key": "sebastian-smith-01", + "lineItems": [ + { + "addedAt": undefined, + "custom": undefined, + "distributionChannel": undefined, + "externalPrice": undefined, + "externalTaxRate": undefined, + "externalTotalPrice": undefined, + "inventoryMode": undefined, + "productId": undefined, + "quantity": 1, + "shippingDetails": undefined, + "sku": "RCQB-01", + "supplyChannel": undefined, + "variantId": undefined, + }, + { + "addedAt": undefined, + "custom": undefined, + "distributionChannel": undefined, + "externalPrice": undefined, + "externalTaxRate": undefined, + "externalTotalPrice": undefined, + "inventoryMode": undefined, + "productId": undefined, + "quantity": 1, + "shippingDetails": undefined, + "sku": "MLP-01", + "supplyChannel": undefined, + "variantId": undefined, + }, + { + "addedAt": undefined, + "custom": undefined, + "distributionChannel": undefined, + "externalPrice": undefined, + "externalTaxRate": undefined, + "externalTotalPrice": undefined, + "inventoryMode": undefined, + "productId": undefined, + "quantity": 1, + "shippingDetails": undefined, + "sku": "GPC-01", + "supplyChannel": undefined, + "variantId": undefined, + }, + { + "addedAt": undefined, + "custom": undefined, + "distributionChannel": undefined, + "externalPrice": undefined, + "externalTaxRate": undefined, + "externalTotalPrice": undefined, + "inventoryMode": undefined, + "productId": undefined, + "quantity": 1, + "shippingDetails": undefined, + "sku": "MTSS-01", + "supplyChannel": undefined, + "variantId": undefined, + }, + ], + "locale": undefined, + "origin": "Merchant", + "shipping": undefined, + "shippingAddress": { + "additionalAddressInfo": undefined, + "additionalStreetInfo": undefined, + "apartment": undefined, + "building": undefined, + "city": "Fareham", + "company": undefined, + "country": "GB", + "custom": undefined, + "department": undefined, + "email": undefined, + "externalId": undefined, + "fax": undefined, + "firstName": "Sebastian", + "id": undefined, + "key": undefined, + "lastName": "Smith", + "mobile": undefined, + "pOBox": undefined, + "phone": undefined, + "postalCode": "PO167GZ", + "region": undefined, + "salutation": undefined, + "state": undefined, + "streetName": "Center Street", + "streetNumber": "1", + "title": undefined, + }, + "shippingMethod": { + "key": "express-delivery", + "typeId": "shipping-method", + }, + "shippingMode": undefined, + "shippingRateInput": undefined, + "store": { + "key": "b2c-retail-store", + "typeId": "store", + }, + "taxCalculationMode": undefined, + "taxMode": undefined, + "taxRoundingMode": undefined, +} +`); + }); +}); diff --git a/models/cart/src/cart/cart-draft/presets/sample-data-goodstore/sebastian-smith-01.ts b/models/cart/src/cart/cart-draft/presets/sample-data-b2c-lifestyle/sebastian-smith-01.ts similarity index 75% rename from models/cart/src/cart/cart-draft/presets/sample-data-goodstore/sebastian-smith-01.ts rename to models/cart/src/cart/cart-draft/presets/sample-data-b2c-lifestyle/sebastian-smith-01.ts index 7cb8a3840..1a0d7a94e 100644 --- a/models/cart/src/cart/cart-draft/presets/sample-data-goodstore/sebastian-smith-01.ts +++ b/models/cart/src/cart/cart-draft/presets/sample-data-b2c-lifestyle/sebastian-smith-01.ts @@ -19,29 +19,31 @@ import { CartDraft, LineItemDraft } from '../../../../index'; import { origin } from '../../../constants'; import type { TCartDraftBuilder } from '../../../types'; -const customer = CustomerDraft.presets.sampleDataGoodStore +const customer = CustomerDraft.presets.sampleDataB2CLifestyle .sebastianSmith() .build(); const address = - AddressDraft.presets.sampleDataGoodStore.sebastianSmithAddress(); -const rusticCountryQueenBed01 = ProductVariantDraft.presets.sampleDataGoodStore - .rusticCountryQueenBed01() - .build(); + AddressDraft.presets.sampleDataB2CLifestyle.sebastianSmithAddress(); +const rusticCountryQueenBed01 = + ProductVariantDraft.presets.sampleDataB2CLifestyle + .rusticCountryQueenBed01() + .build(); const modernLandscapePainting01 = - ProductVariantDraft.presets.sampleDataGoodStore + ProductVariantDraft.presets.sampleDataB2CLifestyle .modernLandscapePainting01() .build(); -const geometricPillowCase01 = ProductVariantDraft.presets.sampleDataGoodStore +const geometricPillowCase01 = ProductVariantDraft.presets.sampleDataB2CLifestyle .geometricPillowCase01() .build(); -const modernThreeSeaterSofa01 = ProductVariantDraft.presets.sampleDataGoodStore - .modernThreeSeaterSofa01() - .build(); -const shippingMethod = ShippingMethodDraft.presets.sampleDataGoodStore +const modernThreeSeaterSofa01 = + ProductVariantDraft.presets.sampleDataB2CLifestyle + .modernThreeSeaterSofa01() + .build(); +const shippingMethod = ShippingMethodDraft.presets.sampleDataB2CLifestyle .expressShippingMethod() .build(); -const store = StoreDraft.presets.sampleDataGoodStore - .theGoodStore() +const store = StoreDraft.presets.sampleDataB2CLifestyle + .b2cRetailStore() .build(); const sebastianSmith01 = (customerId?: string): TCartDraftBuilder => diff --git a/models/cart/src/cart/cart-draft/presets/sample-data-goodstore/jennifer-jones-01.spec.ts b/models/cart/src/cart/cart-draft/presets/sample-data-goodstore/jennifer-jones-01.spec.ts deleted file mode 100644 index 2248c83bd..000000000 --- a/models/cart/src/cart/cart-draft/presets/sample-data-goodstore/jennifer-jones-01.spec.ts +++ /dev/null @@ -1,436 +0,0 @@ -import { TCartDraft } from '../../../types'; -import jenniferJones01 from './jennifer-jones-01'; - -describe('with the preset cart `jenniferJones01`', () => { - it('should return a cart draft', () => { - const cartDraft = jenniferJones01().build(); - - expect(cartDraft).toMatchInlineSnapshot(` - { - "anonymousId": undefined, - "billingAddress": { - "additionalAddressInfo": undefined, - "additionalStreetInfo": undefined, - "apartment": undefined, - "building": undefined, - "city": "Westminster", - "company": undefined, - "country": "GB", - "custom": undefined, - "department": undefined, - "email": undefined, - "externalId": undefined, - "fax": undefined, - "firstName": "Jennifer", - "id": undefined, - "key": undefined, - "lastName": "Jones", - "mobile": undefined, - "pOBox": undefined, - "phone": undefined, - "postalCode": "SW1A2AA", - "region": undefined, - "salutation": undefined, - "state": undefined, - "streetName": "Main Road", - "streetNumber": "100", - "title": undefined, - }, - "businessUnit": undefined, - "country": "GB", - "currency": "GBP", - "custom": undefined, - "customLineItems": undefined, - "customShipping": undefined, - "customerEmail": "jen@example.uk", - "customerGroup": undefined, - "customerId": undefined, - "deleteDaysAfterLastModification": undefined, - "discountCodes": undefined, - "externalTaxRateForShippingMethod": undefined, - "inventoryMode": undefined, - "itemShippingAddresses": undefined, - "key": "jennifer-jones-01", - "lineItems": [ - { - "addedAt": undefined, - "custom": undefined, - "distributionChannel": undefined, - "externalPrice": undefined, - "externalTaxRate": undefined, - "externalTotalPrice": undefined, - "inventoryMode": undefined, - "productId": undefined, - "quantity": 1, - "shippingDetails": undefined, - "sku": "RCQB-01", - "supplyChannel": undefined, - "variantId": undefined, - }, - { - "addedAt": undefined, - "custom": undefined, - "distributionChannel": undefined, - "externalPrice": undefined, - "externalTaxRate": undefined, - "externalTotalPrice": undefined, - "inventoryMode": undefined, - "productId": undefined, - "quantity": 1, - "shippingDetails": undefined, - "sku": "MTB-023", - "supplyChannel": undefined, - "variantId": undefined, - }, - { - "addedAt": undefined, - "custom": undefined, - "distributionChannel": undefined, - "externalPrice": undefined, - "externalTaxRate": undefined, - "externalTotalPrice": undefined, - "inventoryMode": undefined, - "productId": undefined, - "quantity": 1, - "shippingDetails": undefined, - "sku": "GPC-01", - "supplyChannel": undefined, - "variantId": undefined, - }, - ], - "locale": undefined, - "origin": "Merchant", - "shipping": undefined, - "shippingAddress": { - "additionalAddressInfo": undefined, - "additionalStreetInfo": undefined, - "apartment": undefined, - "building": undefined, - "city": "Westminster", - "company": undefined, - "country": "GB", - "custom": undefined, - "department": undefined, - "email": undefined, - "externalId": undefined, - "fax": undefined, - "firstName": "Jennifer", - "id": undefined, - "key": undefined, - "lastName": "Jones", - "mobile": undefined, - "pOBox": undefined, - "phone": undefined, - "postalCode": "SW1A2AA", - "region": undefined, - "salutation": undefined, - "state": undefined, - "streetName": "Main Road", - "streetNumber": "100", - "title": undefined, - }, - "shippingMethod": { - "key": "standard-delivery", - "typeId": "shipping-method", - }, - "shippingMode": undefined, - "shippingRateInput": undefined, - "store": { - "key": "the-good-store", - "typeId": "store", - }, - "taxCalculationMode": undefined, - "taxMode": undefined, - "taxRoundingMode": undefined, - } - `); - }); - - it('without customer ID, should return a cart draft', () => { - const cartDraft = jenniferJones01().build(); - - expect(cartDraft).toMatchInlineSnapshot(` - { - "anonymousId": undefined, - "billingAddress": { - "additionalAddressInfo": undefined, - "additionalStreetInfo": undefined, - "apartment": undefined, - "building": undefined, - "city": "Westminster", - "company": undefined, - "country": "GB", - "custom": undefined, - "department": undefined, - "email": undefined, - "externalId": undefined, - "fax": undefined, - "firstName": "Jennifer", - "id": undefined, - "key": undefined, - "lastName": "Jones", - "mobile": undefined, - "pOBox": undefined, - "phone": undefined, - "postalCode": "SW1A2AA", - "region": undefined, - "salutation": undefined, - "state": undefined, - "streetName": "Main Road", - "streetNumber": "100", - "title": undefined, - }, - "businessUnit": undefined, - "country": "GB", - "currency": "GBP", - "custom": undefined, - "customLineItems": undefined, - "customShipping": undefined, - "customerEmail": "jen@example.uk", - "customerGroup": undefined, - "customerId": undefined, - "deleteDaysAfterLastModification": undefined, - "discountCodes": undefined, - "externalTaxRateForShippingMethod": undefined, - "inventoryMode": undefined, - "itemShippingAddresses": undefined, - "key": "jennifer-jones-01", - "lineItems": [ - { - "addedAt": undefined, - "custom": undefined, - "distributionChannel": undefined, - "externalPrice": undefined, - "externalTaxRate": undefined, - "externalTotalPrice": undefined, - "inventoryMode": undefined, - "productId": undefined, - "quantity": 1, - "shippingDetails": undefined, - "sku": "RCQB-01", - "supplyChannel": undefined, - "variantId": undefined, - }, - { - "addedAt": undefined, - "custom": undefined, - "distributionChannel": undefined, - "externalPrice": undefined, - "externalTaxRate": undefined, - "externalTotalPrice": undefined, - "inventoryMode": undefined, - "productId": undefined, - "quantity": 1, - "shippingDetails": undefined, - "sku": "MTB-023", - "supplyChannel": undefined, - "variantId": undefined, - }, - { - "addedAt": undefined, - "custom": undefined, - "distributionChannel": undefined, - "externalPrice": undefined, - "externalTaxRate": undefined, - "externalTotalPrice": undefined, - "inventoryMode": undefined, - "productId": undefined, - "quantity": 1, - "shippingDetails": undefined, - "sku": "GPC-01", - "supplyChannel": undefined, - "variantId": undefined, - }, - ], - "locale": undefined, - "origin": "Merchant", - "shipping": undefined, - "shippingAddress": { - "additionalAddressInfo": undefined, - "additionalStreetInfo": undefined, - "apartment": undefined, - "building": undefined, - "city": "Westminster", - "company": undefined, - "country": "GB", - "custom": undefined, - "department": undefined, - "email": undefined, - "externalId": undefined, - "fax": undefined, - "firstName": "Jennifer", - "id": undefined, - "key": undefined, - "lastName": "Jones", - "mobile": undefined, - "pOBox": undefined, - "phone": undefined, - "postalCode": "SW1A2AA", - "region": undefined, - "salutation": undefined, - "state": undefined, - "streetName": "Main Road", - "streetNumber": "100", - "title": undefined, - }, - "shippingMethod": { - "key": "standard-delivery", - "typeId": "shipping-method", - }, - "shippingMode": undefined, - "shippingRateInput": undefined, - "store": { - "key": "the-good-store", - "typeId": "store", - }, - "taxCalculationMode": undefined, - "taxMode": undefined, - "taxRoundingMode": undefined, - } - `); - }); - - it('should return a cart draft when build for GraphQL', () => { - const cartDraft = jenniferJones01().buildGraphql(); - - expect(cartDraft).toMatchInlineSnapshot(` - { - "anonymousId": undefined, - "billingAddress": { - "additionalAddressInfo": undefined, - "additionalStreetInfo": undefined, - "apartment": undefined, - "building": undefined, - "city": "Westminster", - "company": undefined, - "country": "GB", - "custom": undefined, - "department": undefined, - "email": undefined, - "externalId": undefined, - "fax": undefined, - "firstName": "Jennifer", - "id": undefined, - "key": undefined, - "lastName": "Jones", - "mobile": undefined, - "pOBox": undefined, - "phone": undefined, - "postalCode": "SW1A2AA", - "region": undefined, - "salutation": undefined, - "state": undefined, - "streetName": "Main Road", - "streetNumber": "100", - "title": undefined, - }, - "businessUnit": undefined, - "country": "GB", - "currency": "GBP", - "custom": undefined, - "customLineItems": undefined, - "customShipping": undefined, - "customerEmail": "jen@example.uk", - "customerGroup": undefined, - "customerId": undefined, - "deleteDaysAfterLastModification": undefined, - "discountCodes": undefined, - "externalTaxRateForShippingMethod": undefined, - "inventoryMode": undefined, - "itemShippingAddresses": undefined, - "key": "jennifer-jones-01", - "lineItems": [ - { - "addedAt": undefined, - "custom": undefined, - "distributionChannel": undefined, - "externalPrice": undefined, - "externalTaxRate": undefined, - "externalTotalPrice": undefined, - "inventoryMode": undefined, - "productId": undefined, - "quantity": 1, - "shippingDetails": undefined, - "sku": "RCQB-01", - "supplyChannel": undefined, - "variantId": undefined, - }, - { - "addedAt": undefined, - "custom": undefined, - "distributionChannel": undefined, - "externalPrice": undefined, - "externalTaxRate": undefined, - "externalTotalPrice": undefined, - "inventoryMode": undefined, - "productId": undefined, - "quantity": 1, - "shippingDetails": undefined, - "sku": "MTB-023", - "supplyChannel": undefined, - "variantId": undefined, - }, - { - "addedAt": undefined, - "custom": undefined, - "distributionChannel": undefined, - "externalPrice": undefined, - "externalTaxRate": undefined, - "externalTotalPrice": undefined, - "inventoryMode": undefined, - "productId": undefined, - "quantity": 1, - "shippingDetails": undefined, - "sku": "GPC-01", - "supplyChannel": undefined, - "variantId": undefined, - }, - ], - "locale": undefined, - "origin": "Merchant", - "shipping": undefined, - "shippingAddress": { - "additionalAddressInfo": undefined, - "additionalStreetInfo": undefined, - "apartment": undefined, - "building": undefined, - "city": "Westminster", - "company": undefined, - "country": "GB", - "custom": undefined, - "department": undefined, - "email": undefined, - "externalId": undefined, - "fax": undefined, - "firstName": "Jennifer", - "id": undefined, - "key": undefined, - "lastName": "Jones", - "mobile": undefined, - "pOBox": undefined, - "phone": undefined, - "postalCode": "SW1A2AA", - "region": undefined, - "salutation": undefined, - "state": undefined, - "streetName": "Main Road", - "streetNumber": "100", - "title": undefined, - }, - "shippingMethod": { - "key": "standard-delivery", - "typeId": "shipping-method", - }, - "shippingMode": undefined, - "shippingRateInput": undefined, - "store": { - "key": "the-good-store", - "typeId": "store", - }, - "taxCalculationMode": undefined, - "taxMode": undefined, - "taxRoundingMode": undefined, - } - `); - }); -}); diff --git a/models/cart/src/cart/cart-draft/presets/sample-data-goodstore/jennifer-schmidt-01.spec.ts b/models/cart/src/cart/cart-draft/presets/sample-data-goodstore/jennifer-schmidt-01.spec.ts deleted file mode 100644 index 863295dd1..000000000 --- a/models/cart/src/cart/cart-draft/presets/sample-data-goodstore/jennifer-schmidt-01.spec.ts +++ /dev/null @@ -1,391 +0,0 @@ -import { TCartDraft } from '../../../types'; -import jenniferSchmidt01 from './jennnifer-schmidt-01'; - -describe('with the preset cart `jenniferSchmidt01`', () => { - it('should return a cart draft', () => { - const cartDraft = jenniferSchmidt01().build(); - - expect(cartDraft).toMatchInlineSnapshot(` - { - "anonymousId": undefined, - "billingAddress": { - "additionalAddressInfo": undefined, - "additionalStreetInfo": undefined, - "apartment": undefined, - "building": undefined, - "city": "Potsdam", - "company": undefined, - "country": "DE", - "custom": undefined, - "department": undefined, - "email": undefined, - "externalId": undefined, - "fax": undefined, - "firstName": "Jennifer", - "id": undefined, - "key": undefined, - "lastName": "Schmidt", - "mobile": undefined, - "pOBox": undefined, - "phone": undefined, - "postalCode": "14467", - "region": undefined, - "salutation": undefined, - "state": undefined, - "streetName": "Hauptstrasse", - "streetNumber": "25", - "title": undefined, - }, - "businessUnit": undefined, - "country": "DE", - "currency": "EUR", - "custom": undefined, - "customLineItems": undefined, - "customShipping": undefined, - "customerEmail": "jen@example.de", - "customerGroup": undefined, - "customerId": undefined, - "deleteDaysAfterLastModification": undefined, - "discountCodes": undefined, - "externalTaxRateForShippingMethod": undefined, - "inventoryMode": undefined, - "itemShippingAddresses": undefined, - "key": "jennifer-schmidt-01", - "lineItems": [ - { - "addedAt": undefined, - "custom": undefined, - "distributionChannel": undefined, - "externalPrice": undefined, - "externalTaxRate": undefined, - "externalTotalPrice": undefined, - "inventoryMode": undefined, - "productId": undefined, - "quantity": 1, - "shippingDetails": undefined, - "sku": "GRCG-01", - "supplyChannel": undefined, - "variantId": undefined, - }, - { - "addedAt": undefined, - "custom": undefined, - "distributionChannel": undefined, - "externalPrice": undefined, - "externalTaxRate": undefined, - "externalTotalPrice": undefined, - "inventoryMode": undefined, - "productId": undefined, - "quantity": 1, - "shippingDetails": undefined, - "sku": "MMST-01", - "supplyChannel": undefined, - "variantId": undefined, - }, - ], - "locale": undefined, - "origin": "Merchant", - "shipping": undefined, - "shippingAddress": { - "additionalAddressInfo": undefined, - "additionalStreetInfo": undefined, - "apartment": undefined, - "building": undefined, - "city": "Potsdam", - "company": undefined, - "country": "DE", - "custom": undefined, - "department": undefined, - "email": undefined, - "externalId": undefined, - "fax": undefined, - "firstName": "Jennifer", - "id": undefined, - "key": undefined, - "lastName": "Schmidt", - "mobile": undefined, - "pOBox": undefined, - "phone": undefined, - "postalCode": "14467", - "region": undefined, - "salutation": undefined, - "state": undefined, - "streetName": "Hauptstrasse", - "streetNumber": "25", - "title": undefined, - }, - "shippingMethod": { - "key": "standard-delivery", - "typeId": "shipping-method", - }, - "shippingMode": undefined, - "shippingRateInput": undefined, - "store": { - "key": "the-good-store", - "typeId": "store", - }, - "taxCalculationMode": undefined, - "taxMode": undefined, - "taxRoundingMode": undefined, - } - `); - }); - - it('without customer ID, should return a cart draft', () => { - const cartDraft = jenniferSchmidt01().build(); - - expect(cartDraft).toMatchInlineSnapshot(` - { - "anonymousId": undefined, - "billingAddress": { - "additionalAddressInfo": undefined, - "additionalStreetInfo": undefined, - "apartment": undefined, - "building": undefined, - "city": "Potsdam", - "company": undefined, - "country": "DE", - "custom": undefined, - "department": undefined, - "email": undefined, - "externalId": undefined, - "fax": undefined, - "firstName": "Jennifer", - "id": undefined, - "key": undefined, - "lastName": "Schmidt", - "mobile": undefined, - "pOBox": undefined, - "phone": undefined, - "postalCode": "14467", - "region": undefined, - "salutation": undefined, - "state": undefined, - "streetName": "Hauptstrasse", - "streetNumber": "25", - "title": undefined, - }, - "businessUnit": undefined, - "country": "DE", - "currency": "EUR", - "custom": undefined, - "customLineItems": undefined, - "customShipping": undefined, - "customerEmail": "jen@example.de", - "customerGroup": undefined, - "customerId": undefined, - "deleteDaysAfterLastModification": undefined, - "discountCodes": undefined, - "externalTaxRateForShippingMethod": undefined, - "inventoryMode": undefined, - "itemShippingAddresses": undefined, - "key": "jennifer-schmidt-01", - "lineItems": [ - { - "addedAt": undefined, - "custom": undefined, - "distributionChannel": undefined, - "externalPrice": undefined, - "externalTaxRate": undefined, - "externalTotalPrice": undefined, - "inventoryMode": undefined, - "productId": undefined, - "quantity": 1, - "shippingDetails": undefined, - "sku": "GRCG-01", - "supplyChannel": undefined, - "variantId": undefined, - }, - { - "addedAt": undefined, - "custom": undefined, - "distributionChannel": undefined, - "externalPrice": undefined, - "externalTaxRate": undefined, - "externalTotalPrice": undefined, - "inventoryMode": undefined, - "productId": undefined, - "quantity": 1, - "shippingDetails": undefined, - "sku": "MMST-01", - "supplyChannel": undefined, - "variantId": undefined, - }, - ], - "locale": undefined, - "origin": "Merchant", - "shipping": undefined, - "shippingAddress": { - "additionalAddressInfo": undefined, - "additionalStreetInfo": undefined, - "apartment": undefined, - "building": undefined, - "city": "Potsdam", - "company": undefined, - "country": "DE", - "custom": undefined, - "department": undefined, - "email": undefined, - "externalId": undefined, - "fax": undefined, - "firstName": "Jennifer", - "id": undefined, - "key": undefined, - "lastName": "Schmidt", - "mobile": undefined, - "pOBox": undefined, - "phone": undefined, - "postalCode": "14467", - "region": undefined, - "salutation": undefined, - "state": undefined, - "streetName": "Hauptstrasse", - "streetNumber": "25", - "title": undefined, - }, - "shippingMethod": { - "key": "standard-delivery", - "typeId": "shipping-method", - }, - "shippingMode": undefined, - "shippingRateInput": undefined, - "store": { - "key": "the-good-store", - "typeId": "store", - }, - "taxCalculationMode": undefined, - "taxMode": undefined, - "taxRoundingMode": undefined, - } - `); - }); - - it('should return a cart draft when build for GraphQL', () => { - const cartDraft = jenniferSchmidt01().buildGraphql(); - - expect(cartDraft).toMatchInlineSnapshot(` - { - "anonymousId": undefined, - "billingAddress": { - "additionalAddressInfo": undefined, - "additionalStreetInfo": undefined, - "apartment": undefined, - "building": undefined, - "city": "Potsdam", - "company": undefined, - "country": "DE", - "custom": undefined, - "department": undefined, - "email": undefined, - "externalId": undefined, - "fax": undefined, - "firstName": "Jennifer", - "id": undefined, - "key": undefined, - "lastName": "Schmidt", - "mobile": undefined, - "pOBox": undefined, - "phone": undefined, - "postalCode": "14467", - "region": undefined, - "salutation": undefined, - "state": undefined, - "streetName": "Hauptstrasse", - "streetNumber": "25", - "title": undefined, - }, - "businessUnit": undefined, - "country": "DE", - "currency": "EUR", - "custom": undefined, - "customLineItems": undefined, - "customShipping": undefined, - "customerEmail": "jen@example.de", - "customerGroup": undefined, - "customerId": undefined, - "deleteDaysAfterLastModification": undefined, - "discountCodes": undefined, - "externalTaxRateForShippingMethod": undefined, - "inventoryMode": undefined, - "itemShippingAddresses": undefined, - "key": "jennifer-schmidt-01", - "lineItems": [ - { - "addedAt": undefined, - "custom": undefined, - "distributionChannel": undefined, - "externalPrice": undefined, - "externalTaxRate": undefined, - "externalTotalPrice": undefined, - "inventoryMode": undefined, - "productId": undefined, - "quantity": 1, - "shippingDetails": undefined, - "sku": "GRCG-01", - "supplyChannel": undefined, - "variantId": undefined, - }, - { - "addedAt": undefined, - "custom": undefined, - "distributionChannel": undefined, - "externalPrice": undefined, - "externalTaxRate": undefined, - "externalTotalPrice": undefined, - "inventoryMode": undefined, - "productId": undefined, - "quantity": 1, - "shippingDetails": undefined, - "sku": "MMST-01", - "supplyChannel": undefined, - "variantId": undefined, - }, - ], - "locale": undefined, - "origin": "Merchant", - "shipping": undefined, - "shippingAddress": { - "additionalAddressInfo": undefined, - "additionalStreetInfo": undefined, - "apartment": undefined, - "building": undefined, - "city": "Potsdam", - "company": undefined, - "country": "DE", - "custom": undefined, - "department": undefined, - "email": undefined, - "externalId": undefined, - "fax": undefined, - "firstName": "Jennifer", - "id": undefined, - "key": undefined, - "lastName": "Schmidt", - "mobile": undefined, - "pOBox": undefined, - "phone": undefined, - "postalCode": "14467", - "region": undefined, - "salutation": undefined, - "state": undefined, - "streetName": "Hauptstrasse", - "streetNumber": "25", - "title": undefined, - }, - "shippingMethod": { - "key": "standard-delivery", - "typeId": "shipping-method", - }, - "shippingMode": undefined, - "shippingRateInput": undefined, - "store": { - "key": "the-good-store", - "typeId": "store", - }, - "taxCalculationMode": undefined, - "taxMode": undefined, - "taxRoundingMode": undefined, - } - `); - }); -}); diff --git a/models/cart/src/cart/cart-draft/presets/sample-data-goodstore/sebastian-franklin-01.spec.ts b/models/cart/src/cart/cart-draft/presets/sample-data-goodstore/sebastian-franklin-01.spec.ts deleted file mode 100644 index eb6dec646..000000000 --- a/models/cart/src/cart/cart-draft/presets/sample-data-goodstore/sebastian-franklin-01.spec.ts +++ /dev/null @@ -1,346 +0,0 @@ -import { TCartDraft } from '../../../types'; -import sebastianFranklin01 from './sebastian-franklin-01'; - -describe('with the preset cart `sebastianFranklin01`', () => { - it('should return a cart draft', () => { - const cartDraft = sebastianFranklin01().build(); - - expect(cartDraft).toMatchInlineSnapshot(` - { - "anonymousId": undefined, - "billingAddress": { - "additionalAddressInfo": undefined, - "additionalStreetInfo": undefined, - "apartment": undefined, - "building": undefined, - "city": "Durham", - "company": undefined, - "country": "US", - "custom": undefined, - "department": undefined, - "email": undefined, - "externalId": undefined, - "fax": undefined, - "firstName": "Sebastian", - "id": undefined, - "key": undefined, - "lastName": "Franklin", - "mobile": undefined, - "pOBox": undefined, - "phone": undefined, - "postalCode": "27517", - "region": undefined, - "salutation": undefined, - "state": "North Carolina", - "streetName": "South Road", - "streetNumber": "9", - "title": undefined, - }, - "businessUnit": undefined, - "country": "US", - "currency": "USD", - "custom": undefined, - "customLineItems": undefined, - "customShipping": undefined, - "customerEmail": "seb@example.com", - "customerGroup": undefined, - "customerId": undefined, - "deleteDaysAfterLastModification": undefined, - "discountCodes": undefined, - "externalTaxRateForShippingMethod": undefined, - "inventoryMode": undefined, - "itemShippingAddresses": undefined, - "key": "sebastian-franklin-01", - "lineItems": [ - { - "addedAt": undefined, - "custom": undefined, - "distributionChannel": undefined, - "externalPrice": undefined, - "externalTaxRate": undefined, - "externalTotalPrice": undefined, - "inventoryMode": undefined, - "productId": undefined, - "quantity": 20, - "shippingDetails": undefined, - "sku": "FLAS-094", - "supplyChannel": undefined, - "variantId": undefined, - }, - ], - "locale": undefined, - "origin": "Merchant", - "shipping": undefined, - "shippingAddress": { - "additionalAddressInfo": undefined, - "additionalStreetInfo": undefined, - "apartment": undefined, - "building": undefined, - "city": "Durham", - "company": undefined, - "country": "US", - "custom": undefined, - "department": undefined, - "email": undefined, - "externalId": undefined, - "fax": undefined, - "firstName": "Sebastian", - "id": undefined, - "key": undefined, - "lastName": "Franklin", - "mobile": undefined, - "pOBox": undefined, - "phone": undefined, - "postalCode": "27517", - "region": undefined, - "salutation": undefined, - "state": "North Carolina", - "streetName": "South Road", - "streetNumber": "9", - "title": undefined, - }, - "shippingMethod": { - "key": "us-delivery", - "typeId": "shipping-method", - }, - "shippingMode": undefined, - "shippingRateInput": undefined, - "store": { - "key": "the-good-store", - "typeId": "store", - }, - "taxCalculationMode": undefined, - "taxMode": undefined, - "taxRoundingMode": undefined, - } - `); - }); - - it('without customer ID, should return a cart draft', () => { - const cartDraft = sebastianFranklin01().build(); - - expect(cartDraft).toMatchInlineSnapshot(` - { - "anonymousId": undefined, - "billingAddress": { - "additionalAddressInfo": undefined, - "additionalStreetInfo": undefined, - "apartment": undefined, - "building": undefined, - "city": "Durham", - "company": undefined, - "country": "US", - "custom": undefined, - "department": undefined, - "email": undefined, - "externalId": undefined, - "fax": undefined, - "firstName": "Sebastian", - "id": undefined, - "key": undefined, - "lastName": "Franklin", - "mobile": undefined, - "pOBox": undefined, - "phone": undefined, - "postalCode": "27517", - "region": undefined, - "salutation": undefined, - "state": "North Carolina", - "streetName": "South Road", - "streetNumber": "9", - "title": undefined, - }, - "businessUnit": undefined, - "country": "US", - "currency": "USD", - "custom": undefined, - "customLineItems": undefined, - "customShipping": undefined, - "customerEmail": "seb@example.com", - "customerGroup": undefined, - "customerId": undefined, - "deleteDaysAfterLastModification": undefined, - "discountCodes": undefined, - "externalTaxRateForShippingMethod": undefined, - "inventoryMode": undefined, - "itemShippingAddresses": undefined, - "key": "sebastian-franklin-01", - "lineItems": [ - { - "addedAt": undefined, - "custom": undefined, - "distributionChannel": undefined, - "externalPrice": undefined, - "externalTaxRate": undefined, - "externalTotalPrice": undefined, - "inventoryMode": undefined, - "productId": undefined, - "quantity": 20, - "shippingDetails": undefined, - "sku": "FLAS-094", - "supplyChannel": undefined, - "variantId": undefined, - }, - ], - "locale": undefined, - "origin": "Merchant", - "shipping": undefined, - "shippingAddress": { - "additionalAddressInfo": undefined, - "additionalStreetInfo": undefined, - "apartment": undefined, - "building": undefined, - "city": "Durham", - "company": undefined, - "country": "US", - "custom": undefined, - "department": undefined, - "email": undefined, - "externalId": undefined, - "fax": undefined, - "firstName": "Sebastian", - "id": undefined, - "key": undefined, - "lastName": "Franklin", - "mobile": undefined, - "pOBox": undefined, - "phone": undefined, - "postalCode": "27517", - "region": undefined, - "salutation": undefined, - "state": "North Carolina", - "streetName": "South Road", - "streetNumber": "9", - "title": undefined, - }, - "shippingMethod": { - "key": "us-delivery", - "typeId": "shipping-method", - }, - "shippingMode": undefined, - "shippingRateInput": undefined, - "store": { - "key": "the-good-store", - "typeId": "store", - }, - "taxCalculationMode": undefined, - "taxMode": undefined, - "taxRoundingMode": undefined, - } - `); - }); - - it('should return a cart draft when build for GraphQL', () => { - const cartDraft = sebastianFranklin01().buildGraphql(); - - expect(cartDraft).toMatchInlineSnapshot(` - { - "anonymousId": undefined, - "billingAddress": { - "additionalAddressInfo": undefined, - "additionalStreetInfo": undefined, - "apartment": undefined, - "building": undefined, - "city": "Durham", - "company": undefined, - "country": "US", - "custom": undefined, - "department": undefined, - "email": undefined, - "externalId": undefined, - "fax": undefined, - "firstName": "Sebastian", - "id": undefined, - "key": undefined, - "lastName": "Franklin", - "mobile": undefined, - "pOBox": undefined, - "phone": undefined, - "postalCode": "27517", - "region": undefined, - "salutation": undefined, - "state": "North Carolina", - "streetName": "South Road", - "streetNumber": "9", - "title": undefined, - }, - "businessUnit": undefined, - "country": "US", - "currency": "USD", - "custom": undefined, - "customLineItems": undefined, - "customShipping": undefined, - "customerEmail": "seb@example.com", - "customerGroup": undefined, - "customerId": undefined, - "deleteDaysAfterLastModification": undefined, - "discountCodes": undefined, - "externalTaxRateForShippingMethod": undefined, - "inventoryMode": undefined, - "itemShippingAddresses": undefined, - "key": "sebastian-franklin-01", - "lineItems": [ - { - "addedAt": undefined, - "custom": undefined, - "distributionChannel": undefined, - "externalPrice": undefined, - "externalTaxRate": undefined, - "externalTotalPrice": undefined, - "inventoryMode": undefined, - "productId": undefined, - "quantity": 20, - "shippingDetails": undefined, - "sku": "FLAS-094", - "supplyChannel": undefined, - "variantId": undefined, - }, - ], - "locale": undefined, - "origin": "Merchant", - "shipping": undefined, - "shippingAddress": { - "additionalAddressInfo": undefined, - "additionalStreetInfo": undefined, - "apartment": undefined, - "building": undefined, - "city": "Durham", - "company": undefined, - "country": "US", - "custom": undefined, - "department": undefined, - "email": undefined, - "externalId": undefined, - "fax": undefined, - "firstName": "Sebastian", - "id": undefined, - "key": undefined, - "lastName": "Franklin", - "mobile": undefined, - "pOBox": undefined, - "phone": undefined, - "postalCode": "27517", - "region": undefined, - "salutation": undefined, - "state": "North Carolina", - "streetName": "South Road", - "streetNumber": "9", - "title": undefined, - }, - "shippingMethod": { - "key": "us-delivery", - "typeId": "shipping-method", - }, - "shippingMode": undefined, - "shippingRateInput": undefined, - "store": { - "key": "the-good-store", - "typeId": "store", - }, - "taxCalculationMode": undefined, - "taxMode": undefined, - "taxRoundingMode": undefined, - } - `); - }); -}); diff --git a/models/cart/src/cart/cart-draft/presets/sample-data-goodstore/sebastian-mueller-01.spec.ts b/models/cart/src/cart/cart-draft/presets/sample-data-goodstore/sebastian-mueller-01.spec.ts deleted file mode 100644 index 54e7ceb9d..000000000 --- a/models/cart/src/cart/cart-draft/presets/sample-data-goodstore/sebastian-mueller-01.spec.ts +++ /dev/null @@ -1,346 +0,0 @@ -import { TCartDraft } from '../../../types'; -import sebastianMueller01 from './sebastian-mueller-01'; - -describe('with the preset cart `sebastianMueller01`', () => { - it('should return a cart draft', () => { - const cartDraft = sebastianMueller01().build(); - - expect(cartDraft).toMatchInlineSnapshot(` - { - "anonymousId": undefined, - "billingAddress": { - "additionalAddressInfo": undefined, - "additionalStreetInfo": undefined, - "apartment": undefined, - "building": undefined, - "city": "München", - "company": undefined, - "country": "DE", - "custom": undefined, - "department": undefined, - "email": undefined, - "externalId": undefined, - "fax": undefined, - "firstName": "Sebastian", - "id": undefined, - "key": undefined, - "lastName": "Müller", - "mobile": undefined, - "pOBox": undefined, - "phone": undefined, - "postalCode": "80331", - "region": undefined, - "salutation": undefined, - "state": undefined, - "streetName": "Schulstrasse", - "streetNumber": "12", - "title": undefined, - }, - "businessUnit": undefined, - "country": "DE", - "currency": "EUR", - "custom": undefined, - "customLineItems": undefined, - "customShipping": undefined, - "customerEmail": "seb@example.de", - "customerGroup": undefined, - "customerId": undefined, - "deleteDaysAfterLastModification": undefined, - "discountCodes": undefined, - "externalTaxRateForShippingMethod": undefined, - "inventoryMode": undefined, - "itemShippingAddresses": undefined, - "key": "sebastian-mueller-01", - "lineItems": [ - { - "addedAt": undefined, - "custom": undefined, - "distributionChannel": undefined, - "externalPrice": undefined, - "externalTaxRate": undefined, - "externalTotalPrice": undefined, - "inventoryMode": undefined, - "productId": undefined, - "quantity": 1, - "shippingDetails": undefined, - "sku": "TLSS-01", - "supplyChannel": undefined, - "variantId": undefined, - }, - ], - "locale": undefined, - "origin": "Merchant", - "shipping": undefined, - "shippingAddress": { - "additionalAddressInfo": undefined, - "additionalStreetInfo": undefined, - "apartment": undefined, - "building": undefined, - "city": "München", - "company": undefined, - "country": "DE", - "custom": undefined, - "department": undefined, - "email": undefined, - "externalId": undefined, - "fax": undefined, - "firstName": "Sebastian", - "id": undefined, - "key": undefined, - "lastName": "Müller", - "mobile": undefined, - "pOBox": undefined, - "phone": undefined, - "postalCode": "80331", - "region": undefined, - "salutation": undefined, - "state": undefined, - "streetName": "Schulstrasse", - "streetNumber": "12", - "title": undefined, - }, - "shippingMethod": { - "key": "standard-delivery", - "typeId": "shipping-method", - }, - "shippingMode": undefined, - "shippingRateInput": undefined, - "store": { - "key": "the-good-store", - "typeId": "store", - }, - "taxCalculationMode": undefined, - "taxMode": undefined, - "taxRoundingMode": undefined, - } - `); - }); - - it('without customer ID, should return a cart draft', () => { - const cartDraft = sebastianMueller01().build(); - - expect(cartDraft).toMatchInlineSnapshot(` - { - "anonymousId": undefined, - "billingAddress": { - "additionalAddressInfo": undefined, - "additionalStreetInfo": undefined, - "apartment": undefined, - "building": undefined, - "city": "München", - "company": undefined, - "country": "DE", - "custom": undefined, - "department": undefined, - "email": undefined, - "externalId": undefined, - "fax": undefined, - "firstName": "Sebastian", - "id": undefined, - "key": undefined, - "lastName": "Müller", - "mobile": undefined, - "pOBox": undefined, - "phone": undefined, - "postalCode": "80331", - "region": undefined, - "salutation": undefined, - "state": undefined, - "streetName": "Schulstrasse", - "streetNumber": "12", - "title": undefined, - }, - "businessUnit": undefined, - "country": "DE", - "currency": "EUR", - "custom": undefined, - "customLineItems": undefined, - "customShipping": undefined, - "customerEmail": "seb@example.de", - "customerGroup": undefined, - "customerId": undefined, - "deleteDaysAfterLastModification": undefined, - "discountCodes": undefined, - "externalTaxRateForShippingMethod": undefined, - "inventoryMode": undefined, - "itemShippingAddresses": undefined, - "key": "sebastian-mueller-01", - "lineItems": [ - { - "addedAt": undefined, - "custom": undefined, - "distributionChannel": undefined, - "externalPrice": undefined, - "externalTaxRate": undefined, - "externalTotalPrice": undefined, - "inventoryMode": undefined, - "productId": undefined, - "quantity": 1, - "shippingDetails": undefined, - "sku": "TLSS-01", - "supplyChannel": undefined, - "variantId": undefined, - }, - ], - "locale": undefined, - "origin": "Merchant", - "shipping": undefined, - "shippingAddress": { - "additionalAddressInfo": undefined, - "additionalStreetInfo": undefined, - "apartment": undefined, - "building": undefined, - "city": "München", - "company": undefined, - "country": "DE", - "custom": undefined, - "department": undefined, - "email": undefined, - "externalId": undefined, - "fax": undefined, - "firstName": "Sebastian", - "id": undefined, - "key": undefined, - "lastName": "Müller", - "mobile": undefined, - "pOBox": undefined, - "phone": undefined, - "postalCode": "80331", - "region": undefined, - "salutation": undefined, - "state": undefined, - "streetName": "Schulstrasse", - "streetNumber": "12", - "title": undefined, - }, - "shippingMethod": { - "key": "standard-delivery", - "typeId": "shipping-method", - }, - "shippingMode": undefined, - "shippingRateInput": undefined, - "store": { - "key": "the-good-store", - "typeId": "store", - }, - "taxCalculationMode": undefined, - "taxMode": undefined, - "taxRoundingMode": undefined, - } - `); - }); - - it('should return a cart draft when build for GraphQL', () => { - const cartDraft = sebastianMueller01().buildGraphql(); - - expect(cartDraft).toMatchInlineSnapshot(` - { - "anonymousId": undefined, - "billingAddress": { - "additionalAddressInfo": undefined, - "additionalStreetInfo": undefined, - "apartment": undefined, - "building": undefined, - "city": "München", - "company": undefined, - "country": "DE", - "custom": undefined, - "department": undefined, - "email": undefined, - "externalId": undefined, - "fax": undefined, - "firstName": "Sebastian", - "id": undefined, - "key": undefined, - "lastName": "Müller", - "mobile": undefined, - "pOBox": undefined, - "phone": undefined, - "postalCode": "80331", - "region": undefined, - "salutation": undefined, - "state": undefined, - "streetName": "Schulstrasse", - "streetNumber": "12", - "title": undefined, - }, - "businessUnit": undefined, - "country": "DE", - "currency": "EUR", - "custom": undefined, - "customLineItems": undefined, - "customShipping": undefined, - "customerEmail": "seb@example.de", - "customerGroup": undefined, - "customerId": undefined, - "deleteDaysAfterLastModification": undefined, - "discountCodes": undefined, - "externalTaxRateForShippingMethod": undefined, - "inventoryMode": undefined, - "itemShippingAddresses": undefined, - "key": "sebastian-mueller-01", - "lineItems": [ - { - "addedAt": undefined, - "custom": undefined, - "distributionChannel": undefined, - "externalPrice": undefined, - "externalTaxRate": undefined, - "externalTotalPrice": undefined, - "inventoryMode": undefined, - "productId": undefined, - "quantity": 1, - "shippingDetails": undefined, - "sku": "TLSS-01", - "supplyChannel": undefined, - "variantId": undefined, - }, - ], - "locale": undefined, - "origin": "Merchant", - "shipping": undefined, - "shippingAddress": { - "additionalAddressInfo": undefined, - "additionalStreetInfo": undefined, - "apartment": undefined, - "building": undefined, - "city": "München", - "company": undefined, - "country": "DE", - "custom": undefined, - "department": undefined, - "email": undefined, - "externalId": undefined, - "fax": undefined, - "firstName": "Sebastian", - "id": undefined, - "key": undefined, - "lastName": "Müller", - "mobile": undefined, - "pOBox": undefined, - "phone": undefined, - "postalCode": "80331", - "region": undefined, - "salutation": undefined, - "state": undefined, - "streetName": "Schulstrasse", - "streetNumber": "12", - "title": undefined, - }, - "shippingMethod": { - "key": "standard-delivery", - "typeId": "shipping-method", - }, - "shippingMode": undefined, - "shippingRateInput": undefined, - "store": { - "key": "the-good-store", - "typeId": "store", - }, - "taxCalculationMode": undefined, - "taxMode": undefined, - "taxRoundingMode": undefined, - } - `); - }); -}); diff --git a/models/cart/src/cart/cart-draft/presets/sample-data-goodstore/sebastian-smith-01.spec.ts b/models/cart/src/cart/cart-draft/presets/sample-data-goodstore/sebastian-smith-01.spec.ts deleted file mode 100644 index 06be8b306..000000000 --- a/models/cart/src/cart/cart-draft/presets/sample-data-goodstore/sebastian-smith-01.spec.ts +++ /dev/null @@ -1,481 +0,0 @@ -import { TCartDraft } from '../../../types'; -import sebastianSmith01 from './sebastian-smith-01'; - -describe('with the preset cart `sebastianSmith01`', () => { - it('should return a cart draft', () => { - const cartDraft = sebastianSmith01().build(); - - expect(cartDraft).toMatchInlineSnapshot(` - { - "anonymousId": undefined, - "billingAddress": { - "additionalAddressInfo": undefined, - "additionalStreetInfo": undefined, - "apartment": undefined, - "building": undefined, - "city": "Fareham", - "company": undefined, - "country": "GB", - "custom": undefined, - "department": undefined, - "email": undefined, - "externalId": undefined, - "fax": undefined, - "firstName": "Sebastian", - "id": undefined, - "key": undefined, - "lastName": "Smith", - "mobile": undefined, - "pOBox": undefined, - "phone": undefined, - "postalCode": "PO167GZ", - "region": undefined, - "salutation": undefined, - "state": undefined, - "streetName": "Center Street", - "streetNumber": "1", - "title": undefined, - }, - "businessUnit": undefined, - "country": "GB", - "currency": "GBP", - "custom": undefined, - "customLineItems": undefined, - "customShipping": undefined, - "customerEmail": "seb@example.uk", - "customerGroup": undefined, - "customerId": undefined, - "deleteDaysAfterLastModification": undefined, - "discountCodes": undefined, - "externalTaxRateForShippingMethod": undefined, - "inventoryMode": undefined, - "itemShippingAddresses": undefined, - "key": "sebastian-smith-01", - "lineItems": [ - { - "addedAt": undefined, - "custom": undefined, - "distributionChannel": undefined, - "externalPrice": undefined, - "externalTaxRate": undefined, - "externalTotalPrice": undefined, - "inventoryMode": undefined, - "productId": undefined, - "quantity": 1, - "shippingDetails": undefined, - "sku": "RCQB-01", - "supplyChannel": undefined, - "variantId": undefined, - }, - { - "addedAt": undefined, - "custom": undefined, - "distributionChannel": undefined, - "externalPrice": undefined, - "externalTaxRate": undefined, - "externalTotalPrice": undefined, - "inventoryMode": undefined, - "productId": undefined, - "quantity": 1, - "shippingDetails": undefined, - "sku": "MLP-01", - "supplyChannel": undefined, - "variantId": undefined, - }, - { - "addedAt": undefined, - "custom": undefined, - "distributionChannel": undefined, - "externalPrice": undefined, - "externalTaxRate": undefined, - "externalTotalPrice": undefined, - "inventoryMode": undefined, - "productId": undefined, - "quantity": 1, - "shippingDetails": undefined, - "sku": "GPC-01", - "supplyChannel": undefined, - "variantId": undefined, - }, - { - "addedAt": undefined, - "custom": undefined, - "distributionChannel": undefined, - "externalPrice": undefined, - "externalTaxRate": undefined, - "externalTotalPrice": undefined, - "inventoryMode": undefined, - "productId": undefined, - "quantity": 1, - "shippingDetails": undefined, - "sku": "MTSS-01", - "supplyChannel": undefined, - "variantId": undefined, - }, - ], - "locale": undefined, - "origin": "Merchant", - "shipping": undefined, - "shippingAddress": { - "additionalAddressInfo": undefined, - "additionalStreetInfo": undefined, - "apartment": undefined, - "building": undefined, - "city": "Fareham", - "company": undefined, - "country": "GB", - "custom": undefined, - "department": undefined, - "email": undefined, - "externalId": undefined, - "fax": undefined, - "firstName": "Sebastian", - "id": undefined, - "key": undefined, - "lastName": "Smith", - "mobile": undefined, - "pOBox": undefined, - "phone": undefined, - "postalCode": "PO167GZ", - "region": undefined, - "salutation": undefined, - "state": undefined, - "streetName": "Center Street", - "streetNumber": "1", - "title": undefined, - }, - "shippingMethod": { - "key": "express-delivery", - "typeId": "shipping-method", - }, - "shippingMode": undefined, - "shippingRateInput": undefined, - "store": { - "key": "the-good-store", - "typeId": "store", - }, - "taxCalculationMode": undefined, - "taxMode": undefined, - "taxRoundingMode": undefined, - } - `); - }); - - it('without customer ID, should return a cart draft', () => { - const cartDraft = sebastianSmith01().build(); - - expect(cartDraft).toMatchInlineSnapshot(` - { - "anonymousId": undefined, - "billingAddress": { - "additionalAddressInfo": undefined, - "additionalStreetInfo": undefined, - "apartment": undefined, - "building": undefined, - "city": "Fareham", - "company": undefined, - "country": "GB", - "custom": undefined, - "department": undefined, - "email": undefined, - "externalId": undefined, - "fax": undefined, - "firstName": "Sebastian", - "id": undefined, - "key": undefined, - "lastName": "Smith", - "mobile": undefined, - "pOBox": undefined, - "phone": undefined, - "postalCode": "PO167GZ", - "region": undefined, - "salutation": undefined, - "state": undefined, - "streetName": "Center Street", - "streetNumber": "1", - "title": undefined, - }, - "businessUnit": undefined, - "country": "GB", - "currency": "GBP", - "custom": undefined, - "customLineItems": undefined, - "customShipping": undefined, - "customerEmail": "seb@example.uk", - "customerGroup": undefined, - "customerId": undefined, - "deleteDaysAfterLastModification": undefined, - "discountCodes": undefined, - "externalTaxRateForShippingMethod": undefined, - "inventoryMode": undefined, - "itemShippingAddresses": undefined, - "key": "sebastian-smith-01", - "lineItems": [ - { - "addedAt": undefined, - "custom": undefined, - "distributionChannel": undefined, - "externalPrice": undefined, - "externalTaxRate": undefined, - "externalTotalPrice": undefined, - "inventoryMode": undefined, - "productId": undefined, - "quantity": 1, - "shippingDetails": undefined, - "sku": "RCQB-01", - "supplyChannel": undefined, - "variantId": undefined, - }, - { - "addedAt": undefined, - "custom": undefined, - "distributionChannel": undefined, - "externalPrice": undefined, - "externalTaxRate": undefined, - "externalTotalPrice": undefined, - "inventoryMode": undefined, - "productId": undefined, - "quantity": 1, - "shippingDetails": undefined, - "sku": "MLP-01", - "supplyChannel": undefined, - "variantId": undefined, - }, - { - "addedAt": undefined, - "custom": undefined, - "distributionChannel": undefined, - "externalPrice": undefined, - "externalTaxRate": undefined, - "externalTotalPrice": undefined, - "inventoryMode": undefined, - "productId": undefined, - "quantity": 1, - "shippingDetails": undefined, - "sku": "GPC-01", - "supplyChannel": undefined, - "variantId": undefined, - }, - { - "addedAt": undefined, - "custom": undefined, - "distributionChannel": undefined, - "externalPrice": undefined, - "externalTaxRate": undefined, - "externalTotalPrice": undefined, - "inventoryMode": undefined, - "productId": undefined, - "quantity": 1, - "shippingDetails": undefined, - "sku": "MTSS-01", - "supplyChannel": undefined, - "variantId": undefined, - }, - ], - "locale": undefined, - "origin": "Merchant", - "shipping": undefined, - "shippingAddress": { - "additionalAddressInfo": undefined, - "additionalStreetInfo": undefined, - "apartment": undefined, - "building": undefined, - "city": "Fareham", - "company": undefined, - "country": "GB", - "custom": undefined, - "department": undefined, - "email": undefined, - "externalId": undefined, - "fax": undefined, - "firstName": "Sebastian", - "id": undefined, - "key": undefined, - "lastName": "Smith", - "mobile": undefined, - "pOBox": undefined, - "phone": undefined, - "postalCode": "PO167GZ", - "region": undefined, - "salutation": undefined, - "state": undefined, - "streetName": "Center Street", - "streetNumber": "1", - "title": undefined, - }, - "shippingMethod": { - "key": "express-delivery", - "typeId": "shipping-method", - }, - "shippingMode": undefined, - "shippingRateInput": undefined, - "store": { - "key": "the-good-store", - "typeId": "store", - }, - "taxCalculationMode": undefined, - "taxMode": undefined, - "taxRoundingMode": undefined, - } - `); - }); - - it('should return a cart draft when build for GraphQL', () => { - const cartDraft = sebastianSmith01().buildGraphql(); - - expect(cartDraft).toMatchInlineSnapshot(` - { - "anonymousId": undefined, - "billingAddress": { - "additionalAddressInfo": undefined, - "additionalStreetInfo": undefined, - "apartment": undefined, - "building": undefined, - "city": "Fareham", - "company": undefined, - "country": "GB", - "custom": undefined, - "department": undefined, - "email": undefined, - "externalId": undefined, - "fax": undefined, - "firstName": "Sebastian", - "id": undefined, - "key": undefined, - "lastName": "Smith", - "mobile": undefined, - "pOBox": undefined, - "phone": undefined, - "postalCode": "PO167GZ", - "region": undefined, - "salutation": undefined, - "state": undefined, - "streetName": "Center Street", - "streetNumber": "1", - "title": undefined, - }, - "businessUnit": undefined, - "country": "GB", - "currency": "GBP", - "custom": undefined, - "customLineItems": undefined, - "customShipping": undefined, - "customerEmail": "seb@example.uk", - "customerGroup": undefined, - "customerId": undefined, - "deleteDaysAfterLastModification": undefined, - "discountCodes": undefined, - "externalTaxRateForShippingMethod": undefined, - "inventoryMode": undefined, - "itemShippingAddresses": undefined, - "key": "sebastian-smith-01", - "lineItems": [ - { - "addedAt": undefined, - "custom": undefined, - "distributionChannel": undefined, - "externalPrice": undefined, - "externalTaxRate": undefined, - "externalTotalPrice": undefined, - "inventoryMode": undefined, - "productId": undefined, - "quantity": 1, - "shippingDetails": undefined, - "sku": "RCQB-01", - "supplyChannel": undefined, - "variantId": undefined, - }, - { - "addedAt": undefined, - "custom": undefined, - "distributionChannel": undefined, - "externalPrice": undefined, - "externalTaxRate": undefined, - "externalTotalPrice": undefined, - "inventoryMode": undefined, - "productId": undefined, - "quantity": 1, - "shippingDetails": undefined, - "sku": "MLP-01", - "supplyChannel": undefined, - "variantId": undefined, - }, - { - "addedAt": undefined, - "custom": undefined, - "distributionChannel": undefined, - "externalPrice": undefined, - "externalTaxRate": undefined, - "externalTotalPrice": undefined, - "inventoryMode": undefined, - "productId": undefined, - "quantity": 1, - "shippingDetails": undefined, - "sku": "GPC-01", - "supplyChannel": undefined, - "variantId": undefined, - }, - { - "addedAt": undefined, - "custom": undefined, - "distributionChannel": undefined, - "externalPrice": undefined, - "externalTaxRate": undefined, - "externalTotalPrice": undefined, - "inventoryMode": undefined, - "productId": undefined, - "quantity": 1, - "shippingDetails": undefined, - "sku": "MTSS-01", - "supplyChannel": undefined, - "variantId": undefined, - }, - ], - "locale": undefined, - "origin": "Merchant", - "shipping": undefined, - "shippingAddress": { - "additionalAddressInfo": undefined, - "additionalStreetInfo": undefined, - "apartment": undefined, - "building": undefined, - "city": "Fareham", - "company": undefined, - "country": "GB", - "custom": undefined, - "department": undefined, - "email": undefined, - "externalId": undefined, - "fax": undefined, - "firstName": "Sebastian", - "id": undefined, - "key": undefined, - "lastName": "Smith", - "mobile": undefined, - "pOBox": undefined, - "phone": undefined, - "postalCode": "PO167GZ", - "region": undefined, - "salutation": undefined, - "state": undefined, - "streetName": "Center Street", - "streetNumber": "1", - "title": undefined, - }, - "shippingMethod": { - "key": "express-delivery", - "typeId": "shipping-method", - }, - "shippingMode": undefined, - "shippingRateInput": undefined, - "store": { - "key": "the-good-store", - "typeId": "store", - }, - "taxCalculationMode": undefined, - "taxMode": undefined, - "taxRoundingMode": undefined, - } - `); - }); -}); diff --git a/models/category/src/category-draft/presets/index.ts b/models/category/src/category-draft/presets/index.ts index e8cc7b5cc..bcbd8897d 100644 --- a/models/category/src/category-draft/presets/index.ts +++ b/models/category/src/category-draft/presets/index.ts @@ -1,14 +1,14 @@ import changeHistoryData from './change-history-data'; import empty from './empty'; import sampleDataB2B from './sample-data-b2b'; +import sampleDataB2CLifestyle from './sample-data-b2c-lifestyle'; import sampleDataFashion from './sample-data-fashion'; -import sampleDataGoodStore from './sample-data-goodstore'; const presets = { empty, sampleDataB2B, sampleDataFashion, - sampleDataGoodStore, + sampleDataB2CLifestyle, changeHistoryData, }; diff --git a/models/category/src/category-draft/presets/sample-data-goodstore/armchairs.spec.ts b/models/category/src/category-draft/presets/sample-data-b2c-lifestyle/armchairs.spec.ts similarity index 100% rename from models/category/src/category-draft/presets/sample-data-goodstore/armchairs.spec.ts rename to models/category/src/category-draft/presets/sample-data-b2c-lifestyle/armchairs.spec.ts diff --git a/models/category/src/category-draft/presets/sample-data-goodstore/armchairs.ts b/models/category/src/category-draft/presets/sample-data-b2c-lifestyle/armchairs.ts similarity index 100% rename from models/category/src/category-draft/presets/sample-data-goodstore/armchairs.ts rename to models/category/src/category-draft/presets/sample-data-b2c-lifestyle/armchairs.ts diff --git a/models/category/src/category-draft/presets/sample-data-goodstore/bakeware.spec.ts b/models/category/src/category-draft/presets/sample-data-b2c-lifestyle/bakeware.spec.ts similarity index 100% rename from models/category/src/category-draft/presets/sample-data-goodstore/bakeware.spec.ts rename to models/category/src/category-draft/presets/sample-data-b2c-lifestyle/bakeware.spec.ts diff --git a/models/category/src/category-draft/presets/sample-data-goodstore/bakeware.ts b/models/category/src/category-draft/presets/sample-data-b2c-lifestyle/bakeware.ts similarity index 100% rename from models/category/src/category-draft/presets/sample-data-goodstore/bakeware.ts rename to models/category/src/category-draft/presets/sample-data-b2c-lifestyle/bakeware.ts diff --git a/models/category/src/category-draft/presets/sample-data-goodstore/bar-accessories.spec.ts b/models/category/src/category-draft/presets/sample-data-b2c-lifestyle/bar-accessories.spec.ts similarity index 100% rename from models/category/src/category-draft/presets/sample-data-goodstore/bar-accessories.spec.ts rename to models/category/src/category-draft/presets/sample-data-b2c-lifestyle/bar-accessories.spec.ts diff --git a/models/category/src/category-draft/presets/sample-data-goodstore/bar-accessories.ts b/models/category/src/category-draft/presets/sample-data-b2c-lifestyle/bar-accessories.ts similarity index 100% rename from models/category/src/category-draft/presets/sample-data-goodstore/bar-accessories.ts rename to models/category/src/category-draft/presets/sample-data-b2c-lifestyle/bar-accessories.ts diff --git a/models/category/src/category-draft/presets/sample-data-goodstore/bar-and-glassware.spec.ts b/models/category/src/category-draft/presets/sample-data-b2c-lifestyle/bar-and-glassware.spec.ts similarity index 100% rename from models/category/src/category-draft/presets/sample-data-goodstore/bar-and-glassware.spec.ts rename to models/category/src/category-draft/presets/sample-data-b2c-lifestyle/bar-and-glassware.spec.ts diff --git a/models/category/src/category-draft/presets/sample-data-goodstore/bar-and-glassware.ts b/models/category/src/category-draft/presets/sample-data-b2c-lifestyle/bar-and-glassware.ts similarity index 100% rename from models/category/src/category-draft/presets/sample-data-goodstore/bar-and-glassware.ts rename to models/category/src/category-draft/presets/sample-data-b2c-lifestyle/bar-and-glassware.ts diff --git a/models/category/src/category-draft/presets/sample-data-goodstore/bedding.spec.ts b/models/category/src/category-draft/presets/sample-data-b2c-lifestyle/bedding.spec.ts similarity index 100% rename from models/category/src/category-draft/presets/sample-data-goodstore/bedding.spec.ts rename to models/category/src/category-draft/presets/sample-data-b2c-lifestyle/bedding.spec.ts diff --git a/models/category/src/category-draft/presets/sample-data-goodstore/bedding.ts b/models/category/src/category-draft/presets/sample-data-b2c-lifestyle/bedding.ts similarity index 100% rename from models/category/src/category-draft/presets/sample-data-goodstore/bedding.ts rename to models/category/src/category-draft/presets/sample-data-b2c-lifestyle/bedding.ts diff --git a/models/category/src/category-draft/presets/sample-data-goodstore/bedroom-furniture.spec.ts b/models/category/src/category-draft/presets/sample-data-b2c-lifestyle/bedroom-furniture.spec.ts similarity index 100% rename from models/category/src/category-draft/presets/sample-data-goodstore/bedroom-furniture.spec.ts rename to models/category/src/category-draft/presets/sample-data-b2c-lifestyle/bedroom-furniture.spec.ts diff --git a/models/category/src/category-draft/presets/sample-data-goodstore/bedroom-furniture.ts b/models/category/src/category-draft/presets/sample-data-b2c-lifestyle/bedroom-furniture.ts similarity index 100% rename from models/category/src/category-draft/presets/sample-data-goodstore/bedroom-furniture.ts rename to models/category/src/category-draft/presets/sample-data-b2c-lifestyle/bedroom-furniture.ts diff --git a/models/category/src/category-draft/presets/sample-data-goodstore/beds.spec.ts b/models/category/src/category-draft/presets/sample-data-b2c-lifestyle/beds.spec.ts similarity index 100% rename from models/category/src/category-draft/presets/sample-data-goodstore/beds.spec.ts rename to models/category/src/category-draft/presets/sample-data-b2c-lifestyle/beds.spec.ts diff --git a/models/category/src/category-draft/presets/sample-data-goodstore/beds.ts b/models/category/src/category-draft/presets/sample-data-b2c-lifestyle/beds.ts similarity index 100% rename from models/category/src/category-draft/presets/sample-data-goodstore/beds.ts rename to models/category/src/category-draft/presets/sample-data-b2c-lifestyle/beds.ts diff --git a/models/category/src/category-draft/presets/sample-data-goodstore/bowls.spec.ts b/models/category/src/category-draft/presets/sample-data-b2c-lifestyle/bowls.spec.ts similarity index 100% rename from models/category/src/category-draft/presets/sample-data-goodstore/bowls.spec.ts rename to models/category/src/category-draft/presets/sample-data-b2c-lifestyle/bowls.spec.ts diff --git a/models/category/src/category-draft/presets/sample-data-goodstore/bowls.ts b/models/category/src/category-draft/presets/sample-data-b2c-lifestyle/bowls.ts similarity index 100% rename from models/category/src/category-draft/presets/sample-data-goodstore/bowls.ts rename to models/category/src/category-draft/presets/sample-data-b2c-lifestyle/bowls.ts diff --git a/models/category/src/category-draft/presets/sample-data-goodstore/cheese-trays.spec.ts b/models/category/src/category-draft/presets/sample-data-b2c-lifestyle/cheese-trays.spec.ts similarity index 100% rename from models/category/src/category-draft/presets/sample-data-goodstore/cheese-trays.spec.ts rename to models/category/src/category-draft/presets/sample-data-b2c-lifestyle/cheese-trays.spec.ts diff --git a/models/category/src/category-draft/presets/sample-data-goodstore/cheese-trays.ts b/models/category/src/category-draft/presets/sample-data-b2c-lifestyle/cheese-trays.ts similarity index 100% rename from models/category/src/category-draft/presets/sample-data-goodstore/cheese-trays.ts rename to models/category/src/category-draft/presets/sample-data-b2c-lifestyle/cheese-trays.ts diff --git a/models/category/src/category-draft/presets/sample-data-goodstore/collections.spec.ts b/models/category/src/category-draft/presets/sample-data-b2c-lifestyle/collections.spec.ts similarity index 100% rename from models/category/src/category-draft/presets/sample-data-goodstore/collections.spec.ts rename to models/category/src/category-draft/presets/sample-data-b2c-lifestyle/collections.spec.ts diff --git a/models/category/src/category-draft/presets/sample-data-goodstore/collections.ts b/models/category/src/category-draft/presets/sample-data-b2c-lifestyle/collections.ts similarity index 100% rename from models/category/src/category-draft/presets/sample-data-goodstore/collections.ts rename to models/category/src/category-draft/presets/sample-data-b2c-lifestyle/collections.ts diff --git a/models/category/src/category-draft/presets/sample-data-goodstore/dinnerware.spec.ts b/models/category/src/category-draft/presets/sample-data-b2c-lifestyle/dinnerware.spec.ts similarity index 100% rename from models/category/src/category-draft/presets/sample-data-goodstore/dinnerware.spec.ts rename to models/category/src/category-draft/presets/sample-data-b2c-lifestyle/dinnerware.spec.ts diff --git a/models/category/src/category-draft/presets/sample-data-goodstore/dinnerware.ts b/models/category/src/category-draft/presets/sample-data-b2c-lifestyle/dinnerware.ts similarity index 100% rename from models/category/src/category-draft/presets/sample-data-goodstore/dinnerware.ts rename to models/category/src/category-draft/presets/sample-data-b2c-lifestyle/dinnerware.ts diff --git a/models/category/src/category-draft/presets/sample-data-goodstore/dressers.spec.ts b/models/category/src/category-draft/presets/sample-data-b2c-lifestyle/dressers.spec.ts similarity index 100% rename from models/category/src/category-draft/presets/sample-data-goodstore/dressers.spec.ts rename to models/category/src/category-draft/presets/sample-data-b2c-lifestyle/dressers.spec.ts diff --git a/models/category/src/category-draft/presets/sample-data-goodstore/dressers.ts b/models/category/src/category-draft/presets/sample-data-b2c-lifestyle/dressers.ts similarity index 100% rename from models/category/src/category-draft/presets/sample-data-goodstore/dressers.ts rename to models/category/src/category-draft/presets/sample-data-b2c-lifestyle/dressers.ts diff --git a/models/category/src/category-draft/presets/sample-data-goodstore/furniture.spec.ts b/models/category/src/category-draft/presets/sample-data-b2c-lifestyle/furniture.spec.ts similarity index 100% rename from models/category/src/category-draft/presets/sample-data-goodstore/furniture.spec.ts rename to models/category/src/category-draft/presets/sample-data-b2c-lifestyle/furniture.spec.ts diff --git a/models/category/src/category-draft/presets/sample-data-goodstore/furniture.ts b/models/category/src/category-draft/presets/sample-data-b2c-lifestyle/furniture.ts similarity index 100% rename from models/category/src/category-draft/presets/sample-data-goodstore/furniture.ts rename to models/category/src/category-draft/presets/sample-data-b2c-lifestyle/furniture.ts diff --git a/models/category/src/category-draft/presets/sample-data-goodstore/glassware.spec.ts b/models/category/src/category-draft/presets/sample-data-b2c-lifestyle/glassware.spec.ts similarity index 100% rename from models/category/src/category-draft/presets/sample-data-goodstore/glassware.spec.ts rename to models/category/src/category-draft/presets/sample-data-b2c-lifestyle/glassware.spec.ts diff --git a/models/category/src/category-draft/presets/sample-data-goodstore/glassware.ts b/models/category/src/category-draft/presets/sample-data-b2c-lifestyle/glassware.ts similarity index 100% rename from models/category/src/category-draft/presets/sample-data-goodstore/glassware.ts rename to models/category/src/category-draft/presets/sample-data-b2c-lifestyle/glassware.ts diff --git a/models/category/src/category-draft/presets/sample-data-goodstore/home-accents.spec.ts b/models/category/src/category-draft/presets/sample-data-b2c-lifestyle/home-accents.spec.ts similarity index 100% rename from models/category/src/category-draft/presets/sample-data-goodstore/home-accents.spec.ts rename to models/category/src/category-draft/presets/sample-data-b2c-lifestyle/home-accents.spec.ts diff --git a/models/category/src/category-draft/presets/sample-data-goodstore/home-accents.ts b/models/category/src/category-draft/presets/sample-data-b2c-lifestyle/home-accents.ts similarity index 100% rename from models/category/src/category-draft/presets/sample-data-goodstore/home-accents.ts rename to models/category/src/category-draft/presets/sample-data-b2c-lifestyle/home-accents.ts diff --git a/models/category/src/category-draft/presets/sample-data-goodstore/home-decor.spec.ts b/models/category/src/category-draft/presets/sample-data-b2c-lifestyle/home-decor.spec.ts similarity index 100% rename from models/category/src/category-draft/presets/sample-data-goodstore/home-decor.spec.ts rename to models/category/src/category-draft/presets/sample-data-b2c-lifestyle/home-decor.spec.ts diff --git a/models/category/src/category-draft/presets/sample-data-goodstore/home-decor.ts b/models/category/src/category-draft/presets/sample-data-b2c-lifestyle/home-decor.ts similarity index 100% rename from models/category/src/category-draft/presets/sample-data-goodstore/home-decor.ts rename to models/category/src/category-draft/presets/sample-data-b2c-lifestyle/home-decor.ts diff --git a/models/category/src/category-draft/presets/sample-data-goodstore/index.ts b/models/category/src/category-draft/presets/sample-data-b2c-lifestyle/index.ts similarity index 100% rename from models/category/src/category-draft/presets/sample-data-goodstore/index.ts rename to models/category/src/category-draft/presets/sample-data-b2c-lifestyle/index.ts diff --git a/models/category/src/category-draft/presets/sample-data-goodstore/kitchen.spec.ts b/models/category/src/category-draft/presets/sample-data-b2c-lifestyle/kitchen.spec.ts similarity index 100% rename from models/category/src/category-draft/presets/sample-data-goodstore/kitchen.spec.ts rename to models/category/src/category-draft/presets/sample-data-b2c-lifestyle/kitchen.spec.ts diff --git a/models/category/src/category-draft/presets/sample-data-goodstore/kitchen.ts b/models/category/src/category-draft/presets/sample-data-b2c-lifestyle/kitchen.ts similarity index 100% rename from models/category/src/category-draft/presets/sample-data-goodstore/kitchen.ts rename to models/category/src/category-draft/presets/sample-data-b2c-lifestyle/kitchen.ts diff --git a/models/category/src/category-draft/presets/sample-data-goodstore/living-room-furniture.spec.ts b/models/category/src/category-draft/presets/sample-data-b2c-lifestyle/living-room-furniture.spec.ts similarity index 100% rename from models/category/src/category-draft/presets/sample-data-goodstore/living-room-furniture.spec.ts rename to models/category/src/category-draft/presets/sample-data-b2c-lifestyle/living-room-furniture.spec.ts diff --git a/models/category/src/category-draft/presets/sample-data-goodstore/living-room-furniture.ts b/models/category/src/category-draft/presets/sample-data-b2c-lifestyle/living-room-furniture.ts similarity index 100% rename from models/category/src/category-draft/presets/sample-data-goodstore/living-room-furniture.ts rename to models/category/src/category-draft/presets/sample-data-b2c-lifestyle/living-room-furniture.ts diff --git a/models/category/src/category-draft/presets/sample-data-goodstore/new-arrivals.spec.ts b/models/category/src/category-draft/presets/sample-data-b2c-lifestyle/new-arrivals.spec.ts similarity index 100% rename from models/category/src/category-draft/presets/sample-data-goodstore/new-arrivals.spec.ts rename to models/category/src/category-draft/presets/sample-data-b2c-lifestyle/new-arrivals.spec.ts diff --git a/models/category/src/category-draft/presets/sample-data-goodstore/new-arrivals.ts b/models/category/src/category-draft/presets/sample-data-b2c-lifestyle/new-arrivals.ts similarity index 100% rename from models/category/src/category-draft/presets/sample-data-goodstore/new-arrivals.ts rename to models/category/src/category-draft/presets/sample-data-b2c-lifestyle/new-arrivals.ts diff --git a/models/category/src/category-draft/presets/sample-data-goodstore/plates.spec.ts b/models/category/src/category-draft/presets/sample-data-b2c-lifestyle/plates.spec.ts similarity index 100% rename from models/category/src/category-draft/presets/sample-data-goodstore/plates.spec.ts rename to models/category/src/category-draft/presets/sample-data-b2c-lifestyle/plates.spec.ts diff --git a/models/category/src/category-draft/presets/sample-data-goodstore/plates.ts b/models/category/src/category-draft/presets/sample-data-b2c-lifestyle/plates.ts similarity index 100% rename from models/category/src/category-draft/presets/sample-data-goodstore/plates.ts rename to models/category/src/category-draft/presets/sample-data-b2c-lifestyle/plates.ts diff --git a/models/category/src/category-draft/presets/sample-data-goodstore/room-decor.spec.ts b/models/category/src/category-draft/presets/sample-data-b2c-lifestyle/room-decor.spec.ts similarity index 100% rename from models/category/src/category-draft/presets/sample-data-goodstore/room-decor.spec.ts rename to models/category/src/category-draft/presets/sample-data-b2c-lifestyle/room-decor.spec.ts diff --git a/models/category/src/category-draft/presets/sample-data-goodstore/room-decor.ts b/models/category/src/category-draft/presets/sample-data-b2c-lifestyle/room-decor.ts similarity index 100% rename from models/category/src/category-draft/presets/sample-data-goodstore/room-decor.ts rename to models/category/src/category-draft/presets/sample-data-b2c-lifestyle/room-decor.ts diff --git a/models/category/src/category-draft/presets/sample-data-goodstore/rugs.spec.ts b/models/category/src/category-draft/presets/sample-data-b2c-lifestyle/rugs.spec.ts similarity index 100% rename from models/category/src/category-draft/presets/sample-data-goodstore/rugs.spec.ts rename to models/category/src/category-draft/presets/sample-data-b2c-lifestyle/rugs.spec.ts diff --git a/models/category/src/category-draft/presets/sample-data-goodstore/rugs.ts b/models/category/src/category-draft/presets/sample-data-b2c-lifestyle/rugs.ts similarity index 100% rename from models/category/src/category-draft/presets/sample-data-goodstore/rugs.ts rename to models/category/src/category-draft/presets/sample-data-b2c-lifestyle/rugs.ts diff --git a/models/category/src/category-draft/presets/sample-data-goodstore/serveware.spec.ts b/models/category/src/category-draft/presets/sample-data-b2c-lifestyle/serveware.spec.ts similarity index 100% rename from models/category/src/category-draft/presets/sample-data-goodstore/serveware.spec.ts rename to models/category/src/category-draft/presets/sample-data-b2c-lifestyle/serveware.spec.ts diff --git a/models/category/src/category-draft/presets/sample-data-goodstore/serveware.ts b/models/category/src/category-draft/presets/sample-data-b2c-lifestyle/serveware.ts similarity index 100% rename from models/category/src/category-draft/presets/sample-data-goodstore/serveware.ts rename to models/category/src/category-draft/presets/sample-data-b2c-lifestyle/serveware.ts diff --git a/models/category/src/category-draft/presets/sample-data-goodstore/serving-platters.spec.ts b/models/category/src/category-draft/presets/sample-data-b2c-lifestyle/serving-platters.spec.ts similarity index 100% rename from models/category/src/category-draft/presets/sample-data-goodstore/serving-platters.spec.ts rename to models/category/src/category-draft/presets/sample-data-b2c-lifestyle/serving-platters.spec.ts diff --git a/models/category/src/category-draft/presets/sample-data-goodstore/serving-platters.ts b/models/category/src/category-draft/presets/sample-data-b2c-lifestyle/serving-platters.ts similarity index 100% rename from models/category/src/category-draft/presets/sample-data-goodstore/serving-platters.ts rename to models/category/src/category-draft/presets/sample-data-b2c-lifestyle/serving-platters.ts diff --git a/models/category/src/category-draft/presets/sample-data-goodstore/sofas.spec.ts b/models/category/src/category-draft/presets/sample-data-b2c-lifestyle/sofas.spec.ts similarity index 100% rename from models/category/src/category-draft/presets/sample-data-goodstore/sofas.spec.ts rename to models/category/src/category-draft/presets/sample-data-b2c-lifestyle/sofas.spec.ts diff --git a/models/category/src/category-draft/presets/sample-data-goodstore/sofas.ts b/models/category/src/category-draft/presets/sample-data-b2c-lifestyle/sofas.ts similarity index 100% rename from models/category/src/category-draft/presets/sample-data-goodstore/sofas.ts rename to models/category/src/category-draft/presets/sample-data-b2c-lifestyle/sofas.ts diff --git a/models/category/src/category-draft/presets/sample-data-goodstore/tables.spec.ts b/models/category/src/category-draft/presets/sample-data-b2c-lifestyle/tables.spec.ts similarity index 100% rename from models/category/src/category-draft/presets/sample-data-goodstore/tables.spec.ts rename to models/category/src/category-draft/presets/sample-data-b2c-lifestyle/tables.spec.ts diff --git a/models/category/src/category-draft/presets/sample-data-goodstore/tables.ts b/models/category/src/category-draft/presets/sample-data-b2c-lifestyle/tables.ts similarity index 100% rename from models/category/src/category-draft/presets/sample-data-goodstore/tables.ts rename to models/category/src/category-draft/presets/sample-data-b2c-lifestyle/tables.ts diff --git a/models/category/src/category-draft/presets/sample-data-goodstore/the-minimalist.spec.ts b/models/category/src/category-draft/presets/sample-data-b2c-lifestyle/the-minimalist.spec.ts similarity index 100% rename from models/category/src/category-draft/presets/sample-data-goodstore/the-minimalist.spec.ts rename to models/category/src/category-draft/presets/sample-data-b2c-lifestyle/the-minimalist.spec.ts diff --git a/models/category/src/category-draft/presets/sample-data-goodstore/the-minimalist.ts b/models/category/src/category-draft/presets/sample-data-b2c-lifestyle/the-minimalist.ts similarity index 100% rename from models/category/src/category-draft/presets/sample-data-goodstore/the-minimalist.ts rename to models/category/src/category-draft/presets/sample-data-b2c-lifestyle/the-minimalist.ts diff --git a/models/category/src/category-draft/presets/sample-data-goodstore/the-modernist.spec.ts b/models/category/src/category-draft/presets/sample-data-b2c-lifestyle/the-modernist.spec.ts similarity index 100% rename from models/category/src/category-draft/presets/sample-data-goodstore/the-modernist.spec.ts rename to models/category/src/category-draft/presets/sample-data-b2c-lifestyle/the-modernist.spec.ts diff --git a/models/category/src/category-draft/presets/sample-data-goodstore/the-modernist.ts b/models/category/src/category-draft/presets/sample-data-b2c-lifestyle/the-modernist.ts similarity index 100% rename from models/category/src/category-draft/presets/sample-data-goodstore/the-modernist.ts rename to models/category/src/category-draft/presets/sample-data-b2c-lifestyle/the-modernist.ts diff --git a/models/category/src/category-draft/presets/sample-data-goodstore/the-traditionalist.spec.ts b/models/category/src/category-draft/presets/sample-data-b2c-lifestyle/the-traditionalist.spec.ts similarity index 100% rename from models/category/src/category-draft/presets/sample-data-goodstore/the-traditionalist.spec.ts rename to models/category/src/category-draft/presets/sample-data-b2c-lifestyle/the-traditionalist.spec.ts diff --git a/models/category/src/category-draft/presets/sample-data-goodstore/the-traditionalist.ts b/models/category/src/category-draft/presets/sample-data-b2c-lifestyle/the-traditionalist.ts similarity index 100% rename from models/category/src/category-draft/presets/sample-data-goodstore/the-traditionalist.ts rename to models/category/src/category-draft/presets/sample-data-b2c-lifestyle/the-traditionalist.ts diff --git a/models/channel/src/channel-draft/presets/index.ts b/models/channel/src/channel-draft/presets/index.ts index 806bc06f9..3f0929f4a 100644 --- a/models/channel/src/channel-draft/presets/index.ts +++ b/models/channel/src/channel-draft/presets/index.ts @@ -1,7 +1,7 @@ import empty from './empty'; import sampleDataB2B from './sample-data-b2b'; +import sampleDataB2CLifestyle from './sample-data-b2c-lifestyle'; import sampleDataFashion from './sample-data-fashion'; -import sampleDataGoodStore from './sample-data-goodstore'; import withGeoLocationOnly from './with-geolocation-only'; import withInventorySupplyAndProductDistributionRoles from './with-inventory-supply-and-product-distribution-roles'; import withInventorySupplyAndProductDistributionRolesNoAddress from './with-inventory-supply-and-product-distribution-roles-no-address'; @@ -12,6 +12,7 @@ import withProductDistributionRole from './with-product-distribution-role'; const presets = { empty, sampleDataB2B, + sampleDataB2CLifestyle, sampleDataFashion, withProductDistributionRole, withInventorySupplyRole, @@ -19,7 +20,6 @@ const presets = { withInventorySupplyAndProductDistributionRoles, withInventorySupplyAndProductDistributionRolesNoAddress, withGeoLocationOnly, - sampleDataGoodStore, }; export default presets; diff --git a/models/channel/src/channel-draft/presets/sample-data-goodstore/index.ts b/models/channel/src/channel-draft/presets/sample-data-b2c-lifestyle/index.ts similarity index 100% rename from models/channel/src/channel-draft/presets/sample-data-goodstore/index.ts rename to models/channel/src/channel-draft/presets/sample-data-b2c-lifestyle/index.ts diff --git a/models/channel/src/channel-draft/presets/sample-data-goodstore/inventory-channel.spec.ts b/models/channel/src/channel-draft/presets/sample-data-b2c-lifestyle/inventory-channel.spec.ts similarity index 100% rename from models/channel/src/channel-draft/presets/sample-data-goodstore/inventory-channel.spec.ts rename to models/channel/src/channel-draft/presets/sample-data-b2c-lifestyle/inventory-channel.spec.ts diff --git a/models/channel/src/channel-draft/presets/sample-data-goodstore/inventory-channel.ts b/models/channel/src/channel-draft/presets/sample-data-b2c-lifestyle/inventory-channel.ts similarity index 100% rename from models/channel/src/channel-draft/presets/sample-data-goodstore/inventory-channel.ts rename to models/channel/src/channel-draft/presets/sample-data-b2c-lifestyle/inventory-channel.ts diff --git a/models/channel/src/channel-draft/presets/sample-data-goodstore/product-distribution.spec.ts b/models/channel/src/channel-draft/presets/sample-data-b2c-lifestyle/product-distribution.spec.ts similarity index 100% rename from models/channel/src/channel-draft/presets/sample-data-goodstore/product-distribution.spec.ts rename to models/channel/src/channel-draft/presets/sample-data-b2c-lifestyle/product-distribution.spec.ts diff --git a/models/channel/src/channel-draft/presets/sample-data-goodstore/product-distribution.ts b/models/channel/src/channel-draft/presets/sample-data-b2c-lifestyle/product-distribution.ts similarity index 100% rename from models/channel/src/channel-draft/presets/sample-data-goodstore/product-distribution.ts rename to models/channel/src/channel-draft/presets/sample-data-b2c-lifestyle/product-distribution.ts diff --git a/models/commons/src/address/address-draft/presets/index.ts b/models/commons/src/address/address-draft/presets/index.ts index 525c7ef58..45a3396fe 100644 --- a/models/commons/src/address/address-draft/presets/index.ts +++ b/models/commons/src/address/address-draft/presets/index.ts @@ -1,15 +1,15 @@ import changeHistoryData from './change-history-data'; import empty from './empty'; import sampleDataB2B from './sample-data-b2b'; +import sampleDataB2CLifestyle from './sample-data-b2c-lifestyle'; import sampleDataFashion from './sample-data-fashion'; -import sampleDataGoodStore from './sample-data-goodstore'; const presets = { changeHistoryData, empty, sampleDataB2B, + sampleDataB2CLifestyle, sampleDataFashion, - sampleDataGoodStore, }; export default presets; diff --git a/models/commons/src/address/address-draft/presets/sample-data-goodstore/index.ts b/models/commons/src/address/address-draft/presets/sample-data-b2c-lifestyle/index.ts similarity index 100% rename from models/commons/src/address/address-draft/presets/sample-data-goodstore/index.ts rename to models/commons/src/address/address-draft/presets/sample-data-b2c-lifestyle/index.ts diff --git a/models/commons/src/address/address-draft/presets/sample-data-goodstore/jennifer-jones-address.spec.ts b/models/commons/src/address/address-draft/presets/sample-data-b2c-lifestyle/jennifer-jones-address.spec.ts similarity index 100% rename from models/commons/src/address/address-draft/presets/sample-data-goodstore/jennifer-jones-address.spec.ts rename to models/commons/src/address/address-draft/presets/sample-data-b2c-lifestyle/jennifer-jones-address.spec.ts diff --git a/models/commons/src/address/address-draft/presets/sample-data-goodstore/jennifer-jones-address.ts b/models/commons/src/address/address-draft/presets/sample-data-b2c-lifestyle/jennifer-jones-address.ts similarity index 100% rename from models/commons/src/address/address-draft/presets/sample-data-goodstore/jennifer-jones-address.ts rename to models/commons/src/address/address-draft/presets/sample-data-b2c-lifestyle/jennifer-jones-address.ts diff --git a/models/commons/src/address/address-draft/presets/sample-data-goodstore/jennifer-robinson-address.spec.ts b/models/commons/src/address/address-draft/presets/sample-data-b2c-lifestyle/jennifer-robinson-address.spec.ts similarity index 100% rename from models/commons/src/address/address-draft/presets/sample-data-goodstore/jennifer-robinson-address.spec.ts rename to models/commons/src/address/address-draft/presets/sample-data-b2c-lifestyle/jennifer-robinson-address.spec.ts diff --git a/models/commons/src/address/address-draft/presets/sample-data-goodstore/jennifer-robinson-address.ts b/models/commons/src/address/address-draft/presets/sample-data-b2c-lifestyle/jennifer-robinson-address.ts similarity index 100% rename from models/commons/src/address/address-draft/presets/sample-data-goodstore/jennifer-robinson-address.ts rename to models/commons/src/address/address-draft/presets/sample-data-b2c-lifestyle/jennifer-robinson-address.ts diff --git a/models/commons/src/address/address-draft/presets/sample-data-goodstore/jennifer-schmidt-address.spec.ts b/models/commons/src/address/address-draft/presets/sample-data-b2c-lifestyle/jennifer-schmidt-address.spec.ts similarity index 100% rename from models/commons/src/address/address-draft/presets/sample-data-goodstore/jennifer-schmidt-address.spec.ts rename to models/commons/src/address/address-draft/presets/sample-data-b2c-lifestyle/jennifer-schmidt-address.spec.ts diff --git a/models/commons/src/address/address-draft/presets/sample-data-goodstore/jennifer-schmidt-address.ts b/models/commons/src/address/address-draft/presets/sample-data-b2c-lifestyle/jennifer-schmidt-address.ts similarity index 100% rename from models/commons/src/address/address-draft/presets/sample-data-goodstore/jennifer-schmidt-address.ts rename to models/commons/src/address/address-draft/presets/sample-data-b2c-lifestyle/jennifer-schmidt-address.ts diff --git a/models/commons/src/address/address-draft/presets/sample-data-goodstore/sebastian-franklin-address.spec.ts b/models/commons/src/address/address-draft/presets/sample-data-b2c-lifestyle/sebastian-franklin-address.spec.ts similarity index 100% rename from models/commons/src/address/address-draft/presets/sample-data-goodstore/sebastian-franklin-address.spec.ts rename to models/commons/src/address/address-draft/presets/sample-data-b2c-lifestyle/sebastian-franklin-address.spec.ts diff --git a/models/commons/src/address/address-draft/presets/sample-data-goodstore/sebastian-franklin-address.ts b/models/commons/src/address/address-draft/presets/sample-data-b2c-lifestyle/sebastian-franklin-address.ts similarity index 100% rename from models/commons/src/address/address-draft/presets/sample-data-goodstore/sebastian-franklin-address.ts rename to models/commons/src/address/address-draft/presets/sample-data-b2c-lifestyle/sebastian-franklin-address.ts diff --git a/models/commons/src/address/address-draft/presets/sample-data-goodstore/sebastian-muller-address.spec.ts b/models/commons/src/address/address-draft/presets/sample-data-b2c-lifestyle/sebastian-muller-address.spec.ts similarity index 100% rename from models/commons/src/address/address-draft/presets/sample-data-goodstore/sebastian-muller-address.spec.ts rename to models/commons/src/address/address-draft/presets/sample-data-b2c-lifestyle/sebastian-muller-address.spec.ts diff --git a/models/commons/src/address/address-draft/presets/sample-data-goodstore/sebastian-muller-address.ts b/models/commons/src/address/address-draft/presets/sample-data-b2c-lifestyle/sebastian-muller-address.ts similarity index 100% rename from models/commons/src/address/address-draft/presets/sample-data-goodstore/sebastian-muller-address.ts rename to models/commons/src/address/address-draft/presets/sample-data-b2c-lifestyle/sebastian-muller-address.ts diff --git a/models/commons/src/address/address-draft/presets/sample-data-goodstore/sebastian-smith-address.spec.ts b/models/commons/src/address/address-draft/presets/sample-data-b2c-lifestyle/sebastian-smith-address.spec.ts similarity index 100% rename from models/commons/src/address/address-draft/presets/sample-data-goodstore/sebastian-smith-address.spec.ts rename to models/commons/src/address/address-draft/presets/sample-data-b2c-lifestyle/sebastian-smith-address.spec.ts diff --git a/models/commons/src/address/address-draft/presets/sample-data-goodstore/sebastian-smith-address.ts b/models/commons/src/address/address-draft/presets/sample-data-b2c-lifestyle/sebastian-smith-address.ts similarity index 100% rename from models/commons/src/address/address-draft/presets/sample-data-goodstore/sebastian-smith-address.ts rename to models/commons/src/address/address-draft/presets/sample-data-b2c-lifestyle/sebastian-smith-address.ts diff --git a/models/customer/src/customer-draft/presets/index.ts b/models/customer/src/customer-draft/presets/index.ts index 525c7ef58..45a3396fe 100644 --- a/models/customer/src/customer-draft/presets/index.ts +++ b/models/customer/src/customer-draft/presets/index.ts @@ -1,15 +1,15 @@ import changeHistoryData from './change-history-data'; import empty from './empty'; import sampleDataB2B from './sample-data-b2b'; +import sampleDataB2CLifestyle from './sample-data-b2c-lifestyle'; import sampleDataFashion from './sample-data-fashion'; -import sampleDataGoodStore from './sample-data-goodstore'; const presets = { changeHistoryData, empty, sampleDataB2B, + sampleDataB2CLifestyle, sampleDataFashion, - sampleDataGoodStore, }; export default presets; diff --git a/models/customer/src/customer-draft/presets/sample-data-goodstore/index.ts b/models/customer/src/customer-draft/presets/sample-data-b2c-lifestyle/index.ts similarity index 100% rename from models/customer/src/customer-draft/presets/sample-data-goodstore/index.ts rename to models/customer/src/customer-draft/presets/sample-data-b2c-lifestyle/index.ts diff --git a/models/customer/src/customer-draft/presets/sample-data-goodstore/jennifer-jones.spec.ts b/models/customer/src/customer-draft/presets/sample-data-b2c-lifestyle/jennifer-jones.spec.ts similarity index 100% rename from models/customer/src/customer-draft/presets/sample-data-goodstore/jennifer-jones.spec.ts rename to models/customer/src/customer-draft/presets/sample-data-b2c-lifestyle/jennifer-jones.spec.ts diff --git a/models/customer/src/customer-draft/presets/sample-data-goodstore/jennifer-jones.ts b/models/customer/src/customer-draft/presets/sample-data-b2c-lifestyle/jennifer-jones.ts similarity index 88% rename from models/customer/src/customer-draft/presets/sample-data-goodstore/jennifer-jones.ts rename to models/customer/src/customer-draft/presets/sample-data-b2c-lifestyle/jennifer-jones.ts index 62bcb95e4..4cbb516f7 100644 --- a/models/customer/src/customer-draft/presets/sample-data-goodstore/jennifer-jones.ts +++ b/models/customer/src/customer-draft/presets/sample-data-b2c-lifestyle/jennifer-jones.ts @@ -12,7 +12,7 @@ const jenniferJones = (): TCustomerDraftBuilder => .firstName('Jennifer') .lastName('Jones') .addresses([ - AddressDraft.presets.sampleDataGoodStore.jenniferJonesAddress(), + AddressDraft.presets.sampleDataB2CLifestyle.jenniferJonesAddress(), ]) .authenticationMode(authenticationMode.Password) .isEmailVerified(true); diff --git a/models/customer/src/customer-draft/presets/sample-data-goodstore/jennifer-robinson.spec.ts b/models/customer/src/customer-draft/presets/sample-data-b2c-lifestyle/jennifer-robinson.spec.ts similarity index 100% rename from models/customer/src/customer-draft/presets/sample-data-goodstore/jennifer-robinson.spec.ts rename to models/customer/src/customer-draft/presets/sample-data-b2c-lifestyle/jennifer-robinson.spec.ts diff --git a/models/customer/src/customer-draft/presets/sample-data-goodstore/jennifer-robinson.ts b/models/customer/src/customer-draft/presets/sample-data-b2c-lifestyle/jennifer-robinson.ts similarity index 88% rename from models/customer/src/customer-draft/presets/sample-data-goodstore/jennifer-robinson.ts rename to models/customer/src/customer-draft/presets/sample-data-b2c-lifestyle/jennifer-robinson.ts index 4e7afcd60..5b836cc88 100644 --- a/models/customer/src/customer-draft/presets/sample-data-goodstore/jennifer-robinson.ts +++ b/models/customer/src/customer-draft/presets/sample-data-b2c-lifestyle/jennifer-robinson.ts @@ -12,7 +12,7 @@ const jenniferRobinson = (): TCustomerDraftBuilder => .firstName('Jennifer') .lastName('Robinson') .addresses([ - AddressDraft.presets.sampleDataGoodStore.jenniferRobinsonAddress(), + AddressDraft.presets.sampleDataB2CLifestyle.jenniferRobinsonAddress(), ]) .authenticationMode(authenticationMode.Password) .isEmailVerified(true); diff --git a/models/customer/src/customer-draft/presets/sample-data-goodstore/jennifer-schmidt.spec.ts b/models/customer/src/customer-draft/presets/sample-data-b2c-lifestyle/jennifer-schmidt.spec.ts similarity index 100% rename from models/customer/src/customer-draft/presets/sample-data-goodstore/jennifer-schmidt.spec.ts rename to models/customer/src/customer-draft/presets/sample-data-b2c-lifestyle/jennifer-schmidt.spec.ts diff --git a/models/customer/src/customer-draft/presets/sample-data-goodstore/jennifer-schmidt.ts b/models/customer/src/customer-draft/presets/sample-data-b2c-lifestyle/jennifer-schmidt.ts similarity index 88% rename from models/customer/src/customer-draft/presets/sample-data-goodstore/jennifer-schmidt.ts rename to models/customer/src/customer-draft/presets/sample-data-b2c-lifestyle/jennifer-schmidt.ts index 52eea54e4..5657f08c9 100644 --- a/models/customer/src/customer-draft/presets/sample-data-goodstore/jennifer-schmidt.ts +++ b/models/customer/src/customer-draft/presets/sample-data-b2c-lifestyle/jennifer-schmidt.ts @@ -12,7 +12,7 @@ const jenniferSchmidt = (): TCustomerDraftBuilder => .firstName('Jennifer') .lastName('Schmidt') .addresses([ - AddressDraft.presets.sampleDataGoodStore.jenniferSchmidtAddress(), + AddressDraft.presets.sampleDataB2CLifestyle.jenniferSchmidtAddress(), ]) .authenticationMode(authenticationMode.Password) .isEmailVerified(true); diff --git a/models/customer/src/customer-draft/presets/sample-data-goodstore/sebastian-franklin.spec.ts b/models/customer/src/customer-draft/presets/sample-data-b2c-lifestyle/sebastian-franklin.spec.ts similarity index 100% rename from models/customer/src/customer-draft/presets/sample-data-goodstore/sebastian-franklin.spec.ts rename to models/customer/src/customer-draft/presets/sample-data-b2c-lifestyle/sebastian-franklin.spec.ts diff --git a/models/customer/src/customer-draft/presets/sample-data-goodstore/sebastian-franklin.ts b/models/customer/src/customer-draft/presets/sample-data-b2c-lifestyle/sebastian-franklin.ts similarity index 88% rename from models/customer/src/customer-draft/presets/sample-data-goodstore/sebastian-franklin.ts rename to models/customer/src/customer-draft/presets/sample-data-b2c-lifestyle/sebastian-franklin.ts index 2b8ee3f1e..c1042eecb 100644 --- a/models/customer/src/customer-draft/presets/sample-data-goodstore/sebastian-franklin.ts +++ b/models/customer/src/customer-draft/presets/sample-data-b2c-lifestyle/sebastian-franklin.ts @@ -12,7 +12,7 @@ const sebastianFranklin = (): TCustomerDraftBuilder => .firstName('Sebastian') .lastName('Franklin') .addresses([ - AddressDraft.presets.sampleDataGoodStore.sebastianFranklinAddress(), + AddressDraft.presets.sampleDataB2CLifestyle.sebastianFranklinAddress(), ]) .authenticationMode(authenticationMode.Password) .isEmailVerified(true); diff --git a/models/customer/src/customer-draft/presets/sample-data-goodstore/sebastian-muller.spec.ts b/models/customer/src/customer-draft/presets/sample-data-b2c-lifestyle/sebastian-muller.spec.ts similarity index 100% rename from models/customer/src/customer-draft/presets/sample-data-goodstore/sebastian-muller.spec.ts rename to models/customer/src/customer-draft/presets/sample-data-b2c-lifestyle/sebastian-muller.spec.ts diff --git a/models/customer/src/customer-draft/presets/sample-data-goodstore/sebastian-muller.ts b/models/customer/src/customer-draft/presets/sample-data-b2c-lifestyle/sebastian-muller.ts similarity index 88% rename from models/customer/src/customer-draft/presets/sample-data-goodstore/sebastian-muller.ts rename to models/customer/src/customer-draft/presets/sample-data-b2c-lifestyle/sebastian-muller.ts index 6f6e39783..0686874af 100644 --- a/models/customer/src/customer-draft/presets/sample-data-goodstore/sebastian-muller.ts +++ b/models/customer/src/customer-draft/presets/sample-data-b2c-lifestyle/sebastian-muller.ts @@ -12,7 +12,7 @@ const sebastianMuller = (): TCustomerDraftBuilder => .firstName('Sebastian') .lastName('Müller') .addresses([ - AddressDraft.presets.sampleDataGoodStore.sebastianMullerAddress(), + AddressDraft.presets.sampleDataB2CLifestyle.sebastianMullerAddress(), ]) .authenticationMode(authenticationMode.Password) .isEmailVerified(true); diff --git a/models/customer/src/customer-draft/presets/sample-data-goodstore/sebastian-smith.spec.ts b/models/customer/src/customer-draft/presets/sample-data-b2c-lifestyle/sebastian-smith.spec.ts similarity index 100% rename from models/customer/src/customer-draft/presets/sample-data-goodstore/sebastian-smith.spec.ts rename to models/customer/src/customer-draft/presets/sample-data-b2c-lifestyle/sebastian-smith.spec.ts diff --git a/models/customer/src/customer-draft/presets/sample-data-goodstore/sebastian-smith.ts b/models/customer/src/customer-draft/presets/sample-data-b2c-lifestyle/sebastian-smith.ts similarity index 88% rename from models/customer/src/customer-draft/presets/sample-data-goodstore/sebastian-smith.ts rename to models/customer/src/customer-draft/presets/sample-data-b2c-lifestyle/sebastian-smith.ts index 2c691b987..8dc30d266 100644 --- a/models/customer/src/customer-draft/presets/sample-data-goodstore/sebastian-smith.ts +++ b/models/customer/src/customer-draft/presets/sample-data-b2c-lifestyle/sebastian-smith.ts @@ -12,7 +12,7 @@ const samSmith = (): TCustomerDraftBuilder => .firstName('Sebastian') .lastName('Smith') .addresses([ - AddressDraft.presets.sampleDataGoodStore.sebastianSmithAddress(), + AddressDraft.presets.sampleDataB2CLifestyle.sebastianSmithAddress(), ]) .authenticationMode(authenticationMode.Password) .isEmailVerified(true); diff --git a/models/discount-code/src/discount-code-draft/presets/index.ts b/models/discount-code/src/discount-code-draft/presets/index.ts index e3da0cb2b..689ddafe9 100644 --- a/models/discount-code/src/discount-code-draft/presets/index.ts +++ b/models/discount-code/src/discount-code-draft/presets/index.ts @@ -1,13 +1,13 @@ import empty from './empty'; import sampleDataB2B from './sample-data-b2b'; +import sampleDataB2CLifestyle from './sample-data-b2c-lifestyle'; import sampleDataFashion from './sample-data-fashion'; -import sampleDataGoodStore from './sample-data-goodstore'; const presets = { empty, sampleDataB2B, sampleDataFashion, - sampleDataGoodStore, + sampleDataB2CLifestyle, }; export default presets; diff --git a/models/discount-code/src/discount-code-draft/presets/sample-data-goodstore/furniture-bogo.spec.ts b/models/discount-code/src/discount-code-draft/presets/sample-data-b2c-lifestyle/furniture-bogo.spec.ts similarity index 100% rename from models/discount-code/src/discount-code-draft/presets/sample-data-goodstore/furniture-bogo.spec.ts rename to models/discount-code/src/discount-code-draft/presets/sample-data-b2c-lifestyle/furniture-bogo.spec.ts diff --git a/models/discount-code/src/discount-code-draft/presets/sample-data-goodstore/furniture-bogo.ts b/models/discount-code/src/discount-code-draft/presets/sample-data-b2c-lifestyle/furniture-bogo.ts similarity index 100% rename from models/discount-code/src/discount-code-draft/presets/sample-data-goodstore/furniture-bogo.ts rename to models/discount-code/src/discount-code-draft/presets/sample-data-b2c-lifestyle/furniture-bogo.ts diff --git a/models/discount-code/src/discount-code-draft/presets/sample-data-goodstore/index.ts b/models/discount-code/src/discount-code-draft/presets/sample-data-b2c-lifestyle/index.ts similarity index 100% rename from models/discount-code/src/discount-code-draft/presets/sample-data-goodstore/index.ts rename to models/discount-code/src/discount-code-draft/presets/sample-data-b2c-lifestyle/index.ts diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/index.ts b/models/inventory-entry/src/inventory-entry-draft/presets/index.ts index eefeb2cdb..e4f8d8dff 100644 --- a/models/inventory-entry/src/inventory-entry-draft/presets/index.ts +++ b/models/inventory-entry/src/inventory-entry-draft/presets/index.ts @@ -1,13 +1,13 @@ import changeHistoryData from './change-history-data'; import empty from './empty'; import sampleDataB2B from './sample-data-b2b'; -import sampleDataGoodStore from './sample-data-goodstore'; +import sampleDataB2CLifestyle from './sample-data-b2c-lifestyle'; const presets = { changeHistoryData, empty, sampleDataB2B, - sampleDataGoodStore, + sampleDataB2CLifestyle, }; export default presets; diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/index.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/index.ts similarity index 100% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/index.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/index.ts diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-AAR34.spec.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-AAR34.spec.ts similarity index 100% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-AAR34.spec.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-AAR34.spec.ts diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-AAR34.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-AAR34.ts similarity index 85% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-AAR34.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-AAR34.ts index acd21b6c2..ac3bb3637 100644 --- a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-AAR34.ts +++ b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-AAR34.ts @@ -5,7 +5,7 @@ import { import type { TInventoryEntryDraftBuilder } from '../../../types'; import * as InventoryEntryDraft from '../../index'; -const ariaRug01Preset = ProductVariantDraft.presets.sampleDataGoodStore +const ariaRug01Preset = ProductVariantDraft.presets.sampleDataB2CLifestyle .ariaRug01() .build(); diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-ADARM04.spec.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-ADARM04.spec.ts similarity index 100% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-ADARM04.spec.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-ADARM04.spec.ts diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-ADARM04.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-ADARM04.ts similarity index 97% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-ADARM04.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-ADARM04.ts index a26149b96..c737e623a 100644 --- a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-ADARM04.ts +++ b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-ADARM04.ts @@ -5,7 +5,7 @@ import { import type { TInventoryEntryDraftBuilder } from '../../../types'; import * as InventoryEntryDraft from '../../index'; -const artDecoChair01Preset = ProductVariantDraft.presets.sampleDataGoodStore +const artDecoChair01Preset = ProductVariantDraft.presets.sampleDataB2CLifestyle .artDecoChair01() .build(); diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-ADCT01.spec.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-ADCT01.spec.ts similarity index 100% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-ADCT01.spec.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-ADCT01.spec.ts diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-ADCT01.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-ADCT01.ts similarity index 90% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-ADCT01.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-ADCT01.ts index e2635c28d..df0f1f3f0 100644 --- a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-ADCT01.ts +++ b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-ADCT01.ts @@ -6,7 +6,7 @@ import type { TInventoryEntryDraftBuilder } from '../../../types'; import * as InventoryEntryDraft from '../../index'; const artDecoCoffeTable01Preset = - ProductVariantDraft.presets.sampleDataGoodStore + ProductVariantDraft.presets.sampleDataB2CLifestyle .artDecoCoffeeTable01() .build(); diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-ADPC09.spec.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-ADPC09.spec.ts similarity index 100% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-ADPC09.spec.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-ADPC09.spec.ts diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-ADPC09.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-ADPC09.ts similarity index 90% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-ADPC09.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-ADPC09.ts index 07ac4f6c2..ef9f73a13 100644 --- a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-ADPC09.ts +++ b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-ADPC09.ts @@ -6,7 +6,7 @@ import type { TInventoryEntryDraftBuilder } from '../../../types'; import * as InventoryEntryDraft from '../../index'; const patternedPillowCover01Preset = - ProductVariantDraft.presets.sampleDataGoodStore + ProductVariantDraft.presets.sampleDataB2CLifestyle .patternedPillowCover01() .build(); diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-ADPC7.spec.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-ADPC7.spec.ts similarity index 100% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-ADPC7.spec.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-ADPC7.spec.ts diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-ADPC7.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-ADPC7.ts similarity index 90% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-ADPC7.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-ADPC7.ts index 685f71ecc..8334a5557 100644 --- a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-ADPC7.ts +++ b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-ADPC7.ts @@ -6,7 +6,7 @@ import type { TInventoryEntryDraftBuilder } from '../../../types'; import * as InventoryEntryDraft from '../../index'; const patternedPillowCover02Preset = - ProductVariantDraft.presets.sampleDataGoodStore + ProductVariantDraft.presets.sampleDataB2CLifestyle .patternedPillowCover02() .build(); diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-ALC01.spec.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-ALC01.spec.ts similarity index 100% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-ALC01.spec.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-ALC01.spec.ts diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-ALC01.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-ALC01.ts similarity index 90% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-ALC01.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-ALC01.ts index eff0030fd..2b0bf69f5 100644 --- a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-ALC01.ts +++ b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-ALC01.ts @@ -6,7 +6,7 @@ import type { TInventoryEntryDraftBuilder } from '../../../types'; import * as InventoryEntryDraft from '../../index'; const abigailLoungeChair01Preset = - ProductVariantDraft.presets.sampleDataGoodStore + ProductVariantDraft.presets.sampleDataB2CLifestyle .abigailLoungeChair01() .build(); diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-AMR09.spec.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-AMR09.spec.ts similarity index 100% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-AMR09.spec.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-AMR09.spec.ts diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-AMR09.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-AMR09.ts similarity index 97% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-AMR09.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-AMR09.ts index dc43caa4d..9cde5ed10 100644 --- a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-AMR09.ts +++ b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-AMR09.ts @@ -5,7 +5,7 @@ import { import type { TInventoryEntryDraftBuilder } from '../../../types'; import * as InventoryEntryDraft from '../../index'; -const amaliaRug01Preset = ProductVariantDraft.presets.sampleDataGoodStore +const amaliaRug01Preset = ProductVariantDraft.presets.sampleDataB2CLifestyle .amaliaRug01() .build(); diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-ARG56.spec.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-ARG56.spec.ts similarity index 100% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-ARG56.spec.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-ARG56.spec.ts diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-ARG56.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-ARG56.ts similarity index 83% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-ARG56.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-ARG56.ts index a06b9d3d3..307bf9ca6 100644 --- a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-ARG56.ts +++ b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-ARG56.ts @@ -7,11 +7,11 @@ import { import type { TInventoryEntryDraftBuilder } from '../../../types'; import * as InventoryEntryDraft from '../../index'; -const ashenRug01Preset = ProductVariantDraft.presets.sampleDataGoodStore +const ashenRug01Preset = ProductVariantDraft.presets.sampleDataB2CLifestyle .ashenRug01() .build(); -const inventoryChannel = ChannelDraft.presets.sampleDataGoodStore +const inventoryChannel = ChannelDraft.presets.sampleDataB2CLifestyle .inventoryChannel() .build(); diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-BA092.spec.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-BA092.spec.ts similarity index 100% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-BA092.spec.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-BA092.spec.ts diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-BA092.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-BA092.ts similarity index 90% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-BA092.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-BA092.ts index 8c74c11a5..dee2c45fb 100644 --- a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-BA092.ts +++ b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-BA092.ts @@ -6,7 +6,7 @@ import type { TInventoryEntryDraftBuilder } from '../../../types'; import * as InventoryEntryDraft from '../../index'; const leatherWeaveChair01Preset = - ProductVariantDraft.presets.sampleDataGoodStore + ProductVariantDraft.presets.sampleDataB2CLifestyle .leatherWeaveChair01() .build(); diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-BAMB084.spec.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-BAMB084.spec.ts similarity index 100% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-BAMB084.spec.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-BAMB084.spec.ts diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-BAMB084.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-BAMB084.ts similarity index 90% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-BAMB084.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-BAMB084.ts index 2cdaa59a0..7f6968b53 100644 --- a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-BAMB084.ts +++ b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-BAMB084.ts @@ -6,7 +6,7 @@ import type { TInventoryEntryDraftBuilder } from '../../../types'; import * as InventoryEntryDraft from '../../index'; const squareBambooCoaster01Preset = - ProductVariantDraft.presets.sampleDataGoodStore + ProductVariantDraft.presets.sampleDataB2CLifestyle .squareBambooCoaster01() .build(); diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-BARM03.spec.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-BARM03.spec.ts similarity index 100% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-BARM03.spec.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-BARM03.spec.ts diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-BARM03.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-BARM03.ts similarity index 97% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-BARM03.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-BARM03.ts index 25cc74b9a..b4df2c0db 100644 --- a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-BARM03.ts +++ b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-BARM03.ts @@ -5,7 +5,7 @@ import { import type { TInventoryEntryDraftBuilder } from '../../../types'; import * as InventoryEntryDraft from '../../index'; -const brunoChair01Preset = ProductVariantDraft.presets.sampleDataGoodStore +const brunoChair01Preset = ProductVariantDraft.presets.sampleDataB2CLifestyle .brunoChair01() .build(); diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-BCOAS08.spec.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-BCOAS08.spec.ts similarity index 100% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-BCOAS08.spec.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-BCOAS08.spec.ts diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-BCOAS08.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-BCOAS08.ts similarity index 90% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-BCOAS08.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-BCOAS08.ts index 2238e2551..275e1aff9 100644 --- a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-BCOAS08.ts +++ b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-BCOAS08.ts @@ -6,7 +6,7 @@ import type { TInventoryEntryDraftBuilder } from '../../../types'; import * as InventoryEntryDraft from '../../index'; const modernBlackCoaster01Preset = - ProductVariantDraft.presets.sampleDataGoodStore + ProductVariantDraft.presets.sampleDataB2CLifestyle .modernBlackCoaster01() .build(); diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-BLP01.spec.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-BLP01.spec.ts similarity index 100% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-BLP01.spec.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-BLP01.spec.ts diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-BLP01.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-BLP01.ts similarity index 87% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-BLP01.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-BLP01.ts index 6f9c6ba23..781c6c6c5 100644 --- a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-BLP01.ts +++ b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-BLP01.ts @@ -8,11 +8,11 @@ import type { TInventoryEntryDraftBuilder } from '../../../types'; import * as InventoryEntryDraft from '../../index'; const purpleLandscapePainting01Preset = - ProductVariantDraft.presets.sampleDataGoodStore + ProductVariantDraft.presets.sampleDataB2CLifestyle .purpleLandscapePainting01() .build(); -const inventoryChannel = ChannelDraft.presets.sampleDataGoodStore +const inventoryChannel = ChannelDraft.presets.sampleDataB2CLifestyle .inventoryChannel() .build(); diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-BLPC09.spec.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-BLPC09.spec.ts similarity index 100% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-BLPC09.spec.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-BLPC09.spec.ts diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-BLPC09.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-BLPC09.ts similarity index 73% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-BLPC09.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-BLPC09.ts index d7ce2aea8..ef909d354 100644 --- a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-BLPC09.ts +++ b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-BLPC09.ts @@ -5,9 +5,10 @@ import { import type { TInventoryEntryDraftBuilder } from '../../../types'; import * as InventoryEntryDraft from '../../index'; -const cocoaPillowCover01Preset = ProductVariantDraft.presets.sampleDataGoodStore - .cocoaPillowCover01() - .build(); +const cocoaPillowCover01Preset = + ProductVariantDraft.presets.sampleDataB2CLifestyle + .cocoaPillowCover01() + .build(); const skuBLPC09 = (): TInventoryEntryDraftBuilder => InventoryEntryDraft.presets diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-BR0983.spec.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-BR0983.spec.ts similarity index 100% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-BR0983.spec.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-BR0983.spec.ts diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-BR0983.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-BR0983.ts similarity index 97% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-BR0983.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-BR0983.ts index 926a607ca..79d0979b0 100644 --- a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-BR0983.ts +++ b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-BR0983.ts @@ -5,7 +5,7 @@ import { import type { TInventoryEntryDraftBuilder } from '../../../types'; import * as InventoryEntryDraft from '../../index'; -const braidedRug01Preset = ProductVariantDraft.presets.sampleDataGoodStore +const braidedRug01Preset = ProductVariantDraft.presets.sampleDataB2CLifestyle .braidedRug01() .build(); diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-BUCK023.spec.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-BUCK023.spec.ts similarity index 100% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-BUCK023.spec.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-BUCK023.spec.ts diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-BUCK023.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-BUCK023.ts similarity index 97% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-BUCK023.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-BUCK023.ts index 5a4bd5507..2fd182904 100644 --- a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-BUCK023.ts +++ b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-BUCK023.ts @@ -5,7 +5,7 @@ import { import type { TInventoryEntryDraftBuilder } from '../../../types'; import * as InventoryEntryDraft from '../../index'; -const iceBucket01Preset = ProductVariantDraft.presets.sampleDataGoodStore +const iceBucket01Preset = ProductVariantDraft.presets.sampleDataB2CLifestyle .iceBucket01() .build(); diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-CARM023.spec.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-CARM023.spec.ts similarity index 100% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-CARM023.spec.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-CARM023.spec.ts diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-CARM023.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-CARM023.ts similarity index 74% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-CARM023.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-CARM023.ts index 1cd1ec6c6..6e99fe872 100644 --- a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-CARM023.ts +++ b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-CARM023.ts @@ -5,9 +5,10 @@ import { import type { TInventoryEntryDraftBuilder } from '../../../types'; import * as InventoryEntryDraft from '../../index'; -const charlieArmchair01Preset = ProductVariantDraft.presets.sampleDataGoodStore - .charlieArmchair01() - .build(); +const charlieArmchair01Preset = + ProductVariantDraft.presets.sampleDataB2CLifestyle + .charlieArmchair01() + .build(); const skuCARM023 = (): TInventoryEntryDraftBuilder => InventoryEntryDraft.presets diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-CBM03.spec.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-CBM03.spec.ts similarity index 100% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-CBM03.spec.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-CBM03.spec.ts diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-CBM03.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-CBM03.ts similarity index 74% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-CBM03.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-CBM03.ts index a571eeea4..c5a4e62d8 100644 --- a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-CBM03.ts +++ b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-CBM03.ts @@ -5,9 +5,10 @@ import { import type { TInventoryEntryDraftBuilder } from '../../../types'; import * as InventoryEntryDraft from '../../index'; -const classicBeerMug01Preset = ProductVariantDraft.presets.sampleDataGoodStore - .classicBeerMug01() - .build(); +const classicBeerMug01Preset = + ProductVariantDraft.presets.sampleDataB2CLifestyle + .classicBeerMug01() + .build(); const skuCBM03 = (): TInventoryEntryDraftBuilder => InventoryEntryDraft.presets diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-CCC09.spec.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-CCC09.spec.ts similarity index 100% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-CCC09.spec.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-CCC09.spec.ts diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-CCC09.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-CCC09.ts similarity index 73% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-CCC09.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-CCC09.ts index 42faeb736..06dd699b8 100644 --- a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-CCC09.ts +++ b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-CCC09.ts @@ -5,9 +5,10 @@ import { import type { TInventoryEntryDraftBuilder } from '../../../types'; import * as InventoryEntryDraft from '../../index'; -const classicCoffeeCup01Preset = ProductVariantDraft.presets.sampleDataGoodStore - .classicCoffeeCup01() - .build(); +const classicCoffeeCup01Preset = + ProductVariantDraft.presets.sampleDataB2CLifestyle + .classicCoffeeCup01() + .build(); const skuCCC09 = (): TInventoryEntryDraftBuilder => InventoryEntryDraft.presets diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-CCG01.spec.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-CCG01.spec.ts similarity index 100% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-CCG01.spec.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-CCG01.spec.ts diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-CCG01.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-CCG01.ts similarity index 90% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-CCG01.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-CCG01.ts index ff06e3c91..5439c6b00 100644 --- a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-CCG01.ts +++ b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-CCG01.ts @@ -6,7 +6,7 @@ import type { TInventoryEntryDraftBuilder } from '../../../types'; import * as InventoryEntryDraft from '../../index'; const classicChampagneGlasses01Preset = - ProductVariantDraft.presets.sampleDataGoodStore + ProductVariantDraft.presets.sampleDataB2CLifestyle .classicChampagneGlasses01() .build(); diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-CCG02.spec.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-CCG02.spec.ts similarity index 100% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-CCG02.spec.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-CCG02.spec.ts diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-CCG02.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-CCG02.ts similarity index 86% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-CCG02.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-CCG02.ts index 63a6002c1..045c757ea 100644 --- a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-CCG02.ts +++ b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-CCG02.ts @@ -8,11 +8,11 @@ import type { TInventoryEntryDraftBuilder } from '../../../types'; import * as InventoryEntryDraft from '../../index'; const clinkChampagneGlass01Preset = - ProductVariantDraft.presets.sampleDataGoodStore + ProductVariantDraft.presets.sampleDataB2CLifestyle .clinkChampagneGlass01() .build(); -const inventoryChannel = ChannelDraft.presets.sampleDataGoodStore +const inventoryChannel = ChannelDraft.presets.sampleDataB2CLifestyle .inventoryChannel() .build(); diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-CCH093.spec.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-CCH093.spec.ts similarity index 100% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-CCH093.spec.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-CCH093.spec.ts diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-CCH093.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-CCH093.ts similarity index 96% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-CCH093.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-CCH093.ts index 2defa0864..2d03a783f 100644 --- a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-CCH093.ts +++ b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-CCH093.ts @@ -5,7 +5,7 @@ import { import type { TInventoryEntryDraftBuilder } from '../../../types'; import * as InventoryEntryDraft from '../../index'; -const charcoalChair01Preset = ProductVariantDraft.presets.sampleDataGoodStore +const charcoalChair01Preset = ProductVariantDraft.presets.sampleDataB2CLifestyle .charcoalChair01() .build(); diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-CCM089.spec.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-CCM089.spec.ts similarity index 100% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-CCM089.spec.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-CCM089.spec.ts diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-CCM089.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-CCM089.ts similarity index 73% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-CCM089.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-CCM089.ts index 554afb874..69e190b4e 100644 --- a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-CCM089.ts +++ b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-CCM089.ts @@ -5,9 +5,10 @@ import { import type { TInventoryEntryDraftBuilder } from '../../../types'; import * as InventoryEntryDraft from '../../index'; -const comfortCoffeeMug01Preset = ProductVariantDraft.presets.sampleDataGoodStore - .comfortCoffeeMug01() - .build(); +const comfortCoffeeMug01Preset = + ProductVariantDraft.presets.sampleDataB2CLifestyle + .comfortCoffeeMug01() + .build(); const skuCCM089 = (): TInventoryEntryDraftBuilder => InventoryEntryDraft.presets diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-CDG09.spec.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-CDG09.spec.ts similarity index 100% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-CDG09.spec.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-CDG09.spec.ts diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-CDG09.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-CDG09.ts similarity index 90% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-CDG09.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-CDG09.ts index aedec25c6..a9bb7c917 100644 --- a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-CDG09.ts +++ b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-CDG09.ts @@ -6,7 +6,7 @@ import type { TInventoryEntryDraftBuilder } from '../../../types'; import * as InventoryEntryDraft from '../../index'; const crystalDrinkingGlass01Preset = - ProductVariantDraft.presets.sampleDataGoodStore + ProductVariantDraft.presets.sampleDataB2CLifestyle .crystalDrinkingGlass01() .build(); diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-CJB01.spec.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-CJB01.spec.ts similarity index 100% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-CJB01.spec.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-CJB01.spec.ts diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-CJB01.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-CJB01.ts similarity index 74% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-CJB01.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-CJB01.ts index 9f2595cc8..f8ec3da44 100644 --- a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-CJB01.ts +++ b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-CJB01.ts @@ -5,9 +5,10 @@ import { import type { TInventoryEntryDraftBuilder } from '../../../types'; import * as InventoryEntryDraft from '../../index'; -const cubeJuteBasket01Preset = ProductVariantDraft.presets.sampleDataGoodStore - .cubeJuteBasket01() - .build(); +const cubeJuteBasket01Preset = + ProductVariantDraft.presets.sampleDataB2CLifestyle + .cubeJuteBasket01() + .build(); const skuCJB01 = (): TInventoryEntryDraftBuilder => InventoryEntryDraft.presets diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-CNS0434.spec.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-CNS0434.spec.ts similarity index 100% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-CNS0434.spec.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-CNS0434.spec.ts diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-CNS0434.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-CNS0434.ts similarity index 91% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-CNS0434.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-CNS0434.ts index 21493f3bb..3cb0c52f9 100644 --- a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-CNS0434.ts +++ b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-CNS0434.ts @@ -6,7 +6,7 @@ import type { TInventoryEntryDraftBuilder } from '../../../types'; import * as InventoryEntryDraft from '../../index'; const minimalistCedarNightstand01Preset = - ProductVariantDraft.presets.sampleDataGoodStore + ProductVariantDraft.presets.sampleDataB2CLifestyle .minimalistCedarNightstand01() .build(); diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-COC0843.spec.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-COC0843.spec.ts similarity index 100% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-COC0843.spec.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-COC0843.spec.ts diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-COC0843.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-COC0843.ts similarity index 90% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-COC0843.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-COC0843.ts index b7502ac88..d6dbd7518 100644 --- a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-COC0843.ts +++ b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-COC0843.ts @@ -6,7 +6,7 @@ import type { TInventoryEntryDraftBuilder } from '../../../types'; import * as InventoryEntryDraft from '../../index'; const cocktailShakerSet01Preset = - ProductVariantDraft.presets.sampleDataGoodStore + ProductVariantDraft.presets.sampleDataB2CLifestyle .cocktailShakerSet01() .build(); diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-CQB09.spec.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-CQB09.spec.ts similarity index 100% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-CQB09.spec.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-CQB09.spec.ts diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-CQB09.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-CQB09.ts similarity index 96% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-CQB09.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-CQB09.ts index f1f306078..c2888fe21 100644 --- a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-CQB09.ts +++ b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-CQB09.ts @@ -5,7 +5,7 @@ import { import type { TInventoryEntryDraftBuilder } from '../../../types'; import * as InventoryEntryDraft from '../../index'; -const cloudQueenBed01Preset = ProductVariantDraft.presets.sampleDataGoodStore +const cloudQueenBed01Preset = ProductVariantDraft.presets.sampleDataB2CLifestyle .cloudQueenBed01() .build(); diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-CR098.spec.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-CR098.spec.ts similarity index 100% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-CR098.spec.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-CR098.spec.ts diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-CR098.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-CR098.ts similarity index 76% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-CR098.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-CR098.ts index bfe4fb885..fd0379d4c 100644 --- a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-CR098.ts +++ b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-CR098.ts @@ -7,11 +7,12 @@ import { import type { TInventoryEntryDraftBuilder } from '../../../types'; import * as InventoryEntryDraft from '../../index'; -const cobblestoneRug01Preset = ProductVariantDraft.presets.sampleDataGoodStore - .cobblestoneRug01() - .build(); +const cobblestoneRug01Preset = + ProductVariantDraft.presets.sampleDataB2CLifestyle + .cobblestoneRug01() + .build(); -const inventoryChannel = ChannelDraft.presets.sampleDataGoodStore +const inventoryChannel = ChannelDraft.presets.sampleDataB2CLifestyle .inventoryChannel() .build(); diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-CST01.spec.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-CST01.spec.ts similarity index 100% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-CST01.spec.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-CST01.spec.ts diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-CST01.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-CST01.ts similarity index 90% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-CST01.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-CST01.ts index 0c5f2f8e5..84b99b0b0 100644 --- a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-CST01.ts +++ b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-CST01.ts @@ -6,7 +6,7 @@ import type { TInventoryEntryDraftBuilder } from '../../../types'; import * as InventoryEntryDraft from '../../index'; const classicServingTray01Preset = - ProductVariantDraft.presets.sampleDataGoodStore + ProductVariantDraft.presets.sampleDataB2CLifestyle .classicServingTray01() .build(); diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-CTSS098.spec.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-CTSS098.spec.ts similarity index 100% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-CTSS098.spec.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-CTSS098.spec.ts diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-CTSS098.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-CTSS098.ts similarity index 90% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-CTSS098.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-CTSS098.ts index 216d1394c..7c7d31221 100644 --- a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-CTSS098.ts +++ b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-CTSS098.ts @@ -6,7 +6,7 @@ import type { TInventoryEntryDraftBuilder } from '../../../types'; import * as InventoryEntryDraft from '../../index'; const canelaThreeSeaterSofa01Preset = - ProductVariantDraft.presets.sampleDataGoodStore + ProductVariantDraft.presets.sampleDataB2CLifestyle .canelaThreeSeaterSofa01() .build(); diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-CTSS0983.spec.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-CTSS0983.spec.ts similarity index 100% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-CTSS0983.spec.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-CTSS0983.spec.ts diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-CTSS0983.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-CTSS0983.ts similarity index 90% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-CTSS0983.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-CTSS0983.ts index 5178c8d7b..eed98cf1d 100644 --- a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-CTSS0983.ts +++ b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-CTSS0983.ts @@ -6,7 +6,7 @@ import type { TInventoryEntryDraftBuilder } from '../../../types'; import * as InventoryEntryDraft from '../../index'; const cottonTwoSeaterSofa01Preset = - ProductVariantDraft.presets.sampleDataGoodStore + ProductVariantDraft.presets.sampleDataB2CLifestyle .cottonTwoSeaterSofa01() .build(); diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-CWG01.spec.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-CWG01.spec.ts similarity index 100% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-CWG01.spec.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-CWG01.spec.ts diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-CWG01.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-CWG01.ts similarity index 73% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-CWG01.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-CWG01.ts index fafba54a0..e32bed858 100644 --- a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-CWG01.ts +++ b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-CWG01.ts @@ -5,9 +5,10 @@ import { import type { TInventoryEntryDraftBuilder } from '../../../types'; import * as InventoryEntryDraft from '../../index'; -const chiantiWineGlass01Preset = ProductVariantDraft.presets.sampleDataGoodStore - .chiantiWineGlass01() - .build(); +const chiantiWineGlass01Preset = + ProductVariantDraft.presets.sampleDataB2CLifestyle + .chiantiWineGlass01() + .build(); const skuCWG01 = (): TInventoryEntryDraftBuilder => InventoryEntryDraft.presets diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-DWEG09.spec.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-DWEG09.spec.ts similarity index 100% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-DWEG09.spec.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-DWEG09.spec.ts diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-DWEG09.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-DWEG09.ts similarity index 91% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-DWEG09.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-DWEG09.ts index 649c56e26..4d747fffa 100644 --- a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-DWEG09.ts +++ b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-DWEG09.ts @@ -6,7 +6,7 @@ import type { TInventoryEntryDraftBuilder } from '../../../types'; import * as InventoryEntryDraft from '../../index'; const doubleWalledEspressoGlass01Preset = - ProductVariantDraft.presets.sampleDataGoodStore + ProductVariantDraft.presets.sampleDataB2CLifestyle .doubleWalledEspressoGlass01() .build(); diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-EARM04.spec.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-EARM04.spec.ts similarity index 100% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-EARM04.spec.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-EARM04.spec.ts diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-EARM04.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-EARM04.ts similarity index 96% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-EARM04.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-EARM04.ts index eafc48674..863aec050 100644 --- a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-EARM04.ts +++ b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-EARM04.ts @@ -5,7 +5,7 @@ import { import type { TInventoryEntryDraftBuilder } from '../../../types'; import * as InventoryEntryDraft from '../../index'; -const edgarArmchair01Preset = ProductVariantDraft.presets.sampleDataGoodStore +const edgarArmchair01Preset = ProductVariantDraft.presets.sampleDataB2CLifestyle .edgarArmchair01() .build(); diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-EC0993.spec.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-EC0993.spec.ts similarity index 100% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-EC0993.spec.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-EC0993.spec.ts diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-EC0993.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-EC0993.ts similarity index 73% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-EC0993.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-EC0993.ts index c9047c80a..b4d1f8de3 100644 --- a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-EC0993.ts +++ b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-EC0993.ts @@ -5,9 +5,10 @@ import { import type { TInventoryEntryDraftBuilder } from '../../../types'; import * as InventoryEntryDraft from '../../index'; -const evergreenCandle01Preset = ProductVariantDraft.presets.sampleDataGoodStore - .evergreenCandle01() - .build(); +const evergreenCandle01Preset = + ProductVariantDraft.presets.sampleDataB2CLifestyle + .evergreenCandle01() + .build(); const skuEC0993 = (): TInventoryEntryDraftBuilder => InventoryEntryDraft.presets diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-EWC07.spec.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-EWC07.spec.ts similarity index 100% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-EWC07.spec.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-EWC07.spec.ts diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-EWC07.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-EWC07.ts similarity index 74% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-EWC07.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-EWC07.ts index 5c30ca0f7..00fca3ad0 100644 --- a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-EWC07.ts +++ b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-EWC07.ts @@ -5,9 +5,10 @@ import { import type { TInventoryEntryDraftBuilder } from '../../../types'; import * as InventoryEntryDraft from '../../index'; -const entrywayCloset01Preset = ProductVariantDraft.presets.sampleDataGoodStore - .entrywayCloset01() - .build(); +const entrywayCloset01Preset = + ProductVariantDraft.presets.sampleDataB2CLifestyle + .entrywayCloset01() + .build(); const skuEWC07 = (): TInventoryEntryDraftBuilder => InventoryEntryDraft.presets diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-FARM05.spec.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-FARM05.spec.ts similarity index 100% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-FARM05.spec.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-FARM05.spec.ts diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-FARM05.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-FARM05.ts similarity index 97% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-FARM05.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-FARM05.ts index 5b685869d..4c32b8274 100644 --- a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-FARM05.ts +++ b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-FARM05.ts @@ -5,7 +5,7 @@ import { import type { TInventoryEntryDraftBuilder } from '../../../types'; import * as InventoryEntryDraft from '../../index'; -const fawnArmchair01Preset = ProductVariantDraft.presets.sampleDataGoodStore +const fawnArmchair01Preset = ProductVariantDraft.presets.sampleDataB2CLifestyle .fawnArmchair01() .build(); diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-FLAS094.spec.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-FLAS094.spec.ts similarity index 100% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-FLAS094.spec.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-FLAS094.spec.ts diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-FLAS094.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-FLAS094.ts similarity index 96% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-FLAS094.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-FLAS094.ts index 3d96d0d5e..dd861593b 100644 --- a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-FLAS094.ts +++ b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-FLAS094.ts @@ -5,7 +5,7 @@ import { import type { TInventoryEntryDraftBuilder } from '../../../types'; import * as InventoryEntryDraft from '../../index'; -const steelHipFlask01Preset = ProductVariantDraft.presets.sampleDataGoodStore +const steelHipFlask01Preset = ProductVariantDraft.presets.sampleDataB2CLifestyle .steelHipFlask01() .build(); diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-GARM093.spec.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-GARM093.spec.ts similarity index 100% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-GARM093.spec.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-GARM093.spec.ts diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-GARM093.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-GARM093.ts similarity index 97% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-GARM093.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-GARM093.ts index aa6ccb1e9..5326f175a 100644 --- a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-GARM093.ts +++ b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-GARM093.ts @@ -5,7 +5,7 @@ import { import type { TInventoryEntryDraftBuilder } from '../../../types'; import * as InventoryEntryDraft from '../../index'; -const glamArmchair01Preset = ProductVariantDraft.presets.sampleDataGoodStore +const glamArmchair01Preset = ProductVariantDraft.presets.sampleDataB2CLifestyle .glamArmchair01() .build(); diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-GC01.spec.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-GC01.spec.ts similarity index 100% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-GC01.spec.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-GC01.spec.ts diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-GC01.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-GC01.ts similarity index 90% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-GC01.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-GC01.ts index bce94973b..fa7b07fb3 100644 --- a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-GC01.ts +++ b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-GC01.ts @@ -6,7 +6,7 @@ import type { TInventoryEntryDraftBuilder } from '../../../types'; import * as InventoryEntryDraft from '../../index'; const greenServingPlate01Preset = - ProductVariantDraft.presets.sampleDataGoodStore + ProductVariantDraft.presets.sampleDataB2CLifestyle .greenServingPlate01() .build(); diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-GMCT01.spec.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-GMCT01.spec.ts similarity index 100% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-GMCT01.spec.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-GMCT01.spec.ts diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-GMCT01.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-GMCT01.ts similarity index 90% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-GMCT01.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-GMCT01.ts index 1d3c60c25..a56a845a5 100644 --- a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-GMCT01.ts +++ b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-GMCT01.ts @@ -6,7 +6,7 @@ import type { TInventoryEntryDraftBuilder } from '../../../types'; import * as InventoryEntryDraft from '../../index'; const modernGoldCoffeeTable01Preset = - ProductVariantDraft.presets.sampleDataGoodStore + ProductVariantDraft.presets.sampleDataB2CLifestyle .modernGoldCoffeeTable01() .build(); diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-GPC01.spec.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-GPC01.spec.ts similarity index 100% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-GPC01.spec.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-GPC01.spec.ts diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-GPC01.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-GPC01.ts similarity index 90% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-GPC01.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-GPC01.ts index 46f8fe28b..7bdf16555 100644 --- a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-GPC01.ts +++ b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-GPC01.ts @@ -6,7 +6,7 @@ import type { TInventoryEntryDraftBuilder } from '../../../types'; import * as InventoryEntryDraft from '../../index'; const geometricPillowCase01Preset = - ProductVariantDraft.presets.sampleDataGoodStore + ProductVariantDraft.presets.sampleDataB2CLifestyle .geometricPillowCase01() .build(); diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-GPC02.spec.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-GPC02.spec.ts similarity index 100% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-GPC02.spec.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-GPC02.spec.ts diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-GPC02.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-GPC02.ts similarity index 90% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-GPC02.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-GPC02.ts index c6513feeb..bec8f6bf9 100644 --- a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-GPC02.ts +++ b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-GPC02.ts @@ -6,7 +6,7 @@ import type { TInventoryEntryDraftBuilder } from '../../../types'; import * as InventoryEntryDraft from '../../index'; const geometricPillowCase02Preset = - ProductVariantDraft.presets.sampleDataGoodStore + ProductVariantDraft.presets.sampleDataB2CLifestyle .geometricPillowCase02() .build(); diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-GPC03.spec.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-GPC03.spec.ts similarity index 100% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-GPC03.spec.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-GPC03.spec.ts diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-GPC03.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-GPC03.ts similarity index 90% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-GPC03.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-GPC03.ts index 6be5588b7..31571c996 100644 --- a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-GPC03.ts +++ b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-GPC03.ts @@ -6,7 +6,7 @@ import type { TInventoryEntryDraftBuilder } from '../../../types'; import * as InventoryEntryDraft from '../../index'; const geometricPillowCase03Preset = - ProductVariantDraft.presets.sampleDataGoodStore + ProductVariantDraft.presets.sampleDataB2CLifestyle .geometricPillowCase03() .build(); diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-GRCG01.spec.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-GRCG01.spec.ts similarity index 100% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-GRCG01.spec.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-GRCG01.spec.ts diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-GRCG01.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-GRCG01.ts similarity index 91% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-GRCG01.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-GRCG01.ts index abccc579e..58331ebd5 100644 --- a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-GRCG01.ts +++ b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-GRCG01.ts @@ -6,7 +6,7 @@ import type { TInventoryEntryDraftBuilder } from '../../../types'; import * as InventoryEntryDraft from '../../index'; const goldRimmedChampagneGlasses01Preset = - ProductVariantDraft.presets.sampleDataGoodStore + ProductVariantDraft.presets.sampleDataB2CLifestyle .goldRimmedChampagneGlasses01() .build(); diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-HDG02.spec.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-HDG02.spec.ts similarity index 100% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-HDG02.spec.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-HDG02.spec.ts diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-HDG02.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-HDG02.ts similarity index 90% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-HDG02.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-HDG02.ts index 1c384df81..cf243c27b 100644 --- a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-HDG02.ts +++ b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-HDG02.ts @@ -6,7 +6,7 @@ import type { TInventoryEntryDraftBuilder } from '../../../types'; import * as InventoryEntryDraft from '../../index'; const harmonyDrinkingGlass01Preset = - ProductVariantDraft.presets.sampleDataGoodStore + ProductVariantDraft.presets.sampleDataB2CLifestyle .harmonyDrinkingGlass01() .build(); diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-HP01.spec.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-HP01.spec.ts similarity index 100% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-HP01.spec.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-HP01.spec.ts diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-HP01.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-HP01.ts similarity index 97% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-HP01.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-HP01.ts index 38515889d..17360e178 100644 --- a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-HP01.ts +++ b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-HP01.ts @@ -5,7 +5,7 @@ import { import type { TInventoryEntryDraftBuilder } from '../../../types'; import * as InventoryEntryDraft from '../../index'; -const harvestPlate01Preset = ProductVariantDraft.presets.sampleDataGoodStore +const harvestPlate01Preset = ProductVariantDraft.presets.sampleDataB2CLifestyle .harvestPlate01() .build(); diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-ILC01.spec.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-ILC01.spec.ts similarity index 100% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-ILC01.spec.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-ILC01.spec.ts diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-ILC01.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-ILC01.ts similarity index 73% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-ILC01.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-ILC01.ts index 83eb1112f..bfec70058 100644 --- a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-ILC01.ts +++ b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-ILC01.ts @@ -5,9 +5,10 @@ import { import type { TInventoryEntryDraftBuilder } from '../../../types'; import * as InventoryEntryDraft from '../../index'; -const ivoryLoungeChair01Preset = ProductVariantDraft.presets.sampleDataGoodStore - .ivoryLoungeChair01() - .build(); +const ivoryLoungeChair01Preset = + ProductVariantDraft.presets.sampleDataB2CLifestyle + .ivoryLoungeChair01() + .build(); const skuILC01 = (): TInventoryEntryDraftBuilder => InventoryEntryDraft.presets diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-IQB09.spec.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-IQB09.spec.ts similarity index 100% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-IQB09.spec.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-IQB09.spec.ts diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-IQB09.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-IQB09.ts similarity index 73% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-IQB09.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-IQB09.ts index 431e8531c..004242a43 100644 --- a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-IQB09.ts +++ b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-IQB09.ts @@ -5,9 +5,10 @@ import { import type { TInventoryEntryDraftBuilder } from '../../../types'; import * as InventoryEntryDraft from '../../index'; -const serenityQueenBed01Preset = ProductVariantDraft.presets.sampleDataGoodStore - .serenityQueenBed01() - .build(); +const serenityQueenBed01Preset = + ProductVariantDraft.presets.sampleDataB2CLifestyle + .serenityQueenBed01() + .build(); const skuIQB09 = (): TInventoryEntryDraftBuilder => InventoryEntryDraft.presets diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-ISP01.spec.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-ISP01.spec.ts similarity index 100% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-ISP01.spec.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-ISP01.spec.ts diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-ISP01.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-ISP01.ts similarity index 97% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-ISP01.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-ISP01.ts index 6f6390bb5..9e6956215 100644 --- a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-ISP01.ts +++ b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-ISP01.ts @@ -5,7 +5,7 @@ import { import type { TInventoryEntryDraftBuilder } from '../../../types'; import * as InventoryEntryDraft from '../../index'; -const ivoryPlate01Preset = ProductVariantDraft.presets.sampleDataGoodStore +const ivoryPlate01Preset = ProductVariantDraft.presets.sampleDataB2CLifestyle .ivoryPlate01() .build(); diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-JAR08.spec.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-JAR08.spec.ts similarity index 100% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-JAR08.spec.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-JAR08.spec.ts diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-JAR08.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-JAR08.ts similarity index 85% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-JAR08.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-JAR08.ts index 4f880d26f..84a0c666a 100644 --- a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-JAR08.ts +++ b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-JAR08.ts @@ -5,7 +5,7 @@ import { import type { TInventoryEntryDraftBuilder } from '../../../types'; import * as InventoryEntryDraft from '../../index'; -const juteRug01Preset = ProductVariantDraft.presets.sampleDataGoodStore +const juteRug01Preset = ProductVariantDraft.presets.sampleDataB2CLifestyle .juteRug01() .build(); diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-LAMR03.spec.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-LAMR03.spec.ts similarity index 100% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-LAMR03.spec.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-LAMR03.spec.ts diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-LAMR03.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-LAMR03.ts similarity index 97% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-LAMR03.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-LAMR03.ts index f21626d65..f26b6dffb 100644 --- a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-LAMR03.ts +++ b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-LAMR03.ts @@ -5,7 +5,7 @@ import { import type { TInventoryEntryDraftBuilder } from '../../../types'; import * as InventoryEntryDraft from '../../index'; -const leahArmchair01Preset = ProductVariantDraft.presets.sampleDataGoodStore +const leahArmchair01Preset = ProductVariantDraft.presets.sampleDataB2CLifestyle .leahArmchair01() .build(); diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-LBPC09.spec.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-LBPC09.spec.ts similarity index 100% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-LBPC09.spec.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-LBPC09.spec.ts diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-LBPC09.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-LBPC09.ts similarity index 74% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-LBPC09.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-LBPC09.ts index d5c43e4c6..474afd808 100644 --- a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-LBPC09.ts +++ b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-LBPC09.ts @@ -5,9 +5,10 @@ import { import type { TInventoryEntryDraftBuilder } from '../../../types'; import * as InventoryEntryDraft from '../../index'; -const benPillowCover01Preset = ProductVariantDraft.presets.sampleDataGoodStore - .benPillowCover01() - .build(); +const benPillowCover01Preset = + ProductVariantDraft.presets.sampleDataB2CLifestyle + .benPillowCover01() + .build(); const skuLBPC09 = (): TInventoryEntryDraftBuilder => InventoryEntryDraft.presets diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-LCO034.spec.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-LCO034.spec.ts similarity index 100% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-LCO034.spec.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-LCO034.spec.ts diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-LCO034.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-LCO034.ts similarity index 74% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-LCO034.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-LCO034.ts index 57ebe4832..b7cbe7c6c 100644 --- a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-LCO034.ts +++ b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-LCO034.ts @@ -5,9 +5,10 @@ import { import type { TInventoryEntryDraftBuilder } from '../../../types'; import * as InventoryEntryDraft from '../../index'; -const leatherCoaster01Preset = ProductVariantDraft.presets.sampleDataGoodStore - .leatherCoaster01() - .build(); +const leatherCoaster01Preset = + ProductVariantDraft.presets.sampleDataB2CLifestyle + .leatherCoaster01() + .build(); const skuLCO034 = (): TInventoryEntryDraftBuilder => InventoryEntryDraft.presets diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-LCP01.spec.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-LCP01.spec.ts similarity index 100% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-LCP01.spec.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-LCP01.spec.ts diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-LCP01.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-LCP01.ts similarity index 90% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-LCP01.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-LCP01.ts index 89383a8c2..53e59d1f2 100644 --- a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-LCP01.ts +++ b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-LCP01.ts @@ -6,7 +6,7 @@ import type { TInventoryEntryDraftBuilder } from '../../../types'; import * as InventoryEntryDraft from '../../index'; const largeCeramicPlate01Preset = - ProductVariantDraft.presets.sampleDataGoodStore + ProductVariantDraft.presets.sampleDataB2CLifestyle .largeCeramicPlate01() .build(); diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-LCP02.spec.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-LCP02.spec.ts similarity index 100% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-LCP02.spec.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-LCP02.spec.ts diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-LCP02.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-LCP02.ts similarity index 90% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-LCP02.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-LCP02.ts index 0c42ff2b8..3d6af82eb 100644 --- a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-LCP02.ts +++ b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-LCP02.ts @@ -6,7 +6,7 @@ import type { TInventoryEntryDraftBuilder } from '../../../types'; import * as InventoryEntryDraft from '../../index'; const largeCeramicPlate02Preset = - ProductVariantDraft.presets.sampleDataGoodStore + ProductVariantDraft.presets.sampleDataB2CLifestyle .largeCeramicPlate02() .build(); diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-LPC011.spec.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-LPC011.spec.ts similarity index 100% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-LPC011.spec.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-LPC011.spec.ts diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-LPC011.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-LPC011.ts similarity index 73% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-LPC011.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-LPC011.ts index a9e57125c..b77a2b862 100644 --- a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-LPC011.ts +++ b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-LPC011.ts @@ -5,9 +5,10 @@ import { import type { TInventoryEntryDraftBuilder } from '../../../types'; import * as InventoryEntryDraft from '../../index'; -const luxePillowCover01Preset = ProductVariantDraft.presets.sampleDataGoodStore - .luxePillowCover01() - .build(); +const luxePillowCover01Preset = + ProductVariantDraft.presets.sampleDataB2CLifestyle + .luxePillowCover01() + .build(); const skuLPC011 = (): TInventoryEntryDraftBuilder => InventoryEntryDraft.presets diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-LPC09.spec.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-LPC09.spec.ts similarity index 100% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-LPC09.spec.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-LPC09.spec.ts diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-LPC09.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-LPC09.ts similarity index 73% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-LPC09.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-LPC09.ts index bc5a58534..398435d75 100644 --- a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-LPC09.ts +++ b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-LPC09.ts @@ -5,9 +5,10 @@ import { import type { TInventoryEntryDraftBuilder } from '../../../types'; import * as InventoryEntryDraft from '../../index'; -const lanaPillowCover01Preset = ProductVariantDraft.presets.sampleDataGoodStore - .lanaPillowCover01() - .build(); +const lanaPillowCover01Preset = + ProductVariantDraft.presets.sampleDataB2CLifestyle + .lanaPillowCover01() + .build(); const skuLPC09 = (): TInventoryEntryDraftBuilder => InventoryEntryDraft.presets diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-LPQB084.spec.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-LPQB084.spec.ts similarity index 100% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-LPQB084.spec.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-LPQB084.spec.ts diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-LPQB084.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-LPQB084.ts similarity index 97% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-LPQB084.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-LPQB084.ts index 6243bc0bc..ac339ce7f 100644 --- a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-LPQB084.ts +++ b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-LPQB084.ts @@ -5,7 +5,7 @@ import { import type { TInventoryEntryDraftBuilder } from '../../../types'; import * as InventoryEntryDraft from '../../index'; -const tanQueenBed01Preset = ProductVariantDraft.presets.sampleDataGoodStore +const tanQueenBed01Preset = ProductVariantDraft.presets.sampleDataB2CLifestyle .tanQueenBed01() .build(); diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-MB0973.spec.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-MB0973.spec.ts similarity index 100% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-MB0973.spec.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-MB0973.spec.ts diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-MB0973.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-MB0973.ts similarity index 74% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-MB0973.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-MB0973.ts index 28fb31256..0c7b11bb9 100644 --- a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-MB0973.ts +++ b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-MB0973.ts @@ -5,9 +5,10 @@ import { import type { TInventoryEntryDraftBuilder } from '../../../types'; import * as InventoryEntryDraft from '../../index'; -const modernBookcase01Preset = ProductVariantDraft.presets.sampleDataGoodStore - .modernBookcase01() - .build(); +const modernBookcase01Preset = + ProductVariantDraft.presets.sampleDataB2CLifestyle + .modernBookcase01() + .build(); const skuMB0973 = (): TInventoryEntryDraftBuilder => InventoryEntryDraft.presets diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-MCP01.spec.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-MCP01.spec.ts similarity index 100% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-MCP01.spec.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-MCP01.spec.ts diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-MCP01.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-MCP01.ts similarity index 90% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-MCP01.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-MCP01.ts index c4c5381f5..48e7052d8 100644 --- a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-MCP01.ts +++ b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-MCP01.ts @@ -6,7 +6,7 @@ import type { TInventoryEntryDraftBuilder } from '../../../types'; import * as InventoryEntryDraft from '../../index'; const modernCeramicPlate01Preset = - ProductVariantDraft.presets.sampleDataGoodStore + ProductVariantDraft.presets.sampleDataB2CLifestyle .modernCeramicPlate01() .build(); diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-MGD01.spec.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-MGD01.spec.ts similarity index 100% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-MGD01.spec.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-MGD01.spec.ts diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-MGD01.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-MGD01.ts similarity index 90% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-MGD01.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-MGD01.ts index 0b8a2bbfb..0c1fd27cd 100644 --- a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-MGD01.ts +++ b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-MGD01.ts @@ -6,7 +6,7 @@ import type { TInventoryEntryDraftBuilder } from '../../../types'; import * as InventoryEntryDraft from '../../index'; const modernGlamDresser01Preset = - ProductVariantDraft.presets.sampleDataGoodStore + ProductVariantDraft.presets.sampleDataB2CLifestyle .modernGlamDresser01() .build(); diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-MLP01.spec.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-MLP01.spec.ts similarity index 100% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-MLP01.spec.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-MLP01.spec.ts diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-MLP01.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-MLP01.ts similarity index 90% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-MLP01.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-MLP01.ts index bbea8ebb9..6fb9cafa8 100644 --- a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-MLP01.ts +++ b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-MLP01.ts @@ -6,7 +6,7 @@ import type { TInventoryEntryDraftBuilder } from '../../../types'; import * as InventoryEntryDraft from '../../index'; const modernLandscapePainting01Preset = - ProductVariantDraft.presets.sampleDataGoodStore + ProductVariantDraft.presets.sampleDataB2CLifestyle .modernLandscapePainting01() .build(); diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-MMST01.spec.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-MMST01.spec.ts similarity index 100% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-MMST01.spec.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-MMST01.spec.ts diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-MMST01.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-MMST01.ts similarity index 91% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-MMST01.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-MMST01.ts index 37b8620e8..b3f6f6626 100644 --- a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-MMST01.ts +++ b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-MMST01.ts @@ -6,7 +6,7 @@ import type { TInventoryEntryDraftBuilder } from '../../../types'; import * as InventoryEntryDraft from '../../index'; const minimalistModernSideTable01Preset = - ProductVariantDraft.presets.sampleDataGoodStore + ProductVariantDraft.presets.sampleDataB2CLifestyle .minimalistModernSideTable01() .build(); diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-MMST02.spec.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-MMST02.spec.ts similarity index 100% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-MMST02.spec.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-MMST02.spec.ts diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-MMST02.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-MMST02.ts similarity index 91% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-MMST02.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-MMST02.ts index fb9ab018c..47065cf6f 100644 --- a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-MMST02.ts +++ b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-MMST02.ts @@ -6,7 +6,7 @@ import type { TInventoryEntryDraftBuilder } from '../../../types'; import * as InventoryEntryDraft from '../../index'; const minimalistModernSideTable02Preset = - ProductVariantDraft.presets.sampleDataGoodStore + ProductVariantDraft.presets.sampleDataB2CLifestyle .minimalistModernSideTable02() .build(); diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-MPC02.spec.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-MPC02.spec.ts similarity index 100% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-MPC02.spec.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-MPC02.spec.ts diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-MPC02.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-MPC02.ts similarity index 73% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-MPC02.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-MPC02.ts index e09ab650e..2f2043168 100644 --- a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-MPC02.ts +++ b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-MPC02.ts @@ -5,9 +5,10 @@ import { import type { TInventoryEntryDraftBuilder } from '../../../types'; import * as InventoryEntryDraft from '../../index'; -const mayaPillowCover01Preset = ProductVariantDraft.presets.sampleDataGoodStore - .mayaPillowCover01() - .build(); +const mayaPillowCover01Preset = + ProductVariantDraft.presets.sampleDataB2CLifestyle + .mayaPillowCover01() + .build(); const skuMPC02 = (): TInventoryEntryDraftBuilder => InventoryEntryDraft.presets diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-MPC07.spec.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-MPC07.spec.ts similarity index 100% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-MPC07.spec.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-MPC07.spec.ts diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-MPC07.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-MPC07.ts similarity index 73% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-MPC07.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-MPC07.ts index 2b13e8355..036a2f9a5 100644 --- a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-MPC07.ts +++ b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-MPC07.ts @@ -5,9 +5,10 @@ import { import type { TInventoryEntryDraftBuilder } from '../../../types'; import * as InventoryEntryDraft from '../../index'; -const mayaPillowCover02Preset = ProductVariantDraft.presets.sampleDataGoodStore - .mayaPillowCover02() - .build(); +const mayaPillowCover02Preset = + ProductVariantDraft.presets.sampleDataB2CLifestyle + .mayaPillowCover02() + .build(); const skuMPC07 = (): TInventoryEntryDraftBuilder => InventoryEntryDraft.presets diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-MR05.spec.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-MR05.spec.ts similarity index 100% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-MR05.spec.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-MR05.spec.ts diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-MR05.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-MR05.ts similarity index 97% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-MR05.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-MR05.ts index 2c838ea7f..8e82e102b 100644 --- a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-MR05.ts +++ b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-MR05.ts @@ -5,7 +5,7 @@ import { import type { TInventoryEntryDraftBuilder } from '../../../types'; import * as InventoryEntryDraft from '../../index'; -const meadowRug03Preset = ProductVariantDraft.presets.sampleDataGoodStore +const meadowRug03Preset = ProductVariantDraft.presets.sampleDataB2CLifestyle .meadowRug03() .build(); diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-MR08.spec.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-MR08.spec.ts similarity index 100% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-MR08.spec.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-MR08.spec.ts diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-MR08.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-MR08.ts similarity index 97% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-MR08.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-MR08.ts index 082506793..260c62073 100644 --- a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-MR08.ts +++ b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-MR08.ts @@ -5,7 +5,7 @@ import { import type { TInventoryEntryDraftBuilder } from '../../../types'; import * as InventoryEntryDraft from '../../index'; -const meadowRug02Preset = ProductVariantDraft.presets.sampleDataGoodStore +const meadowRug02Preset = ProductVariantDraft.presets.sampleDataB2CLifestyle .meadowRug02() .build(); diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-MTB023.spec.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-MTB023.spec.ts similarity index 100% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-MTB023.spec.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-MTB023.spec.ts diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-MTB023.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-MTB023.ts similarity index 97% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-MTB023.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-MTB023.ts index 0a1745418..78ccbc812 100644 --- a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-MTB023.ts +++ b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-MTB023.ts @@ -5,7 +5,7 @@ import { import type { TInventoryEntryDraftBuilder } from '../../../types'; import * as InventoryEntryDraft from '../../index'; -const opalKingBed01Preset = ProductVariantDraft.presets.sampleDataGoodStore +const opalKingBed01Preset = ProductVariantDraft.presets.sampleDataB2CLifestyle .opalKingBed01() .build(); diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-MTSS01.spec.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-MTSS01.spec.ts similarity index 100% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-MTSS01.spec.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-MTSS01.spec.ts diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-MTSS01.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-MTSS01.ts similarity index 90% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-MTSS01.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-MTSS01.ts index fec716e9b..d099305d4 100644 --- a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-MTSS01.ts +++ b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-MTSS01.ts @@ -6,7 +6,7 @@ import type { TInventoryEntryDraftBuilder } from '../../../types'; import * as InventoryEntryDraft from '../../index'; const modernThreeSeaterSofa01Preset = - ProductVariantDraft.presets.sampleDataGoodStore + ProductVariantDraft.presets.sampleDataB2CLifestyle .modernThreeSeaterSofa01() .build(); diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-MUQB01.spec.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-MUQB01.spec.ts similarity index 100% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-MUQB01.spec.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-MUQB01.spec.ts diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-MUQB01.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-MUQB01.ts similarity index 91% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-MUQB01.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-MUQB01.ts index 55243e2f7..182ee2518 100644 --- a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-MUQB01.ts +++ b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-MUQB01.ts @@ -6,7 +6,7 @@ import type { TInventoryEntryDraftBuilder } from '../../../types'; import * as InventoryEntryDraft from '../../index'; const modernUpholsteredQueenBed01Preset = - ProductVariantDraft.presets.sampleDataGoodStore + ProductVariantDraft.presets.sampleDataB2CLifestyle .modernUpholsteredQueenBed01() .build(); diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-MWT01.spec.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-MWT01.spec.ts similarity index 100% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-MWT01.spec.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-MWT01.spec.ts diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-MWT01.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-MWT01.ts similarity index 97% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-MWT01.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-MWT01.ts index 6b497355f..4e6fce914 100644 --- a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-MWT01.ts +++ b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-MWT01.ts @@ -5,7 +5,7 @@ import { import type { TInventoryEntryDraftBuilder } from '../../../types'; import * as InventoryEntryDraft from '../../index'; -const marquisTray01Preset = ProductVariantDraft.presets.sampleDataGoodStore +const marquisTray01Preset = ProductVariantDraft.presets.sampleDataB2CLifestyle .marquisTray01() .build(); diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-NJOP09.spec.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-NJOP09.spec.ts similarity index 100% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-NJOP09.spec.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-NJOP09.spec.ts diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-NJOP09.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-NJOP09.ts similarity index 97% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-NJOP09.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-NJOP09.ts index e81175bb1..cc1d315a0 100644 --- a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-NJOP09.ts +++ b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-NJOP09.ts @@ -5,7 +5,7 @@ import { import type { TInventoryEntryDraftBuilder } from '../../../types'; import * as InventoryEntryDraft from '../../index'; -const wilmaChair01Preset = ProductVariantDraft.presets.sampleDataGoodStore +const wilmaChair01Preset = ProductVariantDraft.presets.sampleDataB2CLifestyle .wilmaChair01() .build(); diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-NR09.spec.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-NR09.spec.ts similarity index 100% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-NR09.spec.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-NR09.spec.ts diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-NR09.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-NR09.ts similarity index 97% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-NR09.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-NR09.ts index a405cd0bd..dc821dabf 100644 --- a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-NR09.ts +++ b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-NR09.ts @@ -5,7 +5,7 @@ import { import type { TInventoryEntryDraftBuilder } from '../../../types'; import * as InventoryEntryDraft from '../../index'; -const naturaRug01Preset = ProductVariantDraft.presets.sampleDataGoodStore +const naturaRug01Preset = ProductVariantDraft.presets.sampleDataB2CLifestyle .naturaRug01() .build(); diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-NTSS01.spec.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-NTSS01.spec.ts similarity index 100% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-NTSS01.spec.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-NTSS01.spec.ts diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-NTSS01.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-NTSS01.ts similarity index 86% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-NTSS01.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-NTSS01.ts index 216e67cda..d83344d28 100644 --- a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-NTSS01.ts +++ b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-NTSS01.ts @@ -8,11 +8,11 @@ import type { TInventoryEntryDraftBuilder } from '../../../types'; import * as InventoryEntryDraft from '../../index'; const nalaTwoSeaterSofa01Preset = - ProductVariantDraft.presets.sampleDataGoodStore + ProductVariantDraft.presets.sampleDataB2CLifestyle .nalaTwoSeaterSofa01() .build(); -const inventoryChannel = ChannelDraft.presets.sampleDataGoodStore +const inventoryChannel = ChannelDraft.presets.sampleDataB2CLifestyle .inventoryChannel() .build(); diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-NTSS02.spec.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-NTSS02.spec.ts similarity index 100% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-NTSS02.spec.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-NTSS02.spec.ts diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-NTSS02.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-NTSS02.ts similarity index 90% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-NTSS02.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-NTSS02.ts index 07f304378..574a5d5a5 100644 --- a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-NTSS02.ts +++ b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-NTSS02.ts @@ -6,7 +6,7 @@ import type { TInventoryEntryDraftBuilder } from '../../../types'; import * as InventoryEntryDraft from '../../index'; const nalaTwoSeaterSofa02Preset = - ProductVariantDraft.presets.sampleDataGoodStore + ProductVariantDraft.presets.sampleDataB2CLifestyle .nalaTwoSeaterSofa02() .build(); diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-NTSS03.spec.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-NTSS03.spec.ts similarity index 100% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-NTSS03.spec.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-NTSS03.spec.ts diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-NTSS03.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-NTSS03.ts similarity index 90% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-NTSS03.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-NTSS03.ts index 829889d3c..3d903c2f3 100644 --- a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-NTSS03.ts +++ b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-NTSS03.ts @@ -6,7 +6,7 @@ import type { TInventoryEntryDraftBuilder } from '../../../types'; import * as InventoryEntryDraft from '../../index'; const nalaTwoSeaterSofa03Preset = - ProductVariantDraft.presets.sampleDataGoodStore + ProductVariantDraft.presets.sampleDataB2CLifestyle .nalaTwoSeaterSofa03() .build(); diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-NTSS05.spec.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-NTSS05.spec.ts similarity index 100% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-NTSS05.spec.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-NTSS05.spec.ts diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-NTSS05.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-NTSS05.ts similarity index 90% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-NTSS05.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-NTSS05.ts index d87b0af65..206660d13 100644 --- a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-NTSS05.ts +++ b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-NTSS05.ts @@ -6,7 +6,7 @@ import type { TInventoryEntryDraftBuilder } from '../../../types'; import * as InventoryEntryDraft from '../../index'; const nalaTwoSeaterSofa05Preset = - ProductVariantDraft.presets.sampleDataGoodStore + ProductVariantDraft.presets.sampleDataB2CLifestyle .nalaTwoSeaterSofa05() .build(); diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-NTSS06.spec.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-NTSS06.spec.ts similarity index 100% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-NTSS06.spec.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-NTSS06.spec.ts diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-NTSS06.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-NTSS06.ts similarity index 90% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-NTSS06.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-NTSS06.ts index c10364fbf..bbfa9d11a 100644 --- a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-NTSS06.ts +++ b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-NTSS06.ts @@ -6,7 +6,7 @@ import type { TInventoryEntryDraftBuilder } from '../../../types'; import * as InventoryEntryDraft from '../../index'; const nalaTwoSeaterSofa06Preset = - ProductVariantDraft.presets.sampleDataGoodStore + ProductVariantDraft.presets.sampleDataB2CLifestyle .nalaTwoSeaterSofa06() .build(); diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-NTSS07.spec.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-NTSS07.spec.ts similarity index 100% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-NTSS07.spec.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-NTSS07.spec.ts diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-NTSS07.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-NTSS07.ts similarity index 90% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-NTSS07.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-NTSS07.ts index 41ea8f43e..f864676f9 100644 --- a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-NTSS07.ts +++ b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-NTSS07.ts @@ -6,7 +6,7 @@ import type { TInventoryEntryDraftBuilder } from '../../../types'; import * as InventoryEntryDraft from '../../index'; const nalaTwoSeaterSofa07Preset = - ProductVariantDraft.presets.sampleDataGoodStore + ProductVariantDraft.presets.sampleDataB2CLifestyle .nalaTwoSeaterSofa07() .build(); diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-NTTS04.spec.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-NTTS04.spec.ts similarity index 100% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-NTTS04.spec.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-NTTS04.spec.ts diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-NTTS04.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-NTTS04.ts similarity index 90% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-NTTS04.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-NTTS04.ts index 4181a7966..369ebff92 100644 --- a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-NTTS04.ts +++ b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-NTTS04.ts @@ -6,7 +6,7 @@ import type { TInventoryEntryDraftBuilder } from '../../../types'; import * as InventoryEntryDraft from '../../index'; const nalaTwoSeaterSofa04Preset = - ProductVariantDraft.presets.sampleDataGoodStore + ProductVariantDraft.presets.sampleDataB2CLifestyle .nalaTwoSeaterSofa04() .build(); diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-OTB07.spec.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-OTB07.spec.ts similarity index 100% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-OTB07.spec.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-OTB07.spec.ts diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-OTB07.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-OTB07.ts similarity index 74% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-OTB07.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-OTB07.ts index 7226c5c41..f5e360d79 100644 --- a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-OTB07.ts +++ b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-OTB07.ts @@ -5,9 +5,10 @@ import { import type { TInventoryEntryDraftBuilder } from '../../../types'; import * as InventoryEntryDraft from '../../index'; -const orionDoubleBed01Preset = ProductVariantDraft.presets.sampleDataGoodStore - .orionDoubleBed01() - .build(); +const orionDoubleBed01Preset = + ProductVariantDraft.presets.sampleDataB2CLifestyle + .orionDoubleBed01() + .build(); const skuOTB07 = (): TInventoryEntryDraftBuilder => InventoryEntryDraft.presets diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-PAP01.spec.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-PAP01.spec.ts similarity index 100% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-PAP01.spec.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-PAP01.spec.ts diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-PAP01.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-PAP01.ts similarity index 90% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-PAP01.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-PAP01.ts index 3565d6ec6..8972fff81 100644 --- a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-PAP01.ts +++ b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-PAP01.ts @@ -6,7 +6,7 @@ import type { TInventoryEntryDraftBuilder } from '../../../types'; import * as InventoryEntryDraft from '../../index'; const pinkAbstractPainting01Preset = - ProductVariantDraft.presets.sampleDataGoodStore + ProductVariantDraft.presets.sampleDataB2CLifestyle .pinkAbstractPainting01() .build(); diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-PMAP01.spec.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-PMAP01.spec.ts similarity index 100% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-PMAP01.spec.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-PMAP01.spec.ts diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-PMAP01.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-PMAP01.ts similarity index 87% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-PMAP01.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-PMAP01.ts index e14b5d6a9..c6030373c 100644 --- a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-PMAP01.ts +++ b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-PMAP01.ts @@ -8,11 +8,11 @@ import type { TInventoryEntryDraftBuilder } from '../../../types'; import * as InventoryEntryDraft from '../../index'; const purpleMinimalistAbstractPainting01Preset = - ProductVariantDraft.presets.sampleDataGoodStore + ProductVariantDraft.presets.sampleDataB2CLifestyle .purpleMinimalistAbstractPainting01() .build(); -const inventoryChannel = ChannelDraft.presets.sampleDataGoodStore +const inventoryChannel = ChannelDraft.presets.sampleDataB2CLifestyle .inventoryChannel() .build(); diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-RB01.spec.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-RB01.spec.ts similarity index 100% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-RB01.spec.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-RB01.spec.ts diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-RB01.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-RB01.ts similarity index 90% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-RB01.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-RB01.ts index 85a89102c..c89d7aea6 100644 --- a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-RB01.ts +++ b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-RB01.ts @@ -7,11 +7,11 @@ import { import type { TInventoryEntryDraftBuilder } from '../../../types'; import * as InventoryEntryDraft from '../../index'; -const rusticBowl01Preset = ProductVariantDraft.presets.sampleDataGoodStore +const rusticBowl01Preset = ProductVariantDraft.presets.sampleDataB2CLifestyle .rusticBowl01() .build(); -const inventoryChannel = ChannelDraft.presets.sampleDataGoodStore +const inventoryChannel = ChannelDraft.presets.sampleDataB2CLifestyle .inventoryChannel() .build(); diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-RB093.spec.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-RB093.spec.ts similarity index 100% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-RB093.spec.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-RB093.spec.ts diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-RB093.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-RB093.ts similarity index 97% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-RB093.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-RB093.ts index 8e33fbf05..518c9f3cf 100644 --- a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-RB093.ts +++ b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-RB093.ts @@ -5,7 +5,7 @@ import { import type { TInventoryEntryDraftBuilder } from '../../../types'; import * as InventoryEntryDraft from '../../index'; -const ravenBowl01Preset = ProductVariantDraft.presets.sampleDataGoodStore +const ravenBowl01Preset = ProductVariantDraft.presets.sampleDataB2CLifestyle .ravenBowl01() .build(); diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-RCC09.spec.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-RCC09.spec.ts similarity index 100% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-RCC09.spec.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-RCC09.spec.ts diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-RCC09.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-RCC09.ts similarity index 90% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-RCC09.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-RCC09.ts index 76e81574f..a4c6af88c 100644 --- a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-RCC09.ts +++ b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-RCC09.ts @@ -6,7 +6,7 @@ import type { TInventoryEntryDraftBuilder } from '../../../types'; import * as InventoryEntryDraft from '../../index'; const rusticOvenCasserole01Preset = - ProductVariantDraft.presets.sampleDataGoodStore + ProductVariantDraft.presets.sampleDataB2CLifestyle .rusticOvenCasserole01() .build(); diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-RCD01.spec.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-RCD01.spec.ts similarity index 100% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-RCD01.spec.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-RCD01.spec.ts diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-RCD01.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-RCD01.ts similarity index 90% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-RCD01.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-RCD01.ts index 88755cc73..21dbe7f28 100644 --- a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-RCD01.ts +++ b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-RCD01.ts @@ -6,7 +6,7 @@ import type { TInventoryEntryDraftBuilder } from '../../../types'; import * as InventoryEntryDraft from '../../index'; const rusticCountryDresser01Preset = - ProductVariantDraft.presets.sampleDataGoodStore + ProductVariantDraft.presets.sampleDataB2CLifestyle .rusticCountryDresser01() .build(); diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-RCQB01.spec.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-RCQB01.spec.ts similarity index 100% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-RCQB01.spec.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-RCQB01.spec.ts diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-RCQB01.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-RCQB01.ts similarity index 90% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-RCQB01.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-RCQB01.ts index 9af5671c8..398646c61 100644 --- a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-RCQB01.ts +++ b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-RCQB01.ts @@ -6,7 +6,7 @@ import type { TInventoryEntryDraftBuilder } from '../../../types'; import * as InventoryEntryDraft from '../../index'; const rusticCountryQueenBed01Preset = - ProductVariantDraft.presets.sampleDataGoodStore + ProductVariantDraft.presets.sampleDataB2CLifestyle .rusticCountryQueenBed01() .build(); diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-RLC08.spec.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-RLC08.spec.ts similarity index 100% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-RLC08.spec.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-RLC08.spec.ts diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-RLC08.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-RLC08.ts similarity index 90% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-RLC08.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-RLC08.ts index 49f42ff90..6e7d2a785 100644 --- a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-RLC08.ts +++ b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-RLC08.ts @@ -6,7 +6,7 @@ import type { TInventoryEntryDraftBuilder } from '../../../types'; import * as InventoryEntryDraft from '../../index'; const rattanLoungeChair01Preset = - ProductVariantDraft.presets.sampleDataGoodStore + ProductVariantDraft.presets.sampleDataB2CLifestyle .rattanLoungeChair01() .build(); diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-RMP01.spec.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-RMP01.spec.ts similarity index 100% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-RMP01.spec.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-RMP01.spec.ts diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-RMP01.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-RMP01.ts similarity index 90% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-RMP01.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-RMP01.ts index eb972e070..fcc21eb22 100644 --- a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-RMP01.ts +++ b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-RMP01.ts @@ -6,7 +6,7 @@ import type { TInventoryEntryDraftBuilder } from '../../../types'; import * as InventoryEntryDraft from '../../index'; const redModernPainting01Preset = - ProductVariantDraft.presets.sampleDataGoodStore + ProductVariantDraft.presets.sampleDataB2CLifestyle .redModernPainting01() .build(); diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-RST01.spec.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-RST01.spec.ts similarity index 100% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-RST01.spec.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-RST01.spec.ts diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-RST01.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-RST01.ts similarity index 73% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-RST01.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-RST01.ts index 1edd1352f..45deac567 100644 --- a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-RST01.ts +++ b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-RST01.ts @@ -5,9 +5,10 @@ import { import type { TInventoryEntryDraftBuilder } from '../../../types'; import * as InventoryEntryDraft from '../../index'; -const roundServingTray01Preset = ProductVariantDraft.presets.sampleDataGoodStore - .roundServingTray01() - .build(); +const roundServingTray01Preset = + ProductVariantDraft.presets.sampleDataB2CLifestyle + .roundServingTray01() + .build(); const skuRST01 = (): TInventoryEntryDraftBuilder => InventoryEntryDraft.presets diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-RST02.spec.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-RST02.spec.ts similarity index 100% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-RST02.spec.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-RST02.spec.ts diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-RST02.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-RST02.ts similarity index 90% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-RST02.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-RST02.ts index 2f241dc9c..42dcb0673 100644 --- a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-RST02.ts +++ b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-RST02.ts @@ -6,7 +6,7 @@ import type { TInventoryEntryDraftBuilder } from '../../../types'; import * as InventoryEntryDraft from '../../index'; const rectangleServingTray01Preset = - ProductVariantDraft.presets.sampleDataGoodStore + ProductVariantDraft.presets.sampleDataB2CLifestyle .rectangleServingTray01() .build(); diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-RWG09.spec.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-RWG09.spec.ts similarity index 100% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-RWG09.spec.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-RWG09.spec.ts diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-RWG09.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-RWG09.ts similarity index 73% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-RWG09.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-RWG09.ts index 2f72f34f2..f742e4002 100644 --- a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-RWG09.ts +++ b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-RWG09.ts @@ -5,9 +5,10 @@ import { import type { TInventoryEntryDraftBuilder } from '../../../types'; import * as InventoryEntryDraft from '../../index'; -const ryeWhiskeyGlass01Preset = ProductVariantDraft.presets.sampleDataGoodStore - .ryeWhiskeyGlass01() - .build(); +const ryeWhiskeyGlass01Preset = + ProductVariantDraft.presets.sampleDataB2CLifestyle + .ryeWhiskeyGlass01() + .build(); const skuRWG09 = (): TInventoryEntryDraftBuilder => InventoryEntryDraft.presets diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-SARM09.spec.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-SARM09.spec.ts similarity index 100% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-SARM09.spec.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-SARM09.spec.ts diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-SARM09.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-SARM09.ts similarity index 96% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-SARM09.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-SARM09.ts index ae213a45d..00b842c22 100644 --- a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-SARM09.ts +++ b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-SARM09.ts @@ -5,7 +5,7 @@ import { import type { TInventoryEntryDraftBuilder } from '../../../types'; import * as InventoryEntryDraft from '../../index'; -const slateArmchair01Preset = ProductVariantDraft.presets.sampleDataGoodStore +const slateArmchair01Preset = ProductVariantDraft.presets.sampleDataB2CLifestyle .slateArmchair01() .build(); diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-SARMO034.spec.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-SARMO034.spec.ts similarity index 100% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-SARMO034.spec.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-SARMO034.spec.ts diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-SARMO034.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-SARMO034.ts similarity index 96% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-SARMO034.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-SARMO034.ts index c0f504b2d..3d2104d23 100644 --- a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-SARMO034.ts +++ b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-SARMO034.ts @@ -5,7 +5,7 @@ import { import type { TInventoryEntryDraftBuilder } from '../../../types'; import * as InventoryEntryDraft from '../../index'; -const sallyArmchair01Preset = ProductVariantDraft.presets.sampleDataGoodStore +const sallyArmchair01Preset = ProductVariantDraft.presets.sampleDataB2CLifestyle .sallyArmchair01() .build(); diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-SBG09.spec.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-SBG09.spec.ts similarity index 100% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-SBG09.spec.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-SBG09.spec.ts diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-SBG09.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-SBG09.ts similarity index 74% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-SBG09.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-SBG09.ts index 94b1c6749..244a76afd 100644 --- a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-SBG09.ts +++ b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-SBG09.ts @@ -5,9 +5,10 @@ import { import type { TInventoryEntryDraftBuilder } from '../../../types'; import * as InventoryEntryDraft from '../../index'; -const stoutBeerGlass01Preset = ProductVariantDraft.presets.sampleDataGoodStore - .stoutBeerGlass01() - .build(); +const stoutBeerGlass01Preset = + ProductVariantDraft.presets.sampleDataB2CLifestyle + .stoutBeerGlass01() + .build(); const skuSBG09 = (): TInventoryEntryDraftBuilder => InventoryEntryDraft.presets diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-SCG09.spec.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-SCG09.spec.ts similarity index 100% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-SCG09.spec.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-SCG09.spec.ts diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-SCG09.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-SCG09.ts similarity index 90% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-SCG09.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-SCG09.ts index 94803163f..bde084c2c 100644 --- a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-SCG09.ts +++ b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-SCG09.ts @@ -6,7 +6,7 @@ import type { TInventoryEntryDraftBuilder } from '../../../types'; import * as InventoryEntryDraft from '../../index'; const sparkleChampagneGlass01Preset = - ProductVariantDraft.presets.sampleDataGoodStore + ProductVariantDraft.presets.sampleDataB2CLifestyle .sparkleChampagneGlass01() .build(); diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-SCM02.spec.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-SCM02.spec.ts similarity index 100% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-SCM02.spec.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-SCM02.spec.ts diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-SCM02.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-SCM02.ts similarity index 73% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-SCM02.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-SCM02.ts index cefb62590..c86a23bed 100644 --- a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-SCM02.ts +++ b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-SCM02.ts @@ -5,9 +5,10 @@ import { import type { TInventoryEntryDraftBuilder } from '../../../types'; import * as InventoryEntryDraft from '../../index'; -const sipperCoffeeMug01Preset = ProductVariantDraft.presets.sampleDataGoodStore - .sipperCoffeeMug01() - .build(); +const sipperCoffeeMug01Preset = + ProductVariantDraft.presets.sampleDataB2CLifestyle + .sipperCoffeeMug01() + .build(); const skuSCM02 = (): TInventoryEntryDraftBuilder => InventoryEntryDraft.presets diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-SGB01.spec.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-SGB01.spec.ts similarity index 100% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-SGB01.spec.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-SGB01.spec.ts diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-SGB01.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-SGB01.ts similarity index 73% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-SGB01.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-SGB01.ts index b3c5d37e2..1dbb62288 100644 --- a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-SGB01.ts +++ b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-SGB01.ts @@ -5,9 +5,10 @@ import { import type { TInventoryEntryDraftBuilder } from '../../../types'; import * as InventoryEntryDraft from '../../index'; -const sunnaiGlassBowl01Preset = ProductVariantDraft.presets.sampleDataGoodStore - .sunnaiGlassBowl01() - .build(); +const sunnaiGlassBowl01Preset = + ProductVariantDraft.presets.sampleDataB2CLifestyle + .sunnaiGlassBowl01() + .build(); const skuSGB01 = (): TInventoryEntryDraftBuilder => InventoryEntryDraft.presets diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-SGB02.spec.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-SGB02.spec.ts similarity index 100% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-SGB02.spec.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-SGB02.spec.ts diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-SGB02.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-SGB02.ts similarity index 73% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-SGB02.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-SGB02.ts index 65e18a960..803b797a2 100644 --- a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-SGB02.ts +++ b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-SGB02.ts @@ -5,9 +5,10 @@ import { import type { TInventoryEntryDraftBuilder } from '../../../types'; import * as InventoryEntryDraft from '../../index'; -const sunnaiGlassBowl02Preset = ProductVariantDraft.presets.sampleDataGoodStore - .sunnaiGlassBowl02() - .build(); +const sunnaiGlassBowl02Preset = + ProductVariantDraft.presets.sampleDataB2CLifestyle + .sunnaiGlassBowl02() + .build(); const skuSGB02 = (): TInventoryEntryDraftBuilder => InventoryEntryDraft.presets diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-SHOT095.spec.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-SHOT095.spec.ts similarity index 100% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-SHOT095.spec.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-SHOT095.spec.ts diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-SHOT095.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-SHOT095.ts similarity index 90% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-SHOT095.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-SHOT095.ts index dbf18e91d..d20d36bbf 100644 --- a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-SHOT095.ts +++ b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-SHOT095.ts @@ -6,7 +6,7 @@ import type { TInventoryEntryDraftBuilder } from '../../../types'; import * as InventoryEntryDraft from '../../index'; const doubleSidedShotGlass01Preset = - ProductVariantDraft.presets.sampleDataGoodStore + ProductVariantDraft.presets.sampleDataB2CLifestyle .doubleSidedShotGlass01() .build(); diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-SPC01.spec.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-SPC01.spec.ts similarity index 100% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-SPC01.spec.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-SPC01.spec.ts diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-SPC01.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-SPC01.ts similarity index 74% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-SPC01.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-SPC01.ts index ede824cac..5f0b195de 100644 --- a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-SPC01.ts +++ b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-SPC01.ts @@ -5,9 +5,10 @@ import { import type { TInventoryEntryDraftBuilder } from '../../../types'; import * as InventoryEntryDraft from '../../index'; -const sweatPeaCandle01Preset = ProductVariantDraft.presets.sampleDataGoodStore - .sweetPeaCandle01() - .build(); +const sweatPeaCandle01Preset = + ProductVariantDraft.presets.sampleDataB2CLifestyle + .sweetPeaCandle01() + .build(); const skuSPC01 = (): TInventoryEntryDraftBuilder => InventoryEntryDraft.presets diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-SPC06.spec.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-SPC06.spec.ts similarity index 100% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-SPC06.spec.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-SPC06.spec.ts diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-SPC06.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-SPC06.ts similarity index 73% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-SPC06.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-SPC06.ts index cbd0cf7ab..8286b30bf 100644 --- a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-SPC06.ts +++ b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-SPC06.ts @@ -5,9 +5,10 @@ import { import type { TInventoryEntryDraftBuilder } from '../../../types'; import * as InventoryEntryDraft from '../../index'; -const silkyPillowCover01Preset = ProductVariantDraft.presets.sampleDataGoodStore - .silkyPillowCover01() - .build(); +const silkyPillowCover01Preset = + ProductVariantDraft.presets.sampleDataB2CLifestyle + .silkyPillowCover01() + .build(); const skuSPC06 = (): TInventoryEntryDraftBuilder => InventoryEntryDraft.presets diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-SPOO094.spec.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-SPOO094.spec.ts similarity index 100% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-SPOO094.spec.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-SPOO094.spec.ts diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-SPOO094.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-SPOO094.ts similarity index 90% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-SPOO094.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-SPOO094.ts index 392d47786..c49130a1e 100644 --- a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-SPOO094.ts +++ b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-SPOO094.ts @@ -6,7 +6,7 @@ import type { TInventoryEntryDraftBuilder } from '../../../types'; import * as InventoryEntryDraft from '../../index'; const cocktailStirringSpoon01Preset = - ProductVariantDraft.presets.sampleDataGoodStore + ProductVariantDraft.presets.sampleDataB2CLifestyle .cocktailStirringSpoon01() .build(); diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-SQB034.spec.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-SQB034.spec.ts similarity index 100% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-SQB034.spec.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-SQB034.spec.ts diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-SQB034.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-SQB034.ts similarity index 96% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-SQB034.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-SQB034.ts index f8e7dab3e..c1f4cad2f 100644 --- a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-SQB034.ts +++ b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-SQB034.ts @@ -5,7 +5,7 @@ import { import type { TInventoryEntryDraftBuilder } from '../../../types'; import * as InventoryEntryDraft from '../../index'; -const ecruDoubleBed01Preset = ProductVariantDraft.presets.sampleDataGoodStore +const ecruDoubleBed01Preset = ProductVariantDraft.presets.sampleDataB2CLifestyle .ecruDoubleBed01() .build(); diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-SST02.spec.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-SST02.spec.ts similarity index 100% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-SST02.spec.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-SST02.spec.ts diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-SST02.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-SST02.ts similarity index 73% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-SST02.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-SST02.ts index 6a0b35da6..54e5c1f2b 100644 --- a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-SST02.ts +++ b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-SST02.ts @@ -5,9 +5,10 @@ import { import type { TInventoryEntryDraftBuilder } from '../../../types'; import * as InventoryEntryDraft from '../../index'; -const stoneServingTray01Preset = ProductVariantDraft.presets.sampleDataGoodStore - .stoneServingTray01() - .build(); +const stoneServingTray01Preset = + ProductVariantDraft.presets.sampleDataB2CLifestyle + .stoneServingTray01() + .build(); const skuSST02 = (): TInventoryEntryDraftBuilder => InventoryEntryDraft.presets diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-STM09.spec.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-STM09.spec.ts similarity index 100% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-STM09.spec.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-STM09.spec.ts diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-STM09.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-STM09.ts similarity index 97% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-STM09.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-STM09.ts index e11e539cb..37dc71af6 100644 --- a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-STM09.ts +++ b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-STM09.ts @@ -5,7 +5,7 @@ import { import type { TInventoryEntryDraftBuilder } from '../../../types'; import * as InventoryEntryDraft from '../../index'; -const sandTeaCup01Preset = ProductVariantDraft.presets.sampleDataGoodStore +const sandTeaCup01Preset = ProductVariantDraft.presets.sampleDataB2CLifestyle .sandTeaCup01() .build(); diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-STRA095.spec.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-STRA095.spec.ts similarity index 100% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-STRA095.spec.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-STRA095.spec.ts diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-STRA095.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-STRA095.ts similarity index 76% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-STRA095.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-STRA095.ts index cd85b68aa..6f530e214 100644 --- a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-STRA095.ts +++ b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-STRA095.ts @@ -7,11 +7,12 @@ import { import type { TInventoryEntryDraftBuilder } from '../../../types'; import * as InventoryEntryDraft from '../../index'; -const cocktailStrainer01Preset = ProductVariantDraft.presets.sampleDataGoodStore - .cocktailStrainer01() - .build(); +const cocktailStrainer01Preset = + ProductVariantDraft.presets.sampleDataB2CLifestyle + .cocktailStrainer01() + .build(); -const inventoryChannel = ChannelDraft.presets.sampleDataGoodStore +const inventoryChannel = ChannelDraft.presets.sampleDataB2CLifestyle .inventoryChannel() .build(); diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-SWB01.spec.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-SWB01.spec.ts similarity index 100% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-SWB01.spec.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-SWB01.spec.ts diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-SWB01.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-SWB01.ts similarity index 76% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-SWB01.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-SWB01.ts index bbe619714..326bc2342 100644 --- a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-SWB01.ts +++ b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-SWB01.ts @@ -7,11 +7,12 @@ import { import type { TInventoryEntryDraftBuilder } from '../../../types'; import * as InventoryEntryDraft from '../../index'; -const smallWoodenBowl01Preset = ProductVariantDraft.presets.sampleDataGoodStore - .smallWoodenBowl01() - .build(); +const smallWoodenBowl01Preset = + ProductVariantDraft.presets.sampleDataB2CLifestyle + .smallWoodenBowl01() + .build(); -const inventoryChannel = ChannelDraft.presets.sampleDataGoodStore +const inventoryChannel = ChannelDraft.presets.sampleDataB2CLifestyle .inventoryChannel() .build(); diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-TARM03.spec.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-TARM03.spec.ts similarity index 100% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-TARM03.spec.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-TARM03.spec.ts diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-TARM03.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-TARM03.ts similarity index 90% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-TARM03.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-TARM03.ts index 8093ea0cd..642e9c44e 100644 --- a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-TARM03.ts +++ b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-TARM03.ts @@ -6,7 +6,7 @@ import type { TInventoryEntryDraftBuilder } from '../../../types'; import * as InventoryEntryDraft from '../../index'; const turnerVelvetArmchair01Preset = - ProductVariantDraft.presets.sampleDataGoodStore + ProductVariantDraft.presets.sampleDataB2CLifestyle .turnerVelvetArmchair01() .build(); diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-TARM034.spec.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-TARM034.spec.ts similarity index 100% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-TARM034.spec.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-TARM034.spec.ts diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-TARM034.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-TARM034.ts similarity index 90% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-TARM034.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-TARM034.ts index 588487c7a..9212b1c49 100644 --- a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-TARM034.ts +++ b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-TARM034.ts @@ -6,7 +6,7 @@ import type { TInventoryEntryDraftBuilder } from '../../../types'; import * as InventoryEntryDraft from '../../index'; const traditionalArmchair01Preset = - ProductVariantDraft.presets.sampleDataGoodStore + ProductVariantDraft.presets.sampleDataB2CLifestyle .traditionalArmchair01() .build(); diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-TCM03.spec.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-TCM03.spec.ts similarity index 100% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-TCM03.spec.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-TCM03.spec.ts diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-TCM03.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-TCM03.ts similarity index 73% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-TCM03.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-TCM03.ts index c75ca5a57..4fe5ffe00 100644 --- a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-TCM03.ts +++ b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-TCM03.ts @@ -5,9 +5,10 @@ import { import type { TInventoryEntryDraftBuilder } from '../../../types'; import * as InventoryEntryDraft from '../../index'; -const travelCoffeeMug01Preset = ProductVariantDraft.presets.sampleDataGoodStore - .travelCoffeeMug01() - .build(); +const travelCoffeeMug01Preset = + ProductVariantDraft.presets.sampleDataB2CLifestyle + .travelCoffeeMug01() + .build(); const skuTCM03 = (): TInventoryEntryDraftBuilder => InventoryEntryDraft.presets diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-TLSS01.spec.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-TLSS01.spec.ts similarity index 100% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-TLSS01.spec.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-TLSS01.spec.ts diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-TLSS01.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-TLSS01.ts similarity index 90% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-TLSS01.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-TLSS01.ts index 63740e68e..04668a8c8 100644 --- a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-TLSS01.ts +++ b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-TLSS01.ts @@ -6,7 +6,7 @@ import type { TInventoryEntryDraftBuilder } from '../../../types'; import * as InventoryEntryDraft from '../../index'; const traditionalLSeaterSofa01Preset = - ProductVariantDraft.presets.sampleDataGoodStore + ProductVariantDraft.presets.sampleDataB2CLifestyle .traditionalLSeaterSofa01() .build(); diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-TST02.spec.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-TST02.spec.ts similarity index 100% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-TST02.spec.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-TST02.spec.ts diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-TST02.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-TST02.ts similarity index 90% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-TST02.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-TST02.ts index 6aecb8576..6e93b73b9 100644 --- a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-TST02.ts +++ b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-TST02.ts @@ -6,7 +6,7 @@ import type { TInventoryEntryDraftBuilder } from '../../../types'; import * as InventoryEntryDraft from '../../index'; const teakServingPlatter01Preset = - ProductVariantDraft.presets.sampleDataGoodStore + ProductVariantDraft.presets.sampleDataB2CLifestyle .teakServingPlatter01() .build(); diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-TTSS01.spec.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-TTSS01.spec.ts similarity index 100% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-TTSS01.spec.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-TTSS01.spec.ts diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-TTSS01.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-TTSS01.ts similarity index 87% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-TTSS01.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-TTSS01.ts index e2366b40d..6ba8b205a 100644 --- a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-TTSS01.ts +++ b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-TTSS01.ts @@ -8,11 +8,11 @@ import type { TInventoryEntryDraftBuilder } from '../../../types'; import * as InventoryEntryDraft from '../../index'; const traditionalThreeSeaterSofa01Preset = - ProductVariantDraft.presets.sampleDataGoodStore + ProductVariantDraft.presets.sampleDataB2CLifestyle .traditionalThreeSeaterSofa01() .build(); -const inventoryChannel = ChannelDraft.presets.sampleDataGoodStore +const inventoryChannel = ChannelDraft.presets.sampleDataB2CLifestyle .inventoryChannel() .build(); diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-VARM09.spec.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-VARM09.spec.ts similarity index 100% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-VARM09.spec.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-VARM09.spec.ts diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-VARM09.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-VARM09.ts similarity index 90% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-VARM09.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-VARM09.ts index 6deee0648..889a1a464 100644 --- a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-VARM09.ts +++ b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-VARM09.ts @@ -6,7 +6,7 @@ import type { TInventoryEntryDraftBuilder } from '../../../types'; import * as InventoryEntryDraft from '../../index'; const emeraldVelvetChair01Preset = - ProductVariantDraft.presets.sampleDataGoodStore + ProductVariantDraft.presets.sampleDataB2CLifestyle .emeraldVelvetChair01() .build(); diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-VC01.spec.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-VC01.spec.ts similarity index 100% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-VC01.spec.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-VC01.spec.ts diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-VC01.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-VC01.ts similarity index 96% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-VC01.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-VC01.ts index 344528a5e..f180d8f74 100644 --- a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-VC01.ts +++ b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-VC01.ts @@ -5,7 +5,7 @@ import { import type { TInventoryEntryDraftBuilder } from '../../../types'; import * as InventoryEntryDraft from '../../index'; -const vanillaCandle01Preset = ProductVariantDraft.presets.sampleDataGoodStore +const vanillaCandle01Preset = ProductVariantDraft.presets.sampleDataB2CLifestyle .vanillaCandle01() .build(); diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-WCS09.spec.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-WCS09.spec.ts similarity index 100% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-WCS09.spec.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-WCS09.spec.ts diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-WCS09.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-WCS09.ts similarity index 96% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-WCS09.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-WCS09.ts index 223b9afb6..cbfbe4883 100644 --- a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-WCS09.ts +++ b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-WCS09.ts @@ -5,7 +5,7 @@ import { import type { TInventoryEntryDraftBuilder } from '../../../types'; import * as InventoryEntryDraft from '../../index'; -const walnutCabinet01Preset = ProductVariantDraft.presets.sampleDataGoodStore +const walnutCabinet01Preset = ProductVariantDraft.presets.sampleDataB2CLifestyle .walnutCabinet01() .build(); diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-WCSI09.spec.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-WCSI09.spec.ts similarity index 100% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-WCSI09.spec.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-WCSI09.spec.ts diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-WCSI09.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-WCSI09.ts similarity index 90% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-WCSI09.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-WCSI09.ts index d132c01dd..5f83c203a 100644 --- a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-WCSI09.ts +++ b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-WCSI09.ts @@ -6,7 +6,7 @@ import type { TInventoryEntryDraftBuilder } from '../../../types'; import * as InventoryEntryDraft from '../../index'; const walnutCounterStool01Preset = - ProductVariantDraft.presets.sampleDataGoodStore + ProductVariantDraft.presets.sampleDataB2CLifestyle .walnutCounterStool01() .build(); diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-WOP09.spec.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-WOP09.spec.ts similarity index 100% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-WOP09.spec.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-WOP09.spec.ts diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-WOP09.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-WOP09.ts similarity index 73% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-WOP09.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-WOP09.ts index 72c8d437a..3e80a4176 100644 --- a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-WOP09.ts +++ b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-WOP09.ts @@ -5,9 +5,10 @@ import { import type { TInventoryEntryDraftBuilder } from '../../../types'; import * as InventoryEntryDraft from '../../index'; -const wineBottleOpener01Preset = ProductVariantDraft.presets.sampleDataGoodStore - .wineBottleOpener01() - .build(); +const wineBottleOpener01Preset = + ProductVariantDraft.presets.sampleDataB2CLifestyle + .wineBottleOpener01() + .build(); const skuWOP09 = (): TInventoryEntryDraftBuilder => InventoryEntryDraft.presets diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-WTP09.spec.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-WTP09.spec.ts similarity index 100% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-WTP09.spec.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-WTP09.spec.ts diff --git a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-WTP09.ts b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-WTP09.ts similarity index 97% rename from models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-WTP09.ts rename to models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-WTP09.ts index bf018e8fb..0be81d91a 100644 --- a/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-goodstore/sku-WTP09.ts +++ b/models/inventory-entry/src/inventory-entry-draft/presets/sample-data-b2c-lifestyle/sku-WTP09.ts @@ -5,7 +5,7 @@ import { import type { TInventoryEntryDraftBuilder } from '../../../types'; import * as InventoryEntryDraft from '../../index'; -const willowTeapot01Preset = ProductVariantDraft.presets.sampleDataGoodStore +const willowTeapot01Preset = ProductVariantDraft.presets.sampleDataB2CLifestyle .willowTeapot01() .build(); diff --git a/models/order/src/order-from-cart-draft/presets/index.ts b/models/order/src/order-from-cart-draft/presets/index.ts index e3da0cb2b..e248369c8 100644 --- a/models/order/src/order-from-cart-draft/presets/index.ts +++ b/models/order/src/order-from-cart-draft/presets/index.ts @@ -1,13 +1,13 @@ import empty from './empty'; import sampleDataB2B from './sample-data-b2b'; +import sampleDataB2CLifestyle from './sample-data-b2c-lifestyle'; import sampleDataFashion from './sample-data-fashion'; -import sampleDataGoodStore from './sample-data-goodstore'; const presets = { empty, sampleDataB2B, + sampleDataB2CLifestyle, sampleDataFashion, - sampleDataGoodStore, }; export default presets; diff --git a/models/order/src/order-from-cart-draft/presets/sample-data-goodstore/index.ts b/models/order/src/order-from-cart-draft/presets/sample-data-b2c-lifestyle/index.ts similarity index 100% rename from models/order/src/order-from-cart-draft/presets/sample-data-goodstore/index.ts rename to models/order/src/order-from-cart-draft/presets/sample-data-b2c-lifestyle/index.ts diff --git a/models/order/src/order-from-cart-draft/presets/sample-data-goodstore/jennifer-jones-cart-01.spec.ts b/models/order/src/order-from-cart-draft/presets/sample-data-b2c-lifestyle/jennifer-jones-cart-01.spec.ts similarity index 100% rename from models/order/src/order-from-cart-draft/presets/sample-data-goodstore/jennifer-jones-cart-01.spec.ts rename to models/order/src/order-from-cart-draft/presets/sample-data-b2c-lifestyle/jennifer-jones-cart-01.spec.ts diff --git a/models/order/src/order-from-cart-draft/presets/sample-data-goodstore/jennifer-jones-cart-01.ts b/models/order/src/order-from-cart-draft/presets/sample-data-b2c-lifestyle/jennifer-jones-cart-01.ts similarity index 93% rename from models/order/src/order-from-cart-draft/presets/sample-data-goodstore/jennifer-jones-cart-01.ts rename to models/order/src/order-from-cart-draft/presets/sample-data-b2c-lifestyle/jennifer-jones-cart-01.ts index 72fa7ccca..5a3b5263f 100644 --- a/models/order/src/order-from-cart-draft/presets/sample-data-goodstore/jennifer-jones-cart-01.ts +++ b/models/order/src/order-from-cart-draft/presets/sample-data-b2c-lifestyle/jennifer-jones-cart-01.ts @@ -5,7 +5,7 @@ import { constants } from '../../../index'; import { TOrderFromCartDraftBuilder } from '../../../types'; import * as OrderFromCartDraft from '../../index'; -const cart = CartDraft.presets.sampleDataGoodStore +const cart = CartDraft.presets.sampleDataB2CLifestyle .jenniferJones01() .build(); diff --git a/models/order/src/order-from-cart-draft/presets/sample-data-goodstore/jennifer-schmidt-cart-01.spec.ts b/models/order/src/order-from-cart-draft/presets/sample-data-b2c-lifestyle/jennifer-schmidt-cart-01.spec.ts similarity index 100% rename from models/order/src/order-from-cart-draft/presets/sample-data-goodstore/jennifer-schmidt-cart-01.spec.ts rename to models/order/src/order-from-cart-draft/presets/sample-data-b2c-lifestyle/jennifer-schmidt-cart-01.spec.ts diff --git a/models/order/src/order-from-cart-draft/presets/sample-data-goodstore/jennifer-schmidt-cart-01.ts b/models/order/src/order-from-cart-draft/presets/sample-data-b2c-lifestyle/jennifer-schmidt-cart-01.ts similarity index 93% rename from models/order/src/order-from-cart-draft/presets/sample-data-goodstore/jennifer-schmidt-cart-01.ts rename to models/order/src/order-from-cart-draft/presets/sample-data-b2c-lifestyle/jennifer-schmidt-cart-01.ts index 257061118..ba49ad288 100644 --- a/models/order/src/order-from-cart-draft/presets/sample-data-goodstore/jennifer-schmidt-cart-01.ts +++ b/models/order/src/order-from-cart-draft/presets/sample-data-b2c-lifestyle/jennifer-schmidt-cart-01.ts @@ -5,7 +5,7 @@ import { constants } from '../../../index'; import { TOrderFromCartDraftBuilder } from '../../../types'; import * as OrderFromCartDraft from '../../index'; -const cart = CartDraft.presets.sampleDataGoodStore +const cart = CartDraft.presets.sampleDataB2CLifestyle .jenniferSchmidt01() .build(); diff --git a/models/order/src/order-from-cart-draft/presets/sample-data-goodstore/sebastian-franklin-cart-01.spec.ts b/models/order/src/order-from-cart-draft/presets/sample-data-b2c-lifestyle/sebastian-franklin-cart-01.spec.ts similarity index 100% rename from models/order/src/order-from-cart-draft/presets/sample-data-goodstore/sebastian-franklin-cart-01.spec.ts rename to models/order/src/order-from-cart-draft/presets/sample-data-b2c-lifestyle/sebastian-franklin-cart-01.spec.ts diff --git a/models/order/src/order-from-cart-draft/presets/sample-data-goodstore/sebastian-franklin-cart-01.ts b/models/order/src/order-from-cart-draft/presets/sample-data-b2c-lifestyle/sebastian-franklin-cart-01.ts similarity index 93% rename from models/order/src/order-from-cart-draft/presets/sample-data-goodstore/sebastian-franklin-cart-01.ts rename to models/order/src/order-from-cart-draft/presets/sample-data-b2c-lifestyle/sebastian-franklin-cart-01.ts index 5ecec32e3..26be81a9c 100644 --- a/models/order/src/order-from-cart-draft/presets/sample-data-goodstore/sebastian-franklin-cart-01.ts +++ b/models/order/src/order-from-cart-draft/presets/sample-data-b2c-lifestyle/sebastian-franklin-cart-01.ts @@ -5,7 +5,7 @@ import { constants } from '../../../index'; import { TOrderFromCartDraftBuilder } from '../../../types'; import * as OrderFromCartDraft from '../../index'; -const cart = CartDraft.presets.sampleDataGoodStore +const cart = CartDraft.presets.sampleDataB2CLifestyle .sebastianFranklin01() .build(); diff --git a/models/order/src/order-from-cart-draft/presets/sample-data-goodstore/sebastian-mueller-cart-01.spec.ts b/models/order/src/order-from-cart-draft/presets/sample-data-b2c-lifestyle/sebastian-mueller-cart-01.spec.ts similarity index 100% rename from models/order/src/order-from-cart-draft/presets/sample-data-goodstore/sebastian-mueller-cart-01.spec.ts rename to models/order/src/order-from-cart-draft/presets/sample-data-b2c-lifestyle/sebastian-mueller-cart-01.spec.ts diff --git a/models/order/src/order-from-cart-draft/presets/sample-data-goodstore/sebastian-mueller-cart-01.ts b/models/order/src/order-from-cart-draft/presets/sample-data-b2c-lifestyle/sebastian-mueller-cart-01.ts similarity index 93% rename from models/order/src/order-from-cart-draft/presets/sample-data-goodstore/sebastian-mueller-cart-01.ts rename to models/order/src/order-from-cart-draft/presets/sample-data-b2c-lifestyle/sebastian-mueller-cart-01.ts index bb1fcdc26..cbdc2907b 100644 --- a/models/order/src/order-from-cart-draft/presets/sample-data-goodstore/sebastian-mueller-cart-01.ts +++ b/models/order/src/order-from-cart-draft/presets/sample-data-b2c-lifestyle/sebastian-mueller-cart-01.ts @@ -5,7 +5,7 @@ import { constants } from '../../../index'; import { TOrderFromCartDraftBuilder } from '../../../types'; import * as OrderFromCartDraft from '../../index'; -const cart = CartDraft.presets.sampleDataGoodStore +const cart = CartDraft.presets.sampleDataB2CLifestyle .sebastianMueller01() .build(); diff --git a/models/order/src/order-from-cart-draft/presets/sample-data-goodstore/sebastian-smith-cart-01.spec.ts b/models/order/src/order-from-cart-draft/presets/sample-data-b2c-lifestyle/sebastian-smith-cart-01.spec.ts similarity index 100% rename from models/order/src/order-from-cart-draft/presets/sample-data-goodstore/sebastian-smith-cart-01.spec.ts rename to models/order/src/order-from-cart-draft/presets/sample-data-b2c-lifestyle/sebastian-smith-cart-01.spec.ts diff --git a/models/order/src/order-from-cart-draft/presets/sample-data-goodstore/sebastian-smith-cart-01.ts b/models/order/src/order-from-cart-draft/presets/sample-data-b2c-lifestyle/sebastian-smith-cart-01.ts similarity index 93% rename from models/order/src/order-from-cart-draft/presets/sample-data-goodstore/sebastian-smith-cart-01.ts rename to models/order/src/order-from-cart-draft/presets/sample-data-b2c-lifestyle/sebastian-smith-cart-01.ts index 53c7688a7..2c494d239 100644 --- a/models/order/src/order-from-cart-draft/presets/sample-data-goodstore/sebastian-smith-cart-01.ts +++ b/models/order/src/order-from-cart-draft/presets/sample-data-b2c-lifestyle/sebastian-smith-cart-01.ts @@ -5,7 +5,7 @@ import { constants } from '../../../index'; import { TOrderFromCartDraftBuilder } from '../../../types'; import * as OrderFromCartDraft from '../../index'; -const cart = CartDraft.presets.sampleDataGoodStore +const cart = CartDraft.presets.sampleDataB2CLifestyle .sebastianSmith01() .build(); diff --git a/models/payment/src/payment/payment-draft/presets/index.ts b/models/payment/src/payment/payment-draft/presets/index.ts index 525c7ef58..45a3396fe 100644 --- a/models/payment/src/payment/payment-draft/presets/index.ts +++ b/models/payment/src/payment/payment-draft/presets/index.ts @@ -1,15 +1,15 @@ import changeHistoryData from './change-history-data'; import empty from './empty'; import sampleDataB2B from './sample-data-b2b'; +import sampleDataB2CLifestyle from './sample-data-b2c-lifestyle'; import sampleDataFashion from './sample-data-fashion'; -import sampleDataGoodStore from './sample-data-goodstore'; const presets = { changeHistoryData, empty, sampleDataB2B, + sampleDataB2CLifestyle, sampleDataFashion, - sampleDataGoodStore, }; export default presets; diff --git a/models/payment/src/payment/payment-draft/presets/sample-data-goodstore/index.ts b/models/payment/src/payment/payment-draft/presets/sample-data-b2c-lifestyle/index.ts similarity index 100% rename from models/payment/src/payment/payment-draft/presets/sample-data-goodstore/index.ts rename to models/payment/src/payment/payment-draft/presets/sample-data-b2c-lifestyle/index.ts diff --git a/models/payment/src/payment/payment-draft/presets/sample-data-goodstore/jennifer-jones-payment.spec.ts b/models/payment/src/payment/payment-draft/presets/sample-data-b2c-lifestyle/jennifer-jones-payment.spec.ts similarity index 100% rename from models/payment/src/payment/payment-draft/presets/sample-data-goodstore/jennifer-jones-payment.spec.ts rename to models/payment/src/payment/payment-draft/presets/sample-data-b2c-lifestyle/jennifer-jones-payment.spec.ts diff --git a/models/payment/src/payment/payment-draft/presets/sample-data-goodstore/jennifer-jones-payment.ts b/models/payment/src/payment/payment-draft/presets/sample-data-b2c-lifestyle/jennifer-jones-payment.ts similarity index 95% rename from models/payment/src/payment/payment-draft/presets/sample-data-goodstore/jennifer-jones-payment.ts rename to models/payment/src/payment/payment-draft/presets/sample-data-b2c-lifestyle/jennifer-jones-payment.ts index a4870105f..73cd70781 100644 --- a/models/payment/src/payment/payment-draft/presets/sample-data-goodstore/jennifer-jones-payment.ts +++ b/models/payment/src/payment/payment-draft/presets/sample-data-b2c-lifestyle/jennifer-jones-payment.ts @@ -17,11 +17,11 @@ import { PaymentStatusDraft } from '../../../../payment-status'; import { TransactionDraft, constants } from '../../../../transaction'; import { TPaymentDraftBuilder } from '../../../types'; -const customerJenniferJones = CustomerDraft.presets.sampleDataGoodStore +const customerJenniferJones = CustomerDraft.presets.sampleDataB2CLifestyle .jenniferJones() .build(); -const orderJenniferJones = OrderFromCartDraft.presets.sampleDataGoodStore +const orderJenniferJones = OrderFromCartDraft.presets.sampleDataB2CLifestyle .jenniferJonesCart01(1) .build(); diff --git a/models/payment/src/payment/payment-draft/presets/sample-data-goodstore/sebastian-mueller-payment.spec.ts b/models/payment/src/payment/payment-draft/presets/sample-data-b2c-lifestyle/sebastian-mueller-payment.spec.ts similarity index 100% rename from models/payment/src/payment/payment-draft/presets/sample-data-goodstore/sebastian-mueller-payment.spec.ts rename to models/payment/src/payment/payment-draft/presets/sample-data-b2c-lifestyle/sebastian-mueller-payment.spec.ts diff --git a/models/payment/src/payment/payment-draft/presets/sample-data-goodstore/sebastian-mueller-payment.ts b/models/payment/src/payment/payment-draft/presets/sample-data-b2c-lifestyle/sebastian-mueller-payment.ts similarity index 98% rename from models/payment/src/payment/payment-draft/presets/sample-data-goodstore/sebastian-mueller-payment.ts rename to models/payment/src/payment/payment-draft/presets/sample-data-b2c-lifestyle/sebastian-mueller-payment.ts index 257040025..0624ace28 100644 --- a/models/payment/src/payment/payment-draft/presets/sample-data-goodstore/sebastian-mueller-payment.ts +++ b/models/payment/src/payment/payment-draft/presets/sample-data-b2c-lifestyle/sebastian-mueller-payment.ts @@ -17,11 +17,11 @@ import { PaymentStatusDraft } from '../../../../payment-status'; import { TransactionDraft, constants } from '../../../../transaction'; import { TPaymentDraftBuilder } from '../../../types'; -const customerSebastianMueller = CustomerDraft.presets.sampleDataGoodStore +const customerSebastianMueller = CustomerDraft.presets.sampleDataB2CLifestyle .sebastianMuller() .build(); -const orderSebastianMueller = OrderFromCartDraft.presets.sampleDataGoodStore +const orderSebastianMueller = OrderFromCartDraft.presets.sampleDataB2CLifestyle .sebastianMuellerCart01(1) .build(); diff --git a/models/product-discount/src/product-discount/product-discount-draft/presets/index.ts b/models/product-discount/src/product-discount/product-discount-draft/presets/index.ts index 525c7ef58..45a3396fe 100644 --- a/models/product-discount/src/product-discount/product-discount-draft/presets/index.ts +++ b/models/product-discount/src/product-discount/product-discount-draft/presets/index.ts @@ -1,15 +1,15 @@ import changeHistoryData from './change-history-data'; import empty from './empty'; import sampleDataB2B from './sample-data-b2b'; +import sampleDataB2CLifestyle from './sample-data-b2c-lifestyle'; import sampleDataFashion from './sample-data-fashion'; -import sampleDataGoodStore from './sample-data-goodstore'; const presets = { changeHistoryData, empty, sampleDataB2B, + sampleDataB2CLifestyle, sampleDataFashion, - sampleDataGoodStore, }; export default presets; diff --git a/models/product-discount/src/product-discount/product-discount-draft/presets/sample-data-goodstore/discount-armchairs.spec.ts b/models/product-discount/src/product-discount/product-discount-draft/presets/sample-data-b2c-lifestyle/discount-armchairs.spec.ts similarity index 100% rename from models/product-discount/src/product-discount/product-discount-draft/presets/sample-data-goodstore/discount-armchairs.spec.ts rename to models/product-discount/src/product-discount/product-discount-draft/presets/sample-data-b2c-lifestyle/discount-armchairs.spec.ts diff --git a/models/product-discount/src/product-discount/product-discount-draft/presets/sample-data-goodstore/discount-armchairs.ts b/models/product-discount/src/product-discount/product-discount-draft/presets/sample-data-b2c-lifestyle/discount-armchairs.ts similarity index 93% rename from models/product-discount/src/product-discount/product-discount-draft/presets/sample-data-goodstore/discount-armchairs.ts rename to models/product-discount/src/product-discount/product-discount-draft/presets/sample-data-b2c-lifestyle/discount-armchairs.ts index 1c9766419..396dee32c 100644 --- a/models/product-discount/src/product-discount/product-discount-draft/presets/sample-data-goodstore/discount-armchairs.ts +++ b/models/product-discount/src/product-discount/product-discount-draft/presets/sample-data-b2c-lifestyle/discount-armchairs.ts @@ -7,7 +7,7 @@ import { ProductDiscountValueRelativeDraft } from '../../../../index'; import type { TProductDiscountDraftBuilder } from '../../../types'; import * as ProductDiscountDraft from '../../index'; -const categoryTypeDraft = CategoryDraft.presets.sampleDataGoodStore +const categoryTypeDraft = CategoryDraft.presets.sampleDataB2CLifestyle .armchairs() .build(); diff --git a/models/product-discount/src/product-discount/product-discount-draft/presets/sample-data-goodstore/discount-bakeware.spec.ts b/models/product-discount/src/product-discount/product-discount-draft/presets/sample-data-b2c-lifestyle/discount-bakeware.spec.ts similarity index 100% rename from models/product-discount/src/product-discount/product-discount-draft/presets/sample-data-goodstore/discount-bakeware.spec.ts rename to models/product-discount/src/product-discount/product-discount-draft/presets/sample-data-b2c-lifestyle/discount-bakeware.spec.ts diff --git a/models/product-discount/src/product-discount/product-discount-draft/presets/sample-data-goodstore/discount-bakeware.ts b/models/product-discount/src/product-discount/product-discount-draft/presets/sample-data-b2c-lifestyle/discount-bakeware.ts similarity index 94% rename from models/product-discount/src/product-discount/product-discount-draft/presets/sample-data-goodstore/discount-bakeware.ts rename to models/product-discount/src/product-discount/product-discount-draft/presets/sample-data-b2c-lifestyle/discount-bakeware.ts index 1f349973d..300c9ff5e 100644 --- a/models/product-discount/src/product-discount/product-discount-draft/presets/sample-data-goodstore/discount-bakeware.ts +++ b/models/product-discount/src/product-discount/product-discount-draft/presets/sample-data-b2c-lifestyle/discount-bakeware.ts @@ -10,7 +10,7 @@ import { ProductDiscountValueAbsoluteDraft } from '../../../../index'; import type { TProductDiscountDraftBuilder } from '../../../types'; import * as ProductDiscountDraft from '../../index'; -const categoryTypeDraft = CategoryDraft.presets.sampleDataGoodStore +const categoryTypeDraft = CategoryDraft.presets.sampleDataB2CLifestyle .bakeware() .build(); diff --git a/models/product-discount/src/product-discount/product-discount-draft/presets/sample-data-goodstore/index.ts b/models/product-discount/src/product-discount/product-discount-draft/presets/sample-data-b2c-lifestyle/index.ts similarity index 100% rename from models/product-discount/src/product-discount/product-discount-draft/presets/sample-data-goodstore/index.ts rename to models/product-discount/src/product-discount/product-discount-draft/presets/sample-data-b2c-lifestyle/index.ts diff --git a/models/product-type/src/product-type/product-type-draft/presets/index.ts b/models/product-type/src/product-type/product-type-draft/presets/index.ts index 525c7ef58..45a3396fe 100644 --- a/models/product-type/src/product-type/product-type-draft/presets/index.ts +++ b/models/product-type/src/product-type/product-type-draft/presets/index.ts @@ -1,15 +1,15 @@ import changeHistoryData from './change-history-data'; import empty from './empty'; import sampleDataB2B from './sample-data-b2b'; +import sampleDataB2CLifestyle from './sample-data-b2c-lifestyle'; import sampleDataFashion from './sample-data-fashion'; -import sampleDataGoodStore from './sample-data-goodstore'; const presets = { changeHistoryData, empty, sampleDataB2B, + sampleDataB2CLifestyle, sampleDataFashion, - sampleDataGoodStore, }; export default presets; diff --git a/models/product-type/src/product-type/product-type-draft/presets/sample-data-goodstore/bedding-bundle.spec.ts b/models/product-type/src/product-type/product-type-draft/presets/sample-data-b2c-lifestyle/bedding-bundle.spec.ts similarity index 100% rename from models/product-type/src/product-type/product-type-draft/presets/sample-data-goodstore/bedding-bundle.spec.ts rename to models/product-type/src/product-type/product-type-draft/presets/sample-data-b2c-lifestyle/bedding-bundle.spec.ts diff --git a/models/product-type/src/product-type/product-type-draft/presets/sample-data-goodstore/bedding-bundle.ts b/models/product-type/src/product-type/product-type-draft/presets/sample-data-b2c-lifestyle/bedding-bundle.ts similarity index 100% rename from models/product-type/src/product-type/product-type-draft/presets/sample-data-goodstore/bedding-bundle.ts rename to models/product-type/src/product-type/product-type-draft/presets/sample-data-b2c-lifestyle/bedding-bundle.ts diff --git a/models/product-type/src/product-type/product-type-draft/presets/sample-data-goodstore/furniture-and-decor.spec.ts b/models/product-type/src/product-type/product-type-draft/presets/sample-data-b2c-lifestyle/furniture-and-decor.spec.ts similarity index 100% rename from models/product-type/src/product-type/product-type-draft/presets/sample-data-goodstore/furniture-and-decor.spec.ts rename to models/product-type/src/product-type/product-type-draft/presets/sample-data-b2c-lifestyle/furniture-and-decor.spec.ts diff --git a/models/product-type/src/product-type/product-type-draft/presets/sample-data-goodstore/furniture-and-decor.ts b/models/product-type/src/product-type/product-type-draft/presets/sample-data-b2c-lifestyle/furniture-and-decor.ts similarity index 100% rename from models/product-type/src/product-type/product-type-draft/presets/sample-data-goodstore/furniture-and-decor.ts rename to models/product-type/src/product-type/product-type-draft/presets/sample-data-b2c-lifestyle/furniture-and-decor.ts diff --git a/models/product-type/src/product-type/product-type-draft/presets/sample-data-goodstore/index.ts b/models/product-type/src/product-type/product-type-draft/presets/sample-data-b2c-lifestyle/index.ts similarity index 100% rename from models/product-type/src/product-type/product-type-draft/presets/sample-data-goodstore/index.ts rename to models/product-type/src/product-type/product-type-draft/presets/sample-data-b2c-lifestyle/index.ts diff --git a/models/product-type/src/product-type/product-type-draft/presets/sample-data-goodstore/product-sets.spec.ts b/models/product-type/src/product-type/product-type-draft/presets/sample-data-b2c-lifestyle/product-sets.spec.ts similarity index 100% rename from models/product-type/src/product-type/product-type-draft/presets/sample-data-goodstore/product-sets.spec.ts rename to models/product-type/src/product-type/product-type-draft/presets/sample-data-b2c-lifestyle/product-sets.spec.ts diff --git a/models/product-type/src/product-type/product-type-draft/presets/sample-data-goodstore/product-sets.ts b/models/product-type/src/product-type/product-type-draft/presets/sample-data-b2c-lifestyle/product-sets.ts similarity index 100% rename from models/product-type/src/product-type/product-type-draft/presets/sample-data-goodstore/product-sets.ts rename to models/product-type/src/product-type/product-type-draft/presets/sample-data-b2c-lifestyle/product-sets.ts diff --git a/models/product/src/product-variant/product-variant-draft/presets/index.ts b/models/product/src/product-variant/product-variant-draft/presets/index.ts index c1a356d1a..6b98ab460 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/index.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/index.ts @@ -1,7 +1,7 @@ import empty from './empty'; import sampleDataB2B from './sample-data-b2b'; +import sampleDataB2CLifestyle from './sample-data-b2c-lifestyle'; import sampleDataFashion from './sample-data-fashion'; -import sampleDataGoodStore from './sample-data-goodstore'; import withOneImage from './with-one-image'; import withPrices from './with-prices'; import withTwoImages from './with-two-images'; @@ -12,8 +12,8 @@ const presets = { withTwoImages, empty, sampleDataB2B, + sampleDataB2CLifestyle, sampleDataFashion, - sampleDataGoodStore, }; export default presets; diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/abigail-lounge-chair-01.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/abigail-lounge-chair-01.spec.ts similarity index 97% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/abigail-lounge-chair-01.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/abigail-lounge-chair-01.spec.ts index d3722a755..31a0e6f5b 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/abigail-lounge-chair-01.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/abigail-lounge-chair-01.spec.ts @@ -47,7 +47,7 @@ describe(`with abigailLoungeChair01 preset`, () => { "w": 5000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Abigail_Lounge_Chair-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Abigail_Lounge_Chair-1.1.jpeg", }, ], "key": undefined, @@ -133,7 +133,7 @@ describe(`with abigailLoungeChair01 preset`, () => { "width": 5000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Abigail_Lounge_Chair-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Abigail_Lounge_Chair-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/abigail-lounge-chair-01.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/abigail-lounge-chair-01.ts similarity index 94% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/abigail-lounge-chair-01.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/abigail-lounge-chair-01.ts index e8d4d2b09..ea575fae9 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/abigail-lounge-chair-01.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/abigail-lounge-chair-01.ts @@ -9,7 +9,7 @@ import { ImageDraft } from '../../../../image'; import type { TProductVariantDraftBuilder } from '../../../types'; import * as ProductVariantDraft from '../../index'; -const distributionChannel = ChannelDraft.presets.sampleDataGoodStore +const distributionChannel = ChannelDraft.presets.sampleDataB2CLifestyle .distributionChannel() .build(); @@ -38,7 +38,7 @@ const abigailLoungeChair01 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Abigail_Lounge_Chair-1.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Abigail_Lounge_Chair-1.1.jpeg' ) .dimensions({ w: 5000, h: 4000 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/amalia-rug-01.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/amalia-rug-01.spec.ts similarity index 97% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/amalia-rug-01.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/amalia-rug-01.spec.ts index 1de8da342..51bcb6818 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/amalia-rug-01.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/amalia-rug-01.spec.ts @@ -32,7 +32,7 @@ describe(`with amaliaRug01 preset`, () => { "w": 4500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Amalia_Rug-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Amalia_Rug-1.1.jpeg", }, ], "key": undefined, @@ -111,7 +111,7 @@ describe(`with amaliaRug01 preset`, () => { "width": 4500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Amalia_Rug-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Amalia_Rug-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/amalia-rug-01.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/amalia-rug-01.ts similarity index 96% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/amalia-rug-01.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/amalia-rug-01.ts index 2f135c6d5..50ef4335c 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/amalia-rug-01.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/amalia-rug-01.ts @@ -26,7 +26,7 @@ const amaliaRug01 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Amalia_Rug-1.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Amalia_Rug-1.1.jpeg' ) .dimensions({ w: 4500, h: 3000 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/aria-rug-01.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/aria-rug-01.spec.ts similarity index 92% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/aria-rug-01.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/aria-rug-01.spec.ts index 1211b765d..4b3970a5b 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/aria-rug-01.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/aria-rug-01.spec.ts @@ -35,7 +35,7 @@ describe(`with ariaRug01 preset`, () => { "w": 5200, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Aria_Rug-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Aria_Rug-1.1.jpeg", }, { "dimensions": { @@ -43,7 +43,7 @@ describe(`with ariaRug01 preset`, () => { "w": 5200, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Aria_Rug-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Aria_Rug-1.2.jpeg", }, { "dimensions": { @@ -51,7 +51,7 @@ describe(`with ariaRug01 preset`, () => { "w": 5200, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Aria_Rug-1.4.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Aria_Rug-1.4.jpeg", }, { "dimensions": { @@ -59,7 +59,7 @@ describe(`with ariaRug01 preset`, () => { "w": 5200, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Aria_Rug-1.3.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Aria_Rug-1.3.jpeg", }, ], "key": undefined, @@ -138,7 +138,7 @@ describe(`with ariaRug01 preset`, () => { "width": 5200, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Aria_Rug-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Aria_Rug-1.1.jpeg", }, { "dimensions": { @@ -146,7 +146,7 @@ describe(`with ariaRug01 preset`, () => { "width": 5200, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Aria_Rug-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Aria_Rug-1.2.jpeg", }, { "dimensions": { @@ -154,7 +154,7 @@ describe(`with ariaRug01 preset`, () => { "width": 5200, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Aria_Rug-1.4.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Aria_Rug-1.4.jpeg", }, { "dimensions": { @@ -162,7 +162,7 @@ describe(`with ariaRug01 preset`, () => { "width": 5200, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Aria_Rug-1.3.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Aria_Rug-1.3.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/aria-rug-01.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/aria-rug-01.ts similarity index 91% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/aria-rug-01.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/aria-rug-01.ts index 1a275ada9..974795815 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/aria-rug-01.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/aria-rug-01.ts @@ -26,25 +26,25 @@ const ariaRug01 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Aria_Rug-1.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Aria_Rug-1.1.jpeg' ) .dimensions({ w: 5200, h: 3900 }), ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Aria_Rug-1.2.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Aria_Rug-1.2.jpeg' ) .dimensions({ w: 5200, h: 3900 }), ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Aria_Rug-1.4.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Aria_Rug-1.4.jpeg' ) .dimensions({ w: 5200, h: 3900 }), ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Aria_Rug-1.3.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Aria_Rug-1.3.jpeg' ) .dimensions({ w: 5200, h: 3900 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/art-deco-chair-01.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/art-deco-chair-01.spec.ts similarity index 97% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/art-deco-chair-01.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/art-deco-chair-01.spec.ts index fd53ff344..8b1c9bbf0 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/art-deco-chair-01.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/art-deco-chair-01.spec.ts @@ -32,7 +32,7 @@ describe(`with artDecoChair01 preset`, () => { "w": 5500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Art_Deco_Chair-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Art_Deco_Chair-1.1.jpeg", }, ], "key": undefined, @@ -111,7 +111,7 @@ describe(`with artDecoChair01 preset`, () => { "width": 5500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Art_Deco_Chair-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Art_Deco_Chair-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/art-deco-chair-01.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/art-deco-chair-01.ts similarity index 96% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/art-deco-chair-01.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/art-deco-chair-01.ts index 6901addf4..78bbacae8 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/art-deco-chair-01.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/art-deco-chair-01.ts @@ -26,7 +26,7 @@ const artDecoChair01 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Art_Deco_Chair-1.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Art_Deco_Chair-1.1.jpeg' ) .dimensions({ w: 5500, h: 4400 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/art-deco-coffee-table-01.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/art-deco-coffee-table-01.spec.ts similarity index 95% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/art-deco-coffee-table-01.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/art-deco-coffee-table-01.spec.ts index 0aac87c0c..be5517942 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/art-deco-coffee-table-01.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/art-deco-coffee-table-01.spec.ts @@ -47,7 +47,7 @@ describe(`with artDecoCoffeeTable01 preset`, () => { "w": 2500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Art_Deco_Coffee_Table-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Art_Deco_Coffee_Table-1.1.jpeg", }, { "dimensions": { @@ -55,7 +55,7 @@ describe(`with artDecoCoffeeTable01 preset`, () => { "w": 5760, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Art_Deco_Coffee_Table-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Art_Deco_Coffee_Table-1.2.jpeg", }, ], "key": undefined, @@ -138,7 +138,7 @@ describe(`with artDecoCoffeeTable01 preset`, () => { "width": 2500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Art_Deco_Coffee_Table-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Art_Deco_Coffee_Table-1.1.jpeg", }, { "dimensions": { @@ -146,7 +146,7 @@ describe(`with artDecoCoffeeTable01 preset`, () => { "width": 5760, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Art_Deco_Coffee_Table-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Art_Deco_Coffee_Table-1.2.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/art-deco-coffee-table-01.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/art-deco-coffee-table-01.ts similarity index 94% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/art-deco-coffee-table-01.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/art-deco-coffee-table-01.ts index 1ed78a44c..563422705 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/art-deco-coffee-table-01.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/art-deco-coffee-table-01.ts @@ -26,13 +26,13 @@ const artDecoCoffeeTable01 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Art_Deco_Coffee_Table-1.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Art_Deco_Coffee_Table-1.1.jpeg' ) .dimensions({ w: 2500, h: 2500 }), ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Art_Deco_Coffee_Table-1.2.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Art_Deco_Coffee_Table-1.2.jpeg' ) .dimensions({ w: 5760, h: 3840 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/ashen-rug-01.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/ashen-rug-01.spec.ts similarity index 95% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/ashen-rug-01.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/ashen-rug-01.spec.ts index 8556c0e0e..72f480834 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/ashen-rug-01.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/ashen-rug-01.spec.ts @@ -35,7 +35,7 @@ describe(`with ashenRug01 preset`, () => { "w": 4500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Ashen_Rug-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Ashen_Rug-1.1.jpeg", }, { "dimensions": { @@ -43,7 +43,7 @@ describe(`with ashenRug01 preset`, () => { "w": 4500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Ashen_Rug-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Ashen_Rug-1.2.jpeg", }, ], "key": undefined, @@ -122,7 +122,7 @@ describe(`with ashenRug01 preset`, () => { "width": 4500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Ashen_Rug-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Ashen_Rug-1.1.jpeg", }, { "dimensions": { @@ -130,7 +130,7 @@ describe(`with ashenRug01 preset`, () => { "width": 4500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Ashen_Rug-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Ashen_Rug-1.2.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/ashen-rug-01.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/ashen-rug-01.ts similarity index 94% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/ashen-rug-01.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/ashen-rug-01.ts index edcd75431..6dc5d14df 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/ashen-rug-01.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/ashen-rug-01.ts @@ -26,13 +26,13 @@ const ashenRug01 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Ashen_Rug-1.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Ashen_Rug-1.1.jpeg' ) .dimensions({ w: 4500, h: 3000 }), ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Ashen_Rug-1.2.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Ashen_Rug-1.2.jpeg' ) .dimensions({ w: 4500, h: 3000 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/ben-pillow-cover-01.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/ben-pillow-cover-01.spec.ts similarity index 97% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/ben-pillow-cover-01.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/ben-pillow-cover-01.spec.ts index d7b931cfa..83ca2ee5f 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/ben-pillow-cover-01.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/ben-pillow-cover-01.spec.ts @@ -39,7 +39,7 @@ describe(`with benPillowCover01 preset`, () => { "w": 6240, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Ben_Pillow_Cover-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Ben_Pillow_Cover-1.1.jpeg", }, ], "key": undefined, @@ -118,7 +118,7 @@ describe(`with benPillowCover01 preset`, () => { "width": 6240, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Ben_Pillow_Cover-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Ben_Pillow_Cover-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/ben-pillow-cover-01.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/ben-pillow-cover-01.ts similarity index 96% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/ben-pillow-cover-01.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/ben-pillow-cover-01.ts index a29710fca..131fb6bb7 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/ben-pillow-cover-01.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/ben-pillow-cover-01.ts @@ -26,7 +26,7 @@ const benPillowCover01 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Ben_Pillow_Cover-1.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Ben_Pillow_Cover-1.1.jpeg' ) .dimensions({ w: 6240, h: 4160 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/braided-rug-01.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/braided-rug-01.spec.ts similarity index 93% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/braided-rug-01.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/braided-rug-01.spec.ts index 50bcab46d..fcbc0ed08 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/braided-rug-01.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/braided-rug-01.spec.ts @@ -24,7 +24,7 @@ describe(`with braidedRug preset`, () => { "w": 4924, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Braided_Rug-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Braided_Rug-1.1.jpeg", }, { "dimensions": { @@ -32,7 +32,7 @@ describe(`with braidedRug preset`, () => { "w": 5060, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Braided_Rug-1.3.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Braided_Rug-1.3.jpeg", }, { "dimensions": { @@ -40,7 +40,7 @@ describe(`with braidedRug preset`, () => { "w": 5527, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Braided_Rug-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Braided_Rug-1.2.jpeg", }, ], "key": undefined, @@ -115,7 +115,7 @@ describe(`with braidedRug preset`, () => { "width": 4924, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Braided_Rug-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Braided_Rug-1.1.jpeg", }, { "dimensions": { @@ -123,7 +123,7 @@ describe(`with braidedRug preset`, () => { "width": 5060, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Braided_Rug-1.3.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Braided_Rug-1.3.jpeg", }, { "dimensions": { @@ -131,7 +131,7 @@ describe(`with braidedRug preset`, () => { "width": 5527, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Braided_Rug-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Braided_Rug-1.2.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/braided-rug-01.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/braided-rug-01.ts similarity index 91% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/braided-rug-01.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/braided-rug-01.ts index 371da5f0b..a427be984 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/braided-rug-01.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/braided-rug-01.ts @@ -26,19 +26,19 @@ const braidedRug01 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Braided_Rug-1.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Braided_Rug-1.1.jpeg' ) .dimensions({ w: 4924, h: 4720 }), ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Braided_Rug-1.3.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Braided_Rug-1.3.jpeg' ) .dimensions({ w: 5060, h: 3373 }), ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Braided_Rug-1.2.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Braided_Rug-1.2.jpeg' ) .dimensions({ w: 5527, h: 3685 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/bruno-chair-01.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/bruno-chair-01.spec.ts similarity index 97% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/bruno-chair-01.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/bruno-chair-01.spec.ts index 293da93b7..c547d1341 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/bruno-chair-01.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/bruno-chair-01.spec.ts @@ -40,7 +40,7 @@ describe(`with brunoChair preset`, () => { "w": 6473, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Bruno_Chair-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Bruno_Chair-1.1.jpeg", }, ], "key": undefined, @@ -123,7 +123,7 @@ describe(`with brunoChair preset`, () => { "width": 6473, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Bruno_Chair-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Bruno_Chair-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/bruno-chair-01.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/bruno-chair-01.ts similarity index 97% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/bruno-chair-01.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/bruno-chair-01.ts index afbf7d83e..70871568c 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/bruno-chair-01.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/bruno-chair-01.ts @@ -26,7 +26,7 @@ const brunoChair01 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Bruno_Chair-1.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Bruno_Chair-1.1.jpeg' ) .dimensions({ w: 6473, h: 4315 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/canela-three-seater-sofa-01.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/canela-three-seater-sofa-01.spec.ts similarity index 94% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/canela-three-seater-sofa-01.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/canela-three-seater-sofa-01.spec.ts index a864472d4..53d952035 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/canela-three-seater-sofa-01.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/canela-three-seater-sofa-01.spec.ts @@ -44,7 +44,7 @@ describe(`with canelaThreeSeaterSofa01 preset`, () => { "w": 5029, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Canela_Three_Seater_Sofa-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Canela_Three_Seater_Sofa-1.1.jpeg", }, { "dimensions": { @@ -52,7 +52,7 @@ describe(`with canelaThreeSeaterSofa01 preset`, () => { "w": 1170, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Canela_Three_Seater_Sofa-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Canela_Three_Seater_Sofa-1.2.jpeg", }, ], "key": undefined, @@ -135,7 +135,7 @@ describe(`with canelaThreeSeaterSofa01 preset`, () => { "width": 5029, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Canela_Three_Seater_Sofa-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Canela_Three_Seater_Sofa-1.1.jpeg", }, { "dimensions": { @@ -143,7 +143,7 @@ describe(`with canelaThreeSeaterSofa01 preset`, () => { "width": 1170, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Canela_Three_Seater_Sofa-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Canela_Three_Seater_Sofa-1.2.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/canela-three-seater-sofa-01.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/canela-three-seater-sofa-01.ts similarity index 93% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/canela-three-seater-sofa-01.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/canela-three-seater-sofa-01.ts index 3721e0098..02f01895d 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/canela-three-seater-sofa-01.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/canela-three-seater-sofa-01.ts @@ -26,13 +26,13 @@ const canelaThreeSeaterSofa01 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Canela_Three_Seater_Sofa-1.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Canela_Three_Seater_Sofa-1.1.jpeg' ) .dimensions({ w: 5029, h: 3353 }), ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Canela_Three_Seater_Sofa-1.2.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Canela_Three_Seater_Sofa-1.2.jpeg' ) .dimensions({ w: 1170, h: 780 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/charcoal-chair-01.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/charcoal-chair-01.spec.ts similarity index 95% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/charcoal-chair-01.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/charcoal-chair-01.spec.ts index 82a9693bb..68a518b4e 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/charcoal-chair-01.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/charcoal-chair-01.spec.ts @@ -41,7 +41,7 @@ describe(`with charcoalChair01 preset`, () => { "w": 3300, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Charcoal_Chair-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Charcoal_Chair-1.2.jpeg", }, { "dimensions": { @@ -49,7 +49,7 @@ describe(`with charcoalChair01 preset`, () => { "w": 5906, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Charcoal_Chair-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Charcoal_Chair-1.1.jpeg", }, ], "key": undefined, @@ -132,7 +132,7 @@ describe(`with charcoalChair01 preset`, () => { "width": 3300, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Charcoal_Chair-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Charcoal_Chair-1.2.jpeg", }, { "dimensions": { @@ -140,7 +140,7 @@ describe(`with charcoalChair01 preset`, () => { "width": 5906, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Charcoal_Chair-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Charcoal_Chair-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/charcoal-chair-01.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/charcoal-chair-01.ts similarity index 94% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/charcoal-chair-01.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/charcoal-chair-01.ts index e3fc4189f..ac667ee79 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/charcoal-chair-01.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/charcoal-chair-01.ts @@ -26,13 +26,13 @@ const charcoalChair01 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Charcoal_Chair-1.2.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Charcoal_Chair-1.2.jpeg' ) .dimensions({ w: 3300, h: 5309 }), ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Charcoal_Chair-1.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Charcoal_Chair-1.1.jpeg' ) .dimensions({ w: 5906, h: 5906 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/charlie-armchair-01.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/charlie-armchair-01.spec.ts similarity index 97% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/charlie-armchair-01.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/charlie-armchair-01.spec.ts index 1b6f95d59..db9b5fd13 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/charlie-armchair-01.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/charlie-armchair-01.spec.ts @@ -41,7 +41,7 @@ describe(`with charlieArmchair01 preset`, () => { "w": 5500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Charlie_Armchair-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Charlie_Armchair-1.1.jpeg", }, ], "key": undefined, @@ -124,7 +124,7 @@ describe(`with charlieArmchair01 preset`, () => { "width": 5500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Charlie_Armchair-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Charlie_Armchair-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/charlie-armchair-01.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/charlie-armchair-01.ts similarity index 96% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/charlie-armchair-01.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/charlie-armchair-01.ts index 5748cf40c..9757e939b 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/charlie-armchair-01.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/charlie-armchair-01.ts @@ -26,7 +26,7 @@ const charlieArmchair01 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Charlie_Armchair-1.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Charlie_Armchair-1.1.jpeg' ) .dimensions({ w: 5500, h: 4400 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/chianti-wine-glass-01.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/chianti-wine-glass-01.spec.ts similarity index 97% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/chianti-wine-glass-01.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/chianti-wine-glass-01.spec.ts index 6fa5b0b57..8b24bc950 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/chianti-wine-glass-01.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/chianti-wine-glass-01.spec.ts @@ -41,7 +41,7 @@ describe(`with chiantiWineGlass01 preset`, () => { "w": 2457, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Chianti_Wine_Glass-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Chianti_Wine_Glass-1.1.jpeg", }, ], "key": undefined, @@ -124,7 +124,7 @@ describe(`with chiantiWineGlass01 preset`, () => { "width": 2457, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Chianti_Wine_Glass-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Chianti_Wine_Glass-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/chianti-wine-glass-01.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/chianti-wine-glass-01.ts similarity index 96% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/chianti-wine-glass-01.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/chianti-wine-glass-01.ts index 9e68a457b..c36abbf45 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/chianti-wine-glass-01.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/chianti-wine-glass-01.ts @@ -26,7 +26,7 @@ const chiantiWineGlass01 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Chianti_Wine_Glass-1.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Chianti_Wine_Glass-1.1.jpeg' ) .dimensions({ w: 2457, h: 3138 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/classic-beer-mug-01.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/classic-beer-mug-01.spec.ts similarity index 97% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/classic-beer-mug-01.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/classic-beer-mug-01.spec.ts index 81abba3b7..629fa05f1 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/classic-beer-mug-01.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/classic-beer-mug-01.spec.ts @@ -41,7 +41,7 @@ describe(`with classicBeerMug01 preset`, () => { "w": 3606, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Classic_Beer_Mug-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Classic_Beer_Mug-1.1.jpeg", }, ], "key": undefined, @@ -124,7 +124,7 @@ describe(`with classicBeerMug01 preset`, () => { "width": 3606, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Classic_Beer_Mug-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Classic_Beer_Mug-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/classic-beer-mug-01.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/classic-beer-mug-01.ts similarity index 96% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/classic-beer-mug-01.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/classic-beer-mug-01.ts index ee874dfa3..a075b153c 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/classic-beer-mug-01.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/classic-beer-mug-01.ts @@ -26,7 +26,7 @@ const classicBeerMug01 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Classic_Beer_Mug-1.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Classic_Beer_Mug-1.1.jpeg' ) .dimensions({ w: 3606, h: 5409 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/classic-champagne-glasses-01.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/classic-champagne-glasses-01.spec.ts similarity index 91% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/classic-champagne-glasses-01.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/classic-champagne-glasses-01.spec.ts index a931503a8..27103aadc 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/classic-champagne-glasses-01.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/classic-champagne-glasses-01.spec.ts @@ -51,7 +51,7 @@ describe(`with classicChampagneGlasses01 preset`, () => { "w": 5468, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Classic_Champagne_Glasses-1.4.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Classic_Champagne_Glasses-1.4.jpeg", }, { "dimensions": { @@ -59,7 +59,7 @@ describe(`with classicChampagneGlasses01 preset`, () => { "w": 2571, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Classic_Champagne_Glasses-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Classic_Champagne_Glasses-1.1.jpeg", }, { "dimensions": { @@ -67,7 +67,7 @@ describe(`with classicChampagneGlasses01 preset`, () => { "w": 3643, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Classic_Champagne_Glasses-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Classic_Champagne_Glasses-1.2.jpeg", }, { "dimensions": { @@ -75,7 +75,7 @@ describe(`with classicChampagneGlasses01 preset`, () => { "w": 1659, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Classic_Champagne_Glasses-1.3.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Classic_Champagne_Glasses-1.3.jpeg", }, ], "key": undefined, @@ -162,7 +162,7 @@ describe(`with classicChampagneGlasses01 preset`, () => { "width": 5468, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Classic_Champagne_Glasses-1.4.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Classic_Champagne_Glasses-1.4.jpeg", }, { "dimensions": { @@ -170,7 +170,7 @@ describe(`with classicChampagneGlasses01 preset`, () => { "width": 2571, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Classic_Champagne_Glasses-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Classic_Champagne_Glasses-1.1.jpeg", }, { "dimensions": { @@ -178,7 +178,7 @@ describe(`with classicChampagneGlasses01 preset`, () => { "width": 3643, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Classic_Champagne_Glasses-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Classic_Champagne_Glasses-1.2.jpeg", }, { "dimensions": { @@ -186,7 +186,7 @@ describe(`with classicChampagneGlasses01 preset`, () => { "width": 1659, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Classic_Champagne_Glasses-1.3.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Classic_Champagne_Glasses-1.3.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/classic-champagne-glasses-01.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/classic-champagne-glasses-01.ts similarity index 90% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/classic-champagne-glasses-01.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/classic-champagne-glasses-01.ts index 2d94247f4..c81184e48 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/classic-champagne-glasses-01.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/classic-champagne-glasses-01.ts @@ -26,25 +26,25 @@ const classicChampagneGlasses01 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Classic_Champagne_Glasses-1.4.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Classic_Champagne_Glasses-1.4.jpeg' ) .dimensions({ w: 5468, h: 4101 }), ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Classic_Champagne_Glasses-1.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Classic_Champagne_Glasses-1.1.jpeg' ) .dimensions({ w: 2571, h: 4149 }), ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Classic_Champagne_Glasses-1.2.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Classic_Champagne_Glasses-1.2.jpeg' ) .dimensions({ w: 3643, h: 5464 }), ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Classic_Champagne_Glasses-1.3.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Classic_Champagne_Glasses-1.3.jpeg' ) .dimensions({ w: 1659, h: 2733 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/classic-coffee-cup-01.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/classic-coffee-cup-01.spec.ts similarity index 95% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/classic-coffee-cup-01.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/classic-coffee-cup-01.spec.ts index ad7580426..de5625ca2 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/classic-coffee-cup-01.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/classic-coffee-cup-01.spec.ts @@ -36,7 +36,7 @@ describe(`with classicCoffeeCup01 preset`, () => { "w": 6000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Classic_Coffee_Cup-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Classic_Coffee_Cup-1.1.jpeg", }, { "dimensions": { @@ -44,7 +44,7 @@ describe(`with classicCoffeeCup01 preset`, () => { "w": 4153, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Classic_Coffee_Cup-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Classic_Coffee_Cup-1.2.jpeg", }, ], "key": undefined, @@ -123,7 +123,7 @@ describe(`with classicCoffeeCup01 preset`, () => { "width": 6000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Classic_Coffee_Cup-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Classic_Coffee_Cup-1.1.jpeg", }, { "dimensions": { @@ -131,7 +131,7 @@ describe(`with classicCoffeeCup01 preset`, () => { "width": 4153, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Classic_Coffee_Cup-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Classic_Coffee_Cup-1.2.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/classic-coffee-cup-01.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/classic-coffee-cup-01.ts similarity index 94% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/classic-coffee-cup-01.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/classic-coffee-cup-01.ts index c829a706d..34aad394a 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/classic-coffee-cup-01.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/classic-coffee-cup-01.ts @@ -26,13 +26,13 @@ const classicCoffeeCup01 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Classic_Coffee_Cup-1.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Classic_Coffee_Cup-1.1.jpeg' ) .dimensions({ w: 6000, h: 4000 }), ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Classic_Coffee_Cup-1.2.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Classic_Coffee_Cup-1.2.jpeg' ) .dimensions({ w: 4153, h: 3840 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/classic-serving-tray-01.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/classic-serving-tray-01.spec.ts similarity index 94% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/classic-serving-tray-01.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/classic-serving-tray-01.spec.ts index 3db440150..b8fa06429 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/classic-serving-tray-01.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/classic-serving-tray-01.spec.ts @@ -33,7 +33,7 @@ describe(`with classicServingTray01 preset`, () => { "w": 4000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Classic_Serving_Tray-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Classic_Serving_Tray-1.1.jpeg", }, { "dimensions": { @@ -41,7 +41,7 @@ describe(`with classicServingTray01 preset`, () => { "w": 6240, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Classic_Serving_Tray-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Classic_Serving_Tray-1.2.jpeg", }, ], "key": undefined, @@ -120,7 +120,7 @@ describe(`with classicServingTray01 preset`, () => { "width": 4000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Classic_Serving_Tray-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Classic_Serving_Tray-1.1.jpeg", }, { "dimensions": { @@ -128,7 +128,7 @@ describe(`with classicServingTray01 preset`, () => { "width": 6240, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Classic_Serving_Tray-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Classic_Serving_Tray-1.2.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/classic-serving-tray-01.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/classic-serving-tray-01.ts similarity index 93% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/classic-serving-tray-01.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/classic-serving-tray-01.ts index 293a9bb64..947bd73f3 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/classic-serving-tray-01.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/classic-serving-tray-01.ts @@ -26,13 +26,13 @@ const classicServingTray01 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Classic_Serving_Tray-1.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Classic_Serving_Tray-1.1.jpeg' ) .dimensions({ w: 4000, h: 3000 }), ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Classic_Serving_Tray-1.2.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Classic_Serving_Tray-1.2.jpeg' ) .dimensions({ w: 6240, h: 4160 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/clink-champagne-glass-01.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/clink-champagne-glass-01.spec.ts similarity index 97% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/clink-champagne-glass-01.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/clink-champagne-glass-01.spec.ts index cd6715aec..c2258084f 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/clink-champagne-glass-01.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/clink-champagne-glass-01.spec.ts @@ -41,7 +41,7 @@ describe(`with clinkChampagneGlass01 preset`, () => { "w": 3000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Clink_Champagne_Glass-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Clink_Champagne_Glass-1.1.jpeg", }, ], "key": undefined, @@ -124,7 +124,7 @@ describe(`with clinkChampagneGlass01 preset`, () => { "width": 3000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Clink_Champagne_Glass-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Clink_Champagne_Glass-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/clink-champagne-glass-01.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/clink-champagne-glass-01.ts similarity index 96% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/clink-champagne-glass-01.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/clink-champagne-glass-01.ts index d1ad36902..cd1e4913a 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/clink-champagne-glass-01.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/clink-champagne-glass-01.ts @@ -26,7 +26,7 @@ const clinkChampagneGlass01 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Clink_Champagne_Glass-1.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Clink_Champagne_Glass-1.1.jpeg' ) .dimensions({ w: 3000, h: 3000 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/cloud-queen-bed-01.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/cloud-queen-bed-01.spec.ts similarity index 95% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/cloud-queen-bed-01.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/cloud-queen-bed-01.spec.ts index e122bd153..79f607c33 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/cloud-queen-bed-01.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/cloud-queen-bed-01.spec.ts @@ -33,7 +33,7 @@ describe(`with cloudQueenBed01 preset`, () => { "w": 5000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Cloud_Queen_Bed-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Cloud_Queen_Bed-1.1.jpeg", }, { "dimensions": { @@ -41,7 +41,7 @@ describe(`with cloudQueenBed01 preset`, () => { "w": 5000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Cloud_Queen_Bed-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Cloud_Queen_Bed-1.2.jpeg", }, ], "key": undefined, @@ -120,7 +120,7 @@ describe(`with cloudQueenBed01 preset`, () => { "width": 5000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Cloud_Queen_Bed-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Cloud_Queen_Bed-1.1.jpeg", }, { "dimensions": { @@ -128,7 +128,7 @@ describe(`with cloudQueenBed01 preset`, () => { "width": 5000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Cloud_Queen_Bed-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Cloud_Queen_Bed-1.2.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/cloud-queen-bed-01.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/cloud-queen-bed-01.ts similarity index 94% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/cloud-queen-bed-01.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/cloud-queen-bed-01.ts index a58f71348..c38bb0d69 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/cloud-queen-bed-01.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/cloud-queen-bed-01.ts @@ -26,13 +26,13 @@ const cloudQueenBed01 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Cloud_Queen_Bed-1.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Cloud_Queen_Bed-1.1.jpeg' ) .dimensions({ w: 5000, h: 3621 }), ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Cloud_Queen_Bed-1.2.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Cloud_Queen_Bed-1.2.jpeg' ) .dimensions({ w: 5000, h: 3621 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/cobblestone-rug-01.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/cobblestone-rug-01.spec.ts similarity index 97% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/cobblestone-rug-01.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/cobblestone-rug-01.spec.ts index e800e514c..51ca809fa 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/cobblestone-rug-01.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/cobblestone-rug-01.spec.ts @@ -36,7 +36,7 @@ describe(`with cobblestoneRug01 preset`, () => { "w": 7006, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Cobblestone_Rug-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Cobblestone_Rug-1.1.jpeg", }, ], "key": undefined, @@ -115,7 +115,7 @@ describe(`with cobblestoneRug01 preset`, () => { "width": 7006, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Cobblestone_Rug-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Cobblestone_Rug-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/cobblestone-rug-01.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/cobblestone-rug-01.ts similarity index 96% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/cobblestone-rug-01.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/cobblestone-rug-01.ts index abecfac8a..b4de65219 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/cobblestone-rug-01.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/cobblestone-rug-01.ts @@ -26,7 +26,7 @@ const cobblestoneRug01 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Cobblestone_Rug-1.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Cobblestone_Rug-1.1.jpeg' ) .dimensions({ w: 7006, h: 2820 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/cocktail-shaker-01.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/cocktail-shaker-01.spec.ts similarity index 95% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/cocktail-shaker-01.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/cocktail-shaker-01.spec.ts index 1aefb9314..01b487fc8 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/cocktail-shaker-01.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/cocktail-shaker-01.spec.ts @@ -42,7 +42,7 @@ describe(`with cocktailShaker01 preset`, () => { "w": 3850, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Cocktail_Shaker-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Cocktail_Shaker-1.1.jpeg", }, { "dimensions": { @@ -50,7 +50,7 @@ describe(`with cocktailShaker01 preset`, () => { "w": 5000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Cocktail_Shaker-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Cocktail_Shaker-1.2.jpeg", }, ], "key": undefined, @@ -129,7 +129,7 @@ describe(`with cocktailShaker01 preset`, () => { "width": 3850, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Cocktail_Shaker-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Cocktail_Shaker-1.1.jpeg", }, { "dimensions": { @@ -137,7 +137,7 @@ describe(`with cocktailShaker01 preset`, () => { "width": 5000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Cocktail_Shaker-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Cocktail_Shaker-1.2.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/cocktail-shaker-01.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/cocktail-shaker-01.ts similarity index 94% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/cocktail-shaker-01.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/cocktail-shaker-01.ts index 63e3ebd99..b77305c4a 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/cocktail-shaker-01.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/cocktail-shaker-01.ts @@ -26,13 +26,13 @@ const cocktailShaker01 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Cocktail_Shaker-1.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Cocktail_Shaker-1.1.jpeg' ) .dimensions({ w: 3850, h: 5500 }), ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Cocktail_Shaker-1.2.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Cocktail_Shaker-1.2.jpeg' ) .dimensions({ w: 5000, h: 3750 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/cocktail-shaker-set-01.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/cocktail-shaker-set-01.spec.ts similarity index 97% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/cocktail-shaker-set-01.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/cocktail-shaker-set-01.spec.ts index d35cc7e93..5a2d167ed 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/cocktail-shaker-set-01.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/cocktail-shaker-set-01.spec.ts @@ -39,7 +39,7 @@ describe(`with cocktailShakerSet01 preset`, () => { "w": 4929, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Cocktail_Shaker_Set-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Cocktail_Shaker_Set-1.1.jpeg", }, ], "key": undefined, @@ -118,7 +118,7 @@ describe(`with cocktailShakerSet01 preset`, () => { "width": 4929, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Cocktail_Shaker_Set-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Cocktail_Shaker_Set-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/cocktail-shaker-set-01.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/cocktail-shaker-set-01.ts similarity index 96% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/cocktail-shaker-set-01.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/cocktail-shaker-set-01.ts index ac2f48191..39bed0ae5 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/cocktail-shaker-set-01.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/cocktail-shaker-set-01.ts @@ -26,7 +26,7 @@ const cocktailShakerSet01 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Cocktail_Shaker_Set-1.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Cocktail_Shaker_Set-1.1.jpeg' ) .dimensions({ w: 4929, h: 5334 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/cocktail-stirring-spoon-01.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/cocktail-stirring-spoon-01.spec.ts similarity index 97% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/cocktail-stirring-spoon-01.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/cocktail-stirring-spoon-01.spec.ts index 981ac9c63..4895f6618 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/cocktail-stirring-spoon-01.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/cocktail-stirring-spoon-01.spec.ts @@ -39,7 +39,7 @@ describe(`with cocktailStirringSpoon01 preset`, () => { "w": 5757, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Cocktail_Stirring_Spoon-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Cocktail_Stirring_Spoon-1.1.jpeg", }, ], "key": undefined, @@ -118,7 +118,7 @@ describe(`with cocktailStirringSpoon01 preset`, () => { "width": 5757, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Cocktail_Stirring_Spoon-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Cocktail_Stirring_Spoon-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/cocktail-stirring-spoon-01.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/cocktail-stirring-spoon-01.ts similarity index 96% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/cocktail-stirring-spoon-01.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/cocktail-stirring-spoon-01.ts index ec5518f46..099a3a779 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/cocktail-stirring-spoon-01.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/cocktail-stirring-spoon-01.ts @@ -26,7 +26,7 @@ const cocktailStirringSpoon01 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Cocktail_Stirring_Spoon-1.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Cocktail_Stirring_Spoon-1.1.jpeg' ) .dimensions({ w: 5757, h: 4555 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/cocktail-strainer-01.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/cocktail-strainer-01.spec.ts similarity index 95% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/cocktail-strainer-01.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/cocktail-strainer-01.spec.ts index 6f4dd2e2e..2b0aa0c6a 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/cocktail-strainer-01.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/cocktail-strainer-01.spec.ts @@ -39,7 +39,7 @@ describe(`with cocktailStrainer01 preset`, () => { "w": 5472, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Cocktail_Strainer-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Cocktail_Strainer-1.1.jpeg", }, { "dimensions": { @@ -47,7 +47,7 @@ describe(`with cocktailStrainer01 preset`, () => { "w": 3648, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Cocktail_Strainer-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Cocktail_Strainer-1.2.jpeg", }, ], "key": undefined, @@ -126,7 +126,7 @@ describe(`with cocktailStrainer01 preset`, () => { "width": 5472, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Cocktail_Strainer-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Cocktail_Strainer-1.1.jpeg", }, { "dimensions": { @@ -134,7 +134,7 @@ describe(`with cocktailStrainer01 preset`, () => { "width": 3648, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Cocktail_Strainer-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Cocktail_Strainer-1.2.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/cocktail-strainer-01.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/cocktail-strainer-01.ts similarity index 93% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/cocktail-strainer-01.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/cocktail-strainer-01.ts index 1d7e8d7b8..3b13ed4e6 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/cocktail-strainer-01.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/cocktail-strainer-01.ts @@ -26,13 +26,13 @@ const cocktailStrainer01 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Cocktail_Strainer-1.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Cocktail_Strainer-1.1.jpeg' ) .dimensions({ w: 5472, h: 3648 }), ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Cocktail_Strainer-1.2.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Cocktail_Strainer-1.2.jpeg' ) .dimensions({ w: 3648, h: 5472 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/cocoa-pillow-cover-01.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/cocoa-pillow-cover-01.spec.ts similarity index 97% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/cocoa-pillow-cover-01.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/cocoa-pillow-cover-01.spec.ts index b295e404d..933c92615 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/cocoa-pillow-cover-01.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/cocoa-pillow-cover-01.spec.ts @@ -39,7 +39,7 @@ describe(`with cocoaPillowCover01 preset`, () => { "w": 6240, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Cocoa_Pillow_Cover-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Cocoa_Pillow_Cover-1.1.jpeg", }, ], "key": undefined, @@ -118,7 +118,7 @@ describe(`with cocoaPillowCover01 preset`, () => { "width": 6240, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Cocoa_Pillow_Cover-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Cocoa_Pillow_Cover-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/cocoa-pillow-cover-01.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/cocoa-pillow-cover-01.ts similarity index 96% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/cocoa-pillow-cover-01.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/cocoa-pillow-cover-01.ts index 6e6904e79..87bef7c70 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/cocoa-pillow-cover-01.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/cocoa-pillow-cover-01.ts @@ -26,7 +26,7 @@ const cocoaPillowCover01 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Cocoa_Pillow_Cover-1.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Cocoa_Pillow_Cover-1.1.jpeg' ) .dimensions({ w: 6240, h: 4160 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/comfort-coffee-mug-01.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/comfort-coffee-mug-01.spec.ts similarity index 97% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/comfort-coffee-mug-01.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/comfort-coffee-mug-01.spec.ts index 995d2a5ae..9fb2f733e 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/comfort-coffee-mug-01.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/comfort-coffee-mug-01.spec.ts @@ -39,7 +39,7 @@ describe(`with comfortCoffeeMug01 preset`, () => { "w": 2340, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Comfort_Coffee_Mug-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Comfort_Coffee_Mug-1.1.jpeg", }, ], "key": undefined, @@ -121,7 +121,7 @@ describe(`with comfortCoffeeMug01 preset`, () => { "width": 2340, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Comfort_Coffee_Mug-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Comfort_Coffee_Mug-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/comfort-coffee-mug-01.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/comfort-coffee-mug-01.ts similarity index 93% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/comfort-coffee-mug-01.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/comfort-coffee-mug-01.ts index 181e98f96..18c5639da 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/comfort-coffee-mug-01.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/comfort-coffee-mug-01.ts @@ -9,7 +9,7 @@ import { ImageDraft } from '../../../../image'; import type { TProductVariantDraftBuilder } from '../../../types'; import * as ProductVariantDraft from '../../index'; -const distributionChannel = ChannelDraft.presets.sampleDataGoodStore +const distributionChannel = ChannelDraft.presets.sampleDataB2CLifestyle .distributionChannel() .build(); @@ -38,7 +38,7 @@ const comfortCoffeeMug01 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Comfort_Coffee_Mug-1.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Comfort_Coffee_Mug-1.1.jpeg' ) .dimensions({ w: 2340, h: 2256 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/cotton-silk-bedsheet-01.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/cotton-silk-bedsheet-01.spec.ts similarity index 97% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/cotton-silk-bedsheet-01.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/cotton-silk-bedsheet-01.spec.ts index 70918375b..fff731cc4 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/cotton-silk-bedsheet-01.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/cotton-silk-bedsheet-01.spec.ts @@ -52,7 +52,7 @@ describe(`with cottonSilkBedsheet01 preset`, () => { "w": 7500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Cotton_Silk_Bedsheet-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Cotton_Silk_Bedsheet-1.1.jpeg", }, ], "key": undefined, @@ -139,7 +139,7 @@ describe(`with cottonSilkBedsheet01 preset`, () => { "width": 7500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Cotton_Silk_Bedsheet-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Cotton_Silk_Bedsheet-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/cotton-silk-bedsheet-01.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/cotton-silk-bedsheet-01.ts similarity index 96% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/cotton-silk-bedsheet-01.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/cotton-silk-bedsheet-01.ts index 5739bdcf1..37acbf7e2 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/cotton-silk-bedsheet-01.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/cotton-silk-bedsheet-01.ts @@ -26,7 +26,7 @@ const cottonSilkBedsheet01 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Cotton_Silk_Bedsheet-1.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Cotton_Silk_Bedsheet-1.1.jpeg' ) .dimensions({ w: 7500, h: 4500 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/cotton-silk-bedsheet-02.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/cotton-silk-bedsheet-02.spec.ts similarity index 97% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/cotton-silk-bedsheet-02.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/cotton-silk-bedsheet-02.spec.ts index 13ad70153..3083ea18a 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/cotton-silk-bedsheet-02.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/cotton-silk-bedsheet-02.spec.ts @@ -48,7 +48,7 @@ describe(`with cottonSilkBedsheet02 preset`, () => { "w": 7500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Cotton_Silk_Bedsheet-2.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Cotton_Silk_Bedsheet-2.1.jpeg", }, ], "key": undefined, @@ -131,7 +131,7 @@ describe(`with cottonSilkBedsheet02 preset`, () => { "width": 7500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Cotton_Silk_Bedsheet-2.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Cotton_Silk_Bedsheet-2.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/cotton-silk-bedsheet-02.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/cotton-silk-bedsheet-02.ts similarity index 96% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/cotton-silk-bedsheet-02.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/cotton-silk-bedsheet-02.ts index 0d0c51fc9..d7ea24ce5 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/cotton-silk-bedsheet-02.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/cotton-silk-bedsheet-02.ts @@ -26,7 +26,7 @@ const cottonSilkBedsheet02 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Cotton_Silk_Bedsheet-2.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Cotton_Silk_Bedsheet-2.1.jpeg' ) .dimensions({ w: 7500, h: 4500 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/cotton-silk-bedsheet-03.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/cotton-silk-bedsheet-03.spec.ts similarity index 97% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/cotton-silk-bedsheet-03.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/cotton-silk-bedsheet-03.spec.ts index 147a1954a..d8826364f 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/cotton-silk-bedsheet-03.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/cotton-silk-bedsheet-03.spec.ts @@ -48,7 +48,7 @@ describe(`with cottonSilkBedsheet03 preset`, () => { "w": 7500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Cotton_Silk_Bedsheet-3.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Cotton_Silk_Bedsheet-3.1.jpeg", }, ], "key": undefined, @@ -131,7 +131,7 @@ describe(`with cottonSilkBedsheet03 preset`, () => { "width": 7500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Cotton_Silk_Bedsheet-3.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Cotton_Silk_Bedsheet-3.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/cotton-silk-bedsheet-03.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/cotton-silk-bedsheet-03.ts similarity index 96% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/cotton-silk-bedsheet-03.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/cotton-silk-bedsheet-03.ts index 1b8a10379..dcd97d7fa 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/cotton-silk-bedsheet-03.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/cotton-silk-bedsheet-03.ts @@ -26,7 +26,7 @@ const cottonSilkBedsheet03 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Cotton_Silk_Bedsheet-3.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Cotton_Silk_Bedsheet-3.1.jpeg' ) .dimensions({ w: 7500, h: 4500 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/cotton-silk-bedsheet-04.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/cotton-silk-bedsheet-04.spec.ts similarity index 95% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/cotton-silk-bedsheet-04.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/cotton-silk-bedsheet-04.spec.ts index 0c7501933..03e3aafc4 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/cotton-silk-bedsheet-04.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/cotton-silk-bedsheet-04.spec.ts @@ -48,7 +48,7 @@ describe(`with cottonSilkBedsheet04 preset`, () => { "w": 5589, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Cotton_Silk_Bedsheet-4.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Cotton_Silk_Bedsheet-4.1.jpeg", }, { "dimensions": { @@ -56,7 +56,7 @@ describe(`with cottonSilkBedsheet04 preset`, () => { "w": 5216, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Cotton_Silk_Bedsheet-4.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Cotton_Silk_Bedsheet-4.2.jpeg", }, ], "key": undefined, @@ -139,7 +139,7 @@ describe(`with cottonSilkBedsheet04 preset`, () => { "width": 5589, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Cotton_Silk_Bedsheet-4.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Cotton_Silk_Bedsheet-4.1.jpeg", }, { "dimensions": { @@ -147,7 +147,7 @@ describe(`with cottonSilkBedsheet04 preset`, () => { "width": 5216, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Cotton_Silk_Bedsheet-4.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Cotton_Silk_Bedsheet-4.2.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/cotton-silk-bedsheet-04.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/cotton-silk-bedsheet-04.ts similarity index 94% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/cotton-silk-bedsheet-04.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/cotton-silk-bedsheet-04.ts index a18a014dc..abd235835 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/cotton-silk-bedsheet-04.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/cotton-silk-bedsheet-04.ts @@ -26,13 +26,13 @@ const cottonSilkBedsheet04 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Cotton_Silk_Bedsheet-4.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Cotton_Silk_Bedsheet-4.1.jpeg' ) .dimensions({ w: 5589, h: 3627 }), ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Cotton_Silk_Bedsheet-4.2.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Cotton_Silk_Bedsheet-4.2.jpeg' ) .dimensions({ w: 5216, h: 3228 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/cotton-silk-bedsheet-05.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/cotton-silk-bedsheet-05.spec.ts similarity index 95% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/cotton-silk-bedsheet-05.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/cotton-silk-bedsheet-05.spec.ts index 1cad8c7ed..499fb5392 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/cotton-silk-bedsheet-05.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/cotton-silk-bedsheet-05.spec.ts @@ -48,7 +48,7 @@ describe(`with cottonSilkBedsheet05 preset`, () => { "w": 5589, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Cotton_Silk_Bedsheet-5.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Cotton_Silk_Bedsheet-5.1.jpeg", }, { "dimensions": { @@ -56,7 +56,7 @@ describe(`with cottonSilkBedsheet05 preset`, () => { "w": 5216, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Cotton_Silk_Bedsheet-5.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Cotton_Silk_Bedsheet-5.2.jpeg", }, ], "key": undefined, @@ -139,7 +139,7 @@ describe(`with cottonSilkBedsheet05 preset`, () => { "width": 5589, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Cotton_Silk_Bedsheet-5.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Cotton_Silk_Bedsheet-5.1.jpeg", }, { "dimensions": { @@ -147,7 +147,7 @@ describe(`with cottonSilkBedsheet05 preset`, () => { "width": 5216, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Cotton_Silk_Bedsheet-5.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Cotton_Silk_Bedsheet-5.2.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/cotton-silk-bedsheet-05.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/cotton-silk-bedsheet-05.ts similarity index 94% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/cotton-silk-bedsheet-05.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/cotton-silk-bedsheet-05.ts index 01e83f08f..a1b3e3d71 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/cotton-silk-bedsheet-05.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/cotton-silk-bedsheet-05.ts @@ -26,13 +26,13 @@ const cottonSilkBedsheet05 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Cotton_Silk_Bedsheet-5.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Cotton_Silk_Bedsheet-5.1.jpeg' ) .dimensions({ w: 5589, h: 3627 }), ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Cotton_Silk_Bedsheet-5.2.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Cotton_Silk_Bedsheet-5.2.jpeg' ) .dimensions({ w: 5216, h: 3228 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/cotton-silk-bedsheet-06.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/cotton-silk-bedsheet-06.spec.ts similarity index 95% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/cotton-silk-bedsheet-06.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/cotton-silk-bedsheet-06.spec.ts index 2d4960106..c8766af00 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/cotton-silk-bedsheet-06.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/cotton-silk-bedsheet-06.spec.ts @@ -48,7 +48,7 @@ describe(`with cottonSilkBedsheet06 preset`, () => { "w": 5589, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Cotton_Silk_Bedsheet-6.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Cotton_Silk_Bedsheet-6.1.jpeg", }, { "dimensions": { @@ -56,7 +56,7 @@ describe(`with cottonSilkBedsheet06 preset`, () => { "w": 5216, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Cotton_Silk_Bedsheet-6.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Cotton_Silk_Bedsheet-6.2.jpeg", }, ], "key": undefined, @@ -139,7 +139,7 @@ describe(`with cottonSilkBedsheet06 preset`, () => { "width": 5589, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Cotton_Silk_Bedsheet-6.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Cotton_Silk_Bedsheet-6.1.jpeg", }, { "dimensions": { @@ -147,7 +147,7 @@ describe(`with cottonSilkBedsheet06 preset`, () => { "width": 5216, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Cotton_Silk_Bedsheet-6.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Cotton_Silk_Bedsheet-6.2.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/cotton-silk-bedsheet-06.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/cotton-silk-bedsheet-06.ts similarity index 94% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/cotton-silk-bedsheet-06.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/cotton-silk-bedsheet-06.ts index 2286508ef..24e1d2a04 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/cotton-silk-bedsheet-06.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/cotton-silk-bedsheet-06.ts @@ -26,13 +26,13 @@ const cottonSilkBedsheet06 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Cotton_Silk_Bedsheet-6.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Cotton_Silk_Bedsheet-6.1.jpeg' ) .dimensions({ w: 5589, h: 3627 }), ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Cotton_Silk_Bedsheet-6.2.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Cotton_Silk_Bedsheet-6.2.jpeg' ) .dimensions({ w: 5216, h: 3228 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/cotton-silk-bedsheet-07.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/cotton-silk-bedsheet-07.spec.ts similarity index 97% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/cotton-silk-bedsheet-07.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/cotton-silk-bedsheet-07.spec.ts index b18db9bf8..2223069f3 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/cotton-silk-bedsheet-07.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/cotton-silk-bedsheet-07.spec.ts @@ -48,7 +48,7 @@ describe(`with cottonSilkBedsheet07 preset`, () => { "w": 6016, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Cotton_Silk_Bedsheet-7.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Cotton_Silk_Bedsheet-7.1.jpeg", }, ], "key": undefined, @@ -131,7 +131,7 @@ describe(`with cottonSilkBedsheet07 preset`, () => { "width": 6016, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Cotton_Silk_Bedsheet-7.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Cotton_Silk_Bedsheet-7.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/cotton-silk-bedsheet-07.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/cotton-silk-bedsheet-07.ts similarity index 96% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/cotton-silk-bedsheet-07.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/cotton-silk-bedsheet-07.ts index 7ae9cc894..27aa110f3 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/cotton-silk-bedsheet-07.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/cotton-silk-bedsheet-07.ts @@ -26,7 +26,7 @@ const cottonSilkBedsheet07 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Cotton_Silk_Bedsheet-7.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Cotton_Silk_Bedsheet-7.1.jpeg' ) .dimensions({ w: 6016, h: 3848 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/cotton-silk-bedsheet-08.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/cotton-silk-bedsheet-08.spec.ts similarity index 97% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/cotton-silk-bedsheet-08.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/cotton-silk-bedsheet-08.spec.ts index 7374235e2..4de3c87a6 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/cotton-silk-bedsheet-08.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/cotton-silk-bedsheet-08.spec.ts @@ -48,7 +48,7 @@ describe(`with cottonSilkBedsheet08 preset`, () => { "w": 6016, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Cotton_Silk_Bedsheet-8.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Cotton_Silk_Bedsheet-8.1.jpeg", }, ], "key": undefined, @@ -131,7 +131,7 @@ describe(`with cottonSilkBedsheet08 preset`, () => { "width": 6016, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Cotton_Silk_Bedsheet-8.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Cotton_Silk_Bedsheet-8.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/cotton-silk-bedsheet-08.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/cotton-silk-bedsheet-08.ts similarity index 96% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/cotton-silk-bedsheet-08.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/cotton-silk-bedsheet-08.ts index 936115da9..e21621e43 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/cotton-silk-bedsheet-08.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/cotton-silk-bedsheet-08.ts @@ -26,7 +26,7 @@ const cottonSilkBedsheet08 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Cotton_Silk_Bedsheet-8.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Cotton_Silk_Bedsheet-8.1.jpeg' ) .dimensions({ w: 6016, h: 3848 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/cotton-silk-bedsheet-09.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/cotton-silk-bedsheet-09.spec.ts similarity index 97% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/cotton-silk-bedsheet-09.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/cotton-silk-bedsheet-09.spec.ts index d989f7734..86631b74a 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/cotton-silk-bedsheet-09.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/cotton-silk-bedsheet-09.spec.ts @@ -48,7 +48,7 @@ describe(`with cottonSilkBedsheet09 preset`, () => { "w": 6016, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Cotton_Silk_Bedsheet-9.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Cotton_Silk_Bedsheet-9.1.jpeg", }, ], "key": undefined, @@ -131,7 +131,7 @@ describe(`with cottonSilkBedsheet09 preset`, () => { "width": 6016, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Cotton_Silk_Bedsheet-9.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Cotton_Silk_Bedsheet-9.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/cotton-silk-bedsheet-09.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/cotton-silk-bedsheet-09.ts similarity index 96% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/cotton-silk-bedsheet-09.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/cotton-silk-bedsheet-09.ts index 6febcf4bc..82b9506f6 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/cotton-silk-bedsheet-09.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/cotton-silk-bedsheet-09.ts @@ -26,7 +26,7 @@ const cottonSilkBedsheet09 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Cotton_Silk_Bedsheet-9.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Cotton_Silk_Bedsheet-9.1.jpeg' ) .dimensions({ w: 6016, h: 3848 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/cotton-two-seater-sofa-01.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/cotton-two-seater-sofa-01.spec.ts similarity index 92% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/cotton-two-seater-sofa-01.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/cotton-two-seater-sofa-01.spec.ts index e719b6072..ad2c57d37 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/cotton-two-seater-sofa-01.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/cotton-two-seater-sofa-01.spec.ts @@ -28,7 +28,7 @@ describe(`with cottonTwoSeaterSofa01 preset`, () => { "w": 5035, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Cotton_Two_Seater_Sofa-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Cotton_Two_Seater_Sofa-1.1.jpeg", }, { "dimensions": { @@ -36,7 +36,7 @@ describe(`with cottonTwoSeaterSofa01 preset`, () => { "w": 1000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Cotton_Two_Seater_Sofa-1.3.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Cotton_Two_Seater_Sofa-1.3.jpeg", }, { "dimensions": { @@ -44,7 +44,7 @@ describe(`with cottonTwoSeaterSofa01 preset`, () => { "w": 5760, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Cotton_Two_Seater_Sofa-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Cotton_Two_Seater_Sofa-1.2.jpeg", }, ], "key": undefined, @@ -119,7 +119,7 @@ describe(`with cottonTwoSeaterSofa01 preset`, () => { "width": 5035, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Cotton_Two_Seater_Sofa-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Cotton_Two_Seater_Sofa-1.1.jpeg", }, { "dimensions": { @@ -127,7 +127,7 @@ describe(`with cottonTwoSeaterSofa01 preset`, () => { "width": 1000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Cotton_Two_Seater_Sofa-1.3.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Cotton_Two_Seater_Sofa-1.3.jpeg", }, { "dimensions": { @@ -135,7 +135,7 @@ describe(`with cottonTwoSeaterSofa01 preset`, () => { "width": 5760, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Cotton_Two_Seater_Sofa-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Cotton_Two_Seater_Sofa-1.2.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/cotton-two-seater-sofa-01.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/cotton-two-seater-sofa-01.ts similarity index 90% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/cotton-two-seater-sofa-01.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/cotton-two-seater-sofa-01.ts index 496fa8e38..e470c6a4c 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/cotton-two-seater-sofa-01.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/cotton-two-seater-sofa-01.ts @@ -26,19 +26,19 @@ const cottonTwoSeaterSofa01 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Cotton_Two_Seater_Sofa-1.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Cotton_Two_Seater_Sofa-1.1.jpeg' ) .dimensions({ w: 5035, h: 2969 }), ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Cotton_Two_Seater_Sofa-1.3.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Cotton_Two_Seater_Sofa-1.3.jpeg' ) .dimensions({ w: 1000, h: 637 }), ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Cotton_Two_Seater_Sofa-1.2.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Cotton_Two_Seater_Sofa-1.2.jpeg' ) .dimensions({ w: 5760, h: 3840 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/crystal-drinking-glass-01.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/crystal-drinking-glass-01.spec.ts similarity index 97% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/crystal-drinking-glass-01.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/crystal-drinking-glass-01.spec.ts index 28eff1dbf..b7ea89161 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/crystal-drinking-glass-01.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/crystal-drinking-glass-01.spec.ts @@ -36,7 +36,7 @@ describe(`with crystalDrinkingGlass01 preset`, () => { "w": 3000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Crystal_Drinking_Glass-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Crystal_Drinking_Glass-1.1.jpeg", }, ], "key": undefined, @@ -115,7 +115,7 @@ describe(`with crystalDrinkingGlass01 preset`, () => { "width": 3000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Crystal_Drinking_Glass-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Crystal_Drinking_Glass-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/crystal-drinking-glass-01.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/crystal-drinking-glass-01.ts similarity index 96% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/crystal-drinking-glass-01.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/crystal-drinking-glass-01.ts index ceb93d2ec..fe28bdf1f 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/crystal-drinking-glass-01.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/crystal-drinking-glass-01.ts @@ -26,7 +26,7 @@ const crystalDrinkingGlass01 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Crystal_Drinking_Glass-1.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Crystal_Drinking_Glass-1.1.jpeg' ) .dimensions({ w: 3000, h: 3000 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/cube-jute-basket-01.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/cube-jute-basket-01.spec.ts similarity index 97% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/cube-jute-basket-01.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/cube-jute-basket-01.spec.ts index 02feb1a87..9a21556ba 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/cube-jute-basket-01.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/cube-jute-basket-01.spec.ts @@ -42,7 +42,7 @@ describe(`with cubeJuteBasket01 preset`, () => { "w": 4684, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Cube_Jute_Basket-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Cube_Jute_Basket-1.1.jpeg", }, ], "key": undefined, @@ -124,7 +124,7 @@ describe(`with cubeJuteBasket01 preset`, () => { "width": 4684, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Cube_Jute_Basket-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Cube_Jute_Basket-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/cube-jute-basket-01.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/cube-jute-basket-01.ts similarity index 93% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/cube-jute-basket-01.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/cube-jute-basket-01.ts index 01e256a16..44b676a4c 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/cube-jute-basket-01.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/cube-jute-basket-01.ts @@ -9,7 +9,7 @@ import { ImageDraft } from '../../../../image'; import type { TProductVariantDraftBuilder } from '../../../types'; import * as ProductVariantDraft from '../../index'; -const distributionChannel = ChannelDraft.presets.sampleDataGoodStore +const distributionChannel = ChannelDraft.presets.sampleDataB2CLifestyle .distributionChannel() .build(); @@ -38,7 +38,7 @@ const cubeJuteBasket01 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Cube_Jute_Basket-1.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Cube_Jute_Basket-1.1.jpeg' ) .dimensions({ w: 4684, h: 3564 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/double-sided-shot-glass-01.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/double-sided-shot-glass-01.spec.ts similarity index 97% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/double-sided-shot-glass-01.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/double-sided-shot-glass-01.spec.ts index af6849e6b..71aaa0a6e 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/double-sided-shot-glass-01.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/double-sided-shot-glass-01.spec.ts @@ -39,7 +39,7 @@ describe(`with doubleSidedShotGlass01 preset`, () => { "w": 3648, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Double_Sided_Shot_Glass-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Double_Sided_Shot_Glass-1.1.jpeg", }, ], "key": undefined, @@ -118,7 +118,7 @@ describe(`with doubleSidedShotGlass01 preset`, () => { "width": 3648, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Double_Sided_Shot_Glass-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Double_Sided_Shot_Glass-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/double-sided-shot-glass-01.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/double-sided-shot-glass-01.ts similarity index 96% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/double-sided-shot-glass-01.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/double-sided-shot-glass-01.ts index c64fd5a62..cda9cc84e 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/double-sided-shot-glass-01.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/double-sided-shot-glass-01.ts @@ -26,7 +26,7 @@ const doubleSidedShotGlass01 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Double_Sided_Shot_Glass-1.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Double_Sided_Shot_Glass-1.1.jpeg' ) .dimensions({ w: 3648, h: 5472 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/double-walled-espresso-glass-01.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/double-walled-espresso-glass-01.spec.ts similarity index 94% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/double-walled-espresso-glass-01.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/double-walled-espresso-glass-01.spec.ts index d7a8976db..82c2c72f1 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/double-walled-espresso-glass-01.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/double-walled-espresso-glass-01.spec.ts @@ -44,7 +44,7 @@ describe(`with doubleWalledEspressoGlass01 preset`, () => { "w": 3371, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Double_Walled_Espresso_Glass-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Double_Walled_Espresso_Glass-1.1.jpeg", }, { "dimensions": { @@ -52,7 +52,7 @@ describe(`with doubleWalledEspressoGlass01 preset`, () => { "w": 987, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Double_Walled_Espresso_Glass-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Double_Walled_Espresso_Glass-1.2.jpeg", }, ], "key": undefined, @@ -135,7 +135,7 @@ describe(`with doubleWalledEspressoGlass01 preset`, () => { "width": 3371, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Double_Walled_Espresso_Glass-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Double_Walled_Espresso_Glass-1.1.jpeg", }, { "dimensions": { @@ -143,7 +143,7 @@ describe(`with doubleWalledEspressoGlass01 preset`, () => { "width": 987, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Double_Walled_Espresso_Glass-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Double_Walled_Espresso_Glass-1.2.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/double-walled-espresso-glass-01.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/double-walled-espresso-glass-01.ts similarity index 93% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/double-walled-espresso-glass-01.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/double-walled-espresso-glass-01.ts index 8d92fb62b..472667689 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/double-walled-espresso-glass-01.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/double-walled-espresso-glass-01.ts @@ -26,13 +26,13 @@ const doubleWalledEspressoGlass01 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Double_Walled_Espresso_Glass-1.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Double_Walled_Espresso_Glass-1.1.jpeg' ) .dimensions({ w: 3371, h: 3098 }), ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Double_Walled_Espresso_Glass-1.2.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Double_Walled_Espresso_Glass-1.2.jpeg' ) .dimensions({ w: 987, h: 1481 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/ecru-double-bed-01.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/ecru-double-bed-01.spec.ts similarity index 97% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/ecru-double-bed-01.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/ecru-double-bed-01.spec.ts index ed8c7242c..b35647374 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/ecru-double-bed-01.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/ecru-double-bed-01.spec.ts @@ -39,7 +39,7 @@ describe(`with ecruDoubleBed01 preset`, () => { "w": 2000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Ecru_Double_Bed-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Ecru_Double_Bed-1.1.jpeg", }, ], "key": undefined, @@ -118,7 +118,7 @@ describe(`with ecruDoubleBed01 preset`, () => { "width": 2000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Ecru_Double_Bed-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Ecru_Double_Bed-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/ecru-double-bed-01.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/ecru-double-bed-01.ts similarity index 96% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/ecru-double-bed-01.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/ecru-double-bed-01.ts index 3fdb13fa3..3c1f0c684 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/ecru-double-bed-01.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/ecru-double-bed-01.ts @@ -26,7 +26,7 @@ const ecruDoubleBed01 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Ecru_Double_Bed-1.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Ecru_Double_Bed-1.1.jpeg' ) .dimensions({ w: 2000, h: 2000 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/edgar-armchair-01.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/edgar-armchair-01.spec.ts similarity index 97% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/edgar-armchair-01.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/edgar-armchair-01.spec.ts index 318fe0cfd..65afd7855 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/edgar-armchair-01.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/edgar-armchair-01.spec.ts @@ -44,7 +44,7 @@ describe(`with edgarArmchair01 preset`, () => { "w": 5000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Edgar_Armchair-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Edgar_Armchair-1.1.jpeg", }, ], "key": undefined, @@ -127,7 +127,7 @@ describe(`with edgarArmchair01 preset`, () => { "width": 5000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Edgar_Armchair-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Edgar_Armchair-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/edgar-armchair-01.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/edgar-armchair-01.ts similarity index 96% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/edgar-armchair-01.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/edgar-armchair-01.ts index fe15e1dec..02dc7d763 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/edgar-armchair-01.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/edgar-armchair-01.ts @@ -26,7 +26,7 @@ const edgarArmchair01 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Edgar_Armchair-1.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Edgar_Armchair-1.1.jpeg' ) .dimensions({ w: 5000, h: 4000 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/ella-square-plate-01.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/ella-square-plate-01.spec.ts similarity index 95% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/ella-square-plate-01.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/ella-square-plate-01.spec.ts index 973192c13..203c5b359 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/ella-square-plate-01.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/ella-square-plate-01.spec.ts @@ -36,7 +36,7 @@ describe(`with ellaSquarePlate01 preset`, () => { "w": 5692, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Ella_Square_Plate-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Ella_Square_Plate-1.1.jpeg", }, { "dimensions": { @@ -44,7 +44,7 @@ describe(`with ellaSquarePlate01 preset`, () => { "w": 7360, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Ella_Square_Plate-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Ella_Square_Plate-1.2.jpeg", }, ], "key": undefined, @@ -126,7 +126,7 @@ describe(`with ellaSquarePlate01 preset`, () => { "width": 5692, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Ella_Square_Plate-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Ella_Square_Plate-1.1.jpeg", }, { "dimensions": { @@ -134,7 +134,7 @@ describe(`with ellaSquarePlate01 preset`, () => { "width": 7360, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Ella_Square_Plate-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Ella_Square_Plate-1.2.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/ella-square-plate-01.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/ella-square-plate-01.ts similarity index 91% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/ella-square-plate-01.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/ella-square-plate-01.ts index 2b8e2ebe1..03cc0863b 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/ella-square-plate-01.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/ella-square-plate-01.ts @@ -9,7 +9,7 @@ import { ImageDraft } from '../../../../image'; import type { TProductVariantDraftBuilder } from '../../../types'; import * as ProductVariantDraft from '../../index'; -const distributionChannel = ChannelDraft.presets.sampleDataGoodStore +const distributionChannel = ChannelDraft.presets.sampleDataB2CLifestyle .distributionChannel() .build(); @@ -38,13 +38,13 @@ const ellaSquarePlate01 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Ella_Square_Plate-1.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Ella_Square_Plate-1.1.jpeg' ) .dimensions({ w: 5692, h: 3412 }), ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Ella_Square_Plate-1.2.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Ella_Square_Plate-1.2.jpeg' ) .dimensions({ w: 7360, h: 4912 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/emerald-velvet-chair-01.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/emerald-velvet-chair-01.spec.ts similarity index 97% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/emerald-velvet-chair-01.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/emerald-velvet-chair-01.spec.ts index a08960a0b..94d831e42 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/emerald-velvet-chair-01.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/emerald-velvet-chair-01.spec.ts @@ -44,7 +44,7 @@ describe(`with emeraldVelvetChair01 preset`, () => { "w": 6000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Emerald_Velvet_Chair-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Emerald_Velvet_Chair-1.1.jpeg", }, ], "key": undefined, @@ -127,7 +127,7 @@ describe(`with emeraldVelvetChair01 preset`, () => { "width": 6000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Emerald_Velvet_Chair-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Emerald_Velvet_Chair-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/emerald-velvet-chair-01.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/emerald-velvet-chair-01.ts similarity index 96% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/emerald-velvet-chair-01.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/emerald-velvet-chair-01.ts index 4ea6d3f2b..32bca6ae3 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/emerald-velvet-chair-01.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/emerald-velvet-chair-01.ts @@ -26,7 +26,7 @@ const emeraldVelvetChair01 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Emerald_Velvet_Chair-1.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Emerald_Velvet_Chair-1.1.jpeg' ) .dimensions({ w: 6000, h: 4800 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/entryway-closet-01.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/entryway-closet-01.spec.ts similarity index 93% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/entryway-closet-01.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/entryway-closet-01.spec.ts index eb44896b4..3e879d98e 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/entryway-closet-01.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/entryway-closet-01.spec.ts @@ -44,7 +44,7 @@ describe(`with entrywayCloset01 preset`, () => { "w": 5500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Entryway_Closet-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Entryway_Closet-1.1.jpeg", }, { "dimensions": { @@ -52,7 +52,7 @@ describe(`with entrywayCloset01 preset`, () => { "w": 4700, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Entryway_Closet-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Entryway_Closet-1.2.jpeg", }, { "dimensions": { @@ -60,7 +60,7 @@ describe(`with entrywayCloset01 preset`, () => { "w": 5500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Entryway_Closet-1.3.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Entryway_Closet-1.3.jpeg", }, ], "key": undefined, @@ -143,7 +143,7 @@ describe(`with entrywayCloset01 preset`, () => { "width": 5500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Entryway_Closet-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Entryway_Closet-1.1.jpeg", }, { "dimensions": { @@ -151,7 +151,7 @@ describe(`with entrywayCloset01 preset`, () => { "width": 4700, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Entryway_Closet-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Entryway_Closet-1.2.jpeg", }, { "dimensions": { @@ -159,7 +159,7 @@ describe(`with entrywayCloset01 preset`, () => { "width": 5500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Entryway_Closet-1.3.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Entryway_Closet-1.3.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/entryway-closet-01.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/entryway-closet-01.ts similarity index 92% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/entryway-closet-01.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/entryway-closet-01.ts index 8b04fb629..471063bf7 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/entryway-closet-01.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/entryway-closet-01.ts @@ -26,19 +26,19 @@ const entrywayCloset01 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Entryway_Closet-1.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Entryway_Closet-1.1.jpeg' ) .dimensions({ w: 5500, h: 4125 }), ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Entryway_Closet-1.2.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Entryway_Closet-1.2.jpeg' ) .dimensions({ w: 4700, h: 4512 }), ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Entryway_Closet-1.3.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Entryway_Closet-1.3.jpeg' ) .dimensions({ w: 5500, h: 4125 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/evergreen-candle-01.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/evergreen-candle-01.spec.ts similarity index 92% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/evergreen-candle-01.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/evergreen-candle-01.spec.ts index cbe9121bd..ae3ed825a 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/evergreen-candle-01.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/evergreen-candle-01.spec.ts @@ -28,7 +28,7 @@ describe(`with evergreenCandle01 preset`, () => { "w": 3840, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Evergreen_Candle-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Evergreen_Candle-1.1.jpeg", }, { "dimensions": { @@ -36,7 +36,7 @@ describe(`with evergreenCandle01 preset`, () => { "w": 3840, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Evergreen_Candle-1.3.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Evergreen_Candle-1.3.jpeg", }, { "dimensions": { @@ -44,7 +44,7 @@ describe(`with evergreenCandle01 preset`, () => { "w": 4480, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Evergreen_Candle-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Evergreen_Candle-1.2.jpeg", }, ], "key": undefined, @@ -119,7 +119,7 @@ describe(`with evergreenCandle01 preset`, () => { "width": 3840, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Evergreen_Candle-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Evergreen_Candle-1.1.jpeg", }, { "dimensions": { @@ -127,7 +127,7 @@ describe(`with evergreenCandle01 preset`, () => { "width": 3840, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Evergreen_Candle-1.3.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Evergreen_Candle-1.3.jpeg", }, { "dimensions": { @@ -135,7 +135,7 @@ describe(`with evergreenCandle01 preset`, () => { "width": 4480, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Evergreen_Candle-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Evergreen_Candle-1.2.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/evergreen-candle-01.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/evergreen-candle-01.ts similarity index 91% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/evergreen-candle-01.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/evergreen-candle-01.ts index 817eaf183..b2acb3c6c 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/evergreen-candle-01.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/evergreen-candle-01.ts @@ -26,19 +26,19 @@ const evergreenCandle01 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Evergreen_Candle-1.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Evergreen_Candle-1.1.jpeg' ) .dimensions({ w: 3840, h: 2160 }), ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Evergreen_Candle-1.3.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Evergreen_Candle-1.3.jpeg' ) .dimensions({ w: 3840, h: 2160 }), ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Evergreen_Candle-1.2.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Evergreen_Candle-1.2.jpeg' ) .dimensions({ w: 4480, h: 6720 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/fawn-armchair-01.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/fawn-armchair-01.spec.ts similarity index 97% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/fawn-armchair-01.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/fawn-armchair-01.spec.ts index d8dbdbafa..a0c225367 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/fawn-armchair-01.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/fawn-armchair-01.spec.ts @@ -43,7 +43,7 @@ describe(`with fawnArmchair01 preset`, () => { "w": 2400, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Fawn_Armchair-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Fawn_Armchair-1.1.jpeg", }, ], "key": undefined, @@ -126,7 +126,7 @@ describe(`with fawnArmchair01 preset`, () => { "width": 2400, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Fawn_Armchair-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Fawn_Armchair-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/fawn-armchair-01.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/fawn-armchair-01.ts similarity index 97% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/fawn-armchair-01.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/fawn-armchair-01.ts index 6b986f518..d88d8c1dc 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/fawn-armchair-01.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/fawn-armchair-01.ts @@ -26,7 +26,7 @@ const fawnArmchair01 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Fawn_Armchair-1.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Fawn_Armchair-1.1.jpeg' ) .dimensions({ w: 2400, h: 3200 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/geometric-pillow-case-01.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/geometric-pillow-case-01.spec.ts similarity index 95% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/geometric-pillow-case-01.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/geometric-pillow-case-01.spec.ts index 63c396cf8..d13a0ecaa 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/geometric-pillow-case-01.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/geometric-pillow-case-01.spec.ts @@ -46,7 +46,7 @@ describe(`with geometricPillowCase01 preset`, () => { "w": 5000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Geometric_Pillow_Case-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Geometric_Pillow_Case-1.1.jpeg", }, { "dimensions": { @@ -54,7 +54,7 @@ describe(`with geometricPillowCase01 preset`, () => { "w": 5000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Geometric_Pillow_Case-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Geometric_Pillow_Case-1.2.jpeg", }, ], "key": undefined, @@ -133,7 +133,7 @@ describe(`with geometricPillowCase01 preset`, () => { "width": 5000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Geometric_Pillow_Case-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Geometric_Pillow_Case-1.1.jpeg", }, { "dimensions": { @@ -141,7 +141,7 @@ describe(`with geometricPillowCase01 preset`, () => { "width": 5000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Geometric_Pillow_Case-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Geometric_Pillow_Case-1.2.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/geometric-pillow-case-01.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/geometric-pillow-case-01.ts similarity index 94% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/geometric-pillow-case-01.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/geometric-pillow-case-01.ts index 0e37e692a..395770202 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/geometric-pillow-case-01.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/geometric-pillow-case-01.ts @@ -26,13 +26,13 @@ const geometricPillowCase01 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Geometric_Pillow_Case-1.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Geometric_Pillow_Case-1.1.jpeg' ) .dimensions({ w: 5000, h: 5000 }), ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Geometric_Pillow_Case-1.2.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Geometric_Pillow_Case-1.2.jpeg' ) .dimensions({ w: 5000, h: 5000 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/geometric-pillow-case-02.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/geometric-pillow-case-02.spec.ts similarity index 95% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/geometric-pillow-case-02.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/geometric-pillow-case-02.spec.ts index c7575def0..b68c399d8 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/geometric-pillow-case-02.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/geometric-pillow-case-02.spec.ts @@ -46,7 +46,7 @@ describe(`with geometricPillowCase02 preset`, () => { "w": 5000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Geometric_Pillow_Case-2.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Geometric_Pillow_Case-2.1.jpeg", }, { "dimensions": { @@ -54,7 +54,7 @@ describe(`with geometricPillowCase02 preset`, () => { "w": 5000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Geometric_Pillow_Case-2.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Geometric_Pillow_Case-2.2.jpeg", }, ], "key": undefined, @@ -133,7 +133,7 @@ describe(`with geometricPillowCase02 preset`, () => { "width": 5000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Geometric_Pillow_Case-2.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Geometric_Pillow_Case-2.1.jpeg", }, { "dimensions": { @@ -141,7 +141,7 @@ describe(`with geometricPillowCase02 preset`, () => { "width": 5000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Geometric_Pillow_Case-2.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Geometric_Pillow_Case-2.2.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/geometric-pillow-case-02.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/geometric-pillow-case-02.ts similarity index 94% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/geometric-pillow-case-02.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/geometric-pillow-case-02.ts index 4e3f2fe73..75f8dce09 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/geometric-pillow-case-02.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/geometric-pillow-case-02.ts @@ -26,13 +26,13 @@ const geometricPillowCase02 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Geometric_Pillow_Case-2.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Geometric_Pillow_Case-2.1.jpeg' ) .dimensions({ w: 5000, h: 5000 }), ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Geometric_Pillow_Case-2.2.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Geometric_Pillow_Case-2.2.jpeg' ) .dimensions({ w: 5000, h: 5000 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/geometric-pillow-case-03.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/geometric-pillow-case-03.spec.ts similarity index 95% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/geometric-pillow-case-03.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/geometric-pillow-case-03.spec.ts index 4ee57d5eb..1de6a53eb 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/geometric-pillow-case-03.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/geometric-pillow-case-03.spec.ts @@ -46,7 +46,7 @@ describe(`with geometricPillowCase03 preset`, () => { "w": 5000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Geometric_Pillow_Case-3.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Geometric_Pillow_Case-3.1.jpeg", }, { "dimensions": { @@ -54,7 +54,7 @@ describe(`with geometricPillowCase03 preset`, () => { "w": 5000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Geometric_Pillow_Case-3.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Geometric_Pillow_Case-3.2.jpeg", }, ], "key": undefined, @@ -133,7 +133,7 @@ describe(`with geometricPillowCase03 preset`, () => { "width": 5000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Geometric_Pillow_Case-3.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Geometric_Pillow_Case-3.1.jpeg", }, { "dimensions": { @@ -141,7 +141,7 @@ describe(`with geometricPillowCase03 preset`, () => { "width": 5000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Geometric_Pillow_Case-3.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Geometric_Pillow_Case-3.2.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/geometric-pillow-case-03.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/geometric-pillow-case-03.ts similarity index 94% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/geometric-pillow-case-03.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/geometric-pillow-case-03.ts index 585569b4d..9ca4027ad 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/geometric-pillow-case-03.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/geometric-pillow-case-03.ts @@ -26,13 +26,13 @@ const geometricPillowCase03 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Geometric_Pillow_Case-3.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Geometric_Pillow_Case-3.1.jpeg' ) .dimensions({ w: 5000, h: 5000 }), ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Geometric_Pillow_Case-3.2.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Geometric_Pillow_Case-3.2.jpeg' ) .dimensions({ w: 5000, h: 5000 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/glam-armchair-01.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/glam-armchair-01.spec.ts similarity index 97% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/glam-armchair-01.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/glam-armchair-01.spec.ts index fcfbfdaba..133793191 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/glam-armchair-01.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/glam-armchair-01.spec.ts @@ -43,7 +43,7 @@ describe(`with glamArmchair01 preset`, () => { "w": 5500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Glam_Armchair-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Glam_Armchair-1.1.jpeg", }, ], "key": undefined, @@ -126,7 +126,7 @@ describe(`with glamArmchair01 preset`, () => { "width": 5500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Glam_Armchair-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Glam_Armchair-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/glam-armchair-01.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/glam-armchair-01.ts similarity index 97% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/glam-armchair-01.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/glam-armchair-01.ts index 37db669c4..da6607ed0 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/glam-armchair-01.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/glam-armchair-01.ts @@ -26,7 +26,7 @@ const glamArmchair01 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Glam_Armchair-1.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Glam_Armchair-1.1.jpeg' ) .dimensions({ w: 5500, h: 4400 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/gold-rimmed-champagne-glasses-01.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/gold-rimmed-champagne-glasses-01.spec.ts similarity index 91% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/gold-rimmed-champagne-glasses-01.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/gold-rimmed-champagne-glasses-01.spec.ts index 75d8c35a5..dc99c31fc 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/gold-rimmed-champagne-glasses-01.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/gold-rimmed-champagne-glasses-01.spec.ts @@ -47,7 +47,7 @@ describe(`with goldRimmedChampagneGlasses01 preset`, () => { "w": 2192, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Gold_Rimmed_Champagne_Glasses-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Gold_Rimmed_Champagne_Glasses-1.1.jpeg", }, { "dimensions": { @@ -55,7 +55,7 @@ describe(`with goldRimmedChampagneGlasses01 preset`, () => { "w": 5143, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Gold_Rimmed_Champagne_Glasses-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Gold_Rimmed_Champagne_Glasses-1.2.jpeg", }, { "dimensions": { @@ -63,7 +63,7 @@ describe(`with goldRimmedChampagneGlasses01 preset`, () => { "w": 6869, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Gold_Rimmed_Champagne_Glasses-1.4.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Gold_Rimmed_Champagne_Glasses-1.4.jpeg", }, { "dimensions": { @@ -71,7 +71,7 @@ describe(`with goldRimmedChampagneGlasses01 preset`, () => { "w": 8080, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Gold_Rimmed_Champagne_Glasses-1.3.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Gold_Rimmed_Champagne_Glasses-1.3.jpeg", }, ], "key": undefined, @@ -154,7 +154,7 @@ describe(`with goldRimmedChampagneGlasses01 preset`, () => { "width": 2192, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Gold_Rimmed_Champagne_Glasses-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Gold_Rimmed_Champagne_Glasses-1.1.jpeg", }, { "dimensions": { @@ -162,7 +162,7 @@ describe(`with goldRimmedChampagneGlasses01 preset`, () => { "width": 5143, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Gold_Rimmed_Champagne_Glasses-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Gold_Rimmed_Champagne_Glasses-1.2.jpeg", }, { "dimensions": { @@ -170,7 +170,7 @@ describe(`with goldRimmedChampagneGlasses01 preset`, () => { "width": 6869, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Gold_Rimmed_Champagne_Glasses-1.4.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Gold_Rimmed_Champagne_Glasses-1.4.jpeg", }, { "dimensions": { @@ -178,7 +178,7 @@ describe(`with goldRimmedChampagneGlasses01 preset`, () => { "width": 8080, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Gold_Rimmed_Champagne_Glasses-1.3.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Gold_Rimmed_Champagne_Glasses-1.3.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/gold-rimmed-champagne-glasses-01.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/gold-rimmed-champagne-glasses-01.ts similarity index 89% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/gold-rimmed-champagne-glasses-01.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/gold-rimmed-champagne-glasses-01.ts index ca4a4f83d..47e07b88b 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/gold-rimmed-champagne-glasses-01.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/gold-rimmed-champagne-glasses-01.ts @@ -26,25 +26,25 @@ const goldRimmedChampagneGlasses01 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Gold_Rimmed_Champagne_Glasses-1.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Gold_Rimmed_Champagne_Glasses-1.1.jpeg' ) .dimensions({ w: 2192, h: 3288 }), ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Gold_Rimmed_Champagne_Glasses-1.2.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Gold_Rimmed_Champagne_Glasses-1.2.jpeg' ) .dimensions({ w: 5143, h: 4113 }), ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Gold_Rimmed_Champagne_Glasses-1.4.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Gold_Rimmed_Champagne_Glasses-1.4.jpeg' ) .dimensions({ w: 6869, h: 3435 }), ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Gold_Rimmed_Champagne_Glasses-1.3.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Gold_Rimmed_Champagne_Glasses-1.3.jpeg' ) .dimensions({ w: 8080, h: 5077 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/green-serving-plate-01.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/green-serving-plate-01.spec.ts similarity index 94% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/green-serving-plate-01.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/green-serving-plate-01.spec.ts index 595d73446..cbc1dede5 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/green-serving-plate-01.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/green-serving-plate-01.spec.ts @@ -33,7 +33,7 @@ describe(`with greenServingPlate01 preset`, () => { "w": 4631, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Green_Serving_Plate-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Green_Serving_Plate-1.1.jpeg", }, { "dimensions": { @@ -41,7 +41,7 @@ describe(`with greenServingPlate01 preset`, () => { "w": 5705, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Green_Serving_Plate-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Green_Serving_Plate-1.2.jpeg", }, ], "key": undefined, @@ -120,7 +120,7 @@ describe(`with greenServingPlate01 preset`, () => { "width": 4631, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Green_Serving_Plate-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Green_Serving_Plate-1.1.jpeg", }, { "dimensions": { @@ -128,7 +128,7 @@ describe(`with greenServingPlate01 preset`, () => { "width": 5705, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Green_Serving_Plate-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Green_Serving_Plate-1.2.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/green-serving-plate-01.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/green-serving-plate-01.ts similarity index 93% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/green-serving-plate-01.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/green-serving-plate-01.ts index d1a866da8..5440b2cb9 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/green-serving-plate-01.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/green-serving-plate-01.ts @@ -26,13 +26,13 @@ const greenServingPlate01 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Green_Serving_Plate-1.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Green_Serving_Plate-1.1.jpeg' ) .dimensions({ w: 4631, h: 4426 }), ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Green_Serving_Plate-1.2.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Green_Serving_Plate-1.2.jpeg' ) .dimensions({ w: 5705, h: 3653 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/harmony-drinking-glass-01.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/harmony-drinking-glass-01.spec.ts similarity index 97% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/harmony-drinking-glass-01.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/harmony-drinking-glass-01.spec.ts index 8025b650a..c72e74e5f 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/harmony-drinking-glass-01.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/harmony-drinking-glass-01.spec.ts @@ -33,7 +33,7 @@ describe(`with harmonyDrinkingGlass01 preset`, () => { "w": 3000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Harmony_Drinking_Glass-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Harmony_Drinking_Glass-1.1.jpeg", }, ], "key": undefined, @@ -115,7 +115,7 @@ describe(`with harmonyDrinkingGlass01 preset`, () => { "width": 3000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Harmony_Drinking_Glass-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Harmony_Drinking_Glass-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/harmony-drinking-glass-01.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/harmony-drinking-glass-01.ts similarity index 93% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/harmony-drinking-glass-01.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/harmony-drinking-glass-01.ts index 2ba51805e..a45e52d2f 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/harmony-drinking-glass-01.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/harmony-drinking-glass-01.ts @@ -9,7 +9,7 @@ import { ImageDraft } from '../../../../image'; import type { TProductVariantDraftBuilder } from '../../../types'; import * as ProductVariantDraft from '../../index'; -const distributionChannel = ChannelDraft.presets.sampleDataGoodStore +const distributionChannel = ChannelDraft.presets.sampleDataB2CLifestyle .distributionChannel() .build(); @@ -38,7 +38,7 @@ const harmonyDrinkingGlass01 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Harmony_Drinking_Glass-1.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Harmony_Drinking_Glass-1.1.jpeg' ) .dimensions({ w: 3000, h: 3000 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/harvest-plate-01.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/harvest-plate-01.spec.ts similarity index 97% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/harvest-plate-01.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/harvest-plate-01.spec.ts index a147a44da..4102c8b5c 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/harvest-plate-01.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/harvest-plate-01.spec.ts @@ -32,7 +32,7 @@ describe(`with harvestPlate01 preset`, () => { "w": 4421, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Harvest_Plate-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Harvest_Plate-1.1.jpeg", }, ], "key": undefined, @@ -111,7 +111,7 @@ describe(`with harvestPlate01 preset`, () => { "width": 4421, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Harvest_Plate-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Harvest_Plate-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/harvest-plate-01.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/harvest-plate-01.ts similarity index 96% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/harvest-plate-01.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/harvest-plate-01.ts index f65b8f405..f24cc6105 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/harvest-plate-01.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/harvest-plate-01.ts @@ -26,7 +26,7 @@ const harvestPlate01 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Harvest_Plate-1.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Harvest_Plate-1.1.jpeg' ) .dimensions({ w: 4421, h: 3812 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/ice-bucket-01.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/ice-bucket-01.spec.ts similarity index 97% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/ice-bucket-01.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/ice-bucket-01.spec.ts index 4162b0361..6d24ea40b 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/ice-bucket-01.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/ice-bucket-01.spec.ts @@ -35,7 +35,7 @@ describe(`with iceBucket01 preset`, () => { "w": 5072, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Ice_Bucket-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Ice_Bucket-1.1.jpeg", }, ], "key": undefined, @@ -114,7 +114,7 @@ describe(`with iceBucket01 preset`, () => { "width": 5072, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Ice_Bucket-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Ice_Bucket-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/ice-bucket-01.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/ice-bucket-01.ts similarity index 96% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/ice-bucket-01.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/ice-bucket-01.ts index f9858a1a4..ac1da8eda 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/ice-bucket-01.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/ice-bucket-01.ts @@ -26,7 +26,7 @@ const iceBucket01 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Ice_Bucket-1.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Ice_Bucket-1.1.jpeg' ) .dimensions({ w: 5072, h: 4992 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/idun-pillow-cover-01.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/idun-pillow-cover-01.spec.ts similarity index 97% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/idun-pillow-cover-01.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/idun-pillow-cover-01.spec.ts index 1280b1da7..ed26e39c9 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/idun-pillow-cover-01.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/idun-pillow-cover-01.spec.ts @@ -36,7 +36,7 @@ describe(`with idunPillowCover01 preset`, () => { "w": 5994, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Idun_Pillow_Cover-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Idun_Pillow_Cover-1.1.jpeg", }, ], "key": undefined, @@ -118,7 +118,7 @@ describe(`with idunPillowCover01 preset`, () => { "width": 5994, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Idun_Pillow_Cover-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Idun_Pillow_Cover-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/idun-pillow-cover-01.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/idun-pillow-cover-01.ts similarity index 93% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/idun-pillow-cover-01.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/idun-pillow-cover-01.ts index 3f137422b..0e37a0ece 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/idun-pillow-cover-01.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/idun-pillow-cover-01.ts @@ -9,7 +9,7 @@ import { ImageDraft } from '../../../../image'; import type { TProductVariantDraftBuilder } from '../../../types'; import * as ProductVariantDraft from '../../index'; -const distributionChannel = ChannelDraft.presets.sampleDataGoodStore +const distributionChannel = ChannelDraft.presets.sampleDataB2CLifestyle .distributionChannel() .build(); @@ -38,7 +38,7 @@ const idunPillowCover01 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Idun_Pillow_Cover-1.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Idun_Pillow_Cover-1.1.jpeg' ) .dimensions({ w: 5994, h: 3996 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/index.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/index.ts similarity index 100% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/index.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/index.ts diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/indoor-jute-planter-01.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/indoor-jute-planter-01.spec.ts similarity index 97% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/indoor-jute-planter-01.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/indoor-jute-planter-01.spec.ts index 0f4abcc88..a9a2d47c1 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/indoor-jute-planter-01.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/indoor-jute-planter-01.spec.ts @@ -31,7 +31,7 @@ describe(`with indoorJutePlanter01 preset`, () => { "w": 5000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Indoor_Jute_Planter-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Indoor_Jute_Planter-1.1.jpeg", }, ], "key": undefined, @@ -110,7 +110,7 @@ describe(`with indoorJutePlanter01 preset`, () => { "width": 5000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Indoor_Jute_Planter-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Indoor_Jute_Planter-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/indoor-jute-planter-01.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/indoor-jute-planter-01.ts similarity index 96% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/indoor-jute-planter-01.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/indoor-jute-planter-01.ts index 51c6ea293..07a06b247 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/indoor-jute-planter-01.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/indoor-jute-planter-01.ts @@ -26,7 +26,7 @@ const indoorJutePlanter01 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Indoor_Jute_Planter-1.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Indoor_Jute_Planter-1.1.jpeg' ) .dimensions({ w: 5000, h: 5000 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/indoor-jute-planter-02.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/indoor-jute-planter-02.spec.ts similarity index 97% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/indoor-jute-planter-02.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/indoor-jute-planter-02.spec.ts index ee877a72f..b6f58f947 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/indoor-jute-planter-02.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/indoor-jute-planter-02.spec.ts @@ -31,7 +31,7 @@ describe(`with indoorJutePlanter02 preset`, () => { "w": 5000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Indoor_Jute_Planter-2.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Indoor_Jute_Planter-2.1.jpeg", }, ], "key": undefined, @@ -110,7 +110,7 @@ describe(`with indoorJutePlanter02 preset`, () => { "width": 5000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Indoor_Jute_Planter-2.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Indoor_Jute_Planter-2.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/indoor-jute-planter-02.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/indoor-jute-planter-02.ts similarity index 96% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/indoor-jute-planter-02.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/indoor-jute-planter-02.ts index 248a64beb..77105ae10 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/indoor-jute-planter-02.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/indoor-jute-planter-02.ts @@ -26,7 +26,7 @@ const indoorJutePlanter02 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Indoor_Jute_Planter-2.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Indoor_Jute_Planter-2.1.jpeg' ) .dimensions({ w: 5000, h: 5000 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/ivory-lounge-chair-01.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/ivory-lounge-chair-01.spec.ts similarity index 93% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/ivory-lounge-chair-01.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/ivory-lounge-chair-01.spec.ts index eab42f85a..d1dc8623c 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/ivory-lounge-chair-01.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/ivory-lounge-chair-01.spec.ts @@ -36,7 +36,7 @@ describe(`with ivoryLoungeChair01 preset`, () => { "w": 5500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Ivory_Lounge_Chair-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Ivory_Lounge_Chair-1.1.jpeg", }, { "dimensions": { @@ -44,7 +44,7 @@ describe(`with ivoryLoungeChair01 preset`, () => { "w": 3375, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Ivory_Lounge_Chair-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Ivory_Lounge_Chair-1.2.jpeg", }, { "dimensions": { @@ -52,7 +52,7 @@ describe(`with ivoryLoungeChair01 preset`, () => { "w": 3750, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Ivory_Lounge_Chair-1.3.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Ivory_Lounge_Chair-1.3.jpeg", }, ], "key": undefined, @@ -131,7 +131,7 @@ describe(`with ivoryLoungeChair01 preset`, () => { "width": 5500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Ivory_Lounge_Chair-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Ivory_Lounge_Chair-1.1.jpeg", }, { "dimensions": { @@ -139,7 +139,7 @@ describe(`with ivoryLoungeChair01 preset`, () => { "width": 3375, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Ivory_Lounge_Chair-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Ivory_Lounge_Chair-1.2.jpeg", }, { "dimensions": { @@ -147,7 +147,7 @@ describe(`with ivoryLoungeChair01 preset`, () => { "width": 3750, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Ivory_Lounge_Chair-1.3.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Ivory_Lounge_Chair-1.3.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/ivory-lounge-chair-01.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/ivory-lounge-chair-01.ts similarity index 92% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/ivory-lounge-chair-01.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/ivory-lounge-chair-01.ts index 344a2f522..c049eab2d 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/ivory-lounge-chair-01.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/ivory-lounge-chair-01.ts @@ -26,19 +26,19 @@ const ivoryLoungeChair01 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Ivory_Lounge_Chair-1.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Ivory_Lounge_Chair-1.1.jpeg' ) .dimensions({ w: 5500, h: 4400 }), ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Ivory_Lounge_Chair-1.2.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Ivory_Lounge_Chair-1.2.jpeg' ) .dimensions({ w: 3375, h: 4500 }), ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Ivory_Lounge_Chair-1.3.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Ivory_Lounge_Chair-1.3.jpeg' ) .dimensions({ w: 3750, h: 5000 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/ivory-plate-01.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/ivory-plate-01.spec.ts similarity index 97% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/ivory-plate-01.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/ivory-plate-01.spec.ts index 399fe0de9..fcb93cbcb 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/ivory-plate-01.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/ivory-plate-01.spec.ts @@ -32,7 +32,7 @@ describe(`with ivoryPlate01 preset`, () => { "w": 5088, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Ivory_Plate-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Ivory_Plate-1.1.jpeg", }, ], "key": undefined, @@ -111,7 +111,7 @@ describe(`with ivoryPlate01 preset`, () => { "width": 5088, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Ivory_Plate-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Ivory_Plate-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/ivory-plate-01.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/ivory-plate-01.ts similarity index 96% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/ivory-plate-01.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/ivory-plate-01.ts index 2c108b19c..34a60a50e 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/ivory-plate-01.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/ivory-plate-01.ts @@ -26,7 +26,7 @@ const ivoryPlate01 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Ivory_Plate-1.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Ivory_Plate-1.1.jpeg' ) .dimensions({ w: 5088, h: 4576 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/jute-rug-01.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/jute-rug-01.spec.ts similarity index 94% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/jute-rug-01.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/jute-rug-01.spec.ts index a869d5456..8d9f3ae4c 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/jute-rug-01.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/jute-rug-01.spec.ts @@ -32,7 +32,7 @@ describe(`with juteRug01 preset`, () => { "w": 7600, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Jute_Rug-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Jute_Rug-1.1.jpeg", }, { "dimensions": { @@ -40,7 +40,7 @@ describe(`with juteRug01 preset`, () => { "w": 5760, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Jute_Rug-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Jute_Rug-1.2.jpeg", }, { "dimensions": { @@ -48,7 +48,7 @@ describe(`with juteRug01 preset`, () => { "w": 5760, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Jute_Rug-1.3.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Jute_Rug-1.3.jpeg", }, ], "key": undefined, @@ -130,7 +130,7 @@ describe(`with juteRug01 preset`, () => { "width": 7600, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Jute_Rug-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Jute_Rug-1.1.jpeg", }, { "dimensions": { @@ -138,7 +138,7 @@ describe(`with juteRug01 preset`, () => { "width": 5760, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Jute_Rug-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Jute_Rug-1.2.jpeg", }, { "dimensions": { @@ -146,7 +146,7 @@ describe(`with juteRug01 preset`, () => { "width": 5760, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Jute_Rug-1.3.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Jute_Rug-1.3.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/jute-rug-01.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/jute-rug-01.ts similarity index 90% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/jute-rug-01.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/jute-rug-01.ts index db4cef693..f8fcbae8e 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/jute-rug-01.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/jute-rug-01.ts @@ -9,7 +9,7 @@ import { ImageDraft } from '../../../../image'; import type { TProductVariantDraftBuilder } from '../../../types'; import * as ProductVariantDraft from '../../index'; -const distributionChannel = ChannelDraft.presets.sampleDataGoodStore +const distributionChannel = ChannelDraft.presets.sampleDataB2CLifestyle .distributionChannel() .build(); @@ -38,19 +38,19 @@ const juteRug01 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Jute_Rug-1.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Jute_Rug-1.1.jpeg' ) .dimensions({ w: 7600, h: 5223 }), ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Jute_Rug-1.2.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Jute_Rug-1.2.jpeg' ) .dimensions({ w: 5760, h: 3840 }), ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Jute_Rug-1.3.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Jute_Rug-1.3.jpeg' ) .dimensions({ w: 5760, h: 3840 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/lana-pillow-cover-01.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/lana-pillow-cover-01.spec.ts similarity index 97% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/lana-pillow-cover-01.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/lana-pillow-cover-01.spec.ts index 20efc0879..50e5a66ab 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/lana-pillow-cover-01.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/lana-pillow-cover-01.spec.ts @@ -39,7 +39,7 @@ describe(`with lanaPillowCover01 preset`, () => { "w": 4350, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Lana_Pillow_Cover-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Lana_Pillow_Cover-1.1.jpeg", }, ], "key": undefined, @@ -118,7 +118,7 @@ describe(`with lanaPillowCover01 preset`, () => { "width": 4350, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Lana_Pillow_Cover-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Lana_Pillow_Cover-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/lana-pillow-cover-01.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/lana-pillow-cover-01.ts similarity index 96% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/lana-pillow-cover-01.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/lana-pillow-cover-01.ts index f9357562c..904e4ebf1 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/lana-pillow-cover-01.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/lana-pillow-cover-01.ts @@ -26,7 +26,7 @@ const lanaPillowCover01 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Lana_Pillow_Cover-1.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Lana_Pillow_Cover-1.1.jpeg' ) .dimensions({ w: 4350, h: 3143 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/large-ceramic-plate-01.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/large-ceramic-plate-01.spec.ts similarity index 95% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/large-ceramic-plate-01.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/large-ceramic-plate-01.spec.ts index 7c4f10d8c..c703238c4 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/large-ceramic-plate-01.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/large-ceramic-plate-01.spec.ts @@ -40,7 +40,7 @@ describe(`with largeCeramicPlate01 preset`, () => { "w": 3000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Large_Ceramic_Plate-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Large_Ceramic_Plate-1.1.jpeg", }, { "dimensions": { @@ -48,7 +48,7 @@ describe(`with largeCeramicPlate01 preset`, () => { "w": 3000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Large_Ceramic_Plate-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Large_Ceramic_Plate-1.2.jpeg", }, ], "key": undefined, @@ -127,7 +127,7 @@ describe(`with largeCeramicPlate01 preset`, () => { "width": 3000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Large_Ceramic_Plate-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Large_Ceramic_Plate-1.1.jpeg", }, { "dimensions": { @@ -135,7 +135,7 @@ describe(`with largeCeramicPlate01 preset`, () => { "width": 3000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Large_Ceramic_Plate-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Large_Ceramic_Plate-1.2.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/large-ceramic-plate-01.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/large-ceramic-plate-01.ts similarity index 93% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/large-ceramic-plate-01.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/large-ceramic-plate-01.ts index 63a78521f..73f342f51 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/large-ceramic-plate-01.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/large-ceramic-plate-01.ts @@ -26,13 +26,13 @@ const largeCeramicPlate01 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Large_Ceramic_Plate-1.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Large_Ceramic_Plate-1.1.jpeg' ) .dimensions({ w: 3000, h: 2700 }), ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Large_Ceramic_Plate-1.2.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Large_Ceramic_Plate-1.2.jpeg' ) .dimensions({ w: 3000, h: 2700 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/large-ceramic-plate-02.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/large-ceramic-plate-02.spec.ts similarity index 95% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/large-ceramic-plate-02.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/large-ceramic-plate-02.spec.ts index b017ec8d1..5652e08fe 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/large-ceramic-plate-02.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/large-ceramic-plate-02.spec.ts @@ -40,7 +40,7 @@ describe(`with largeCeramicPlate02 preset`, () => { "w": 3000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Large_Ceramic_Plate-2.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Large_Ceramic_Plate-2.1.jpeg", }, { "dimensions": { @@ -48,7 +48,7 @@ describe(`with largeCeramicPlate02 preset`, () => { "w": 3000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Large_Ceramic_Plate-2.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Large_Ceramic_Plate-2.2.jpeg", }, ], "key": undefined, @@ -127,7 +127,7 @@ describe(`with largeCeramicPlate02 preset`, () => { "width": 3000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Large_Ceramic_Plate-2.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Large_Ceramic_Plate-2.1.jpeg", }, { "dimensions": { @@ -135,7 +135,7 @@ describe(`with largeCeramicPlate02 preset`, () => { "width": 3000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Large_Ceramic_Plate-2.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Large_Ceramic_Plate-2.2.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/large-ceramic-plate-02.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/large-ceramic-plate-02.ts similarity index 93% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/large-ceramic-plate-02.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/large-ceramic-plate-02.ts index ab881dc01..9b548426f 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/large-ceramic-plate-02.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/large-ceramic-plate-02.ts @@ -26,13 +26,13 @@ const largeCeramicPlate02 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Large_Ceramic_Plate-2.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Large_Ceramic_Plate-2.1.jpeg' ) .dimensions({ w: 3000, h: 2700 }), ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Large_Ceramic_Plate-2.2.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Large_Ceramic_Plate-2.2.jpeg' ) .dimensions({ w: 3000, h: 2700 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/leah-armchair-01.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/leah-armchair-01.spec.ts similarity index 97% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/leah-armchair-01.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/leah-armchair-01.spec.ts index 2dfca5530..7db19d595 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/leah-armchair-01.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/leah-armchair-01.spec.ts @@ -40,7 +40,7 @@ describe(`with leahArmchair01 preset`, () => { "w": 2400, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Leah_Armchair-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Leah_Armchair-1.1.jpeg", }, ], "key": undefined, @@ -123,7 +123,7 @@ describe(`with leahArmchair01 preset`, () => { "width": 2400, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Leah_Armchair-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Leah_Armchair-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/leah-armchair-01.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/leah-armchair-01.ts similarity index 96% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/leah-armchair-01.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/leah-armchair-01.ts index 6e31a44a6..521c3d4ac 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/leah-armchair-01.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/leah-armchair-01.ts @@ -26,7 +26,7 @@ const leahArmchair01 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Leah_Armchair-1.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Leah_Armchair-1.1.jpeg' ) .dimensions({ w: 2400, h: 3200 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/leather-coaster-01.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/leather-coaster-01.spec.ts similarity index 97% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/leather-coaster-01.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/leather-coaster-01.spec.ts index e0a1e5ac3..76f52deb7 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/leather-coaster-01.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/leather-coaster-01.spec.ts @@ -33,7 +33,7 @@ describe(`with leatherCoaster01 preset`, () => { "w": 2864, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Leather_Coaster-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Leather_Coaster-1.1.jpeg", }, ], "key": undefined, @@ -112,7 +112,7 @@ describe(`with leatherCoaster01 preset`, () => { "width": 2864, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Leather_Coaster-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Leather_Coaster-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/leather-coaster-01.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/leather-coaster-01.ts similarity index 96% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/leather-coaster-01.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/leather-coaster-01.ts index d361486f1..411f312d8 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/leather-coaster-01.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/leather-coaster-01.ts @@ -26,7 +26,7 @@ const leatherCoaster01 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Leather_Coaster-1.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Leather_Coaster-1.1.jpeg' ) .dimensions({ w: 2864, h: 2864 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/leather-weave-chair-01.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/leather-weave-chair-01.spec.ts similarity index 95% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/leather-weave-chair-01.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/leather-weave-chair-01.spec.ts index 3643c089d..ce7e841df 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/leather-weave-chair-01.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/leather-weave-chair-01.spec.ts @@ -37,7 +37,7 @@ describe(`with leatherWeaveChair01 preset`, () => { "w": 5500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Leather_Weave_Chair-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Leather_Weave_Chair-1.1.jpeg", }, { "dimensions": { @@ -45,7 +45,7 @@ describe(`with leatherWeaveChair01 preset`, () => { "w": 3375, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Leather_Weave_Chair-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Leather_Weave_Chair-1.2.jpeg", }, ], "key": undefined, @@ -128,7 +128,7 @@ describe(`with leatherWeaveChair01 preset`, () => { "width": 5500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Leather_Weave_Chair-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Leather_Weave_Chair-1.1.jpeg", }, { "dimensions": { @@ -136,7 +136,7 @@ describe(`with leatherWeaveChair01 preset`, () => { "width": 3375, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Leather_Weave_Chair-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Leather_Weave_Chair-1.2.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/leather-weave-chair-01.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/leather-weave-chair-01.ts similarity index 93% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/leather-weave-chair-01.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/leather-weave-chair-01.ts index 6ba67ebc8..82eb08c1e 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/leather-weave-chair-01.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/leather-weave-chair-01.ts @@ -26,13 +26,13 @@ const leatherWeaveChair01 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Leather_Weave_Chair-1.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Leather_Weave_Chair-1.1.jpeg' ) .dimensions({ w: 5500, h: 4400 }), ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Leather_Weave_Chair-1.2.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Leather_Weave_Chair-1.2.jpeg' ) .dimensions({ w: 3375, h: 4500 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/luxe-pillow-cover-01.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/luxe-pillow-cover-01.spec.ts similarity index 97% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/luxe-pillow-cover-01.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/luxe-pillow-cover-01.spec.ts index 9c3cf9107..e7e766bb2 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/luxe-pillow-cover-01.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/luxe-pillow-cover-01.spec.ts @@ -36,7 +36,7 @@ describe(`with luxePillowCover01 preset`, () => { "w": 6123, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Luxe_Pillow_Cover-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Luxe_Pillow_Cover-1.1.jpeg", }, ], "key": undefined, @@ -115,7 +115,7 @@ describe(`with luxePillowCover01 preset`, () => { "width": 6123, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Luxe_Pillow_Cover-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Luxe_Pillow_Cover-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/luxe-pillow-cover-01.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/luxe-pillow-cover-01.ts similarity index 96% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/luxe-pillow-cover-01.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/luxe-pillow-cover-01.ts index 2d375a2f2..426044907 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/luxe-pillow-cover-01.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/luxe-pillow-cover-01.ts @@ -26,7 +26,7 @@ const luxePillowCover01 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Luxe_Pillow_Cover-1.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Luxe_Pillow_Cover-1.1.jpeg' ) .dimensions({ w: 6123, h: 4082 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/marquis-tray-01.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/marquis-tray-01.spec.ts similarity index 97% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/marquis-tray-01.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/marquis-tray-01.spec.ts index b57d9dee8..5b46c9ff0 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/marquis-tray-01.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/marquis-tray-01.spec.ts @@ -32,7 +32,7 @@ describe(`with marquisTray01 preset`, () => { "w": 5056, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Marquis_Tray-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Marquis_Tray-1.1.jpeg", }, ], "key": undefined, @@ -111,7 +111,7 @@ describe(`with marquisTray01 preset`, () => { "width": 5056, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Marquis_Tray-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Marquis_Tray-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/marquis-tray-01.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/marquis-tray-01.ts similarity index 96% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/marquis-tray-01.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/marquis-tray-01.ts index 3d8211d5f..9adc4d0f3 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/marquis-tray-01.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/marquis-tray-01.ts @@ -26,7 +26,7 @@ const marquisTray01 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Marquis_Tray-1.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Marquis_Tray-1.1.jpeg' ) .dimensions({ w: 5056, h: 4784 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/maya-pillow-cover-01.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/maya-pillow-cover-01.spec.ts similarity index 97% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/maya-pillow-cover-01.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/maya-pillow-cover-01.spec.ts index 250b31ee7..3733b41d0 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/maya-pillow-cover-01.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/maya-pillow-cover-01.spec.ts @@ -36,7 +36,7 @@ describe(`with mayaPillowCover01 preset`, () => { "w": 6240, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Maya_Pillow_Cover-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Maya_Pillow_Cover-1.1.jpeg", }, ], "key": undefined, @@ -115,7 +115,7 @@ describe(`with mayaPillowCover01 preset`, () => { "width": 6240, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Maya_Pillow_Cover-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Maya_Pillow_Cover-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/maya-pillow-cover-01.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/maya-pillow-cover-01.ts similarity index 96% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/maya-pillow-cover-01.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/maya-pillow-cover-01.ts index 5ca79df29..8f9ca2d07 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/maya-pillow-cover-01.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/maya-pillow-cover-01.ts @@ -26,7 +26,7 @@ const mayaPillowCover01 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Maya_Pillow_Cover-1.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Maya_Pillow_Cover-1.1.jpeg' ) .dimensions({ w: 6240, h: 4160 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/maya-pillow-cover-02.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/maya-pillow-cover-02.spec.ts similarity index 97% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/maya-pillow-cover-02.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/maya-pillow-cover-02.spec.ts index 3d3bac96c..4c06d163e 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/maya-pillow-cover-02.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/maya-pillow-cover-02.spec.ts @@ -36,7 +36,7 @@ describe(`with mayaPillowCover02 preset`, () => { "w": 6240, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Maya_Pillow_Cover-2.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Maya_Pillow_Cover-2.1.jpeg", }, ], "key": undefined, @@ -115,7 +115,7 @@ describe(`with mayaPillowCover02 preset`, () => { "width": 6240, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Maya_Pillow_Cover-2.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Maya_Pillow_Cover-2.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/maya-pillow-cover-02.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/maya-pillow-cover-02.ts similarity index 96% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/maya-pillow-cover-02.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/maya-pillow-cover-02.ts index 9fff1e7bf..c815edb17 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/maya-pillow-cover-02.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/maya-pillow-cover-02.ts @@ -26,7 +26,7 @@ const mayaPillowCover02 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Maya_Pillow_Cover-2.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Maya_Pillow_Cover-2.1.jpeg' ) .dimensions({ w: 6240, h: 4160 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/meadow-rug-01.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/meadow-rug-01.spec.ts similarity index 97% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/meadow-rug-01.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/meadow-rug-01.spec.ts index 114706c74..d581ce3c7 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/meadow-rug-01.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/meadow-rug-01.spec.ts @@ -35,7 +35,7 @@ describe(`with meadowRug01 preset`, () => { "w": 4500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Meadow_Rug-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Meadow_Rug-1.1.jpeg", }, ], "key": undefined, @@ -114,7 +114,7 @@ describe(`with meadowRug01 preset`, () => { "width": 4500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Meadow_Rug-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Meadow_Rug-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/meadow-rug-01.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/meadow-rug-01.ts similarity index 96% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/meadow-rug-01.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/meadow-rug-01.ts index 369e14956..754ca4fbc 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/meadow-rug-01.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/meadow-rug-01.ts @@ -26,7 +26,7 @@ const meadowRug01 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Meadow_Rug-1.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Meadow_Rug-1.1.jpeg' ) .dimensions({ w: 4500, h: 3000 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/meadow-rug-02.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/meadow-rug-02.spec.ts similarity index 97% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/meadow-rug-02.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/meadow-rug-02.spec.ts index 139cb4fe7..cca16b8ae 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/meadow-rug-02.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/meadow-rug-02.spec.ts @@ -35,7 +35,7 @@ describe(`with meadowRug02 preset`, () => { "w": 4500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Meadow_Rug-2.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Meadow_Rug-2.1.jpeg", }, ], "key": undefined, @@ -114,7 +114,7 @@ describe(`with meadowRug02 preset`, () => { "width": 4500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Meadow_Rug-2.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Meadow_Rug-2.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/meadow-rug-02.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/meadow-rug-02.ts similarity index 96% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/meadow-rug-02.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/meadow-rug-02.ts index 9466fc843..b2137d88f 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/meadow-rug-02.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/meadow-rug-02.ts @@ -26,7 +26,7 @@ const meadowRug02 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Meadow_Rug-2.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Meadow_Rug-2.1.jpeg' ) .dimensions({ w: 4500, h: 3000 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/meadow-rug-03.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/meadow-rug-03.spec.ts similarity index 97% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/meadow-rug-03.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/meadow-rug-03.spec.ts index d33c180d5..fcef098d4 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/meadow-rug-03.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/meadow-rug-03.spec.ts @@ -35,7 +35,7 @@ describe(`with meadowRug03 preset`, () => { "w": 4500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Meadow_Rug-3.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Meadow_Rug-3.1.jpeg", }, ], "key": undefined, @@ -114,7 +114,7 @@ describe(`with meadowRug03 preset`, () => { "width": 4500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Meadow_Rug-3.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Meadow_Rug-3.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/meadow-rug-03.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/meadow-rug-03.ts similarity index 96% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/meadow-rug-03.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/meadow-rug-03.ts index 7e9765f97..17ca2492b 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/meadow-rug-03.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/meadow-rug-03.ts @@ -26,7 +26,7 @@ const meadowRug03 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Meadow_Rug-3.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Meadow_Rug-3.1.jpeg' ) .dimensions({ w: 4500, h: 3000 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/minimalist-cedar-nightstand-01.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/minimalist-cedar-nightstand-01.spec.ts similarity index 91% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/minimalist-cedar-nightstand-01.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/minimalist-cedar-nightstand-01.spec.ts index 227350f35..b197cdf9f 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/minimalist-cedar-nightstand-01.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/minimalist-cedar-nightstand-01.spec.ts @@ -28,7 +28,7 @@ describe(`with minimalistCedarNightstand01 preset`, () => { "w": 4011, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Minimalist_Cedar_Nightstand-1.3.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Minimalist_Cedar_Nightstand-1.3.jpeg", }, { "dimensions": { @@ -36,7 +36,7 @@ describe(`with minimalistCedarNightstand01 preset`, () => { "w": 4011, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Minimalist_Cedar_Nightstand-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Minimalist_Cedar_Nightstand-1.1.jpeg", }, { "dimensions": { @@ -44,7 +44,7 @@ describe(`with minimalistCedarNightstand01 preset`, () => { "w": 4011, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Minimalist_Cedar_Nightstand-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Minimalist_Cedar_Nightstand-1.2.jpeg", }, ], "key": undefined, @@ -119,7 +119,7 @@ describe(`with minimalistCedarNightstand01 preset`, () => { "width": 4011, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Minimalist_Cedar_Nightstand-1.3.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Minimalist_Cedar_Nightstand-1.3.jpeg", }, { "dimensions": { @@ -127,7 +127,7 @@ describe(`with minimalistCedarNightstand01 preset`, () => { "width": 4011, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Minimalist_Cedar_Nightstand-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Minimalist_Cedar_Nightstand-1.1.jpeg", }, { "dimensions": { @@ -135,7 +135,7 @@ describe(`with minimalistCedarNightstand01 preset`, () => { "width": 4011, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Minimalist_Cedar_Nightstand-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Minimalist_Cedar_Nightstand-1.2.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/minimalist-cedar-nightstand-01.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/minimalist-cedar-nightstand-01.ts similarity index 89% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/minimalist-cedar-nightstand-01.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/minimalist-cedar-nightstand-01.ts index 1cdee09cd..f54f75bed 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/minimalist-cedar-nightstand-01.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/minimalist-cedar-nightstand-01.ts @@ -26,19 +26,19 @@ const minimalistCedarNightstand01 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Minimalist_Cedar_Nightstand-1.3.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Minimalist_Cedar_Nightstand-1.3.jpeg' ) .dimensions({ w: 4011, h: 6016 }), ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Minimalist_Cedar_Nightstand-1.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Minimalist_Cedar_Nightstand-1.1.jpeg' ) .dimensions({ w: 4011, h: 6016 }), ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Minimalist_Cedar_Nightstand-1.2.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Minimalist_Cedar_Nightstand-1.2.jpeg' ) .dimensions({ w: 4011, h: 6016 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/minimalist-modern-side-table-01.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/minimalist-modern-side-table-01.spec.ts similarity index 97% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/minimalist-modern-side-table-01.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/minimalist-modern-side-table-01.spec.ts index 220d7c452..83af90cfe 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/minimalist-modern-side-table-01.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/minimalist-modern-side-table-01.spec.ts @@ -50,7 +50,7 @@ describe(`with minimalistModernSideTable01 preset`, () => { "w": 6000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Minimalist_Modern_Side_Table-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Minimalist_Modern_Side_Table-1.1.jpeg", }, ], "key": undefined, @@ -133,7 +133,7 @@ describe(`with minimalistModernSideTable01 preset`, () => { "width": 6000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Minimalist_Modern_Side_Table-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Minimalist_Modern_Side_Table-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/minimalist-modern-side-table-01.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/minimalist-modern-side-table-01.ts similarity index 96% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/minimalist-modern-side-table-01.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/minimalist-modern-side-table-01.ts index 3d76a2783..1295e410e 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/minimalist-modern-side-table-01.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/minimalist-modern-side-table-01.ts @@ -26,7 +26,7 @@ const minimalistModernSideTable01 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Minimalist_Modern_Side_Table-1.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Minimalist_Modern_Side_Table-1.1.jpeg' ) .dimensions({ w: 6000, h: 6232 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/minimalist-modern-side-table-02.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/minimalist-modern-side-table-02.spec.ts similarity index 97% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/minimalist-modern-side-table-02.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/minimalist-modern-side-table-02.spec.ts index 5daccdeb0..65e330b24 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/minimalist-modern-side-table-02.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/minimalist-modern-side-table-02.spec.ts @@ -50,7 +50,7 @@ describe(`with minimalistModernSideTable02 preset`, () => { "w": 5883, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Minimalist_Modern_Side_Table-2.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Minimalist_Modern_Side_Table-2.1.jpeg", }, ], "key": undefined, @@ -133,7 +133,7 @@ describe(`with minimalistModernSideTable02 preset`, () => { "width": 5883, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Minimalist_Modern_Side_Table-2.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Minimalist_Modern_Side_Table-2.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/minimalist-modern-side-table-02.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/minimalist-modern-side-table-02.ts similarity index 96% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/minimalist-modern-side-table-02.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/minimalist-modern-side-table-02.ts index 258c3335c..c65872619 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/minimalist-modern-side-table-02.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/minimalist-modern-side-table-02.ts @@ -26,7 +26,7 @@ const minimalistModernSideTable02 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Minimalist_Modern_Side_Table-2.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Minimalist_Modern_Side_Table-2.1.jpeg' ) .dimensions({ w: 5883, h: 6026 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/modern-black-coaster-01.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/modern-black-coaster-01.spec.ts similarity index 94% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/modern-black-coaster-01.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/modern-black-coaster-01.spec.ts index dd35a3ba8..4fdb7e205 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/modern-black-coaster-01.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/modern-black-coaster-01.spec.ts @@ -36,7 +36,7 @@ describe(`with modernBlackCoaster01 preset`, () => { "w": 2912, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Black_Coaster-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Black_Coaster-1.1.jpeg", }, { "dimensions": { @@ -44,7 +44,7 @@ describe(`with modernBlackCoaster01 preset`, () => { "w": 2912, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Black_Coaster-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Black_Coaster-1.2.jpeg", }, ], "key": undefined, @@ -123,7 +123,7 @@ describe(`with modernBlackCoaster01 preset`, () => { "width": 2912, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Black_Coaster-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Black_Coaster-1.1.jpeg", }, { "dimensions": { @@ -131,7 +131,7 @@ describe(`with modernBlackCoaster01 preset`, () => { "width": 2912, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Black_Coaster-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Black_Coaster-1.2.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/modern-black-coaster-01.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/modern-black-coaster-01.ts similarity index 93% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/modern-black-coaster-01.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/modern-black-coaster-01.ts index f11478c4b..f5d1f74e0 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/modern-black-coaster-01.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/modern-black-coaster-01.ts @@ -26,13 +26,13 @@ const modernBlackCoaster01 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Black_Coaster-1.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Black_Coaster-1.1.jpeg' ) .dimensions({ w: 2912, h: 2912 }), ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Black_Coaster-1.2.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Black_Coaster-1.2.jpeg' ) .dimensions({ w: 2912, h: 2912 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/modern-bookcase-01.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/modern-bookcase-01.spec.ts similarity index 97% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/modern-bookcase-01.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/modern-bookcase-01.spec.ts index 42db84404..55ab54d15 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/modern-bookcase-01.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/modern-bookcase-01.spec.ts @@ -36,7 +36,7 @@ describe(`with modernBookcase01 preset`, () => { "w": 2760, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Bookcase-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Bookcase-1.1.jpeg", }, ], "key": undefined, @@ -115,7 +115,7 @@ describe(`with modernBookcase01 preset`, () => { "width": 2760, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Bookcase-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Bookcase-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/modern-bookcase-01.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/modern-bookcase-01.ts similarity index 96% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/modern-bookcase-01.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/modern-bookcase-01.ts index 203820d4d..ce3a657b1 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/modern-bookcase-01.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/modern-bookcase-01.ts @@ -26,7 +26,7 @@ const modernBookcase01 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Bookcase-1.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Bookcase-1.1.jpeg' ) .dimensions({ w: 2760, h: 4600 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/modern-ceramic-plate-01.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/modern-ceramic-plate-01.spec.ts similarity index 97% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/modern-ceramic-plate-01.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/modern-ceramic-plate-01.spec.ts index 87be42424..a61bf9050 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/modern-ceramic-plate-01.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/modern-ceramic-plate-01.spec.ts @@ -36,7 +36,7 @@ describe(`with modernCeramicPlate01 preset`, () => { "w": 5088, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Ceramic_Plate-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Ceramic_Plate-1.1.jpeg", }, ], "key": undefined, @@ -115,7 +115,7 @@ describe(`with modernCeramicPlate01 preset`, () => { "width": 5088, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Ceramic_Plate-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Ceramic_Plate-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/modern-ceramic-plate-01.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/modern-ceramic-plate-01.ts similarity index 96% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/modern-ceramic-plate-01.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/modern-ceramic-plate-01.ts index 80a6551d0..0ef2132d6 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/modern-ceramic-plate-01.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/modern-ceramic-plate-01.ts @@ -26,7 +26,7 @@ const modernCeramicPlate01 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Ceramic_Plate-1.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Ceramic_Plate-1.1.jpeg' ) .dimensions({ w: 5088, h: 4576 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/modern-glam-dresser-01.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/modern-glam-dresser-01.spec.ts similarity index 93% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/modern-glam-dresser-01.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/modern-glam-dresser-01.spec.ts index bcb25eeef..95f01bf1f 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/modern-glam-dresser-01.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/modern-glam-dresser-01.spec.ts @@ -42,7 +42,7 @@ describe(`with modernGlamDresser01 preset`, () => { "w": 2500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Glam_Dresser-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Glam_Dresser-1.1.jpeg", }, { "dimensions": { @@ -50,7 +50,7 @@ describe(`with modernGlamDresser01 preset`, () => { "w": 2500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Glam_Dresser-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Glam_Dresser-1.2.jpeg", }, { "dimensions": { @@ -58,7 +58,7 @@ describe(`with modernGlamDresser01 preset`, () => { "w": 5760, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Glam_Dresser-1.3.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Glam_Dresser-1.3.jpeg", }, ], "key": undefined, @@ -137,7 +137,7 @@ describe(`with modernGlamDresser01 preset`, () => { "width": 2500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Glam_Dresser-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Glam_Dresser-1.1.jpeg", }, { "dimensions": { @@ -145,7 +145,7 @@ describe(`with modernGlamDresser01 preset`, () => { "width": 2500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Glam_Dresser-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Glam_Dresser-1.2.jpeg", }, { "dimensions": { @@ -153,7 +153,7 @@ describe(`with modernGlamDresser01 preset`, () => { "width": 5760, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Glam_Dresser-1.3.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Glam_Dresser-1.3.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/modern-glam-dresser-01.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/modern-glam-dresser-01.ts similarity index 92% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/modern-glam-dresser-01.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/modern-glam-dresser-01.ts index 671ffcdff..40dca1d7f 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/modern-glam-dresser-01.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/modern-glam-dresser-01.ts @@ -26,19 +26,19 @@ const modernGlamDresser01 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Glam_Dresser-1.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Glam_Dresser-1.1.jpeg' ) .dimensions({ w: 2500, h: 2500 }), ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Glam_Dresser-1.2.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Glam_Dresser-1.2.jpeg' ) .dimensions({ w: 2500, h: 2500 }), ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Glam_Dresser-1.3.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Glam_Dresser-1.3.jpeg' ) .dimensions({ w: 5760, h: 3840 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/modern-gold-coffee-table-01.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/modern-gold-coffee-table-01.spec.ts similarity index 92% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/modern-gold-coffee-table-01.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/modern-gold-coffee-table-01.spec.ts index 61fd9ad53..7aff661f1 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/modern-gold-coffee-table-01.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/modern-gold-coffee-table-01.spec.ts @@ -59,7 +59,7 @@ describe(`with modernGoldCoffeeTable01 preset`, () => { "w": 2500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Gold_Coffee_Table-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Gold_Coffee_Table-1.2.jpeg", }, { "dimensions": { @@ -67,7 +67,7 @@ describe(`with modernGoldCoffeeTable01 preset`, () => { "w": 2500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Gold_Coffee_Table-1.3.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Gold_Coffee_Table-1.3.jpeg", }, { "dimensions": { @@ -75,7 +75,7 @@ describe(`with modernGoldCoffeeTable01 preset`, () => { "w": 2500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Gold_Coffee_Table-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Gold_Coffee_Table-1.1.jpeg", }, { "dimensions": { @@ -83,7 +83,7 @@ describe(`with modernGoldCoffeeTable01 preset`, () => { "w": 2500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Gold_Coffee_Table-1.4.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Gold_Coffee_Table-1.4.jpeg", }, ], "key": undefined, @@ -166,7 +166,7 @@ describe(`with modernGoldCoffeeTable01 preset`, () => { "width": 2500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Gold_Coffee_Table-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Gold_Coffee_Table-1.2.jpeg", }, { "dimensions": { @@ -174,7 +174,7 @@ describe(`with modernGoldCoffeeTable01 preset`, () => { "width": 2500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Gold_Coffee_Table-1.3.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Gold_Coffee_Table-1.3.jpeg", }, { "dimensions": { @@ -182,7 +182,7 @@ describe(`with modernGoldCoffeeTable01 preset`, () => { "width": 2500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Gold_Coffee_Table-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Gold_Coffee_Table-1.1.jpeg", }, { "dimensions": { @@ -190,7 +190,7 @@ describe(`with modernGoldCoffeeTable01 preset`, () => { "width": 2500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Gold_Coffee_Table-1.4.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Gold_Coffee_Table-1.4.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/modern-gold-coffee-table-01.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/modern-gold-coffee-table-01.ts similarity index 91% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/modern-gold-coffee-table-01.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/modern-gold-coffee-table-01.ts index 81cecfd41..88a731ce5 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/modern-gold-coffee-table-01.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/modern-gold-coffee-table-01.ts @@ -26,25 +26,25 @@ const modernGoldCoffeeTable01 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Gold_Coffee_Table-1.2.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Gold_Coffee_Table-1.2.jpeg' ) .dimensions({ w: 2500, h: 2500 }), ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Gold_Coffee_Table-1.3.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Gold_Coffee_Table-1.3.jpeg' ) .dimensions({ w: 2500, h: 2500 }), ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Gold_Coffee_Table-1.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Gold_Coffee_Table-1.1.jpeg' ) .dimensions({ w: 2500, h: 2500 }), ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Gold_Coffee_Table-1.4.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Gold_Coffee_Table-1.4.jpeg' ) .dimensions({ w: 2500, h: 2500 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/modern-landscape-painting-01.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/modern-landscape-painting-01.spec.ts similarity index 97% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/modern-landscape-painting-01.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/modern-landscape-painting-01.spec.ts index d8ac3aa83..7b1718599 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/modern-landscape-painting-01.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/modern-landscape-painting-01.spec.ts @@ -42,7 +42,7 @@ describe(`with modernLandscapePainting01 preset`, () => { "w": 5313, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Landscape_Painting-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Landscape_Painting-1.1.jpeg", }, ], "key": undefined, @@ -121,7 +121,7 @@ describe(`with modernLandscapePainting01 preset`, () => { "width": 5313, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Landscape_Painting-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Landscape_Painting-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/modern-landscape-painting-01.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/modern-landscape-painting-01.ts similarity index 96% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/modern-landscape-painting-01.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/modern-landscape-painting-01.ts index 583fe6576..0ebb6e8ea 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/modern-landscape-painting-01.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/modern-landscape-painting-01.ts @@ -26,7 +26,7 @@ const modernLandscapePainting01 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Landscape_Painting-1.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Landscape_Painting-1.1.jpeg' ) .dimensions({ w: 5313, h: 5355 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/modern-three-seater-sofa-01.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/modern-three-seater-sofa-01.spec.ts similarity index 91% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/modern-three-seater-sofa-01.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/modern-three-seater-sofa-01.spec.ts index ea886b4c5..52032b743 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/modern-three-seater-sofa-01.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/modern-three-seater-sofa-01.spec.ts @@ -50,7 +50,7 @@ describe(`with modernThreeSeaterSofa01 preset`, () => { "w": 2500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Three_Seater_Sofa-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Three_Seater_Sofa-1.2.jpeg", }, { "dimensions": { @@ -58,7 +58,7 @@ describe(`with modernThreeSeaterSofa01 preset`, () => { "w": 2500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Three_Seater_Sofa-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Three_Seater_Sofa-1.1.jpeg", }, { "dimensions": { @@ -66,7 +66,7 @@ describe(`with modernThreeSeaterSofa01 preset`, () => { "w": 2500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Three_Seater_Sofa-1.4.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Three_Seater_Sofa-1.4.jpeg", }, { "dimensions": { @@ -74,7 +74,7 @@ describe(`with modernThreeSeaterSofa01 preset`, () => { "w": 5760, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Three_Seater_Sofa-1.3.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Three_Seater_Sofa-1.3.jpeg", }, ], "key": undefined, @@ -157,7 +157,7 @@ describe(`with modernThreeSeaterSofa01 preset`, () => { "width": 2500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Three_Seater_Sofa-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Three_Seater_Sofa-1.2.jpeg", }, { "dimensions": { @@ -165,7 +165,7 @@ describe(`with modernThreeSeaterSofa01 preset`, () => { "width": 2500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Three_Seater_Sofa-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Three_Seater_Sofa-1.1.jpeg", }, { "dimensions": { @@ -173,7 +173,7 @@ describe(`with modernThreeSeaterSofa01 preset`, () => { "width": 2500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Three_Seater_Sofa-1.4.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Three_Seater_Sofa-1.4.jpeg", }, { "dimensions": { @@ -181,7 +181,7 @@ describe(`with modernThreeSeaterSofa01 preset`, () => { "width": 5760, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Three_Seater_Sofa-1.3.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Three_Seater_Sofa-1.3.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/modern-three-seater-sofa-01.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/modern-three-seater-sofa-01.ts similarity index 90% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/modern-three-seater-sofa-01.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/modern-three-seater-sofa-01.ts index a9ed3b150..50f4a6949 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/modern-three-seater-sofa-01.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/modern-three-seater-sofa-01.ts @@ -26,25 +26,25 @@ const modernThreeSeaterSofa01 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Three_Seater_Sofa-1.2.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Three_Seater_Sofa-1.2.jpeg' ) .dimensions({ w: 2500, h: 2500 }), ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Three_Seater_Sofa-1.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Three_Seater_Sofa-1.1.jpeg' ) .dimensions({ w: 2500, h: 2500 }), ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Three_Seater_Sofa-1.4.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Three_Seater_Sofa-1.4.jpeg' ) .dimensions({ w: 2500, h: 2500 }), ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Three_Seater_Sofa-1.3.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Three_Seater_Sofa-1.3.jpeg' ) .dimensions({ w: 5760, h: 3840 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/modern-upholstered-queen-bed-01.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/modern-upholstered-queen-bed-01.spec.ts similarity index 97% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/modern-upholstered-queen-bed-01.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/modern-upholstered-queen-bed-01.spec.ts index f51d43898..cd926e2e4 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/modern-upholstered-queen-bed-01.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/modern-upholstered-queen-bed-01.spec.ts @@ -50,7 +50,7 @@ describe(`with modernUpholsteredQueenBed01 preset`, () => { "w": 6000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Upholstered_Queen_Bed-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Upholstered_Queen_Bed-1.1.jpeg", }, ], "key": undefined, @@ -133,7 +133,7 @@ describe(`with modernUpholsteredQueenBed01 preset`, () => { "width": 6000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Upholstered_Queen_Bed-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Upholstered_Queen_Bed-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/modern-upholstered-queen-bed-01.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/modern-upholstered-queen-bed-01.ts similarity index 96% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/modern-upholstered-queen-bed-01.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/modern-upholstered-queen-bed-01.ts index 7bd601acb..14a2e420b 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/modern-upholstered-queen-bed-01.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/modern-upholstered-queen-bed-01.ts @@ -26,7 +26,7 @@ const modernUpholsteredQueenBed01 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Upholstered_Queen_Bed-1.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Upholstered_Queen_Bed-1.1.jpeg' ) .dimensions({ w: 6000, h: 6000 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/modern-upholstered-twin-bed-01.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/modern-upholstered-twin-bed-01.spec.ts similarity index 93% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/modern-upholstered-twin-bed-01.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/modern-upholstered-twin-bed-01.spec.ts index 4988cb405..763807909 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/modern-upholstered-twin-bed-01.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/modern-upholstered-twin-bed-01.spec.ts @@ -53,7 +53,7 @@ describe(`with modernUpholsteredTwinBed01 preset`, () => { "w": 3000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Upholstered_Twin_Bed-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Upholstered_Twin_Bed-1.1.jpeg", }, { "dimensions": { @@ -61,7 +61,7 @@ describe(`with modernUpholsteredTwinBed01 preset`, () => { "w": 3000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Upholstered_Twin_Bed-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Upholstered_Twin_Bed-1.2.jpeg", }, { "dimensions": { @@ -69,7 +69,7 @@ describe(`with modernUpholsteredTwinBed01 preset`, () => { "w": 3000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Upholstered_Twin_Bed-1.3.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Upholstered_Twin_Bed-1.3.jpeg", }, ], "key": undefined, @@ -152,7 +152,7 @@ describe(`with modernUpholsteredTwinBed01 preset`, () => { "width": 3000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Upholstered_Twin_Bed-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Upholstered_Twin_Bed-1.1.jpeg", }, { "dimensions": { @@ -160,7 +160,7 @@ describe(`with modernUpholsteredTwinBed01 preset`, () => { "width": 3000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Upholstered_Twin_Bed-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Upholstered_Twin_Bed-1.2.jpeg", }, { "dimensions": { @@ -168,7 +168,7 @@ describe(`with modernUpholsteredTwinBed01 preset`, () => { "width": 3000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Upholstered_Twin_Bed-1.3.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Upholstered_Twin_Bed-1.3.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/modern-upholstered-twin-bed-01.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/modern-upholstered-twin-bed-01.ts similarity index 91% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/modern-upholstered-twin-bed-01.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/modern-upholstered-twin-bed-01.ts index 35f3b8281..0991fc940 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/modern-upholstered-twin-bed-01.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/modern-upholstered-twin-bed-01.ts @@ -26,19 +26,19 @@ const modernUpholsteredTwinBed01 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Upholstered_Twin_Bed-1.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Upholstered_Twin_Bed-1.1.jpeg' ) .dimensions({ w: 3000, h: 3000 }), ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Upholstered_Twin_Bed-1.2.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Upholstered_Twin_Bed-1.2.jpeg' ) .dimensions({ w: 3000, h: 3000 }), ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Upholstered_Twin_Bed-1.3.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Upholstered_Twin_Bed-1.3.jpeg' ) .dimensions({ w: 3000, h: 3000 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/modern-upholstered-twin-bed-02.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/modern-upholstered-twin-bed-02.spec.ts similarity index 93% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/modern-upholstered-twin-bed-02.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/modern-upholstered-twin-bed-02.spec.ts index e09d09640..a53235c95 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/modern-upholstered-twin-bed-02.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/modern-upholstered-twin-bed-02.spec.ts @@ -53,7 +53,7 @@ describe(`with modernUpholsteredTwinBed02 preset`, () => { "w": 3000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Upholstered_Twin_Bed-2.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Upholstered_Twin_Bed-2.2.jpeg", }, { "dimensions": { @@ -61,7 +61,7 @@ describe(`with modernUpholsteredTwinBed02 preset`, () => { "w": 3000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Upholstered_Twin_Bed-2.3.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Upholstered_Twin_Bed-2.3.jpeg", }, { "dimensions": { @@ -69,7 +69,7 @@ describe(`with modernUpholsteredTwinBed02 preset`, () => { "w": 3000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Upholstered_Twin_Bed-2.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Upholstered_Twin_Bed-2.1.jpeg", }, ], "key": undefined, @@ -152,7 +152,7 @@ describe(`with modernUpholsteredTwinBed02 preset`, () => { "width": 3000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Upholstered_Twin_Bed-2.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Upholstered_Twin_Bed-2.2.jpeg", }, { "dimensions": { @@ -160,7 +160,7 @@ describe(`with modernUpholsteredTwinBed02 preset`, () => { "width": 3000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Upholstered_Twin_Bed-2.3.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Upholstered_Twin_Bed-2.3.jpeg", }, { "dimensions": { @@ -168,7 +168,7 @@ describe(`with modernUpholsteredTwinBed02 preset`, () => { "width": 3000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Upholstered_Twin_Bed-2.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Upholstered_Twin_Bed-2.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/modern-upholstered-twin-bed-02.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/modern-upholstered-twin-bed-02.ts similarity index 92% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/modern-upholstered-twin-bed-02.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/modern-upholstered-twin-bed-02.ts index 6c6e49a30..c8bad6a77 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/modern-upholstered-twin-bed-02.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/modern-upholstered-twin-bed-02.ts @@ -26,19 +26,19 @@ const modernUpholsteredTwinBed02 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Upholstered_Twin_Bed-2.2.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Upholstered_Twin_Bed-2.2.jpeg' ) .dimensions({ w: 3000, h: 3000 }), ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Upholstered_Twin_Bed-2.3.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Upholstered_Twin_Bed-2.3.jpeg' ) .dimensions({ w: 3000, h: 3000 }), ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Upholstered_Twin_Bed-2.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Upholstered_Twin_Bed-2.1.jpeg' ) .dimensions({ w: 3000, h: 3000 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/modern-upholstered-twin-bed-03.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/modern-upholstered-twin-bed-03.spec.ts similarity index 93% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/modern-upholstered-twin-bed-03.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/modern-upholstered-twin-bed-03.spec.ts index 938f7235f..374f155e7 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/modern-upholstered-twin-bed-03.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/modern-upholstered-twin-bed-03.spec.ts @@ -61,7 +61,7 @@ describe(`with modernUpholsteredTwinBed03 preset`, () => { "w": 4000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Upholstered_Twin_Bed-3.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Upholstered_Twin_Bed-3.2.jpeg", }, { "dimensions": { @@ -69,7 +69,7 @@ describe(`with modernUpholsteredTwinBed03 preset`, () => { "w": 4000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Upholstered_Twin_Bed-3.3.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Upholstered_Twin_Bed-3.3.jpeg", }, { "dimensions": { @@ -77,7 +77,7 @@ describe(`with modernUpholsteredTwinBed03 preset`, () => { "w": 4000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Upholstered_Twin_Bed-3.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Upholstered_Twin_Bed-3.1.jpeg", }, ], "key": undefined, @@ -164,7 +164,7 @@ describe(`with modernUpholsteredTwinBed03 preset`, () => { "width": 4000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Upholstered_Twin_Bed-3.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Upholstered_Twin_Bed-3.2.jpeg", }, { "dimensions": { @@ -172,7 +172,7 @@ describe(`with modernUpholsteredTwinBed03 preset`, () => { "width": 4000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Upholstered_Twin_Bed-3.3.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Upholstered_Twin_Bed-3.3.jpeg", }, { "dimensions": { @@ -180,7 +180,7 @@ describe(`with modernUpholsteredTwinBed03 preset`, () => { "width": 4000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Upholstered_Twin_Bed-3.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Upholstered_Twin_Bed-3.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/modern-upholstered-twin-bed-03.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/modern-upholstered-twin-bed-03.ts similarity index 92% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/modern-upholstered-twin-bed-03.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/modern-upholstered-twin-bed-03.ts index aac887da8..9386c9429 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/modern-upholstered-twin-bed-03.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/modern-upholstered-twin-bed-03.ts @@ -26,19 +26,19 @@ const modernUpholsteredTwinBed03 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Upholstered_Twin_Bed-3.2.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Upholstered_Twin_Bed-3.2.jpeg' ) .dimensions({ w: 4000, h: 4000 }), ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Upholstered_Twin_Bed-3.3.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Upholstered_Twin_Bed-3.3.jpeg' ) .dimensions({ w: 4000, h: 4000 }), ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Upholstered_Twin_Bed-3.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Upholstered_Twin_Bed-3.1.jpeg' ) .dimensions({ w: 4000, h: 4000 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/modern-upholstered-twin-bed-04.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/modern-upholstered-twin-bed-04.spec.ts similarity index 93% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/modern-upholstered-twin-bed-04.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/modern-upholstered-twin-bed-04.spec.ts index 61d1c4f7d..5b57e8660 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/modern-upholstered-twin-bed-04.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/modern-upholstered-twin-bed-04.spec.ts @@ -53,7 +53,7 @@ describe(`with modernUpholsteredTwinBed04 preset`, () => { "w": 3000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Upholstered_Twin_Bed-4.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Upholstered_Twin_Bed-4.2.jpeg", }, { "dimensions": { @@ -61,7 +61,7 @@ describe(`with modernUpholsteredTwinBed04 preset`, () => { "w": 3000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Upholstered_Twin_Bed-4.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Upholstered_Twin_Bed-4.1.jpeg", }, { "dimensions": { @@ -69,7 +69,7 @@ describe(`with modernUpholsteredTwinBed04 preset`, () => { "w": 3000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Upholstered_Twin_Bed-4.3.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Upholstered_Twin_Bed-4.3.jpeg", }, ], "key": undefined, @@ -152,7 +152,7 @@ describe(`with modernUpholsteredTwinBed04 preset`, () => { "width": 3000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Upholstered_Twin_Bed-4.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Upholstered_Twin_Bed-4.2.jpeg", }, { "dimensions": { @@ -160,7 +160,7 @@ describe(`with modernUpholsteredTwinBed04 preset`, () => { "width": 3000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Upholstered_Twin_Bed-4.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Upholstered_Twin_Bed-4.1.jpeg", }, { "dimensions": { @@ -168,7 +168,7 @@ describe(`with modernUpholsteredTwinBed04 preset`, () => { "width": 3000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Upholstered_Twin_Bed-4.3.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Upholstered_Twin_Bed-4.3.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/modern-upholstered-twin-bed-04.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/modern-upholstered-twin-bed-04.ts similarity index 91% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/modern-upholstered-twin-bed-04.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/modern-upholstered-twin-bed-04.ts index 3f8d645a1..d7b6f9197 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/modern-upholstered-twin-bed-04.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/modern-upholstered-twin-bed-04.ts @@ -26,19 +26,19 @@ const modernUpholsteredTwinBed04 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Upholstered_Twin_Bed-4.2.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Upholstered_Twin_Bed-4.2.jpeg' ) .dimensions({ w: 3000, h: 3000 }), ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Upholstered_Twin_Bed-4.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Upholstered_Twin_Bed-4.1.jpeg' ) .dimensions({ w: 3000, h: 3000 }), ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Upholstered_Twin_Bed-4.3.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Upholstered_Twin_Bed-4.3.jpeg' ) .dimensions({ w: 3000, h: 3000 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/nala-two-seater-sofa-01.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/nala-two-seater-sofa-01.spec.ts similarity index 95% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/nala-two-seater-sofa-01.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/nala-two-seater-sofa-01.spec.ts index da84bf63e..22a76eb40 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/nala-two-seater-sofa-01.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/nala-two-seater-sofa-01.spec.ts @@ -51,7 +51,7 @@ describe(`with nalaTwoSeaterSofa01 preset`, () => { "w": 6000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Nala_Two_Seater_Sofa-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Nala_Two_Seater_Sofa-1.2.jpeg", }, { "dimensions": { @@ -59,7 +59,7 @@ describe(`with nalaTwoSeaterSofa01 preset`, () => { "w": 6000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Nala_Two_Seater_Sofa-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Nala_Two_Seater_Sofa-1.1.jpeg", }, ], "key": undefined, @@ -146,7 +146,7 @@ describe(`with nalaTwoSeaterSofa01 preset`, () => { "width": 6000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Nala_Two_Seater_Sofa-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Nala_Two_Seater_Sofa-1.2.jpeg", }, { "dimensions": { @@ -154,7 +154,7 @@ describe(`with nalaTwoSeaterSofa01 preset`, () => { "width": 6000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Nala_Two_Seater_Sofa-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Nala_Two_Seater_Sofa-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/nala-two-seater-sofa-01.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/nala-two-seater-sofa-01.ts similarity index 94% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/nala-two-seater-sofa-01.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/nala-two-seater-sofa-01.ts index b1282879c..29c6cbfc5 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/nala-two-seater-sofa-01.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/nala-two-seater-sofa-01.ts @@ -26,13 +26,13 @@ const nalaTwoSeaterSofa01 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Nala_Two_Seater_Sofa-1.2.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Nala_Two_Seater_Sofa-1.2.jpeg' ) .dimensions({ w: 6000, h: 3376 }), ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Nala_Two_Seater_Sofa-1.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Nala_Two_Seater_Sofa-1.1.jpeg' ) .dimensions({ w: 6000, h: 3376 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/nala-two-seater-sofa-02.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/nala-two-seater-sofa-02.spec.ts similarity index 95% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/nala-two-seater-sofa-02.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/nala-two-seater-sofa-02.spec.ts index b8e57d7c0..8176d5319 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/nala-two-seater-sofa-02.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/nala-two-seater-sofa-02.spec.ts @@ -51,7 +51,7 @@ describe(`with nalaTwoSeaterSofa02 preset`, () => { "w": 6000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Nala_Two_Seater_Sofa-2.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Nala_Two_Seater_Sofa-2.1.jpeg", }, { "dimensions": { @@ -59,7 +59,7 @@ describe(`with nalaTwoSeaterSofa02 preset`, () => { "w": 6000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Nala_Two_Seater_Sofa-2.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Nala_Two_Seater_Sofa-2.2.jpeg", }, ], "key": undefined, @@ -146,7 +146,7 @@ describe(`with nalaTwoSeaterSofa02 preset`, () => { "width": 6000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Nala_Two_Seater_Sofa-2.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Nala_Two_Seater_Sofa-2.1.jpeg", }, { "dimensions": { @@ -154,7 +154,7 @@ describe(`with nalaTwoSeaterSofa02 preset`, () => { "width": 6000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Nala_Two_Seater_Sofa-2.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Nala_Two_Seater_Sofa-2.2.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/nala-two-seater-sofa-02.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/nala-two-seater-sofa-02.ts similarity index 94% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/nala-two-seater-sofa-02.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/nala-two-seater-sofa-02.ts index ed323e173..a0c42f8fb 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/nala-two-seater-sofa-02.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/nala-two-seater-sofa-02.ts @@ -26,13 +26,13 @@ const nalaTwoSeaterSofa02 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Nala_Two_Seater_Sofa-2.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Nala_Two_Seater_Sofa-2.1.jpeg' ) .dimensions({ w: 6000, h: 3376 }), ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Nala_Two_Seater_Sofa-2.2.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Nala_Two_Seater_Sofa-2.2.jpeg' ) .dimensions({ w: 6000, h: 3376 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/nala-two-seater-sofa-03.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/nala-two-seater-sofa-03.spec.ts similarity index 95% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/nala-two-seater-sofa-03.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/nala-two-seater-sofa-03.spec.ts index 56976ca02..624c517ef 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/nala-two-seater-sofa-03.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/nala-two-seater-sofa-03.spec.ts @@ -51,7 +51,7 @@ describe(`with nalaTwoSeaterSofa03 preset`, () => { "w": 6000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Nala_Two_Seater_Sofa-3.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Nala_Two_Seater_Sofa-3.1.jpeg", }, { "dimensions": { @@ -59,7 +59,7 @@ describe(`with nalaTwoSeaterSofa03 preset`, () => { "w": 6000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Nala_Two_Seater_Sofa-3.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Nala_Two_Seater_Sofa-3.2.jpeg", }, ], "key": undefined, @@ -146,7 +146,7 @@ describe(`with nalaTwoSeaterSofa03 preset`, () => { "width": 6000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Nala_Two_Seater_Sofa-3.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Nala_Two_Seater_Sofa-3.1.jpeg", }, { "dimensions": { @@ -154,7 +154,7 @@ describe(`with nalaTwoSeaterSofa03 preset`, () => { "width": 6000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Nala_Two_Seater_Sofa-3.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Nala_Two_Seater_Sofa-3.2.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/nala-two-seater-sofa-03.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/nala-two-seater-sofa-03.ts similarity index 94% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/nala-two-seater-sofa-03.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/nala-two-seater-sofa-03.ts index 578fcef49..ac774cc17 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/nala-two-seater-sofa-03.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/nala-two-seater-sofa-03.ts @@ -26,13 +26,13 @@ const nalaTwoSeaterSofa03 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Nala_Two_Seater_Sofa-3.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Nala_Two_Seater_Sofa-3.1.jpeg' ) .dimensions({ w: 6000, h: 3376 }), ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Nala_Two_Seater_Sofa-3.2.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Nala_Two_Seater_Sofa-3.2.jpeg' ) .dimensions({ w: 6000, h: 3376 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/nala-two-seater-sofa-04.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/nala-two-seater-sofa-04.spec.ts similarity index 97% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/nala-two-seater-sofa-04.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/nala-two-seater-sofa-04.spec.ts index 209b316a4..9f216a4cc 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/nala-two-seater-sofa-04.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/nala-two-seater-sofa-04.spec.ts @@ -51,7 +51,7 @@ describe(`with nalaTwoSeaterSofa04 preset`, () => { "w": 6000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Nala_Two_Seater_Sofa-4.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Nala_Two_Seater_Sofa-4.1.jpeg", }, ], "key": undefined, @@ -138,7 +138,7 @@ describe(`with nalaTwoSeaterSofa04 preset`, () => { "width": 6000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Nala_Two_Seater_Sofa-4.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Nala_Two_Seater_Sofa-4.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/nala-two-seater-sofa-04.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/nala-two-seater-sofa-04.ts similarity index 96% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/nala-two-seater-sofa-04.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/nala-two-seater-sofa-04.ts index d04ce7af0..5b40016fa 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/nala-two-seater-sofa-04.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/nala-two-seater-sofa-04.ts @@ -26,7 +26,7 @@ const nalaTwoSeaterSofa04 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Nala_Two_Seater_Sofa-4.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Nala_Two_Seater_Sofa-4.1.jpeg' ) .dimensions({ w: 6000, h: 3376 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/nala-two-seater-sofa-05.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/nala-two-seater-sofa-05.spec.ts similarity index 95% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/nala-two-seater-sofa-05.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/nala-two-seater-sofa-05.spec.ts index 7372302e6..ea3c6054a 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/nala-two-seater-sofa-05.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/nala-two-seater-sofa-05.spec.ts @@ -51,7 +51,7 @@ describe(`with nalaTwoSeaterSofa05 preset`, () => { "w": 6000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Nala_Two_Seater_Sofa-5.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Nala_Two_Seater_Sofa-5.1.jpeg", }, { "dimensions": { @@ -59,7 +59,7 @@ describe(`with nalaTwoSeaterSofa05 preset`, () => { "w": 6000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Nala_Two_Seater_Sofa-5.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Nala_Two_Seater_Sofa-5.2.jpeg", }, ], "key": undefined, @@ -146,7 +146,7 @@ describe(`with nalaTwoSeaterSofa05 preset`, () => { "width": 6000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Nala_Two_Seater_Sofa-5.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Nala_Two_Seater_Sofa-5.1.jpeg", }, { "dimensions": { @@ -154,7 +154,7 @@ describe(`with nalaTwoSeaterSofa05 preset`, () => { "width": 6000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Nala_Two_Seater_Sofa-5.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Nala_Two_Seater_Sofa-5.2.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/nala-two-seater-sofa-05.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/nala-two-seater-sofa-05.ts similarity index 94% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/nala-two-seater-sofa-05.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/nala-two-seater-sofa-05.ts index 8c470f1e5..fe9308c35 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/nala-two-seater-sofa-05.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/nala-two-seater-sofa-05.ts @@ -26,13 +26,13 @@ const nalaTwoSeaterSofa05 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Nala_Two_Seater_Sofa-5.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Nala_Two_Seater_Sofa-5.1.jpeg' ) .dimensions({ w: 6000, h: 3376 }), ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Nala_Two_Seater_Sofa-5.2.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Nala_Two_Seater_Sofa-5.2.jpeg' ) .dimensions({ w: 6000, h: 3376 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/nala-two-seater-sofa-06.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/nala-two-seater-sofa-06.spec.ts similarity index 97% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/nala-two-seater-sofa-06.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/nala-two-seater-sofa-06.spec.ts index a2c12f3b8..b26bc2afd 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/nala-two-seater-sofa-06.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/nala-two-seater-sofa-06.spec.ts @@ -51,7 +51,7 @@ describe(`with nalaTwoSeaterSofa06 preset`, () => { "w": 6000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Nala_Two_Seater_Sofa-6.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Nala_Two_Seater_Sofa-6.1.jpeg", }, ], "key": undefined, @@ -138,7 +138,7 @@ describe(`with nalaTwoSeaterSofa06 preset`, () => { "width": 6000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Nala_Two_Seater_Sofa-6.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Nala_Two_Seater_Sofa-6.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/nala-two-seater-sofa-06.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/nala-two-seater-sofa-06.ts similarity index 96% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/nala-two-seater-sofa-06.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/nala-two-seater-sofa-06.ts index b004ab456..543cd2044 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/nala-two-seater-sofa-06.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/nala-two-seater-sofa-06.ts @@ -26,7 +26,7 @@ const nalaTwoSeaterSofa06 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Nala_Two_Seater_Sofa-6.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Nala_Two_Seater_Sofa-6.1.jpeg' ) .dimensions({ w: 6000, h: 3376 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/nala-two-seater-sofa-07.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/nala-two-seater-sofa-07.spec.ts similarity index 97% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/nala-two-seater-sofa-07.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/nala-two-seater-sofa-07.spec.ts index 7ff938882..c726216bf 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/nala-two-seater-sofa-07.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/nala-two-seater-sofa-07.spec.ts @@ -51,7 +51,7 @@ describe(`with nalaTwoSeaterSofa07 preset`, () => { "w": 6000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Nala_Two_Seater_Sofa-7.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Nala_Two_Seater_Sofa-7.1.jpeg", }, ], "key": undefined, @@ -138,7 +138,7 @@ describe(`with nalaTwoSeaterSofa07 preset`, () => { "width": 6000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Nala_Two_Seater_Sofa-7.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Nala_Two_Seater_Sofa-7.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/nala-two-seater-sofa-07.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/nala-two-seater-sofa-07.ts similarity index 96% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/nala-two-seater-sofa-07.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/nala-two-seater-sofa-07.ts index fc4a7d4b9..5aa45e3e3 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/nala-two-seater-sofa-07.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/nala-two-seater-sofa-07.ts @@ -26,7 +26,7 @@ const nalaTwoSeaterSofa07 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Nala_Two_Seater_Sofa-7.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Nala_Two_Seater_Sofa-7.1.jpeg' ) .dimensions({ w: 6000, h: 3376 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/natura-rug-01.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/natura-rug-01.spec.ts similarity index 97% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/natura-rug-01.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/natura-rug-01.spec.ts index c8f1fd56f..ff87c0503 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/natura-rug-01.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/natura-rug-01.spec.ts @@ -35,7 +35,7 @@ describe(`with naturaRug01 preset`, () => { "w": 8000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Natura_Rug-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Natura_Rug-1.1.jpeg", }, ], "key": undefined, @@ -117,7 +117,7 @@ describe(`with naturaRug01 preset`, () => { "width": 8000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Natura_Rug-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Natura_Rug-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/natura-rug-01.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/natura-rug-01.ts similarity index 93% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/natura-rug-01.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/natura-rug-01.ts index b0d363cc8..8660aeda6 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/natura-rug-01.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/natura-rug-01.ts @@ -9,7 +9,7 @@ import { ImageDraft } from '../../../../image'; import type { TProductVariantDraftBuilder } from '../../../types'; import * as ProductVariantDraft from '../../index'; -const distributionChannel = ChannelDraft.presets.sampleDataGoodStore +const distributionChannel = ChannelDraft.presets.sampleDataB2CLifestyle .distributionChannel() .build(); @@ -38,7 +38,7 @@ const naturaRug01 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Natura_Rug-1.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Natura_Rug-1.1.jpeg' ) .dimensions({ w: 8000, h: 4000 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/opal-king-bed-01.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/opal-king-bed-01.spec.ts similarity index 97% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/opal-king-bed-01.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/opal-king-bed-01.spec.ts index fd5f988ed..71d598cce 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/opal-king-bed-01.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/opal-king-bed-01.spec.ts @@ -35,7 +35,7 @@ describe(`with opalKingBed01 preset`, () => { "w": 2000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Opal_King_Bed-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Opal_King_Bed-1.1.jpeg", }, ], "key": undefined, @@ -114,7 +114,7 @@ describe(`with opalKingBed01 preset`, () => { "width": 2000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Opal_King_Bed-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Opal_King_Bed-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/opal-king-bed-01.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/opal-king-bed-01.ts similarity index 96% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/opal-king-bed-01.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/opal-king-bed-01.ts index 0bdc6725d..ec4a3ef25 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/opal-king-bed-01.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/opal-king-bed-01.ts @@ -26,7 +26,7 @@ const opalKingBed01 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Opal_King_Bed-1.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Opal_King_Bed-1.1.jpeg' ) .dimensions({ w: 2000, h: 2000 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/orion-double-bed-01.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/orion-double-bed-01.spec.ts similarity index 97% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/orion-double-bed-01.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/orion-double-bed-01.spec.ts index bb139480e..fa0f57e9b 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/orion-double-bed-01.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/orion-double-bed-01.spec.ts @@ -47,7 +47,7 @@ describe(`with orionDoubleBed01 preset`, () => { "w": 5000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Orion_Double_Bed-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Orion_Double_Bed-1.1.jpeg", }, ], "key": undefined, @@ -130,7 +130,7 @@ describe(`with orionDoubleBed01 preset`, () => { "width": 5000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Orion_Double_Bed-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Orion_Double_Bed-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/orion-double-bed-01.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/orion-double-bed-01.ts similarity index 97% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/orion-double-bed-01.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/orion-double-bed-01.ts index 7d79afcfd..75f1ced5a 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/orion-double-bed-01.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/orion-double-bed-01.ts @@ -26,7 +26,7 @@ const orionDoubleBed01 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Orion_Double_Bed-1.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Orion_Double_Bed-1.1.jpeg' ) .dimensions({ w: 5000, h: 3621 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/patterned-pillow-cover-01.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/patterned-pillow-cover-01.spec.ts similarity index 97% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/patterned-pillow-cover-01.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/patterned-pillow-cover-01.spec.ts index d9bfad929..3310c3d81 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/patterned-pillow-cover-01.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/patterned-pillow-cover-01.spec.ts @@ -39,7 +39,7 @@ describe(`with patternedPillowCover01 preset`, () => { "w": 6240, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Patterned_Pillow_Cover-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Patterned_Pillow_Cover-1.1.jpeg", }, ], "key": undefined, @@ -118,7 +118,7 @@ describe(`with patternedPillowCover01 preset`, () => { "width": 6240, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Patterned_Pillow_Cover-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Patterned_Pillow_Cover-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/patterned-pillow-cover-01.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/patterned-pillow-cover-01.ts similarity index 96% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/patterned-pillow-cover-01.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/patterned-pillow-cover-01.ts index fb942821c..3ecea768c 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/patterned-pillow-cover-01.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/patterned-pillow-cover-01.ts @@ -26,7 +26,7 @@ const patternedPillowCover01 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Patterned_Pillow_Cover-1.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Patterned_Pillow_Cover-1.1.jpeg' ) .dimensions({ w: 6240, h: 4160 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/patterned-pillow-cover-02.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/patterned-pillow-cover-02.spec.ts similarity index 97% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/patterned-pillow-cover-02.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/patterned-pillow-cover-02.spec.ts index 02bcbed8b..465b2e280 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/patterned-pillow-cover-02.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/patterned-pillow-cover-02.spec.ts @@ -43,7 +43,7 @@ describe(`with patternedPillowCover02 preset`, () => { "w": 6047, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Patterned_Pillow_Cover-2.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Patterned_Pillow_Cover-2.1.jpeg", }, ], "key": undefined, @@ -126,7 +126,7 @@ describe(`with patternedPillowCover02 preset`, () => { "width": 6047, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Patterned_Pillow_Cover-2.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Patterned_Pillow_Cover-2.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/patterned-pillow-cover-02.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/patterned-pillow-cover-02.ts similarity index 96% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/patterned-pillow-cover-02.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/patterned-pillow-cover-02.ts index 450851a88..91b23558c 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/patterned-pillow-cover-02.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/patterned-pillow-cover-02.ts @@ -26,7 +26,7 @@ const patternedPillowCover02 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Patterned_Pillow_Cover-2.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Patterned_Pillow_Cover-2.1.jpeg' ) .dimensions({ w: 6047, h: 4031 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/pink-abstract-painting-01.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/pink-abstract-painting-01.spec.ts similarity index 97% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/pink-abstract-painting-01.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/pink-abstract-painting-01.spec.ts index 92de6e5ff..39cb4f292 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/pink-abstract-painting-01.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/pink-abstract-painting-01.spec.ts @@ -39,7 +39,7 @@ describe(`with pinkAbstractPainting01 preset`, () => { "w": 3873, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Pink_Abstract_Painting-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Pink_Abstract_Painting-1.1.jpeg", }, ], "key": undefined, @@ -118,7 +118,7 @@ describe(`with pinkAbstractPainting01 preset`, () => { "width": 3873, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Pink_Abstract_Painting-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Pink_Abstract_Painting-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/pink-abstract-painting-01.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/pink-abstract-painting-01.ts similarity index 96% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/pink-abstract-painting-01.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/pink-abstract-painting-01.ts index 467d9976a..3e24fe439 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/pink-abstract-painting-01.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/pink-abstract-painting-01.ts @@ -26,7 +26,7 @@ const pinkAbstractPainting01 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Pink_Abstract_Painting-1.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Pink_Abstract_Painting-1.1.jpeg' ) .dimensions({ w: 3873, h: 3873 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/purple-landscape-painting-01.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/purple-landscape-painting-01.spec.ts similarity index 97% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/purple-landscape-painting-01.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/purple-landscape-painting-01.spec.ts index 0c979a1f1..af8edef72 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/purple-landscape-painting-01.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/purple-landscape-painting-01.spec.ts @@ -42,7 +42,7 @@ describe(`with purpleLandscapePainting01 preset`, () => { "w": 3755, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Purple_Landscape_Painting-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Purple_Landscape_Painting-1.1.jpeg", }, ], "key": undefined, @@ -121,7 +121,7 @@ describe(`with purpleLandscapePainting01 preset`, () => { "width": 3755, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Purple_Landscape_Painting-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Purple_Landscape_Painting-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/purple-landscape-painting-01.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/purple-landscape-painting-01.ts similarity index 96% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/purple-landscape-painting-01.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/purple-landscape-painting-01.ts index 5657b679c..d3e977420 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/purple-landscape-painting-01.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/purple-landscape-painting-01.ts @@ -26,7 +26,7 @@ const purpleLandscapePainting01 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Purple_Landscape_Painting-1.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Purple_Landscape_Painting-1.1.jpeg' ) .dimensions({ w: 3755, h: 3902 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/purple-minimalist-abstract-painting-01.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/purple-minimalist-abstract-painting-01.spec.ts similarity index 96% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/purple-minimalist-abstract-painting-01.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/purple-minimalist-abstract-painting-01.spec.ts index 50d068106..85bad4d07 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/purple-minimalist-abstract-painting-01.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/purple-minimalist-abstract-painting-01.spec.ts @@ -39,7 +39,7 @@ describe(`with purpleMinimalistAbstractPainting01 preset`, () => { "w": 3148, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Purple_Minimalist_Abstract_Painting-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Purple_Minimalist_Abstract_Painting-1.1.jpeg", }, ], "key": undefined, @@ -122,7 +122,7 @@ describe(`with purpleMinimalistAbstractPainting01 preset`, () => { "width": 3148, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Purple_Minimalist_Abstract_Painting-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Purple_Minimalist_Abstract_Painting-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/purple-minimalist-abstract-painting-01.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/purple-minimalist-abstract-painting-01.ts similarity index 92% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/purple-minimalist-abstract-painting-01.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/purple-minimalist-abstract-painting-01.ts index 1a833dc19..4f680d1d4 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/purple-minimalist-abstract-painting-01.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/purple-minimalist-abstract-painting-01.ts @@ -9,7 +9,7 @@ import { ImageDraft } from '../../../../image'; import type { TProductVariantDraftBuilder } from '../../../types'; import * as ProductVariantDraft from '../../index'; -const distributionChannel = ChannelDraft.presets.sampleDataGoodStore +const distributionChannel = ChannelDraft.presets.sampleDataB2CLifestyle .distributionChannel() .build(); @@ -38,7 +38,7 @@ const purpleMinimalistAbstractPainting01 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Purple_Minimalist_Abstract_Painting-1.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Purple_Minimalist_Abstract_Painting-1.1.jpeg' ) .dimensions({ w: 3148, h: 2903 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/rattan-lounge-chair-01.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/rattan-lounge-chair-01.spec.ts similarity index 95% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/rattan-lounge-chair-01.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/rattan-lounge-chair-01.spec.ts index d17aadfc9..14fd694db 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/rattan-lounge-chair-01.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/rattan-lounge-chair-01.spec.ts @@ -41,7 +41,7 @@ describe(`with rattanLoungeChair01 preset`, () => { "w": 5000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Rattan_Lounge_Chair-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Rattan_Lounge_Chair-1.1.jpeg", }, { "dimensions": { @@ -49,7 +49,7 @@ describe(`with rattanLoungeChair01 preset`, () => { "w": 3375, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Rattan_Lounge_Chair-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Rattan_Lounge_Chair-1.2.jpeg", }, ], "key": undefined, @@ -132,7 +132,7 @@ describe(`with rattanLoungeChair01 preset`, () => { "width": 5000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Rattan_Lounge_Chair-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Rattan_Lounge_Chair-1.1.jpeg", }, { "dimensions": { @@ -140,7 +140,7 @@ describe(`with rattanLoungeChair01 preset`, () => { "width": 3375, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Rattan_Lounge_Chair-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Rattan_Lounge_Chair-1.2.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/rattan-lounge-chair-01.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/rattan-lounge-chair-01.ts similarity index 94% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/rattan-lounge-chair-01.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/rattan-lounge-chair-01.ts index 2d0de565e..772691bea 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/rattan-lounge-chair-01.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/rattan-lounge-chair-01.ts @@ -26,13 +26,13 @@ const rattanLoungeChair01 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Rattan_Lounge_Chair-1.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Rattan_Lounge_Chair-1.1.jpeg' ) .dimensions({ w: 5000, h: 4000 }), ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Rattan_Lounge_Chair-1.2.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Rattan_Lounge_Chair-1.2.jpeg' ) .dimensions({ w: 3375, h: 4500 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/raven-bowl-01.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/raven-bowl-01.spec.ts similarity index 97% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/raven-bowl-01.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/raven-bowl-01.spec.ts index a74ee3477..d3404a1ac 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/raven-bowl-01.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/raven-bowl-01.spec.ts @@ -32,7 +32,7 @@ describe(`with ravenBowl01 preset`, () => { "w": 4232, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Raven_Bowl-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Raven_Bowl-1.1.jpeg", }, ], "key": undefined, @@ -111,7 +111,7 @@ describe(`with ravenBowl01 preset`, () => { "width": 4232, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Raven_Bowl-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Raven_Bowl-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/raven-bowl-01.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/raven-bowl-01.ts similarity index 96% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/raven-bowl-01.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/raven-bowl-01.ts index 318150a27..1fd6a8023 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/raven-bowl-01.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/raven-bowl-01.ts @@ -26,7 +26,7 @@ const ravenBowl01 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Raven_Bowl-1.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Raven_Bowl-1.1.jpeg' ) .dimensions({ w: 4232, h: 2904 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/rectangle-serving-tray-01.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/rectangle-serving-tray-01.spec.ts similarity index 97% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/rectangle-serving-tray-01.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/rectangle-serving-tray-01.spec.ts index 08ebe009e..128ca3717 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/rectangle-serving-tray-01.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/rectangle-serving-tray-01.spec.ts @@ -36,7 +36,7 @@ describe(`with rectangleServingTray01 preset`, () => { "w": 6048, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Rectangle_Serving_Tray-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Rectangle_Serving_Tray-1.1.jpeg", }, ], "key": undefined, @@ -115,7 +115,7 @@ describe(`with rectangleServingTray01 preset`, () => { "width": 6048, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Rectangle_Serving_Tray-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Rectangle_Serving_Tray-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/rectangle-serving-tray-01.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/rectangle-serving-tray-01.ts similarity index 96% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/rectangle-serving-tray-01.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/rectangle-serving-tray-01.ts index 7657892b8..404d26fec 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/rectangle-serving-tray-01.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/rectangle-serving-tray-01.ts @@ -26,7 +26,7 @@ const rectangleServingTray01 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Rectangle_Serving_Tray-1.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Rectangle_Serving_Tray-1.1.jpeg' ) .dimensions({ w: 6048, h: 4024 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/red-modern-painting-01.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/red-modern-painting-01.spec.ts similarity index 97% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/red-modern-painting-01.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/red-modern-painting-01.spec.ts index b018fadad..f74426416 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/red-modern-painting-01.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/red-modern-painting-01.spec.ts @@ -36,7 +36,7 @@ describe(`with redModernPainting01 preset`, () => { "w": 3893, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Red_Modern_Painting-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Red_Modern_Painting-1.1.jpeg", }, ], "key": undefined, @@ -115,7 +115,7 @@ describe(`with redModernPainting01 preset`, () => { "width": 3893, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Red_Modern_Painting-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Red_Modern_Painting-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/red-modern-painting-01.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/red-modern-painting-01.ts similarity index 96% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/red-modern-painting-01.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/red-modern-painting-01.ts index a1c2f86fd..e073e27a1 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/red-modern-painting-01.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/red-modern-painting-01.ts @@ -26,7 +26,7 @@ const redModernPainting01 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Red_Modern_Painting-1.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Red_Modern_Painting-1.1.jpeg' ) .dimensions({ w: 3893, h: 3894 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/round-serving-tray-01.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/round-serving-tray-01.spec.ts similarity index 94% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/round-serving-tray-01.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/round-serving-tray-01.spec.ts index 06461321d..2589c532c 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/round-serving-tray-01.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/round-serving-tray-01.spec.ts @@ -33,7 +33,7 @@ describe(`with roundServingTray01 preset`, () => { "w": 3537, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Round_Serving_Tray-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Round_Serving_Tray-1.1.jpeg", }, { "dimensions": { @@ -41,7 +41,7 @@ describe(`with roundServingTray01 preset`, () => { "w": 3283, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Round_Serving_Tray-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Round_Serving_Tray-1.2.jpeg", }, ], "key": undefined, @@ -120,7 +120,7 @@ describe(`with roundServingTray01 preset`, () => { "width": 3537, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Round_Serving_Tray-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Round_Serving_Tray-1.1.jpeg", }, { "dimensions": { @@ -128,7 +128,7 @@ describe(`with roundServingTray01 preset`, () => { "width": 3283, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Round_Serving_Tray-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Round_Serving_Tray-1.2.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/round-serving-tray-01.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/round-serving-tray-01.ts similarity index 93% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/round-serving-tray-01.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/round-serving-tray-01.ts index 690d5c4ae..fc4b5e4d8 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/round-serving-tray-01.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/round-serving-tray-01.ts @@ -26,13 +26,13 @@ const roundServingTray01 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Round_Serving_Tray-1.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Round_Serving_Tray-1.1.jpeg' ) .dimensions({ w: 3537, h: 3537 }), ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Round_Serving_Tray-1.2.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Round_Serving_Tray-1.2.jpeg' ) .dimensions({ w: 3283, h: 1719 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/rumi-chair-01.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/rumi-chair-01.spec.ts similarity index 97% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/rumi-chair-01.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/rumi-chair-01.spec.ts index 04c17dde9..1cf983ede 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/rumi-chair-01.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/rumi-chair-01.spec.ts @@ -51,7 +51,7 @@ describe(`with rumiChair01 preset`, () => { "w": 2400, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Rumi_Chair-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Rumi_Chair-1.1.jpeg", }, ], "key": undefined, @@ -138,7 +138,7 @@ describe(`with rumiChair01 preset`, () => { "width": 2400, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Rumi_Chair-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Rumi_Chair-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/rumi-chair-01.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/rumi-chair-01.ts similarity index 97% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/rumi-chair-01.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/rumi-chair-01.ts index 6024f72a0..d2c33dbc0 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/rumi-chair-01.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/rumi-chair-01.ts @@ -26,7 +26,7 @@ const rumiChair01 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Rumi_Chair-1.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Rumi_Chair-1.1.jpeg' ) .dimensions({ w: 2400, h: 3200 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/rustic-bowl-01.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/rustic-bowl-01.spec.ts similarity index 97% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/rustic-bowl-01.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/rustic-bowl-01.spec.ts index 0d22586de..fd401f76a 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/rustic-bowl-01.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/rustic-bowl-01.spec.ts @@ -32,7 +32,7 @@ describe(`with rusticBowl01 preset`, () => { "w": 5105, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Rustic_Bowl-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Rustic_Bowl-1.1.jpeg", }, ], "key": undefined, @@ -111,7 +111,7 @@ describe(`with rusticBowl01 preset`, () => { "width": 5105, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Rustic_Bowl-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Rustic_Bowl-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/rustic-bowl-01.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/rustic-bowl-01.ts similarity index 96% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/rustic-bowl-01.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/rustic-bowl-01.ts index ebe4bd733..95bceee9f 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/rustic-bowl-01.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/rustic-bowl-01.ts @@ -26,7 +26,7 @@ const rusticBowl01 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Rustic_Bowl-1.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Rustic_Bowl-1.1.jpeg' ) .dimensions({ w: 5105, h: 3280 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/rustic-country-dresser-01.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/rustic-country-dresser-01.spec.ts similarity index 91% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/rustic-country-dresser-01.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/rustic-country-dresser-01.spec.ts index 698d59bac..6d609c10e 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/rustic-country-dresser-01.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/rustic-country-dresser-01.spec.ts @@ -39,7 +39,7 @@ describe(`with rusticCountryDresser01 preset`, () => { "w": 2500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Rustic_Country_Dresser-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Rustic_Country_Dresser-1.2.jpeg", }, { "dimensions": { @@ -47,7 +47,7 @@ describe(`with rusticCountryDresser01 preset`, () => { "w": 2500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Rustic_Country_Dresser-1.3.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Rustic_Country_Dresser-1.3.jpeg", }, { "dimensions": { @@ -55,7 +55,7 @@ describe(`with rusticCountryDresser01 preset`, () => { "w": 2500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Rustic_Country_Dresser-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Rustic_Country_Dresser-1.1.jpeg", }, { "dimensions": { @@ -63,7 +63,7 @@ describe(`with rusticCountryDresser01 preset`, () => { "w": 5760, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Rustic_Country_Dresser-1.4.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Rustic_Country_Dresser-1.4.jpeg", }, ], "key": undefined, @@ -142,7 +142,7 @@ describe(`with rusticCountryDresser01 preset`, () => { "width": 2500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Rustic_Country_Dresser-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Rustic_Country_Dresser-1.2.jpeg", }, { "dimensions": { @@ -150,7 +150,7 @@ describe(`with rusticCountryDresser01 preset`, () => { "width": 2500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Rustic_Country_Dresser-1.3.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Rustic_Country_Dresser-1.3.jpeg", }, { "dimensions": { @@ -158,7 +158,7 @@ describe(`with rusticCountryDresser01 preset`, () => { "width": 2500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Rustic_Country_Dresser-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Rustic_Country_Dresser-1.1.jpeg", }, { "dimensions": { @@ -166,7 +166,7 @@ describe(`with rusticCountryDresser01 preset`, () => { "width": 5760, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Rustic_Country_Dresser-1.4.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Rustic_Country_Dresser-1.4.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/rustic-country-dresser-01.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/rustic-country-dresser-01.ts similarity index 90% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/rustic-country-dresser-01.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/rustic-country-dresser-01.ts index 876a9098b..6238bd32f 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/rustic-country-dresser-01.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/rustic-country-dresser-01.ts @@ -26,25 +26,25 @@ const rusticCountryDresser01 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Rustic_Country_Dresser-1.2.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Rustic_Country_Dresser-1.2.jpeg' ) .dimensions({ w: 2500, h: 2500 }), ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Rustic_Country_Dresser-1.3.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Rustic_Country_Dresser-1.3.jpeg' ) .dimensions({ w: 2500, h: 2500 }), ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Rustic_Country_Dresser-1.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Rustic_Country_Dresser-1.1.jpeg' ) .dimensions({ w: 2500, h: 2500 }), ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Rustic_Country_Dresser-1.4.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Rustic_Country_Dresser-1.4.jpeg' ) .dimensions({ w: 5760, h: 3840 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/rustic-country-queen-bed-01.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/rustic-country-queen-bed-01.spec.ts similarity index 97% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/rustic-country-queen-bed-01.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/rustic-country-queen-bed-01.spec.ts index 71179c5f0..5ef6d1540 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/rustic-country-queen-bed-01.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/rustic-country-queen-bed-01.spec.ts @@ -47,7 +47,7 @@ describe(`with rusticCountryQueenBed01 preset`, () => { "w": 5000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Rustic_Country_Queen_Bed-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Rustic_Country_Queen_Bed-1.1.jpeg", }, ], "key": undefined, @@ -130,7 +130,7 @@ describe(`with rusticCountryQueenBed01 preset`, () => { "width": 5000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Rustic_Country_Queen_Bed-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Rustic_Country_Queen_Bed-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/rustic-country-queen-bed-01.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/rustic-country-queen-bed-01.ts similarity index 96% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/rustic-country-queen-bed-01.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/rustic-country-queen-bed-01.ts index f923de67d..163dfea11 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/rustic-country-queen-bed-01.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/rustic-country-queen-bed-01.ts @@ -26,7 +26,7 @@ const rusticCountryQueenBed01 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Rustic_Country_Queen_Bed-1.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Rustic_Country_Queen_Bed-1.1.jpeg' ) .dimensions({ w: 5000, h: 5000 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/rustic-oven-casserole-01.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/rustic-oven-casserole-01.spec.ts similarity index 97% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/rustic-oven-casserole-01.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/rustic-oven-casserole-01.spec.ts index 75975e706..6ba6f0b53 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/rustic-oven-casserole-01.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/rustic-oven-casserole-01.spec.ts @@ -33,7 +33,7 @@ describe(`with rusticOvenCasserole01 preset`, () => { "w": 4746, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Rustic_Oven_Casserole-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Rustic_Oven_Casserole-1.1.jpeg", }, ], "key": undefined, @@ -112,7 +112,7 @@ describe(`with rusticOvenCasserole01 preset`, () => { "width": 4746, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Rustic_Oven_Casserole-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Rustic_Oven_Casserole-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/rustic-oven-casserole-01.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/rustic-oven-casserole-01.ts similarity index 96% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/rustic-oven-casserole-01.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/rustic-oven-casserole-01.ts index ca1a7df82..c4fb9588c 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/rustic-oven-casserole-01.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/rustic-oven-casserole-01.ts @@ -26,7 +26,7 @@ const rusticOvenCasserole01 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Rustic_Oven_Casserole-1.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Rustic_Oven_Casserole-1.1.jpeg' ) .dimensions({ w: 4746, h: 3710 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/rye-whiskey-glass-01.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/rye-whiskey-glass-01.spec.ts similarity index 95% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/rye-whiskey-glass-01.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/rye-whiskey-glass-01.spec.ts index 3a13bd5ba..4a6c38893 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/rye-whiskey-glass-01.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/rye-whiskey-glass-01.spec.ts @@ -41,7 +41,7 @@ describe(`with ryeWhiskeyGlass01 preset`, () => { "w": 2848, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Rye_Whiskey_Glass-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Rye_Whiskey_Glass-1.1.jpeg", }, { "dimensions": { @@ -49,7 +49,7 @@ describe(`with ryeWhiskeyGlass01 preset`, () => { "w": 2632, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Rye_Whiskey_Glass-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Rye_Whiskey_Glass-1.2.jpeg", }, ], "key": undefined, @@ -132,7 +132,7 @@ describe(`with ryeWhiskeyGlass01 preset`, () => { "width": 2848, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Rye_Whiskey_Glass-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Rye_Whiskey_Glass-1.1.jpeg", }, { "dimensions": { @@ -140,7 +140,7 @@ describe(`with ryeWhiskeyGlass01 preset`, () => { "width": 2632, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Rye_Whiskey_Glass-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Rye_Whiskey_Glass-1.2.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/rye-whiskey-glass-01.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/rye-whiskey-glass-01.ts similarity index 94% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/rye-whiskey-glass-01.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/rye-whiskey-glass-01.ts index 459560cdf..77625c8a8 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/rye-whiskey-glass-01.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/rye-whiskey-glass-01.ts @@ -26,13 +26,13 @@ const ryeWhiskeyGlass01 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Rye_Whiskey_Glass-1.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Rye_Whiskey_Glass-1.1.jpeg' ) .dimensions({ w: 2848, h: 2990 }), ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Rye_Whiskey_Glass-1.2.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Rye_Whiskey_Glass-1.2.jpeg' ) .dimensions({ w: 2632, h: 2268 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/sally-armchair-01.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/sally-armchair-01.spec.ts similarity index 97% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/sally-armchair-01.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/sally-armchair-01.spec.ts index 084b3255a..cdf736bf5 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/sally-armchair-01.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/sally-armchair-01.spec.ts @@ -41,7 +41,7 @@ describe(`with sallyArmchair01 preset`, () => { "w": 5000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Sally_Armchair-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Sally_Armchair-1.1.jpeg", }, ], "key": undefined, @@ -124,7 +124,7 @@ describe(`with sallyArmchair01 preset`, () => { "width": 5000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Sally_Armchair-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Sally_Armchair-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/sally-armchair-01.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/sally-armchair-01.ts similarity index 97% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/sally-armchair-01.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/sally-armchair-01.ts index 798abf5f4..2e1e27f79 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/sally-armchair-01.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/sally-armchair-01.ts @@ -26,7 +26,7 @@ const sallyArmchair01 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Sally_Armchair-1.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Sally_Armchair-1.1.jpeg' ) .dimensions({ w: 5000, h: 4000 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/sand-tea-cup-01.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/sand-tea-cup-01.spec.ts similarity index 97% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/sand-tea-cup-01.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/sand-tea-cup-01.spec.ts index 188528815..77cc3766e 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/sand-tea-cup-01.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/sand-tea-cup-01.spec.ts @@ -32,7 +32,7 @@ describe(`with sandTeaCup01 preset`, () => { "w": 6046, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Sand_Tea_Cup-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Sand_Tea_Cup-1.1.jpeg", }, ], "key": undefined, @@ -111,7 +111,7 @@ describe(`with sandTeaCup01 preset`, () => { "width": 6046, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Sand_Tea_Cup-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Sand_Tea_Cup-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/sand-tea-cup-01.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/sand-tea-cup-01.ts similarity index 96% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/sand-tea-cup-01.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/sand-tea-cup-01.ts index 3d474bc91..509a3f797 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/sand-tea-cup-01.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/sand-tea-cup-01.ts @@ -26,7 +26,7 @@ const sandTeaCup01 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Sand_Tea_Cup-1.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Sand_Tea_Cup-1.1.jpeg' ) .dimensions({ w: 6046, h: 4020 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/serenity-queen-bed-01.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/serenity-queen-bed-01.spec.ts similarity index 97% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/serenity-queen-bed-01.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/serenity-queen-bed-01.spec.ts index a681fa36b..ae28fa0bf 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/serenity-queen-bed-01.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/serenity-queen-bed-01.spec.ts @@ -36,7 +36,7 @@ describe(`with serenityQueenBed01 preset`, () => { "w": 2000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Serenity_Queen_Bed-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Serenity_Queen_Bed-1.1.jpeg", }, ], "key": undefined, @@ -115,7 +115,7 @@ describe(`with serenityQueenBed01 preset`, () => { "width": 2000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Serenity_Queen_Bed-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Serenity_Queen_Bed-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/serenity-queen-bed-01.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/serenity-queen-bed-01.ts similarity index 96% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/serenity-queen-bed-01.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/serenity-queen-bed-01.ts index b3c39bf75..ba0be84f1 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/serenity-queen-bed-01.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/serenity-queen-bed-01.ts @@ -26,7 +26,7 @@ const serenityQueenBed01 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Serenity_Queen_Bed-1.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Serenity_Queen_Bed-1.1.jpeg' ) .dimensions({ w: 2000, h: 2000 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/silky-pillow-cover-01.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/silky-pillow-cover-01.spec.ts similarity index 97% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/silky-pillow-cover-01.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/silky-pillow-cover-01.spec.ts index cde8a075d..b2c942eac 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/silky-pillow-cover-01.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/silky-pillow-cover-01.spec.ts @@ -33,7 +33,7 @@ describe(`with silkyPillowCover01 preset`, () => { "w": 6016, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Silky_Pillow_Cover-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Silky_Pillow_Cover-1.1.jpeg", }, ], "key": undefined, @@ -112,7 +112,7 @@ describe(`with silkyPillowCover01 preset`, () => { "width": 6016, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Silky_Pillow_Cover-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Silky_Pillow_Cover-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/silky-pillow-cover-01.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/silky-pillow-cover-01.ts similarity index 96% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/silky-pillow-cover-01.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/silky-pillow-cover-01.ts index 5e79dc505..3cf61deca 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/silky-pillow-cover-01.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/silky-pillow-cover-01.ts @@ -26,7 +26,7 @@ const silkyPillowCover01 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Silky_Pillow_Cover-1.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Silky_Pillow_Cover-1.1.jpeg' ) .dimensions({ w: 6016, h: 4011 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/sipper-coffee-mug-01.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/sipper-coffee-mug-01.spec.ts similarity index 97% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/sipper-coffee-mug-01.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/sipper-coffee-mug-01.spec.ts index c01a8aa56..e22fa29cf 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/sipper-coffee-mug-01.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/sipper-coffee-mug-01.spec.ts @@ -33,7 +33,7 @@ describe(`with sipperCoffeeMug01 preset`, () => { "w": 4500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Sipper_Coffee_Mug-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Sipper_Coffee_Mug-1.1.jpeg", }, ], "key": undefined, @@ -112,7 +112,7 @@ describe(`with sipperCoffeeMug01 preset`, () => { "width": 4500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Sipper_Coffee_Mug-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Sipper_Coffee_Mug-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/sipper-coffee-mug-01.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/sipper-coffee-mug-01.ts similarity index 96% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/sipper-coffee-mug-01.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/sipper-coffee-mug-01.ts index f34ae036c..ef6158227 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/sipper-coffee-mug-01.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/sipper-coffee-mug-01.ts @@ -26,7 +26,7 @@ const sipperCoffeeMug01 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Sipper_Coffee_Mug-1.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Sipper_Coffee_Mug-1.1.jpeg' ) .dimensions({ w: 4500, h: 3000 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/slate-armchair-01.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/slate-armchair-01.spec.ts similarity index 95% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/slate-armchair-01.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/slate-armchair-01.spec.ts index 207d7333c..3f9013248 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/slate-armchair-01.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/slate-armchair-01.spec.ts @@ -33,7 +33,7 @@ describe(`with slateArmchair01 preset`, () => { "w": 5009, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Slate_Armchair-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Slate_Armchair-1.1.jpeg", }, { "dimensions": { @@ -41,7 +41,7 @@ describe(`with slateArmchair01 preset`, () => { "w": 5544, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Slate_Armchair-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Slate_Armchair-1.2.jpeg", }, ], "key": undefined, @@ -120,7 +120,7 @@ describe(`with slateArmchair01 preset`, () => { "width": 5009, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Slate_Armchair-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Slate_Armchair-1.1.jpeg", }, { "dimensions": { @@ -128,7 +128,7 @@ describe(`with slateArmchair01 preset`, () => { "width": 5544, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Slate_Armchair-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Slate_Armchair-1.2.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/slate-armchair-01.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/slate-armchair-01.ts similarity index 94% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/slate-armchair-01.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/slate-armchair-01.ts index 85227d1ac..7747874c3 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/slate-armchair-01.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/slate-armchair-01.ts @@ -26,13 +26,13 @@ const slateArmchair01 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Slate_Armchair-1.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Slate_Armchair-1.1.jpeg' ) .dimensions({ w: 5009, h: 4004 }), ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Slate_Armchair-1.2.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Slate_Armchair-1.2.jpeg' ) .dimensions({ w: 5544, h: 3498 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/small-wooden-bowl-01.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/small-wooden-bowl-01.spec.ts similarity index 91% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/small-wooden-bowl-01.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/small-wooden-bowl-01.spec.ts index 17a151a76..770305231 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/small-wooden-bowl-01.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/small-wooden-bowl-01.spec.ts @@ -33,7 +33,7 @@ describe(`with smallWoodenBowl01 preset`, () => { "w": 3241, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Small_Wooden_Bowl-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Small_Wooden_Bowl-1.1.jpeg", }, { "dimensions": { @@ -41,7 +41,7 @@ describe(`with smallWoodenBowl01 preset`, () => { "w": 5184, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Small_Wooden_Bowl-1.3.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Small_Wooden_Bowl-1.3.jpeg", }, { "dimensions": { @@ -49,7 +49,7 @@ describe(`with smallWoodenBowl01 preset`, () => { "w": 6144, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Small_Wooden_Bowl-1.4.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Small_Wooden_Bowl-1.4.jpeg", }, { "dimensions": { @@ -57,7 +57,7 @@ describe(`with smallWoodenBowl01 preset`, () => { "w": 7696, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Small_Wooden_Bowl-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Small_Wooden_Bowl-1.2.jpeg", }, ], "key": undefined, @@ -136,7 +136,7 @@ describe(`with smallWoodenBowl01 preset`, () => { "width": 3241, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Small_Wooden_Bowl-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Small_Wooden_Bowl-1.1.jpeg", }, { "dimensions": { @@ -144,7 +144,7 @@ describe(`with smallWoodenBowl01 preset`, () => { "width": 5184, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Small_Wooden_Bowl-1.3.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Small_Wooden_Bowl-1.3.jpeg", }, { "dimensions": { @@ -152,7 +152,7 @@ describe(`with smallWoodenBowl01 preset`, () => { "width": 6144, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Small_Wooden_Bowl-1.4.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Small_Wooden_Bowl-1.4.jpeg", }, { "dimensions": { @@ -160,7 +160,7 @@ describe(`with smallWoodenBowl01 preset`, () => { "width": 7696, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Small_Wooden_Bowl-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Small_Wooden_Bowl-1.2.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/small-wooden-bowl-01.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/small-wooden-bowl-01.ts similarity index 90% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/small-wooden-bowl-01.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/small-wooden-bowl-01.ts index aff8da231..32eb2b159 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/small-wooden-bowl-01.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/small-wooden-bowl-01.ts @@ -26,25 +26,25 @@ const smallWoodenBowl01 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Small_Wooden_Bowl-1.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Small_Wooden_Bowl-1.1.jpeg' ) .dimensions({ w: 3241, h: 2500 }), ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Small_Wooden_Bowl-1.3.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Small_Wooden_Bowl-1.3.jpeg' ) .dimensions({ w: 5184, h: 3456 }), ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Small_Wooden_Bowl-1.4.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Small_Wooden_Bowl-1.4.jpeg' ) .dimensions({ w: 6144, h: 4096 }), ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Small_Wooden_Bowl-1.2.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Small_Wooden_Bowl-1.2.jpeg' ) .dimensions({ w: 7696, h: 5133 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/sparkle-champagne-glass-01.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/sparkle-champagne-glass-01.spec.ts similarity index 97% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/sparkle-champagne-glass-01.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/sparkle-champagne-glass-01.spec.ts index b68bd31b3..e95f894d8 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/sparkle-champagne-glass-01.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/sparkle-champagne-glass-01.spec.ts @@ -41,7 +41,7 @@ describe(`with sparkleChampagneGlass01 preset`, () => { "w": 3000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Sparkle_Champagne_Glass-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Sparkle_Champagne_Glass-1.1.jpeg", }, ], "key": undefined, @@ -124,7 +124,7 @@ describe(`with sparkleChampagneGlass01 preset`, () => { "width": 3000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Sparkle_Champagne_Glass-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Sparkle_Champagne_Glass-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/sparkle-champagne-glass-01.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/sparkle-champagne-glass-01.ts similarity index 96% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/sparkle-champagne-glass-01.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/sparkle-champagne-glass-01.ts index be14de6bc..728407e45 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/sparkle-champagne-glass-01.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/sparkle-champagne-glass-01.ts @@ -26,7 +26,7 @@ const sparkleChampagneGlass01 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Sparkle_Champagne_Glass-1.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Sparkle_Champagne_Glass-1.1.jpeg' ) .dimensions({ w: 3000, h: 3000 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/square-bamboo-coaster-01.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/square-bamboo-coaster-01.spec.ts similarity index 97% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/square-bamboo-coaster-01.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/square-bamboo-coaster-01.spec.ts index 82af599f9..78eece9ef 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/square-bamboo-coaster-01.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/square-bamboo-coaster-01.spec.ts @@ -36,7 +36,7 @@ describe(`with squareBambooCoaster01 preset`, () => { "w": 2912, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Square_Bamboo_Coaster-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Square_Bamboo_Coaster-1.1.jpeg", }, ], "key": undefined, @@ -115,7 +115,7 @@ describe(`with squareBambooCoaster01 preset`, () => { "width": 2912, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Square_Bamboo_Coaster-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Square_Bamboo_Coaster-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/square-bamboo-coaster-01.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/square-bamboo-coaster-01.ts similarity index 96% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/square-bamboo-coaster-01.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/square-bamboo-coaster-01.ts index 8f5217e8c..1d2b99f08 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/square-bamboo-coaster-01.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/square-bamboo-coaster-01.ts @@ -26,7 +26,7 @@ const squareBambooCoaster01 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Square_Bamboo_Coaster-1.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Square_Bamboo_Coaster-1.1.jpeg' ) .dimensions({ w: 2912, h: 2912 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/steel-hip-flask-01.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/steel-hip-flask-01.spec.ts similarity index 97% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/steel-hip-flask-01.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/steel-hip-flask-01.spec.ts index 164804063..2b637f5fe 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/steel-hip-flask-01.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/steel-hip-flask-01.spec.ts @@ -36,7 +36,7 @@ describe(`with steelHipFlask01 preset`, () => { "w": 5006, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Steel_Hip_Flask-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Steel_Hip_Flask-1.1.jpeg", }, ], "key": undefined, @@ -118,7 +118,7 @@ describe(`with steelHipFlask01 preset`, () => { "width": 5006, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Steel_Hip_Flask-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Steel_Hip_Flask-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/steel-hip-flask-01.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/steel-hip-flask-01.ts similarity index 93% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/steel-hip-flask-01.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/steel-hip-flask-01.ts index 848c04b7d..05ccc56fd 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/steel-hip-flask-01.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/steel-hip-flask-01.ts @@ -9,7 +9,7 @@ import { ImageDraft } from '../../../../image'; import type { TProductVariantDraftBuilder } from '../../../types'; import * as ProductVariantDraft from '../../index'; -const distributionChannel = ChannelDraft.presets.sampleDataGoodStore +const distributionChannel = ChannelDraft.presets.sampleDataB2CLifestyle .distributionChannel() .build(); @@ -38,7 +38,7 @@ const steelHipFlask01 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Steel_Hip_Flask-1.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Steel_Hip_Flask-1.1.jpeg' ) .dimensions({ w: 5006, h: 6580 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/stone-serving-tray-01.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/stone-serving-tray-01.spec.ts similarity index 97% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/stone-serving-tray-01.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/stone-serving-tray-01.spec.ts index 313f50038..29b752891 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/stone-serving-tray-01.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/stone-serving-tray-01.spec.ts @@ -36,7 +36,7 @@ describe(`with stoneServingTray01 preset`, () => { "w": 4125, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Stone_Serving_Tray-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Stone_Serving_Tray-1.1.jpeg", }, ], "key": undefined, @@ -115,7 +115,7 @@ describe(`with stoneServingTray01 preset`, () => { "width": 4125, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Stone_Serving_Tray-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Stone_Serving_Tray-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/stone-serving-tray-01.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/stone-serving-tray-01.ts similarity index 96% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/stone-serving-tray-01.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/stone-serving-tray-01.ts index d50acee93..aa4f31813 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/stone-serving-tray-01.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/stone-serving-tray-01.ts @@ -26,7 +26,7 @@ const stoneServingTray01 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Stone_Serving_Tray-1.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Stone_Serving_Tray-1.1.jpeg' ) .dimensions({ w: 4125, h: 2358 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/stout-beer-glass-01.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/stout-beer-glass-01.spec.ts similarity index 97% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/stout-beer-glass-01.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/stout-beer-glass-01.spec.ts index 83aa19970..9fc7dc98c 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/stout-beer-glass-01.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/stout-beer-glass-01.spec.ts @@ -44,7 +44,7 @@ describe(`with stoutBeerGlass01 preset`, () => { "w": 3000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Stout_Beer_Glass-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Stout_Beer_Glass-1.1.jpeg", }, ], "key": undefined, @@ -127,7 +127,7 @@ describe(`with stoutBeerGlass01 preset`, () => { "width": 3000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Stout_Beer_Glass-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Stout_Beer_Glass-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/stout-beer-glass-01.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/stout-beer-glass-01.ts similarity index 96% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/stout-beer-glass-01.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/stout-beer-glass-01.ts index 0c4ea305c..d48103e3c 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/stout-beer-glass-01.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/stout-beer-glass-01.ts @@ -26,7 +26,7 @@ const stoutBeerGlass01 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Stout_Beer_Glass-1.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Stout_Beer_Glass-1.1.jpeg' ) .dimensions({ w: 3000, h: 3000 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/sunnai-glass-bowl-01.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/sunnai-glass-bowl-01.spec.ts similarity index 97% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/sunnai-glass-bowl-01.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/sunnai-glass-bowl-01.spec.ts index 1a5e9cd80..29a2f666e 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/sunnai-glass-bowl-01.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/sunnai-glass-bowl-01.spec.ts @@ -44,7 +44,7 @@ describe(`with sunnaiGlassBowl01 preset`, () => { "w": 5381, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Sunnai_Glass_Bowl-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Sunnai_Glass_Bowl-1.1.jpeg", }, ], "key": undefined, @@ -127,7 +127,7 @@ describe(`with sunnaiGlassBowl01 preset`, () => { "width": 5381, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Sunnai_Glass_Bowl-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Sunnai_Glass_Bowl-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/sunnai-glass-bowl-01.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/sunnai-glass-bowl-01.ts similarity index 96% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/sunnai-glass-bowl-01.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/sunnai-glass-bowl-01.ts index c4cf07277..5d07c6ab0 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/sunnai-glass-bowl-01.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/sunnai-glass-bowl-01.ts @@ -26,7 +26,7 @@ const sunnaiGlassBowl01 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Sunnai_Glass_Bowl-1.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Sunnai_Glass_Bowl-1.1.jpeg' ) .dimensions({ w: 5381, h: 3739 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/sunnai-glass-bowl-02.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/sunnai-glass-bowl-02.spec.ts similarity index 97% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/sunnai-glass-bowl-02.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/sunnai-glass-bowl-02.spec.ts index 4c31e06ff..d01140646 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/sunnai-glass-bowl-02.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/sunnai-glass-bowl-02.spec.ts @@ -44,7 +44,7 @@ describe(`with sunnaiGlassBowl02 preset`, () => { "w": 4944, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Sunnai_Glass_Bowl-2.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Sunnai_Glass_Bowl-2.1.jpeg", }, ], "key": undefined, @@ -127,7 +127,7 @@ describe(`with sunnaiGlassBowl02 preset`, () => { "width": 4944, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Sunnai_Glass_Bowl-2.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Sunnai_Glass_Bowl-2.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/sunnai-glass-bowl-02.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/sunnai-glass-bowl-02.ts similarity index 96% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/sunnai-glass-bowl-02.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/sunnai-glass-bowl-02.ts index 78162e4e0..27551eefc 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/sunnai-glass-bowl-02.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/sunnai-glass-bowl-02.ts @@ -26,7 +26,7 @@ const sunnaiGlassBowl02 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Sunnai_Glass_Bowl-2.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Sunnai_Glass_Bowl-2.1.jpeg' ) .dimensions({ w: 4944, h: 3288 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/sweet-pea-candle-01.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/sweet-pea-candle-01.spec.ts similarity index 93% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/sweet-pea-candle-01.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/sweet-pea-candle-01.spec.ts index 24ba34bbe..2080c6d74 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/sweet-pea-candle-01.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/sweet-pea-candle-01.spec.ts @@ -47,7 +47,7 @@ describe(`with sweetPeaCandle01 preset`, () => { "w": 5540, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Sweet_Pea_Candle-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Sweet_Pea_Candle-1.1.jpeg", }, { "dimensions": { @@ -55,7 +55,7 @@ describe(`with sweetPeaCandle01 preset`, () => { "w": 6720, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Sweet_Pea_Candle-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Sweet_Pea_Candle-1.2.jpeg", }, { "dimensions": { @@ -63,7 +63,7 @@ describe(`with sweetPeaCandle01 preset`, () => { "w": 6640, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Sweet_Pea_Candle-1.3.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Sweet_Pea_Candle-1.3.jpeg", }, ], "key": undefined, @@ -146,7 +146,7 @@ describe(`with sweetPeaCandle01 preset`, () => { "width": 5540, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Sweet_Pea_Candle-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Sweet_Pea_Candle-1.1.jpeg", }, { "dimensions": { @@ -154,7 +154,7 @@ describe(`with sweetPeaCandle01 preset`, () => { "width": 6720, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Sweet_Pea_Candle-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Sweet_Pea_Candle-1.2.jpeg", }, { "dimensions": { @@ -162,7 +162,7 @@ describe(`with sweetPeaCandle01 preset`, () => { "width": 6640, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Sweet_Pea_Candle-1.3.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Sweet_Pea_Candle-1.3.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/sweet-pea-candle-01.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/sweet-pea-candle-01.ts similarity index 92% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/sweet-pea-candle-01.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/sweet-pea-candle-01.ts index c3d39aa18..99d63a09a 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/sweet-pea-candle-01.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/sweet-pea-candle-01.ts @@ -26,19 +26,19 @@ const sweetPeaCandle01 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Sweet_Pea_Candle-1.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Sweet_Pea_Candle-1.1.jpeg' ) .dimensions({ w: 5540, h: 3693 }), ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Sweet_Pea_Candle-1.2.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Sweet_Pea_Candle-1.2.jpeg' ) .dimensions({ w: 6720, h: 4480 }), ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Sweet_Pea_Candle-1.3.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Sweet_Pea_Candle-1.3.jpeg' ) .dimensions({ w: 6640, h: 4427 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/tan-queen-bed-01.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/tan-queen-bed-01.spec.ts similarity index 97% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/tan-queen-bed-01.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/tan-queen-bed-01.spec.ts index d4e50900e..2d371094d 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/tan-queen-bed-01.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/tan-queen-bed-01.spec.ts @@ -43,7 +43,7 @@ describe(`with tanQueenBed01 preset`, () => { "w": 5000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Tan_Queen_Bed-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Tan_Queen_Bed-1.1.jpeg", }, ], "key": undefined, @@ -126,7 +126,7 @@ describe(`with tanQueenBed01 preset`, () => { "width": 5000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Tan_Queen_Bed-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Tan_Queen_Bed-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/tan-queen-bed-01.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/tan-queen-bed-01.ts similarity index 97% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/tan-queen-bed-01.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/tan-queen-bed-01.ts index ca6ce72bc..5c39fce83 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/tan-queen-bed-01.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/tan-queen-bed-01.ts @@ -26,7 +26,7 @@ const tanQueenBed01 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Tan_Queen_Bed-1.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Tan_Queen_Bed-1.1.jpeg' ) .dimensions({ w: 5000, h: 3621 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/teak-serving-platter-01.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/teak-serving-platter-01.spec.ts similarity index 97% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/teak-serving-platter-01.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/teak-serving-platter-01.spec.ts index 23147fad0..814d4a308 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/teak-serving-platter-01.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/teak-serving-platter-01.spec.ts @@ -39,7 +39,7 @@ describe(`with teakServingPlatter01 preset`, () => { "w": 4331, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Teak_Serving_Platter-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Teak_Serving_Platter-1.1.jpeg", }, ], "key": undefined, @@ -118,7 +118,7 @@ describe(`with teakServingPlatter01 preset`, () => { "width": 4331, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Teak_Serving_Platter-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Teak_Serving_Platter-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/teak-serving-platter-01.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/teak-serving-platter-01.ts similarity index 96% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/teak-serving-platter-01.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/teak-serving-platter-01.ts index fe4a6219b..c6e8ba014 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/teak-serving-platter-01.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/teak-serving-platter-01.ts @@ -26,7 +26,7 @@ const teakServingPlatter01 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Teak_Serving_Platter-1.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Teak_Serving_Platter-1.1.jpeg' ) .dimensions({ w: 4331, h: 2389 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/traditional-armchair-01.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/traditional-armchair-01.spec.ts similarity index 93% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/traditional-armchair-01.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/traditional-armchair-01.spec.ts index 509832df8..2120f95cf 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/traditional-armchair-01.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/traditional-armchair-01.spec.ts @@ -36,7 +36,7 @@ describe(`with traditionalArmchair01 preset`, () => { "w": 2500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Traditional_Armchair-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Traditional_Armchair-1.1.jpeg", }, { "dimensions": { @@ -44,7 +44,7 @@ describe(`with traditionalArmchair01 preset`, () => { "w": 2500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Traditional_Armchair-1.3.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Traditional_Armchair-1.3.jpeg", }, { "dimensions": { @@ -52,7 +52,7 @@ describe(`with traditionalArmchair01 preset`, () => { "w": 5760, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Traditional_Armchair-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Traditional_Armchair-1.2.jpeg", }, ], "key": undefined, @@ -131,7 +131,7 @@ describe(`with traditionalArmchair01 preset`, () => { "width": 2500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Traditional_Armchair-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Traditional_Armchair-1.1.jpeg", }, { "dimensions": { @@ -139,7 +139,7 @@ describe(`with traditionalArmchair01 preset`, () => { "width": 2500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Traditional_Armchair-1.3.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Traditional_Armchair-1.3.jpeg", }, { "dimensions": { @@ -147,7 +147,7 @@ describe(`with traditionalArmchair01 preset`, () => { "width": 5760, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Traditional_Armchair-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Traditional_Armchair-1.2.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/traditional-armchair-01.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/traditional-armchair-01.ts similarity index 91% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/traditional-armchair-01.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/traditional-armchair-01.ts index 810ea6e70..ab8e99743 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/traditional-armchair-01.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/traditional-armchair-01.ts @@ -26,19 +26,19 @@ const traditionalArmchair01 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Traditional_Armchair-1.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Traditional_Armchair-1.1.jpeg' ) .dimensions({ w: 2500, h: 2500 }), ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Traditional_Armchair-1.3.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Traditional_Armchair-1.3.jpeg' ) .dimensions({ w: 2500, h: 2500 }), ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Traditional_Armchair-1.2.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Traditional_Armchair-1.2.jpeg' ) .dimensions({ w: 5760, h: 3840 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/traditional-l-seater-sofa-01.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/traditional-l-seater-sofa-01.spec.ts similarity index 93% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/traditional-l-seater-sofa-01.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/traditional-l-seater-sofa-01.spec.ts index 5897bd878..c2a086761 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/traditional-l-seater-sofa-01.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/traditional-l-seater-sofa-01.spec.ts @@ -50,7 +50,7 @@ describe(`with traditionalLSeaterSofa01 preset`, () => { "w": 2500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Traditional_L_Seater_Sofa-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Traditional_L_Seater_Sofa-1.2.jpeg", }, { "dimensions": { @@ -58,7 +58,7 @@ describe(`with traditionalLSeaterSofa01 preset`, () => { "w": 2500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Traditional_L_Seater_Sofa-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Traditional_L_Seater_Sofa-1.1.jpeg", }, { "dimensions": { @@ -66,7 +66,7 @@ describe(`with traditionalLSeaterSofa01 preset`, () => { "w": 5760, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Traditional_L_Seater_Sofa-1.3.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Traditional_L_Seater_Sofa-1.3.jpeg", }, ], "key": undefined, @@ -149,7 +149,7 @@ describe(`with traditionalLSeaterSofa01 preset`, () => { "width": 2500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Traditional_L_Seater_Sofa-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Traditional_L_Seater_Sofa-1.2.jpeg", }, { "dimensions": { @@ -157,7 +157,7 @@ describe(`with traditionalLSeaterSofa01 preset`, () => { "width": 2500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Traditional_L_Seater_Sofa-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Traditional_L_Seater_Sofa-1.1.jpeg", }, { "dimensions": { @@ -165,7 +165,7 @@ describe(`with traditionalLSeaterSofa01 preset`, () => { "width": 5760, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Traditional_L_Seater_Sofa-1.3.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Traditional_L_Seater_Sofa-1.3.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/traditional-l-seater-sofa-01.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/traditional-l-seater-sofa-01.ts similarity index 92% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/traditional-l-seater-sofa-01.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/traditional-l-seater-sofa-01.ts index ca988b4b0..6c7740bc2 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/traditional-l-seater-sofa-01.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/traditional-l-seater-sofa-01.ts @@ -26,19 +26,19 @@ const traditionalLSeaterSofa01 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Traditional_L_Seater_Sofa-1.2.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Traditional_L_Seater_Sofa-1.2.jpeg' ) .dimensions({ w: 2500, h: 2500 }), ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Traditional_L_Seater_Sofa-1.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Traditional_L_Seater_Sofa-1.1.jpeg' ) .dimensions({ w: 2500, h: 2500 }), ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Traditional_L_Seater_Sofa-1.3.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Traditional_L_Seater_Sofa-1.3.jpeg' ) .dimensions({ w: 5760, h: 3840 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/traditional-three-seater-sofa-01.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/traditional-three-seater-sofa-01.spec.ts similarity index 92% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/traditional-three-seater-sofa-01.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/traditional-three-seater-sofa-01.spec.ts index 76e668003..0d6eab9b3 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/traditional-three-seater-sofa-01.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/traditional-three-seater-sofa-01.spec.ts @@ -50,7 +50,7 @@ describe(`with traditionalThreeSeaterSofa01 preset`, () => { "w": 2500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Traditional_Three_Seater_Sofa-1.3.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Traditional_Three_Seater_Sofa-1.3.jpeg", }, { "dimensions": { @@ -58,7 +58,7 @@ describe(`with traditionalThreeSeaterSofa01 preset`, () => { "w": 2500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Traditional_Three_Seater_Sofa-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Traditional_Three_Seater_Sofa-1.1.jpeg", }, { "dimensions": { @@ -66,7 +66,7 @@ describe(`with traditionalThreeSeaterSofa01 preset`, () => { "w": 5760, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Traditional_Three_Seater_Sofa-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Traditional_Three_Seater_Sofa-1.2.jpeg", }, ], "key": undefined, @@ -149,7 +149,7 @@ describe(`with traditionalThreeSeaterSofa01 preset`, () => { "width": 2500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Traditional_Three_Seater_Sofa-1.3.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Traditional_Three_Seater_Sofa-1.3.jpeg", }, { "dimensions": { @@ -157,7 +157,7 @@ describe(`with traditionalThreeSeaterSofa01 preset`, () => { "width": 2500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Traditional_Three_Seater_Sofa-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Traditional_Three_Seater_Sofa-1.1.jpeg", }, { "dimensions": { @@ -165,7 +165,7 @@ describe(`with traditionalThreeSeaterSofa01 preset`, () => { "width": 5760, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Traditional_Three_Seater_Sofa-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Traditional_Three_Seater_Sofa-1.2.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/traditional-three-seater-sofa-01.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/traditional-three-seater-sofa-01.ts similarity index 91% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/traditional-three-seater-sofa-01.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/traditional-three-seater-sofa-01.ts index 6d95c911e..763a85be0 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/traditional-three-seater-sofa-01.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/traditional-three-seater-sofa-01.ts @@ -26,19 +26,19 @@ const traditionalThreeSeaterSofa01 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Traditional_Three_Seater_Sofa-1.3.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Traditional_Three_Seater_Sofa-1.3.jpeg' ) .dimensions({ w: 2500, h: 2500 }), ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Traditional_Three_Seater_Sofa-1.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Traditional_Three_Seater_Sofa-1.1.jpeg' ) .dimensions({ w: 2500, h: 2500 }), ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Traditional_Three_Seater_Sofa-1.2.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Traditional_Three_Seater_Sofa-1.2.jpeg' ) .dimensions({ w: 5760, h: 3840 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/travel-coffee-mug-01.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/travel-coffee-mug-01.spec.ts similarity index 97% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/travel-coffee-mug-01.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/travel-coffee-mug-01.spec.ts index d8dd44f95..8cd4e94de 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/travel-coffee-mug-01.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/travel-coffee-mug-01.spec.ts @@ -47,7 +47,7 @@ describe(`with travelCoffeeMug01 preset`, () => { "w": 4000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Travel_Coffee_Mug-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Travel_Coffee_Mug-1.1.jpeg", }, ], "key": undefined, @@ -130,7 +130,7 @@ describe(`with travelCoffeeMug01 preset`, () => { "width": 4000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Travel_Coffee_Mug-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Travel_Coffee_Mug-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/travel-coffee-mug-01.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/travel-coffee-mug-01.ts similarity index 96% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/travel-coffee-mug-01.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/travel-coffee-mug-01.ts index 36e5df69d..91fb17a43 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/travel-coffee-mug-01.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/travel-coffee-mug-01.ts @@ -26,7 +26,7 @@ const travelCoffeeMug01 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Travel_Coffee_Mug-1.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Travel_Coffee_Mug-1.1.jpeg' ) .dimensions({ w: 4000, h: 4000 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/turner-velvet-armchair-01.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/turner-velvet-armchair-01.spec.ts similarity index 94% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/turner-velvet-armchair-01.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/turner-velvet-armchair-01.spec.ts index d8fa23e68..b138fd0ee 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/turner-velvet-armchair-01.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/turner-velvet-armchair-01.spec.ts @@ -36,7 +36,7 @@ describe(`with turnerVelvetArmchair01 preset`, () => { "w": 2500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Turner_Velvet_Armchair-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Turner_Velvet_Armchair-1.1.jpeg", }, { "dimensions": { @@ -44,7 +44,7 @@ describe(`with turnerVelvetArmchair01 preset`, () => { "w": 2500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Turner_Velvet_Armchair-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Turner_Velvet_Armchair-1.2.jpeg", }, ], "key": undefined, @@ -123,7 +123,7 @@ describe(`with turnerVelvetArmchair01 preset`, () => { "width": 2500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Turner_Velvet_Armchair-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Turner_Velvet_Armchair-1.1.jpeg", }, { "dimensions": { @@ -131,7 +131,7 @@ describe(`with turnerVelvetArmchair01 preset`, () => { "width": 2500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Turner_Velvet_Armchair-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Turner_Velvet_Armchair-1.2.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/turner-velvet-armchair-01.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/turner-velvet-armchair-01.ts similarity index 93% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/turner-velvet-armchair-01.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/turner-velvet-armchair-01.ts index 94803fc83..16e886051 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/turner-velvet-armchair-01.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/turner-velvet-armchair-01.ts @@ -26,13 +26,13 @@ const turnerVelvetArmchair01 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Turner_Velvet_Armchair-1.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Turner_Velvet_Armchair-1.1.jpeg' ) .dimensions({ w: 2500, h: 2500 }), ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Turner_Velvet_Armchair-1.2.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Turner_Velvet_Armchair-1.2.jpeg' ) .dimensions({ w: 2500, h: 2500 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/vanilla-candle-01.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/vanilla-candle-01.spec.ts similarity index 95% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/vanilla-candle-01.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/vanilla-candle-01.spec.ts index 7f566fec1..4d16ff9f6 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/vanilla-candle-01.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/vanilla-candle-01.spec.ts @@ -47,7 +47,7 @@ describe(`with vanillaCandle01 preset`, () => { "w": 5819, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Vanilla_Candle-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Vanilla_Candle-1.1.jpeg", }, { "dimensions": { @@ -55,7 +55,7 @@ describe(`with vanillaCandle01 preset`, () => { "w": 6214, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Vanilla_Candle-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Vanilla_Candle-1.2.jpeg", }, ], "key": undefined, @@ -141,7 +141,7 @@ describe(`with vanillaCandle01 preset`, () => { "width": 5819, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Vanilla_Candle-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Vanilla_Candle-1.1.jpeg", }, { "dimensions": { @@ -149,7 +149,7 @@ describe(`with vanillaCandle01 preset`, () => { "width": 6214, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Vanilla_Candle-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Vanilla_Candle-1.2.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/vanilla-candle-01.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/vanilla-candle-01.ts similarity index 92% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/vanilla-candle-01.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/vanilla-candle-01.ts index 39e13ce8b..b24db8a50 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/vanilla-candle-01.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/vanilla-candle-01.ts @@ -9,7 +9,7 @@ import { ImageDraft } from '../../../../image'; import type { TProductVariantDraftBuilder } from '../../../types'; import * as ProductVariantDraft from '../../index'; -const distributionChannel = ChannelDraft.presets.sampleDataGoodStore +const distributionChannel = ChannelDraft.presets.sampleDataB2CLifestyle .distributionChannel() .build(); @@ -38,13 +38,13 @@ const vanillaCandle01 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Vanilla_Candle-1.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Vanilla_Candle-1.1.jpeg' ) .dimensions({ w: 5819, h: 3879 }), ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Vanilla_Candle-1.2.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Vanilla_Candle-1.2.jpeg' ) .dimensions({ w: 6214, h: 4143 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/walnut-cabinet-01.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/walnut-cabinet-01.spec.ts similarity index 95% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/walnut-cabinet-01.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/walnut-cabinet-01.spec.ts index 4093f1e7b..86899574b 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/walnut-cabinet-01.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/walnut-cabinet-01.spec.ts @@ -36,7 +36,7 @@ describe(`with walnutCabinet01 preset`, () => { "w": 4400, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Walnut_Cabinet-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Walnut_Cabinet-1.1.jpeg", }, { "dimensions": { @@ -44,7 +44,7 @@ describe(`with walnutCabinet01 preset`, () => { "w": 4400, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Walnut_Cabinet-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Walnut_Cabinet-1.2.jpeg", }, ], "key": undefined, @@ -126,7 +126,7 @@ describe(`with walnutCabinet01 preset`, () => { "width": 4400, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Walnut_Cabinet-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Walnut_Cabinet-1.1.jpeg", }, { "dimensions": { @@ -134,7 +134,7 @@ describe(`with walnutCabinet01 preset`, () => { "width": 4400, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Walnut_Cabinet-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Walnut_Cabinet-1.2.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/walnut-cabinet-01.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/walnut-cabinet-01.ts similarity index 91% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/walnut-cabinet-01.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/walnut-cabinet-01.ts index f8c7b4fac..8b7a03aed 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/walnut-cabinet-01.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/walnut-cabinet-01.ts @@ -9,7 +9,7 @@ import { ImageDraft } from '../../../../image'; import type { TProductVariantDraftBuilder } from '../../../types'; import * as ProductVariantDraft from '../../index'; -const distributionChannel = ChannelDraft.presets.sampleDataGoodStore +const distributionChannel = ChannelDraft.presets.sampleDataB2CLifestyle .distributionChannel() .build(); @@ -38,13 +38,13 @@ const walnutCabinet01 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Walnut_Cabinet-1.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Walnut_Cabinet-1.1.jpeg' ) .dimensions({ w: 4400, h: 2935 }), ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Walnut_Cabinet-1.2.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Walnut_Cabinet-1.2.jpeg' ) .dimensions({ w: 4400, h: 2935 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/walnut-counter-stool-01.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/walnut-counter-stool-01.spec.ts similarity index 97% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/walnut-counter-stool-01.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/walnut-counter-stool-01.spec.ts index ef5ffd1f9..bd6bf9ef9 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/walnut-counter-stool-01.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/walnut-counter-stool-01.spec.ts @@ -36,7 +36,7 @@ describe(`with walnutCounterStool01 preset`, () => { "w": 5906, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Walnut_Counter_Stool-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Walnut_Counter_Stool-1.1.jpeg", }, ], "key": undefined, @@ -115,7 +115,7 @@ describe(`with walnutCounterStool01 preset`, () => { "width": 5906, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Walnut_Counter_Stool-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Walnut_Counter_Stool-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/walnut-counter-stool-01.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/walnut-counter-stool-01.ts similarity index 96% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/walnut-counter-stool-01.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/walnut-counter-stool-01.ts index f28fd48e1..84647cb1a 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/walnut-counter-stool-01.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/walnut-counter-stool-01.ts @@ -26,7 +26,7 @@ const walnutCounterStool01 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Walnut_Counter_Stool-1.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Walnut_Counter_Stool-1.1.jpeg' ) .dimensions({ w: 5906, h: 5906 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/willow-teapot-01.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/willow-teapot-01.spec.ts similarity index 97% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/willow-teapot-01.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/willow-teapot-01.spec.ts index 368440e48..58c50fbb8 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/willow-teapot-01.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/willow-teapot-01.spec.ts @@ -35,7 +35,7 @@ describe(`with willowTeapot01 preset`, () => { "w": 6240, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Willow_Teapot-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Willow_Teapot-1.1.jpeg", }, ], "key": undefined, @@ -114,7 +114,7 @@ describe(`with willowTeapot01 preset`, () => { "width": 6240, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Willow_Teapot-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Willow_Teapot-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/willow-teapot-01.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/willow-teapot-01.ts similarity index 96% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/willow-teapot-01.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/willow-teapot-01.ts index 4da2ffb40..358bd64b9 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/willow-teapot-01.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/willow-teapot-01.ts @@ -26,7 +26,7 @@ const willowTeapot01 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Willow_Teapot-1.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Willow_Teapot-1.1.jpeg' ) .dimensions({ w: 6240, h: 4160 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/wilma-chair-01.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/wilma-chair-01.spec.ts similarity index 95% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/wilma-chair-01.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/wilma-chair-01.spec.ts index 8b89573f8..2bb64ebf5 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/wilma-chair-01.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/wilma-chair-01.spec.ts @@ -43,7 +43,7 @@ describe(`with wilmaChair01 preset`, () => { "w": 2400, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Wilma_Chair-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Wilma_Chair-1.1.jpeg", }, { "dimensions": { @@ -51,7 +51,7 @@ describe(`with wilmaChair01 preset`, () => { "w": 2400, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Wilma_Chair-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Wilma_Chair-1.2.jpeg", }, ], "key": undefined, @@ -134,7 +134,7 @@ describe(`with wilmaChair01 preset`, () => { "width": 2400, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Wilma_Chair-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Wilma_Chair-1.1.jpeg", }, { "dimensions": { @@ -142,7 +142,7 @@ describe(`with wilmaChair01 preset`, () => { "width": 2400, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Wilma_Chair-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Wilma_Chair-1.2.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/wilma-chair-01.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/wilma-chair-01.ts similarity index 95% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/wilma-chair-01.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/wilma-chair-01.ts index 8746a7610..8cc066e2e 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/wilma-chair-01.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/wilma-chair-01.ts @@ -26,13 +26,13 @@ const wilmaChair01 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Wilma_Chair-1.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Wilma_Chair-1.1.jpeg' ) .dimensions({ w: 2400, h: 3200 }), ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Wilma_Chair-1.2.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Wilma_Chair-1.2.jpeg' ) .dimensions({ w: 2400, h: 3200 }), ]) diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/wine-bottle-opener-01.spec.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/wine-bottle-opener-01.spec.ts similarity index 97% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/wine-bottle-opener-01.spec.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/wine-bottle-opener-01.spec.ts index 36ee320c9..7d7bc3db5 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/wine-bottle-opener-01.spec.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/wine-bottle-opener-01.spec.ts @@ -44,7 +44,7 @@ describe(`with wineBottleOpener01 preset`, () => { "w": 5184, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Wine_Bottle_Opener-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Wine_Bottle_Opener-1.1.jpeg", }, ], "key": undefined, @@ -127,7 +127,7 @@ describe(`with wineBottleOpener01 preset`, () => { "width": 5184, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Wine_Bottle_Opener-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Wine_Bottle_Opener-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/wine-bottle-opener-01.ts b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/wine-bottle-opener-01.ts similarity index 96% rename from models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/wine-bottle-opener-01.ts rename to models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/wine-bottle-opener-01.ts index d7a4299f4..cba97cbce 100644 --- a/models/product/src/product-variant/product-variant-draft/presets/sample-data-goodstore/wine-bottle-opener-01.ts +++ b/models/product/src/product-variant/product-variant-draft/presets/sample-data-b2c-lifestyle/wine-bottle-opener-01.ts @@ -26,7 +26,7 @@ const wineBottleOpener01 = (): TProductVariantDraftBuilder => ImageDraft.presets .empty() .url( - 'https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Wine_Bottle_Opener-1.1.jpeg' + 'https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Wine_Bottle_Opener-1.1.jpeg' ) .dimensions({ w: 5184, h: 3456 }), ]) diff --git a/models/product/src/product/product-draft/presets/index.ts b/models/product/src/product/product-draft/presets/index.ts index e3da0cb2b..e248369c8 100644 --- a/models/product/src/product/product-draft/presets/index.ts +++ b/models/product/src/product/product-draft/presets/index.ts @@ -1,13 +1,13 @@ import empty from './empty'; import sampleDataB2B from './sample-data-b2b'; +import sampleDataB2CLifestyle from './sample-data-b2c-lifestyle'; import sampleDataFashion from './sample-data-fashion'; -import sampleDataGoodStore from './sample-data-goodstore'; const presets = { empty, sampleDataB2B, + sampleDataB2CLifestyle, sampleDataFashion, - sampleDataGoodStore, }; export default presets; diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/abigail-lounge-chair.spec.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/abigail-lounge-chair.spec.ts similarity index 99% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/abigail-lounge-chair.spec.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/abigail-lounge-chair.spec.ts index ba9caaa1c..83fa47da2 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/abigail-lounge-chair.spec.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/abigail-lounge-chair.spec.ts @@ -76,7 +76,7 @@ describe(`with abigailLoungeChair preset`, () => { "w": 5000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Abigail_Lounge_Chair-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Abigail_Lounge_Chair-1.1.jpeg", }, ], "key": undefined, @@ -230,7 +230,7 @@ describe(`with abigailLoungeChair preset`, () => { "width": 5000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Abigail_Lounge_Chair-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Abigail_Lounge_Chair-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/abigail-lounge-chair.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/abigail-lounge-chair.ts similarity index 86% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/abigail-lounge-chair.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/abigail-lounge-chair.ts index ed4751b63..2acff4071 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/abigail-lounge-chair.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/abigail-lounge-chair.ts @@ -18,28 +18,28 @@ import { ProductDraft } from '../../../'; import { ProductVariantDraft } from '../../../../product-variant'; import type { TProductDraftBuilder } from '../../../types'; -const standardTaxCategory = TaxCategoryDraft.presets.sampleDataGoodStore +const standardTaxCategory = TaxCategoryDraft.presets.sampleDataB2CLifestyle .standardTaxCategory() .build(); const abigailLoungeChairProductTypeDraft = - ProductTypeDraft.presets.sampleDataGoodStore + ProductTypeDraft.presets.sampleDataB2CLifestyle .furnitureAndDecor() .build(); -const livingRoomFurnitureDraft = CategoryDraft.presets.sampleDataGoodStore +const livingRoomFurnitureDraft = CategoryDraft.presets.sampleDataB2CLifestyle .livingRoomFurniture() .build(); -const furnitureDraft = CategoryDraft.presets.sampleDataGoodStore +const furnitureDraft = CategoryDraft.presets.sampleDataB2CLifestyle .furniture() .build(); -const armchairsDraft = CategoryDraft.presets.sampleDataGoodStore +const armchairsDraft = CategoryDraft.presets.sampleDataB2CLifestyle .armchairs() .build(); -const newArrivalsDraft = CategoryDraft.presets.sampleDataGoodStore +const newArrivalsDraft = CategoryDraft.presets.sampleDataB2CLifestyle .newArrivals() .build(); @@ -57,15 +57,15 @@ const abigailLoungeChair = (): TProductDraftBuilder => .description( LocalizedStringDraft.presets .empty() - ['en-GB']( - 'A lounge chair with pink velvet upholstery and brass spindle legs is a luxurious and stylish piece of furniture that can add a touch of glamour to any living room, bedroom or office. The chair features a comfortable and spacious seat with soft and plush velvet upholstery in soft pink color. The backrest and armrests of the chair are slightly curved, providing a comfortable and supportive place to sit and relax. The brass spindle legs are tapered, adding to the overall elegance and sophistication of the design. The combination of pink velvet and brass is both opulent and chic, making the lounge chair a perfect addition to a range of decor styles, from modern and minimalist to vintage-inspired and glam. Overall, a lounge chair with pink velvet upholstery and brass spindle legs is a luxurious and comfortable piece of furniture that can add a touch of glamour and sophistication to any space. Its soft and plush upholstery, combined with its elegant and timeless design, make it a perfect place to relax and unwind in style.' - ) - ['en-US']( - 'A lounge chair with pink velvet upholstery and brass spindle legs is a luxurious and stylish piece of furniture that can add a touch of glamour to any living room, bedroom or office. The chair features a comfortable and spacious seat with soft and plush velvet upholstery in soft pink color. The backrest and armrests of the chair are slightly curved, providing a comfortable and supportive place to sit and relax. The brass spindle legs are tapered, adding to the overall elegance and sophistication of the design. The combination of pink velvet and brass is both opulent and chic, making the lounge chair a perfect addition to a range of decor styles, from modern and minimalist to vintage-inspired and glam. Overall, a lounge chair with pink velvet upholstery and brass spindle legs is a luxurious and comfortable piece of furniture that can add a touch of glamour and sophistication to any space. Its soft and plush upholstery, combined with its elegant and timeless design, make it a perfect place to relax and unwind in style.' - ) - ['de-DE']( - 'Ein Loungesessel mit rosafarbener Samtpolsterung und Spindelbeinen aus Messing ist ein luxuriöses und stilvolles Möbelstück, das jedem Wohnzimmer, Schlafzimmer oder Büro einen Hauch von Glamour verleihen kann. Der Stuhl verfügt über einen bequemen und geräumigen Sitz mit weicher und plüschiger Samtpolsterung in zartrosa Farbe. Die Rückenlehne und die Armlehnen des Stuhls sind leicht gebogen und bieten einen bequemen und stützenden Platz zum Sitzen und Entspannen. Die Spindelbeine aus Messing sind konisch zulaufend und tragen zur allgemeinen Eleganz und Raffinesse des Designs bei. Die Kombination aus rosafarbenem Samt und Messing ist sowohl opulent als auch schick und macht diesen Loungesessel zu einer perfekten Ergänzung für eine Reihe von Einrichtungsstilen, von modern und minimalistisch bis hin zu Vintage-inspiriert und glamourös. Seine weiche Polsterung, kombiniert mit seinem eleganten und zeitlosen Design, machen ihn zu einem perfekten Ort, um sich stilvoll zu entspannen.' - ) + [ + 'en-GB' + ]('A lounge chair with pink velvet upholstery and brass spindle legs is a luxurious and stylish piece of furniture that can add a touch of glamour to any living room, bedroom or office. The chair features a comfortable and spacious seat with soft and plush velvet upholstery in soft pink color. The backrest and armrests of the chair are slightly curved, providing a comfortable and supportive place to sit and relax. The brass spindle legs are tapered, adding to the overall elegance and sophistication of the design. The combination of pink velvet and brass is both opulent and chic, making the lounge chair a perfect addition to a range of decor styles, from modern and minimalist to vintage-inspired and glam. Overall, a lounge chair with pink velvet upholstery and brass spindle legs is a luxurious and comfortable piece of furniture that can add a touch of glamour and sophistication to any space. Its soft and plush upholstery, combined with its elegant and timeless design, make it a perfect place to relax and unwind in style.') + [ + 'en-US' + ]('A lounge chair with pink velvet upholstery and brass spindle legs is a luxurious and stylish piece of furniture that can add a touch of glamour to any living room, bedroom or office. The chair features a comfortable and spacious seat with soft and plush velvet upholstery in soft pink color. The backrest and armrests of the chair are slightly curved, providing a comfortable and supportive place to sit and relax. The brass spindle legs are tapered, adding to the overall elegance and sophistication of the design. The combination of pink velvet and brass is both opulent and chic, making the lounge chair a perfect addition to a range of decor styles, from modern and minimalist to vintage-inspired and glam. Overall, a lounge chair with pink velvet upholstery and brass spindle legs is a luxurious and comfortable piece of furniture that can add a touch of glamour and sophistication to any space. Its soft and plush upholstery, combined with its elegant and timeless design, make it a perfect place to relax and unwind in style.') + [ + 'de-DE' + ]('Ein Loungesessel mit rosafarbener Samtpolsterung und Spindelbeinen aus Messing ist ein luxuriöses und stilvolles Möbelstück, das jedem Wohnzimmer, Schlafzimmer oder Büro einen Hauch von Glamour verleihen kann. Der Stuhl verfügt über einen bequemen und geräumigen Sitz mit weicher und plüschiger Samtpolsterung in zartrosa Farbe. Die Rückenlehne und die Armlehnen des Stuhls sind leicht gebogen und bieten einen bequemen und stützenden Platz zum Sitzen und Entspannen. Die Spindelbeine aus Messing sind konisch zulaufend und tragen zur allgemeinen Eleganz und Raffinesse des Designs bei. Die Kombination aus rosafarbenem Samt und Messing ist sowohl opulent als auch schick und macht diesen Loungesessel zu einer perfekten Ergänzung für eine Reihe von Einrichtungsstilen, von modern und minimalistisch bis hin zu Vintage-inspiriert und glamourös. Seine weiche Polsterung, kombiniert mit seinem eleganten und zeitlosen Design, machen ihn zu einem perfekten Ort, um sich stilvoll zu entspannen.') ) .slug( LocalizedStringDraft.presets @@ -84,7 +84,7 @@ const abigailLoungeChair = (): TProductDraftBuilder => KeyReferenceDraft.presets.taxCategory().key(standardTaxCategory.key!) ) .masterVariant( - ProductVariantDraft.presets.sampleDataGoodStore.abigailLoungeChair01() + ProductVariantDraft.presets.sampleDataB2CLifestyle.abigailLoungeChair01() ) .categories([ KeyReferenceDraft.presets.category().key(livingRoomFurnitureDraft.key!), diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/amalia-rug.spec.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/amalia-rug.spec.ts similarity index 99% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/amalia-rug.spec.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/amalia-rug.spec.ts index 749520c13..b30bac1a8 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/amalia-rug.spec.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/amalia-rug.spec.ts @@ -57,7 +57,7 @@ describe(`with amaliaRug preset`, () => { "w": 4500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Amalia_Rug-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Amalia_Rug-1.1.jpeg", }, ], "key": undefined, @@ -199,7 +199,7 @@ describe(`with amaliaRug preset`, () => { "width": 4500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Amalia_Rug-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Amalia_Rug-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/amalia-rug.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/amalia-rug.ts similarity index 82% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/amalia-rug.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/amalia-rug.ts index 955dbf649..da19ef466 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/amalia-rug.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/amalia-rug.ts @@ -18,23 +18,24 @@ import { ProductDraft } from '../../..'; import { ProductVariantDraft } from '../../../../product-variant'; import type { TProductDraftBuilder } from '../../../types'; -const standardTaxCategory = TaxCategoryDraft.presets.sampleDataGoodStore +const standardTaxCategory = TaxCategoryDraft.presets.sampleDataB2CLifestyle .standardTaxCategory() .build(); -const amaliaRugProductTypeDraft = ProductTypeDraft.presets.sampleDataGoodStore - .furnitureAndDecor() - .build(); +const amaliaRugProductTypeDraft = + ProductTypeDraft.presets.sampleDataB2CLifestyle + .furnitureAndDecor() + .build(); -const rugsDraft = CategoryDraft.presets.sampleDataGoodStore +const rugsDraft = CategoryDraft.presets.sampleDataB2CLifestyle .rugs() .build(); -const roomDecorDraft = CategoryDraft.presets.sampleDataGoodStore +const roomDecorDraft = CategoryDraft.presets.sampleDataB2CLifestyle .roomDecor() .build(); -const homeDecorDraft = CategoryDraft.presets.sampleDataGoodStore +const homeDecorDraft = CategoryDraft.presets.sampleDataB2CLifestyle .homeDecor() .build(); @@ -52,15 +53,15 @@ const amaliaRug = (): TProductDraftBuilder => .description( LocalizedStringDraft.presets .empty() - ['en-GB']( - 'A round plush accent rug is designed to be soft and comfortable underfoot, with a thick and dense pile that provides a plush feel. The fibers are densely packed together, giving the rug a lush and luxurious feel. The rug is a great decorative accent in a bedroom, living room, or other area where a small touch of softness and comfort is desired. Because of their small size, round plush accent rugs are easy to move and reposition, making them a versatile addition to any home. They are also easy to clean and maintain, making them a practical choice for high-traffic areas. Overall, a round plush accent rug is a cozy and inviting addition to any room. Its soft texture and luxurious feel make it a popular choice for those who want to add a touch of comfort and style to their living space.' - ) - ['en-US']( - 'A round plush accent rug is designed to be soft and comfortable underfoot, with a thick and dense pile that provides a plush feel. The fibers are densely packed together, giving the rug a lush and luxurious feel. The rug is a great decorative accent in a bedroom, living room, or other area where a small touch of softness and comfort is desired. Because of their small size, round plush accent rugs are easy to move and reposition, making them a versatile addition to any home. They are also easy to clean and maintain, making them a practical choice for high-traffic areas. Overall, a round plush accent rug is a cozy and inviting addition to any room. Its soft texture and luxurious feel make it a popular choice for those who want to add a touch of comfort and style to their living space.' - ) - ['de-DE']( - 'Dieser runde Plüsch-Akzent-Teppich weich und bequem. Der dichte Flor vermittelt ein weiches Gefühl. Die Fasern sind dicht gepackt und verleihen dem Teppich ein üppiges und luxuriöses Gefühl. Der Teppich ist ein großartiger dekorativer Akzent in einem Schlafzimmer, Wohnzimmer oder anderen Bereichen, in denen ein kleiner Hauch von Weichheit und Komfort erwünscht ist. Aufgrund ihrer geringen Größe lassen sich runde Plüschteppiche leicht bewegen und neu positionieren, was sie zu einer vielseitigen Ergänzung für jedes Zuhause macht. Sie sind außerdem leicht zu reinigen und zu pflegen, was sie zu einer praktischen Wahl für stark frequentierte Bereiche macht. Insgesamt ist ein runder Teppich mit Plüschakzenten eine gemütliche und einladende Ergänzung für jeden Raum. Seine weiche Textur und luxuriöse Haptik machen es zu einer beliebten Wahl für diejenigen, die ihrem Wohnraum einen Hauch von Komfort und Stil verleihen möchten.' - ) + [ + 'en-GB' + ]('A round plush accent rug is designed to be soft and comfortable underfoot, with a thick and dense pile that provides a plush feel. The fibers are densely packed together, giving the rug a lush and luxurious feel. The rug is a great decorative accent in a bedroom, living room, or other area where a small touch of softness and comfort is desired. Because of their small size, round plush accent rugs are easy to move and reposition, making them a versatile addition to any home. They are also easy to clean and maintain, making them a practical choice for high-traffic areas. Overall, a round plush accent rug is a cozy and inviting addition to any room. Its soft texture and luxurious feel make it a popular choice for those who want to add a touch of comfort and style to their living space.') + [ + 'en-US' + ]('A round plush accent rug is designed to be soft and comfortable underfoot, with a thick and dense pile that provides a plush feel. The fibers are densely packed together, giving the rug a lush and luxurious feel. The rug is a great decorative accent in a bedroom, living room, or other area where a small touch of softness and comfort is desired. Because of their small size, round plush accent rugs are easy to move and reposition, making them a versatile addition to any home. They are also easy to clean and maintain, making them a practical choice for high-traffic areas. Overall, a round plush accent rug is a cozy and inviting addition to any room. Its soft texture and luxurious feel make it a popular choice for those who want to add a touch of comfort and style to their living space.') + [ + 'de-DE' + ]('Dieser runde Plüsch-Akzent-Teppich weich und bequem. Der dichte Flor vermittelt ein weiches Gefühl. Die Fasern sind dicht gepackt und verleihen dem Teppich ein üppiges und luxuriöses Gefühl. Der Teppich ist ein großartiger dekorativer Akzent in einem Schlafzimmer, Wohnzimmer oder anderen Bereichen, in denen ein kleiner Hauch von Weichheit und Komfort erwünscht ist. Aufgrund ihrer geringen Größe lassen sich runde Plüschteppiche leicht bewegen und neu positionieren, was sie zu einer vielseitigen Ergänzung für jedes Zuhause macht. Sie sind außerdem leicht zu reinigen und zu pflegen, was sie zu einer praktischen Wahl für stark frequentierte Bereiche macht. Insgesamt ist ein runder Teppich mit Plüschakzenten eine gemütliche und einladende Ergänzung für jeden Raum. Seine weiche Textur und luxuriöse Haptik machen es zu einer beliebten Wahl für diejenigen, die ihrem Wohnraum einen Hauch von Komfort und Stil verleihen möchten.') ) .slug( LocalizedStringDraft.presets @@ -79,7 +80,7 @@ const amaliaRug = (): TProductDraftBuilder => KeyReferenceDraft.presets.taxCategory().key(standardTaxCategory.key!) ) .masterVariant( - ProductVariantDraft.presets.sampleDataGoodStore.amaliaRug01() + ProductVariantDraft.presets.sampleDataB2CLifestyle.amaliaRug01() ) .categories([ KeyReferenceDraft.presets.category().key(rugsDraft.key!), diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/aria-rug.spec.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/aria-rug.spec.ts similarity index 96% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/aria-rug.spec.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/aria-rug.spec.ts index 8bfd8966c..36b842df9 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/aria-rug.spec.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/aria-rug.spec.ts @@ -60,7 +60,7 @@ describe(`with ariaRug preset`, () => { "w": 5200, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Aria_Rug-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Aria_Rug-1.1.jpeg", }, { "dimensions": { @@ -68,7 +68,7 @@ describe(`with ariaRug preset`, () => { "w": 5200, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Aria_Rug-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Aria_Rug-1.2.jpeg", }, { "dimensions": { @@ -76,7 +76,7 @@ describe(`with ariaRug preset`, () => { "w": 5200, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Aria_Rug-1.4.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Aria_Rug-1.4.jpeg", }, { "dimensions": { @@ -84,7 +84,7 @@ describe(`with ariaRug preset`, () => { "w": 5200, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Aria_Rug-1.3.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Aria_Rug-1.3.jpeg", }, ], "key": undefined, @@ -226,7 +226,7 @@ describe(`with ariaRug preset`, () => { "width": 5200, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Aria_Rug-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Aria_Rug-1.1.jpeg", }, { "dimensions": { @@ -234,7 +234,7 @@ describe(`with ariaRug preset`, () => { "width": 5200, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Aria_Rug-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Aria_Rug-1.2.jpeg", }, { "dimensions": { @@ -242,7 +242,7 @@ describe(`with ariaRug preset`, () => { "width": 5200, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Aria_Rug-1.4.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Aria_Rug-1.4.jpeg", }, { "dimensions": { @@ -250,7 +250,7 @@ describe(`with ariaRug preset`, () => { "width": 5200, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Aria_Rug-1.3.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Aria_Rug-1.3.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/aria-rug.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/aria-rug.ts similarity index 79% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/aria-rug.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/aria-rug.ts index 6011508e7..187ff0a1a 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/aria-rug.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/aria-rug.ts @@ -18,23 +18,23 @@ import { ProductVariantDraft } from '../../../../product-variant'; import * as ProductDraft from '../../../product-draft'; import type { TProductDraftBuilder } from '../../../types'; -const standardTaxCategory = TaxCategoryDraft.presets.sampleDataGoodStore +const standardTaxCategory = TaxCategoryDraft.presets.sampleDataB2CLifestyle .standardTaxCategory() .build(); -const ariaRugProductTypeDraft = ProductTypeDraft.presets.sampleDataGoodStore +const ariaRugProductTypeDraft = ProductTypeDraft.presets.sampleDataB2CLifestyle .furnitureAndDecor() .build(); -const rugsDraft = CategoryDraft.presets.sampleDataGoodStore +const rugsDraft = CategoryDraft.presets.sampleDataB2CLifestyle .rugs() .build(); -const roomDecorDraft = CategoryDraft.presets.sampleDataGoodStore +const roomDecorDraft = CategoryDraft.presets.sampleDataB2CLifestyle .roomDecor() .build(); -const homeDecorDraft = CategoryDraft.presets.sampleDataGoodStore +const homeDecorDraft = CategoryDraft.presets.sampleDataB2CLifestyle .homeDecor() .build(); @@ -52,15 +52,15 @@ const ariaRug = (): TProductDraftBuilder => .description( LocalizedStringDraft.presets .empty() - ['de-DE']( - 'Der Aria-Teppich ist ein Flächenteppich mit einem geometrischen Muster, das ein sich wiederholendes Design aus Formen und Linien aufweist, das sowohl modern als auch vielseitig ist. Es kann einem Raum visuelles Interesse und Textur verleihen und dabei helfen, einen Raum zu definieren und zu verankern. Insgesamt ist ein Teppich mit geometrischem Muster eine vielseitige und stilvolle Wahl für jeden Raum. Sein mutiges und markantes Design kann einem Raum Charakter und Interesse verleihen, während seine weiche und komfortable Textur eine gemütliche und einladende Atmosphäre schaffen kann.' - ) - ['en-GB']( - 'The Aria Rug is an area rug with a geometric pattern that features a repeating design made up of shapes and lines, which is both modern and eclectic. It can add visual interest and texture to a room, and can help define and anchor a space. Overall, an area rug with a geometric pattern is a versatile and stylish choice for any room. Its bold and striking design can add character and interest to a space, while its soft and comfortable texture can create a cozy and inviting atmosphere.' - ) - ['en-US']( - 'The Aria Rug is an area rug with a geometric pattern that features a repeating design made up of shapes and lines, which is both modern and eclectic. It can add visual interest and texture to a room, and can help define and anchor a space. Overall, an area rug with a geometric pattern is a versatile and stylish choice for any room. Its bold and striking design can add character and interest to a space, while its soft and comfortable texture can create a cozy and inviting atmosphere.' - ) + [ + 'de-DE' + ]('Der Aria-Teppich ist ein Flächenteppich mit einem geometrischen Muster, das ein sich wiederholendes Design aus Formen und Linien aufweist, das sowohl modern als auch vielseitig ist. Es kann einem Raum visuelles Interesse und Textur verleihen und dabei helfen, einen Raum zu definieren und zu verankern. Insgesamt ist ein Teppich mit geometrischem Muster eine vielseitige und stilvolle Wahl für jeden Raum. Sein mutiges und markantes Design kann einem Raum Charakter und Interesse verleihen, während seine weiche und komfortable Textur eine gemütliche und einladende Atmosphäre schaffen kann.') + [ + 'en-GB' + ]('The Aria Rug is an area rug with a geometric pattern that features a repeating design made up of shapes and lines, which is both modern and eclectic. It can add visual interest and texture to a room, and can help define and anchor a space. Overall, an area rug with a geometric pattern is a versatile and stylish choice for any room. Its bold and striking design can add character and interest to a space, while its soft and comfortable texture can create a cozy and inviting atmosphere.') + [ + 'en-US' + ]('The Aria Rug is an area rug with a geometric pattern that features a repeating design made up of shapes and lines, which is both modern and eclectic. It can add visual interest and texture to a room, and can help define and anchor a space. Overall, an area rug with a geometric pattern is a versatile and stylish choice for any room. Its bold and striking design can add character and interest to a space, while its soft and comfortable texture can create a cozy and inviting atmosphere.') ) .slug( LocalizedStringDraft.presets @@ -76,7 +76,9 @@ const ariaRug = (): TProductDraftBuilder => .taxCategory( KeyReferenceDraft.presets.taxCategory().key(standardTaxCategory.key!) ) - .masterVariant(ProductVariantDraft.presets.sampleDataGoodStore.ariaRug01()) + .masterVariant( + ProductVariantDraft.presets.sampleDataB2CLifestyle.ariaRug01() + ) .categories([ KeyReferenceDraft.presets.category().key(rugsDraft.key!), KeyReferenceDraft.presets.category().key(roomDecorDraft.key!), diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/art-deco-chair.spec.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/art-deco-chair.spec.ts similarity index 98% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/art-deco-chair.spec.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/art-deco-chair.spec.ts index 3bd463474..0b8e8ff56 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/art-deco-chair.spec.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/art-deco-chair.spec.ts @@ -57,7 +57,7 @@ describe(`with artDecoChair preset`, () => { "w": 5500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Art_Deco_Chair-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Art_Deco_Chair-1.1.jpeg", }, ], "key": undefined, @@ -200,7 +200,7 @@ describe(`with artDecoChair preset`, () => { "width": 5500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Art_Deco_Chair-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Art_Deco_Chair-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/art-deco-chair.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/art-deco-chair.ts similarity index 83% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/art-deco-chair.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/art-deco-chair.ts index 36cb0b9d8..2fa591d6c 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/art-deco-chair.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/art-deco-chair.ts @@ -18,24 +18,24 @@ import { ProductVariantDraft } from '../../../../product-variant'; import * as ProductDraft from '../../../product-draft'; import type { TProductDraftBuilder } from '../../../types'; -const standardTaxCategory = TaxCategoryDraft.presets.sampleDataGoodStore +const standardTaxCategory = TaxCategoryDraft.presets.sampleDataB2CLifestyle .standardTaxCategory() .build(); const artDecoChairProductTypeDraft = - ProductTypeDraft.presets.sampleDataGoodStore + ProductTypeDraft.presets.sampleDataB2CLifestyle .furnitureAndDecor() .build(); -const armchairsDraft = CategoryDraft.presets.sampleDataGoodStore +const armchairsDraft = CategoryDraft.presets.sampleDataB2CLifestyle .armchairs() .build(); -const furnitureDraft = CategoryDraft.presets.sampleDataGoodStore +const furnitureDraft = CategoryDraft.presets.sampleDataB2CLifestyle .furniture() .build(); -const livingRoomFurnitureDraft = CategoryDraft.presets.sampleDataGoodStore +const livingRoomFurnitureDraft = CategoryDraft.presets.sampleDataB2CLifestyle .livingRoomFurniture() .build(); @@ -53,15 +53,15 @@ const artDecoChair = (): TProductDraftBuilder => .description( LocalizedStringDraft.presets .empty() - ['en-GB']( - "An art deco chair with metal legs has a sleek, streamlined design that exudes sophistication and elegance. The chair has a comfortable padded seat and backrest, with durable cotton upholstery providing a soft and luxurious feel. The metal legs have a smooth finish that accentuates the chair's modern style. The chair features distinctive art deco elements such as angular shapes, bold lines, and geometric patterns. Overall, this chair is a striking piece of furniture that adds both style and comfort to any room." - ) - ['en-US']( - "An art deco chair with metal legs has a sleek, streamlined design that exudes sophistication and elegance. The chair has a comfortable padded seat and backrest, with durable cotton upholstery providing a soft and luxurious feel. The metal legs have a smooth finish that accentuates the chair's modern style. The chair features distinctive art deco elements such as angular shapes, bold lines, and geometric patterns. Overall, this chair is a striking piece of furniture that adds both style and comfort to any room." - ) - ['de-DE']( - 'Dieser Art-Deco-Stuhl mit Metallbeinen hat ein schlankes, stromlinienförmiges Design, das Raffinesse und Eleganz ausstrahlt. Der Stuhl hat einen bequem gepolsterten Sitz und eine Rückenlehne mit strapazierfähiger Baumwollpolsterung, die ein weiches und luxuriöses Gefühl vermittelt. Die Metallbeine haben eine glatte Oberfläche, die den modernen Stil des Stuhls betont. Der Stuhl bedient sich markante Art-Deco-Elemente wie eckige Formen, kräftige Linien und geometrische Muster. Der Stuhl ist ein markantes Möbelstück, das jedem Raum Stil und Komfort verleiht.' - ) + [ + 'en-GB' + ]("An art deco chair with metal legs has a sleek, streamlined design that exudes sophistication and elegance. The chair has a comfortable padded seat and backrest, with durable cotton upholstery providing a soft and luxurious feel. The metal legs have a smooth finish that accentuates the chair's modern style. The chair features distinctive art deco elements such as angular shapes, bold lines, and geometric patterns. Overall, this chair is a striking piece of furniture that adds both style and comfort to any room.") + [ + 'en-US' + ]("An art deco chair with metal legs has a sleek, streamlined design that exudes sophistication and elegance. The chair has a comfortable padded seat and backrest, with durable cotton upholstery providing a soft and luxurious feel. The metal legs have a smooth finish that accentuates the chair's modern style. The chair features distinctive art deco elements such as angular shapes, bold lines, and geometric patterns. Overall, this chair is a striking piece of furniture that adds both style and comfort to any room.") + [ + 'de-DE' + ]('Dieser Art-Deco-Stuhl mit Metallbeinen hat ein schlankes, stromlinienförmiges Design, das Raffinesse und Eleganz ausstrahlt. Der Stuhl hat einen bequem gepolsterten Sitz und eine Rückenlehne mit strapazierfähiger Baumwollpolsterung, die ein weiches und luxuriöses Gefühl vermittelt. Die Metallbeine haben eine glatte Oberfläche, die den modernen Stil des Stuhls betont. Der Stuhl bedient sich markante Art-Deco-Elemente wie eckige Formen, kräftige Linien und geometrische Muster. Der Stuhl ist ein markantes Möbelstück, das jedem Raum Stil und Komfort verleiht.') ) .slug( LocalizedStringDraft.presets @@ -80,7 +80,7 @@ const artDecoChair = (): TProductDraftBuilder => KeyReferenceDraft.presets.taxCategory().key(standardTaxCategory.key!) ) .masterVariant( - ProductVariantDraft.presets.sampleDataGoodStore.artDecoChair01() + ProductVariantDraft.presets.sampleDataB2CLifestyle.artDecoChair01() ) .categories([ KeyReferenceDraft.presets.category().key(armchairsDraft.key!), diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/art-deco-coffee-table.spec.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/art-deco-coffee-table.spec.ts similarity index 98% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/art-deco-coffee-table.spec.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/art-deco-coffee-table.spec.ts index 960fa0782..0cafb4561 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/art-deco-coffee-table.spec.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/art-deco-coffee-table.spec.ts @@ -72,7 +72,7 @@ describe(`with artDecoCoffeeTable preset`, () => { "w": 2500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Art_Deco_Coffee_Table-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Art_Deco_Coffee_Table-1.1.jpeg", }, { "dimensions": { @@ -80,7 +80,7 @@ describe(`with artDecoCoffeeTable preset`, () => { "w": 5760, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Art_Deco_Coffee_Table-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Art_Deco_Coffee_Table-1.2.jpeg", }, ], "key": undefined, @@ -227,7 +227,7 @@ describe(`with artDecoCoffeeTable preset`, () => { "width": 2500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Art_Deco_Coffee_Table-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Art_Deco_Coffee_Table-1.1.jpeg", }, { "dimensions": { @@ -235,7 +235,7 @@ describe(`with artDecoCoffeeTable preset`, () => { "width": 5760, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Art_Deco_Coffee_Table-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Art_Deco_Coffee_Table-1.2.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/art-deco-coffee-table.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/art-deco-coffee-table.ts similarity index 89% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/art-deco-coffee-table.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/art-deco-coffee-table.ts index 478388834..119b18003 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/art-deco-coffee-table.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/art-deco-coffee-table.ts @@ -18,24 +18,24 @@ import { ProductVariantDraft } from '../../../../product-variant'; import * as ProductDraft from '../../../product-draft'; import type { TProductDraftBuilder } from '../../../types'; -const standardTaxCategory = TaxCategoryDraft.presets.sampleDataGoodStore +const standardTaxCategory = TaxCategoryDraft.presets.sampleDataB2CLifestyle .standardTaxCategory() .build(); const artDecoCoffeeTableProductTypeDraft = - ProductTypeDraft.presets.sampleDataGoodStore + ProductTypeDraft.presets.sampleDataB2CLifestyle .furnitureAndDecor() .build(); -const livingRoomFurnitureDraft = CategoryDraft.presets.sampleDataGoodStore +const livingRoomFurnitureDraft = CategoryDraft.presets.sampleDataB2CLifestyle .livingRoomFurniture() .build(); -const furnitureDraft = CategoryDraft.presets.sampleDataGoodStore +const furnitureDraft = CategoryDraft.presets.sampleDataB2CLifestyle .furniture() .build(); -const tablesDraft = CategoryDraft.presets.sampleDataGoodStore +const tablesDraft = CategoryDraft.presets.sampleDataB2CLifestyle .tables() .build(); @@ -53,15 +53,15 @@ const artDecoCoffeeTable = (): TProductDraftBuilder => .description( LocalizedStringDraft.presets .empty() - ['en-GB']( - 'An Art Deco coffee table with gold legs and a black marble top is a luxurious and stylish piece of furniture that can add a touch of glamour to any living room. The table features a geometric design, with sleek and angular lines that are characteristic of the Art Deco style. The legs of the table are made from metal and have a shiny gold finish that adds a touch of opulence to the design. The tabletop is made from black marble, which has a natural veined pattern that gives each piece a unique and luxurious appearance. The marble top is smooth and polished, creating a sleek and sophisticated surface for displaying books, drinks, or decorative accessories. The combination of gold and black creates a striking contrast that is both bold and elegant. The Art Deco style of the table is both timeless and glamorous, making it a perfect complement to a range of decor styles, from contemporary to vintage-inspired. Overall, an Art Deco coffee table with gold legs and a black marble top is a luxurious and stylish addition to any living room. Its unique and striking design, combined with its high-quality materials and craftsmanship, make it a standout piece of furniture that can elevate the look and feel of any space.' - ) - ['en-US']( - 'An Art Deco coffee table with gold legs and a black marble top is a luxurious and stylish piece of furniture that can add a touch of glamour to any living room. The table features a geometric design, with sleek and angular lines that are characteristic of the Art Deco style. The legs of the table are made from metal and have a shiny gold finish that adds a touch of opulence to the design. The tabletop is made from black marble, which has a natural veined pattern that gives each piece a unique and luxurious appearance. The marble top is smooth and polished, creating a sleek and sophisticated surface for displaying books, drinks, or decorative accessories. The combination of gold and black creates a striking contrast that is both bold and elegant. The Art Deco style of the table is both timeless and glamorous, making it a perfect complement to a range of decor styles, from contemporary to vintage-inspired. Overall, an Art Deco coffee table with gold legs and a black marble top is a luxurious and stylish addition to any living room. Its unique and striking design, combined with its high-quality materials and craftsmanship, make it a standout piece of furniture that can elevate the look and feel of any space.' - ) - ['de-DE']( - 'Dieser Art-Deco-Couchtisch mit goldenen Beinen und einer schwarzen Marmorplatte ist ein luxuriöses und stilvolles Möbelstück, das jedem Wohnzimmer einen Hauch von Glamour verleihen kann. Der Tisch verfügt über ein geometrisches Design mit schlanken und eckigen Linien, die charakteristisch für den Art-Deco-Stil sind. Die Beine des Tisches sind aus Metall gefertigt und haben eine glänzende Goldoberfläche, die dem Design einen Hauch von Opulenz verleiht. Die Tischplatte besteht aus schwarzem Marmor, der ein natürliches geädertes Muster aufweist, das jedem Stück ein einzigartiges und luxuriöses Aussehen verleiht. Die Marmorplatte ist glatt und poliert und schafft eine glatte und raffinierte Oberfläche für die Präsentation von Büchern, Getränken oder dekorativen Accessoires. Die Kombination aus Gold und Schwarz schafft einen auffälligen Kontrast, der sowohl mutig als auch elegant ist. Der Art-Deco-Stil des Tisches ist sowohl zeitlos als auch glamourös, was ihn zu einer perfekten Ergänzung für eine Reihe von Einrichtungsstilen macht, von zeitgenössisch bis hin zu Vintage-inspiriert. Ein Art-Deco-Couchtisch mit goldenen Beinen und einer schwarzen Marmorplatte ist eine luxuriöse und stilvolle Ergänzung für jedes Wohnzimmer. Sein einzigartiges und markantes Design, kombiniert mit seinen hochwertigen Materialien und seiner Handwerkskunst, machen es zu einem herausragenden Möbelstück, das das Erscheinungsbild jedes Raums aufwerten kann.' - ) + [ + 'en-GB' + ]('An Art Deco coffee table with gold legs and a black marble top is a luxurious and stylish piece of furniture that can add a touch of glamour to any living room. The table features a geometric design, with sleek and angular lines that are characteristic of the Art Deco style. The legs of the table are made from metal and have a shiny gold finish that adds a touch of opulence to the design. The tabletop is made from black marble, which has a natural veined pattern that gives each piece a unique and luxurious appearance. The marble top is smooth and polished, creating a sleek and sophisticated surface for displaying books, drinks, or decorative accessories. The combination of gold and black creates a striking contrast that is both bold and elegant. The Art Deco style of the table is both timeless and glamorous, making it a perfect complement to a range of decor styles, from contemporary to vintage-inspired. Overall, an Art Deco coffee table with gold legs and a black marble top is a luxurious and stylish addition to any living room. Its unique and striking design, combined with its high-quality materials and craftsmanship, make it a standout piece of furniture that can elevate the look and feel of any space.') + [ + 'en-US' + ]('An Art Deco coffee table with gold legs and a black marble top is a luxurious and stylish piece of furniture that can add a touch of glamour to any living room. The table features a geometric design, with sleek and angular lines that are characteristic of the Art Deco style. The legs of the table are made from metal and have a shiny gold finish that adds a touch of opulence to the design. The tabletop is made from black marble, which has a natural veined pattern that gives each piece a unique and luxurious appearance. The marble top is smooth and polished, creating a sleek and sophisticated surface for displaying books, drinks, or decorative accessories. The combination of gold and black creates a striking contrast that is both bold and elegant. The Art Deco style of the table is both timeless and glamorous, making it a perfect complement to a range of decor styles, from contemporary to vintage-inspired. Overall, an Art Deco coffee table with gold legs and a black marble top is a luxurious and stylish addition to any living room. Its unique and striking design, combined with its high-quality materials and craftsmanship, make it a standout piece of furniture that can elevate the look and feel of any space.') + [ + 'de-DE' + ]('Dieser Art-Deco-Couchtisch mit goldenen Beinen und einer schwarzen Marmorplatte ist ein luxuriöses und stilvolles Möbelstück, das jedem Wohnzimmer einen Hauch von Glamour verleihen kann. Der Tisch verfügt über ein geometrisches Design mit schlanken und eckigen Linien, die charakteristisch für den Art-Deco-Stil sind. Die Beine des Tisches sind aus Metall gefertigt und haben eine glänzende Goldoberfläche, die dem Design einen Hauch von Opulenz verleiht. Die Tischplatte besteht aus schwarzem Marmor, der ein natürliches geädertes Muster aufweist, das jedem Stück ein einzigartiges und luxuriöses Aussehen verleiht. Die Marmorplatte ist glatt und poliert und schafft eine glatte und raffinierte Oberfläche für die Präsentation von Büchern, Getränken oder dekorativen Accessoires. Die Kombination aus Gold und Schwarz schafft einen auffälligen Kontrast, der sowohl mutig als auch elegant ist. Der Art-Deco-Stil des Tisches ist sowohl zeitlos als auch glamourös, was ihn zu einer perfekten Ergänzung für eine Reihe von Einrichtungsstilen macht, von zeitgenössisch bis hin zu Vintage-inspiriert. Ein Art-Deco-Couchtisch mit goldenen Beinen und einer schwarzen Marmorplatte ist eine luxuriöse und stilvolle Ergänzung für jedes Wohnzimmer. Sein einzigartiges und markantes Design, kombiniert mit seinen hochwertigen Materialien und seiner Handwerkskunst, machen es zu einem herausragenden Möbelstück, das das Erscheinungsbild jedes Raums aufwerten kann.') ) .slug( LocalizedStringDraft.presets @@ -80,7 +80,7 @@ const artDecoCoffeeTable = (): TProductDraftBuilder => KeyReferenceDraft.presets.taxCategory().key(standardTaxCategory.key!) ) .masterVariant( - ProductVariantDraft.presets.sampleDataGoodStore.artDecoCoffeeTable01() + ProductVariantDraft.presets.sampleDataB2CLifestyle.artDecoCoffeeTable01() ) .categories([ KeyReferenceDraft.presets.category().key(livingRoomFurnitureDraft.key!), diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/ashen-rug.spec.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/ashen-rug.spec.ts similarity index 98% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/ashen-rug.spec.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/ashen-rug.spec.ts index 47225594a..9fd9ef83a 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/ashen-rug.spec.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/ashen-rug.spec.ts @@ -60,7 +60,7 @@ describe(`with ashenRug preset`, () => { "w": 4500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Ashen_Rug-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Ashen_Rug-1.1.jpeg", }, { "dimensions": { @@ -68,7 +68,7 @@ describe(`with ashenRug preset`, () => { "w": 4500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Ashen_Rug-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Ashen_Rug-1.2.jpeg", }, ], "key": undefined, @@ -210,7 +210,7 @@ describe(`with ashenRug preset`, () => { "width": 4500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Ashen_Rug-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Ashen_Rug-1.1.jpeg", }, { "dimensions": { @@ -218,7 +218,7 @@ describe(`with ashenRug preset`, () => { "width": 4500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Ashen_Rug-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Ashen_Rug-1.2.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/ashen-rug.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/ashen-rug.ts similarity index 85% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/ashen-rug.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/ashen-rug.ts index 45a873aa1..a1069a300 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/ashen-rug.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/ashen-rug.ts @@ -18,23 +18,23 @@ import { ProductVariantDraft } from '../../../../product-variant'; import * as ProductDraft from '../../../product-draft'; import type { TProductDraftBuilder } from '../../../types'; -const standardTaxCategory = TaxCategoryDraft.presets.sampleDataGoodStore +const standardTaxCategory = TaxCategoryDraft.presets.sampleDataB2CLifestyle .standardTaxCategory() .build(); -const ashenRugProductTypeDraft = ProductTypeDraft.presets.sampleDataGoodStore +const ashenRugProductTypeDraft = ProductTypeDraft.presets.sampleDataB2CLifestyle .furnitureAndDecor() .build(); -const rugsDraft = CategoryDraft.presets.sampleDataGoodStore +const rugsDraft = CategoryDraft.presets.sampleDataB2CLifestyle .rugs() .build(); -const roomDecorDraft = CategoryDraft.presets.sampleDataGoodStore +const roomDecorDraft = CategoryDraft.presets.sampleDataB2CLifestyle .roomDecor() .build(); -const homeDecorDraft = CategoryDraft.presets.sampleDataGoodStore +const homeDecorDraft = CategoryDraft.presets.sampleDataB2CLifestyle .homeDecor() .build(); @@ -52,15 +52,15 @@ const ashenRug = (): TProductDraftBuilder => .description( LocalizedStringDraft.presets .empty() - ['en-GB']( - 'A modern shag carpet is a type of rug or carpet with a long, plush pile that is known for its softness and comfort. Unlike traditional shag carpets, which were popular in the 1970s and had a somewhat shaggy and unkempt appearance, modern shag carpets are more refined and have a sleek, contemporary look. In addition to their softness and comfort, modern shag carpets are also known for their ability to absorb sound and create a cozy, inviting atmosphere. They are often used in living rooms, bedrooms, and other spaces where comfort and style are important. Overall, a modern shag carpet is a luxurious and stylish addition to any home. Its soft, plush texture and sleek, contemporary look make it a popular choice for those looking to add comfort and style to their living space.' - ) - ['en-US']( - 'A modern shag carpet is a type of rug or carpet with a long, plush pile that is known for its softness and comfort. Unlike traditional shag carpets, which were popular in the 1970s and had a somewhat shaggy and unkempt appearance, modern shag carpets are more refined and have a sleek, contemporary look. In addition to their softness and comfort, modern shag carpets are also known for their ability to absorb sound and create a cozy, inviting atmosphere. They are often used in living rooms, bedrooms, and other spaces where comfort and style are important. Overall, a modern shag carpet is a luxurious and stylish addition to any home. Its soft, plush texture and sleek, contemporary look make it a popular choice for those looking to add comfort and style to their living space.' - ) - ['de-DE']( - 'Ein moderner Shag-Teppich ist eine Art Vorleger oder Teppich mit langem Plüschflor, der für seine Weichheit und seinen Komfort bekannt ist. Im Gegensatz zu traditionellen Shag-Teppichen, die in den 1970er Jahren beliebt waren und ein etwas zotteliges und ungepflegtes Aussehen hatten, sind moderne Shag-Teppiche raffinierter und haben ein elegantes, zeitgemäßes Aussehen. Neben ihrer Weichheit und ihrem Komfort sind moderne Hochflorteppiche auch für ihre Fähigkeit bekannt, Schall zu absorbieren und eine gemütliche, einladende Atmosphäre zu schaffen. Sie werden oft in Wohnzimmern, Schlafzimmern und anderen Räumen verwendet, in denen Komfort und Stil wichtig sind. Ein moderner Hochflorteppich ist eine luxuriöse und stilvolle Ergänzung für jedes Zuhause. Seine weiche, plüschige Textur und sein schlankes, modernes Aussehen machen ihn zu einer beliebten Wahl für diejenigen, die ihrem Wohnraum Komfort und Stil verleihen möchten.' - ) + [ + 'en-GB' + ]('A modern shag carpet is a type of rug or carpet with a long, plush pile that is known for its softness and comfort. Unlike traditional shag carpets, which were popular in the 1970s and had a somewhat shaggy and unkempt appearance, modern shag carpets are more refined and have a sleek, contemporary look. In addition to their softness and comfort, modern shag carpets are also known for their ability to absorb sound and create a cozy, inviting atmosphere. They are often used in living rooms, bedrooms, and other spaces where comfort and style are important. Overall, a modern shag carpet is a luxurious and stylish addition to any home. Its soft, plush texture and sleek, contemporary look make it a popular choice for those looking to add comfort and style to their living space.') + [ + 'en-US' + ]('A modern shag carpet is a type of rug or carpet with a long, plush pile that is known for its softness and comfort. Unlike traditional shag carpets, which were popular in the 1970s and had a somewhat shaggy and unkempt appearance, modern shag carpets are more refined and have a sleek, contemporary look. In addition to their softness and comfort, modern shag carpets are also known for their ability to absorb sound and create a cozy, inviting atmosphere. They are often used in living rooms, bedrooms, and other spaces where comfort and style are important. Overall, a modern shag carpet is a luxurious and stylish addition to any home. Its soft, plush texture and sleek, contemporary look make it a popular choice for those looking to add comfort and style to their living space.') + [ + 'de-DE' + ]('Ein moderner Shag-Teppich ist eine Art Vorleger oder Teppich mit langem Plüschflor, der für seine Weichheit und seinen Komfort bekannt ist. Im Gegensatz zu traditionellen Shag-Teppichen, die in den 1970er Jahren beliebt waren und ein etwas zotteliges und ungepflegtes Aussehen hatten, sind moderne Shag-Teppiche raffinierter und haben ein elegantes, zeitgemäßes Aussehen. Neben ihrer Weichheit und ihrem Komfort sind moderne Hochflorteppiche auch für ihre Fähigkeit bekannt, Schall zu absorbieren und eine gemütliche, einladende Atmosphäre zu schaffen. Sie werden oft in Wohnzimmern, Schlafzimmern und anderen Räumen verwendet, in denen Komfort und Stil wichtig sind. Ein moderner Hochflorteppich ist eine luxuriöse und stilvolle Ergänzung für jedes Zuhause. Seine weiche, plüschige Textur und sein schlankes, modernes Aussehen machen ihn zu einer beliebten Wahl für diejenigen, die ihrem Wohnraum Komfort und Stil verleihen möchten.') ) .slug( LocalizedStringDraft.presets @@ -76,7 +76,9 @@ const ashenRug = (): TProductDraftBuilder => .taxCategory( KeyReferenceDraft.presets.taxCategory().key(standardTaxCategory.key!) ) - .masterVariant(ProductVariantDraft.presets.sampleDataGoodStore.ashenRug01()) + .masterVariant( + ProductVariantDraft.presets.sampleDataB2CLifestyle.ashenRug01() + ) .categories([ KeyReferenceDraft.presets.category().key(rugsDraft.key!), KeyReferenceDraft.presets.category().key(roomDecorDraft.key!), diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/ben-pillow-cover.spec.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/ben-pillow-cover.spec.ts similarity index 99% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/ben-pillow-cover.spec.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/ben-pillow-cover.spec.ts index 50951463a..1035b5aef 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/ben-pillow-cover.spec.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/ben-pillow-cover.spec.ts @@ -59,7 +59,7 @@ describe(`with benPillowCover preset`, () => { "w": 6240, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Ben_Pillow_Cover-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Ben_Pillow_Cover-1.1.jpeg", }, ], "key": undefined, @@ -198,7 +198,7 @@ describe(`with benPillowCover preset`, () => { "width": 6240, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Ben_Pillow_Cover-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Ben_Pillow_Cover-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/ben-pillow-cover.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/ben-pillow-cover.ts similarity index 86% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/ben-pillow-cover.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/ben-pillow-cover.ts index 9a20337a9..df7851d5d 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/ben-pillow-cover.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/ben-pillow-cover.ts @@ -18,20 +18,20 @@ import { ProductVariantDraft } from '../../../../product-variant'; import * as ProductDraft from '../../../product-draft'; import type { TProductDraftBuilder } from '../../../types'; -const standardTaxCategory = TaxCategoryDraft.presets.sampleDataGoodStore +const standardTaxCategory = TaxCategoryDraft.presets.sampleDataB2CLifestyle .standardTaxCategory() .build(); const benPillowCoverProductTypeDraft = - ProductTypeDraft.presets.sampleDataGoodStore + ProductTypeDraft.presets.sampleDataB2CLifestyle .furnitureAndDecor() .build(); -const beddingDraft = CategoryDraft.presets.sampleDataGoodStore +const beddingDraft = CategoryDraft.presets.sampleDataB2CLifestyle .bedding() .build(); -const homeDecorDraft = CategoryDraft.presets.sampleDataGoodStore +const homeDecorDraft = CategoryDraft.presets.sampleDataB2CLifestyle .homeDecor() .build(); @@ -49,15 +49,15 @@ const benPillowCover = (): TProductDraftBuilder => .description( LocalizedStringDraft.presets .empty() - ['en-GB']( - 'The Ben Pillow Cover is a brown linen decorative pillowcase used to add visual interest and texture to a room. It is made from a natural linen fabric, which is known for its durability, breathability, and classic look. The pillowcase is designed to fit over a standard size rectangle decorative pillow. It features a neutral brown color that can complement a wide variety of decor styles and color schemes. The linen fabric has a soft and slightly textured surface that adds a cozy and inviting feel to the pillow. The edges of the pillowcase are typically finished with a neat hem, which adds a polished look to the overall design. The pillowcase is often used to add a touch of warmth and natural elegance to a room, whether it is placed on a bed, a sofa, or an accent chair. It can be used on its own or paired with other decorative pillows in different shapes and colors to create a layered and cohesive look. Overall, a brown linen decorative pillowcase is a versatile and timeless accent piece that can enhance the comfort and style of any room in the home.' - ) - ['en-US']( - 'The Ben Pillow Cover is a brown linen decorative pillowcase used to add visual interest and texture to a room. It is made from a natural linen fabric, which is known for its durability, breathability, and classic look. The pillowcase is designed to fit over a standard size rectangle decorative pillow. It features a neutral brown color that can complement a wide variety of decor styles and color schemes. The linen fabric has a soft and slightly textured surface that adds a cozy and inviting feel to the pillow. The edges of the pillowcase are typically finished with a neat hem, which adds a polished look to the overall design. The pillowcase is often used to add a touch of warmth and natural elegance to a room, whether it is placed on a bed, a sofa, or an accent chair. It can be used on its own or paired with other decorative pillows in different shapes and colors to create a layered and cohesive look. Overall, a brown linen decorative pillowcase is a versatile and timeless accent piece that can enhance the comfort and style of any room in the home.' - ) - ['de-DE']( - 'Der Kissenbezug "Ben" ist ein dekorativer Kissenbezug aus braunem Leinen. Er ist ein visueller Akzent in jedem Raum. Er besteht aus einem natürlichen Leinenstoff, der für seine Haltbarkeit, Atmungsaktivität und seinen klassischen Look bekannt ist. Der Kissenbezug ist so konzipiert, dass er über ein rechteckiges dekoratives Kissen in Standardgröße passt. Es verfügt über eine neutrale braune Farbe, die eine Vielzahl von Einrichtungsstilen und Farbschemata ergänzen kann. Der Leinenstoff hat eine weiche und leicht strukturierte Oberfläche, die dem Kissen ein gemütliches und einladendes Gefühl verleiht. Die Kanten des Kissenbezugs sind in der Regel mit einem sauberen Saum versehen, der dem Gesamtdesign einen eleganten Look verleiht. Der Kissenbezug wird oft verwendet, um einem Raum einen Hauch von Wärme und natürlicher Eleganz zu verleihen, egal ob er auf einem Bett, einem Sofa oder einem Akzentstuhl platziert wird. Es kann allein verwendet oder mit anderen dekorativen Kissen in verschiedenen Formen und Farben kombiniert werden, um einen mehrschichtigen und zusammenhängenden Look zu schaffen. Insgesamt ist ein dekorativer Kissenbezug aus braunem Leinen ein vielseitiges und zeitloses Akzentstück, das den Komfort und Stil jedes Raums im Haus verbessern kann.' - ) + [ + 'en-GB' + ]('The Ben Pillow Cover is a brown linen decorative pillowcase used to add visual interest and texture to a room. It is made from a natural linen fabric, which is known for its durability, breathability, and classic look. The pillowcase is designed to fit over a standard size rectangle decorative pillow. It features a neutral brown color that can complement a wide variety of decor styles and color schemes. The linen fabric has a soft and slightly textured surface that adds a cozy and inviting feel to the pillow. The edges of the pillowcase are typically finished with a neat hem, which adds a polished look to the overall design. The pillowcase is often used to add a touch of warmth and natural elegance to a room, whether it is placed on a bed, a sofa, or an accent chair. It can be used on its own or paired with other decorative pillows in different shapes and colors to create a layered and cohesive look. Overall, a brown linen decorative pillowcase is a versatile and timeless accent piece that can enhance the comfort and style of any room in the home.') + [ + 'en-US' + ]('The Ben Pillow Cover is a brown linen decorative pillowcase used to add visual interest and texture to a room. It is made from a natural linen fabric, which is known for its durability, breathability, and classic look. The pillowcase is designed to fit over a standard size rectangle decorative pillow. It features a neutral brown color that can complement a wide variety of decor styles and color schemes. The linen fabric has a soft and slightly textured surface that adds a cozy and inviting feel to the pillow. The edges of the pillowcase are typically finished with a neat hem, which adds a polished look to the overall design. The pillowcase is often used to add a touch of warmth and natural elegance to a room, whether it is placed on a bed, a sofa, or an accent chair. It can be used on its own or paired with other decorative pillows in different shapes and colors to create a layered and cohesive look. Overall, a brown linen decorative pillowcase is a versatile and timeless accent piece that can enhance the comfort and style of any room in the home.') + [ + 'de-DE' + ]('Der Kissenbezug "Ben" ist ein dekorativer Kissenbezug aus braunem Leinen. Er ist ein visueller Akzent in jedem Raum. Er besteht aus einem natürlichen Leinenstoff, der für seine Haltbarkeit, Atmungsaktivität und seinen klassischen Look bekannt ist. Der Kissenbezug ist so konzipiert, dass er über ein rechteckiges dekoratives Kissen in Standardgröße passt. Es verfügt über eine neutrale braune Farbe, die eine Vielzahl von Einrichtungsstilen und Farbschemata ergänzen kann. Der Leinenstoff hat eine weiche und leicht strukturierte Oberfläche, die dem Kissen ein gemütliches und einladendes Gefühl verleiht. Die Kanten des Kissenbezugs sind in der Regel mit einem sauberen Saum versehen, der dem Gesamtdesign einen eleganten Look verleiht. Der Kissenbezug wird oft verwendet, um einem Raum einen Hauch von Wärme und natürlicher Eleganz zu verleihen, egal ob er auf einem Bett, einem Sofa oder einem Akzentstuhl platziert wird. Es kann allein verwendet oder mit anderen dekorativen Kissen in verschiedenen Formen und Farben kombiniert werden, um einen mehrschichtigen und zusammenhängenden Look zu schaffen. Insgesamt ist ein dekorativer Kissenbezug aus braunem Leinen ein vielseitiges und zeitloses Akzentstück, das den Komfort und Stil jedes Raums im Haus verbessern kann.') ) .slug( LocalizedStringDraft.presets @@ -76,7 +76,7 @@ const benPillowCover = (): TProductDraftBuilder => KeyReferenceDraft.presets.taxCategory().key(standardTaxCategory.key!) ) .masterVariant( - ProductVariantDraft.presets.sampleDataGoodStore.benPillowCover01() + ProductVariantDraft.presets.sampleDataB2CLifestyle.benPillowCover01() ) .categories([ KeyReferenceDraft.presets.category().key(beddingDraft.key!), diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/braided-rug.spec.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/braided-rug.spec.ts similarity index 97% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/braided-rug.spec.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/braided-rug.spec.ts index 6bb36e189..2dd53a708 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/braided-rug.spec.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/braided-rug.spec.ts @@ -49,7 +49,7 @@ describe(`with braidedRug preset`, () => { "w": 4924, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Braided_Rug-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Braided_Rug-1.1.jpeg", }, { "dimensions": { @@ -57,7 +57,7 @@ describe(`with braidedRug preset`, () => { "w": 5060, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Braided_Rug-1.3.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Braided_Rug-1.3.jpeg", }, { "dimensions": { @@ -65,7 +65,7 @@ describe(`with braidedRug preset`, () => { "w": 5527, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Braided_Rug-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Braided_Rug-1.2.jpeg", }, ], "key": undefined, @@ -203,7 +203,7 @@ describe(`with braidedRug preset`, () => { "width": 4924, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Braided_Rug-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Braided_Rug-1.1.jpeg", }, { "dimensions": { @@ -211,7 +211,7 @@ describe(`with braidedRug preset`, () => { "width": 5060, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Braided_Rug-1.3.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Braided_Rug-1.3.jpeg", }, { "dimensions": { @@ -219,7 +219,7 @@ describe(`with braidedRug preset`, () => { "width": 5527, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Braided_Rug-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Braided_Rug-1.2.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/braided-rug.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/braided-rug.ts similarity index 84% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/braided-rug.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/braided-rug.ts index c5cf99a59..72916fe86 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/braided-rug.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/braided-rug.ts @@ -18,23 +18,24 @@ import { ProductVariantDraft } from '../../../../product-variant'; import * as ProductDraft from '../../../product-draft'; import type { TProductDraftBuilder } from '../../../types'; -const standardTaxCategory = TaxCategoryDraft.presets.sampleDataGoodStore +const standardTaxCategory = TaxCategoryDraft.presets.sampleDataB2CLifestyle .standardTaxCategory() .build(); -const braidedRugProductTypeDraft = ProductTypeDraft.presets.sampleDataGoodStore - .furnitureAndDecor() - .build(); +const braidedRugProductTypeDraft = + ProductTypeDraft.presets.sampleDataB2CLifestyle + .furnitureAndDecor() + .build(); -const rugsDraft = CategoryDraft.presets.sampleDataGoodStore +const rugsDraft = CategoryDraft.presets.sampleDataB2CLifestyle .rugs() .build(); -const roomDecorDraft = CategoryDraft.presets.sampleDataGoodStore +const roomDecorDraft = CategoryDraft.presets.sampleDataB2CLifestyle .roomDecor() .build(); -const homeDecorDraft = CategoryDraft.presets.sampleDataGoodStore +const homeDecorDraft = CategoryDraft.presets.sampleDataB2CLifestyle .homeDecor() .build(); @@ -52,15 +53,15 @@ const braidedRug = (): TProductDraftBuilder => .description( LocalizedStringDraft.presets .empty() - ['en-GB']( - 'A braided round jute rug for the living room is a stylish and natural home decor accessory that can add warmth and texture to any space. The rug is made from durable and sustainable jute fibers, which are braided together to create a round shape. The braided construction of the rug creates a textured surface that is both soft and durable underfoot. The natural fibers of the jute give the rug a warm and earthy appearance, making it a perfect complement to a range of decor styles, from modern and minimalist to rustic and bohemian. The round shape of the rug is ideal for creating a cozy and intimate seating area in a larger living room or for adding visual interest to a smaller space. Overall, a braided round jute rug is a stylish and natural way to add warmth and texture to a living room. Its durable and sustainable construction, combined with its warm and earthy appearance, make it a versatile and timeless home decor accessory that can be enjoyed for years to come.' - ) - ['en-US']( - 'A braided round jute rug for the living room is a stylish and natural home decor accessory that can add warmth and texture to any space. The rug is made from durable and sustainable jute fibers, which are braided together to create a round shape. The braided construction of the rug creates a textured surface that is both soft and durable underfoot. The natural fibers of the jute give the rug a warm and earthy appearance, making it a perfect complement to a range of decor styles, from modern and minimalist to rustic and bohemian. The round shape of the rug is ideal for creating a cozy and intimate seating area in a larger living room or for adding visual interest to a smaller space. Overall, a braided round jute rug is a stylish and natural way to add warmth and texture to a living room. Its durable and sustainable construction, combined with its warm and earthy appearance, make it a versatile and timeless home decor accessory that can be enjoyed for years to come.' - ) - ['de-DE']( - 'Dieser geflochtene, runde Juteteppich für das Wohnzimmer ist ein stilvolles und natürliches Wohnaccessoire, welches jedem Raum Wärme und Struktur verleiht. Der Teppich besteht aus strapazierfähigen und nachhaltigen Jutefasern, die zu einer runden Form zusammengeflochten sind. Das Flechtmuster des Teppichs erzeugt eine strukturierte Oberfläche, die sowohl weich als auch strapazierfähig ist. Die Naturfasern der Jute verleihen dem Teppich ein warmes und erdiges Aussehen und machen ihn zu einer perfekten Ergänzung für eine Reihe von Einrichtungsstilen, von modern und minimalistisch bis hin zu rustikal und unkonventionell. Die runde Form des Teppichs ist ideal, um einen gemütlichen und intimen Sitzbereich in einem größeren Wohnzimmer zu schaffen oder um einem kleineren Raum visuelle Finesse zu verleihen. Ein geflochtener runder Juteteppich eine stilvolle und natürliche Möglichkeit, einem Wohnzimmer Wärme und Textur zu verleihen. Seine langlebige und nachhaltige Konstruktion, kombiniert mit seinem warmen und erdigen Aussehen, machen es zu einem vielseitigen und zeitlosen Wohnaccessoire, an dem Sie jahrelang Freude haben werden.' - ) + [ + 'en-GB' + ]('A braided round jute rug for the living room is a stylish and natural home decor accessory that can add warmth and texture to any space. The rug is made from durable and sustainable jute fibers, which are braided together to create a round shape. The braided construction of the rug creates a textured surface that is both soft and durable underfoot. The natural fibers of the jute give the rug a warm and earthy appearance, making it a perfect complement to a range of decor styles, from modern and minimalist to rustic and bohemian. The round shape of the rug is ideal for creating a cozy and intimate seating area in a larger living room or for adding visual interest to a smaller space. Overall, a braided round jute rug is a stylish and natural way to add warmth and texture to a living room. Its durable and sustainable construction, combined with its warm and earthy appearance, make it a versatile and timeless home decor accessory that can be enjoyed for years to come.') + [ + 'en-US' + ]('A braided round jute rug for the living room is a stylish and natural home decor accessory that can add warmth and texture to any space. The rug is made from durable and sustainable jute fibers, which are braided together to create a round shape. The braided construction of the rug creates a textured surface that is both soft and durable underfoot. The natural fibers of the jute give the rug a warm and earthy appearance, making it a perfect complement to a range of decor styles, from modern and minimalist to rustic and bohemian. The round shape of the rug is ideal for creating a cozy and intimate seating area in a larger living room or for adding visual interest to a smaller space. Overall, a braided round jute rug is a stylish and natural way to add warmth and texture to a living room. Its durable and sustainable construction, combined with its warm and earthy appearance, make it a versatile and timeless home decor accessory that can be enjoyed for years to come.') + [ + 'de-DE' + ]('Dieser geflochtene, runde Juteteppich für das Wohnzimmer ist ein stilvolles und natürliches Wohnaccessoire, welches jedem Raum Wärme und Struktur verleiht. Der Teppich besteht aus strapazierfähigen und nachhaltigen Jutefasern, die zu einer runden Form zusammengeflochten sind. Das Flechtmuster des Teppichs erzeugt eine strukturierte Oberfläche, die sowohl weich als auch strapazierfähig ist. Die Naturfasern der Jute verleihen dem Teppich ein warmes und erdiges Aussehen und machen ihn zu einer perfekten Ergänzung für eine Reihe von Einrichtungsstilen, von modern und minimalistisch bis hin zu rustikal und unkonventionell. Die runde Form des Teppichs ist ideal, um einen gemütlichen und intimen Sitzbereich in einem größeren Wohnzimmer zu schaffen oder um einem kleineren Raum visuelle Finesse zu verleihen. Ein geflochtener runder Juteteppich eine stilvolle und natürliche Möglichkeit, einem Wohnzimmer Wärme und Textur zu verleihen. Seine langlebige und nachhaltige Konstruktion, kombiniert mit seinem warmen und erdigen Aussehen, machen es zu einem vielseitigen und zeitlosen Wohnaccessoire, an dem Sie jahrelang Freude haben werden.') ) .slug( LocalizedStringDraft.presets @@ -79,7 +80,7 @@ const braidedRug = (): TProductDraftBuilder => KeyReferenceDraft.presets.taxCategory().key(standardTaxCategory.key!) ) .masterVariant( - ProductVariantDraft.presets.sampleDataGoodStore.braidedRug01() + ProductVariantDraft.presets.sampleDataB2CLifestyle.braidedRug01() ) .categories([ KeyReferenceDraft.presets.category().key(rugsDraft.key!), diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/bruno-chair.spec.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/bruno-chair.spec.ts similarity index 99% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/bruno-chair.spec.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/bruno-chair.spec.ts index e18cd0e83..08bc349aa 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/bruno-chair.spec.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/bruno-chair.spec.ts @@ -65,7 +65,7 @@ describe(`with brunoChair preset`, () => { "w": 6473, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Bruno_Chair-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Bruno_Chair-1.1.jpeg", }, ], "key": undefined, @@ -211,7 +211,7 @@ describe(`with brunoChair preset`, () => { "width": 6473, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Bruno_Chair-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Bruno_Chair-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/bruno-chair.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/bruno-chair.ts similarity index 81% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/bruno-chair.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/bruno-chair.ts index d057ff63b..dbcd2cd3d 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/bruno-chair.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/bruno-chair.ts @@ -18,23 +18,24 @@ import { ProductVariantDraft } from '../../../../product-variant'; import * as ProductDraft from '../../../product-draft'; import type { TProductDraftBuilder } from '../../../types'; -const standardTaxCategory = TaxCategoryDraft.presets.sampleDataGoodStore +const standardTaxCategory = TaxCategoryDraft.presets.sampleDataB2CLifestyle .standardTaxCategory() .build(); -const brunoChairProductTypeDraft = ProductTypeDraft.presets.sampleDataGoodStore - .furnitureAndDecor() - .build(); +const brunoChairProductTypeDraft = + ProductTypeDraft.presets.sampleDataB2CLifestyle + .furnitureAndDecor() + .build(); -const furnitureDraft = CategoryDraft.presets.sampleDataGoodStore +const furnitureDraft = CategoryDraft.presets.sampleDataB2CLifestyle .furniture() .build(); -const armchairsDraft = CategoryDraft.presets.sampleDataGoodStore +const armchairsDraft = CategoryDraft.presets.sampleDataB2CLifestyle .armchairs() .build(); -const livingRoomFurnitureDraft = CategoryDraft.presets.sampleDataGoodStore +const livingRoomFurnitureDraft = CategoryDraft.presets.sampleDataB2CLifestyle .livingRoomFurniture() .build(); @@ -52,15 +53,15 @@ const brunoChair = (): TProductDraftBuilder => .description( LocalizedStringDraft.presets .empty() - ['en-GB']( - 'A modern linen and wood chair features a simple yet stylish design. The chair has a sleek wooden frame, which is stained in a natural wood finish. The seat and backrest are made of a soft linen fabric that is padded for comfort. The linen fabric is a neutral beige. The backrest of the chair is slightly angled, providing additional comfort and support for the user. The legs of the chair are slightly tapered and have protective foot pads to prevent damage to flooring. Overall, this modern linen and wood chair is a versatile and elegant addition to any living room, dining room, or office space.' - ) - ['en-US']( - 'A modern linen and wood chair features a simple yet stylish design. The chair has a sleek wooden frame, which is stained in a natural wood finish. The seat and backrest are made of a soft linen fabric that is padded for comfort. The linen fabric is a neutral beige. The backrest of the chair is slightly angled, providing additional comfort and support for the user. The legs of the chair are slightly tapered and have protective foot pads to prevent damage to flooring. Overall, this modern linen and wood chair is a versatile and elegant addition to any living room, dining room, or office space.' - ) - ['de-DE']( - 'Ein moderner Stuhl aus Leinen und Holz zeichnet sich durch ein einfaches, aber stilvolles Design aus. Der Stuhl hat einen schlanken Holzrahmen, der in einem natürlichen Holzfinish gebeizt ist. Der Sitz und die Rückenlehne bestehen aus einem weichen Leinenstoff, der für Komfort gepolstert ist. Der Leinenstoff ist ein neutrales Beige. Die Rückenlehne des Stuhls ist leicht angewinkelt, was dem Benutzer zusätzlichen Komfort und Unterstützung bietet. Die Beine des Stuhls sind leicht konisch und haben schützende Fußpolster, um Schäden am Bodenbelag zu vermeiden. Insgesamt ist dieser moderne Leinen- und Holzstuhl eine vielseitige und elegante Ergänzung für jedes Wohnzimmer, Esszimmer oder Büro.' - ) + [ + 'en-GB' + ]('A modern linen and wood chair features a simple yet stylish design. The chair has a sleek wooden frame, which is stained in a natural wood finish. The seat and backrest are made of a soft linen fabric that is padded for comfort. The linen fabric is a neutral beige. The backrest of the chair is slightly angled, providing additional comfort and support for the user. The legs of the chair are slightly tapered and have protective foot pads to prevent damage to flooring. Overall, this modern linen and wood chair is a versatile and elegant addition to any living room, dining room, or office space.') + [ + 'en-US' + ]('A modern linen and wood chair features a simple yet stylish design. The chair has a sleek wooden frame, which is stained in a natural wood finish. The seat and backrest are made of a soft linen fabric that is padded for comfort. The linen fabric is a neutral beige. The backrest of the chair is slightly angled, providing additional comfort and support for the user. The legs of the chair are slightly tapered and have protective foot pads to prevent damage to flooring. Overall, this modern linen and wood chair is a versatile and elegant addition to any living room, dining room, or office space.') + [ + 'de-DE' + ]('Ein moderner Stuhl aus Leinen und Holz zeichnet sich durch ein einfaches, aber stilvolles Design aus. Der Stuhl hat einen schlanken Holzrahmen, der in einem natürlichen Holzfinish gebeizt ist. Der Sitz und die Rückenlehne bestehen aus einem weichen Leinenstoff, der für Komfort gepolstert ist. Der Leinenstoff ist ein neutrales Beige. Die Rückenlehne des Stuhls ist leicht angewinkelt, was dem Benutzer zusätzlichen Komfort und Unterstützung bietet. Die Beine des Stuhls sind leicht konisch und haben schützende Fußpolster, um Schäden am Bodenbelag zu vermeiden. Insgesamt ist dieser moderne Leinen- und Holzstuhl eine vielseitige und elegante Ergänzung für jedes Wohnzimmer, Esszimmer oder Büro.') ) .slug( LocalizedStringDraft.presets @@ -79,7 +80,7 @@ const brunoChair = (): TProductDraftBuilder => KeyReferenceDraft.presets.taxCategory().key(standardTaxCategory.key!) ) .masterVariant( - ProductVariantDraft.presets.sampleDataGoodStore.brunoChair01() + ProductVariantDraft.presets.sampleDataB2CLifestyle.brunoChair01() ) .categories([ KeyReferenceDraft.presets.category().key(furnitureDraft.key!), diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/canela-three-seater-sofa.spec.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/canela-three-seater-sofa.spec.ts similarity index 97% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/canela-three-seater-sofa.spec.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/canela-three-seater-sofa.spec.ts index 77caa10bf..00763d1e4 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/canela-three-seater-sofa.spec.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/canela-three-seater-sofa.spec.ts @@ -69,7 +69,7 @@ describe(`with canelaThreeSeaterSofa preset`, () => { "w": 5029, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Canela_Three_Seater_Sofa-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Canela_Three_Seater_Sofa-1.1.jpeg", }, { "dimensions": { @@ -77,7 +77,7 @@ describe(`with canelaThreeSeaterSofa preset`, () => { "w": 1170, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Canela_Three_Seater_Sofa-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Canela_Three_Seater_Sofa-1.2.jpeg", }, ], "key": undefined, @@ -224,7 +224,7 @@ describe(`with canelaThreeSeaterSofa preset`, () => { "width": 5029, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Canela_Three_Seater_Sofa-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Canela_Three_Seater_Sofa-1.1.jpeg", }, { "dimensions": { @@ -232,7 +232,7 @@ describe(`with canelaThreeSeaterSofa preset`, () => { "width": 1170, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Canela_Three_Seater_Sofa-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Canela_Three_Seater_Sofa-1.2.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/canela-three-seater-sofa.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/canela-three-seater-sofa.ts similarity index 85% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/canela-three-seater-sofa.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/canela-three-seater-sofa.ts index b5dd71810..59fbaa067 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/canela-three-seater-sofa.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/canela-three-seater-sofa.ts @@ -18,24 +18,24 @@ import { ProductVariantDraft } from '../../../../product-variant'; import * as ProductDraft from '../../../product-draft'; import type { TProductDraftBuilder } from '../../../types'; -const standardTaxCategory = TaxCategoryDraft.presets.sampleDataGoodStore +const standardTaxCategory = TaxCategoryDraft.presets.sampleDataB2CLifestyle .standardTaxCategory() .build(); const canelaThreeSeaterSofaProductTypeDraft = - ProductTypeDraft.presets.sampleDataGoodStore + ProductTypeDraft.presets.sampleDataB2CLifestyle .furnitureAndDecor() .build(); -const furnitureDraft = CategoryDraft.presets.sampleDataGoodStore +const furnitureDraft = CategoryDraft.presets.sampleDataB2CLifestyle .furniture() .build(); -const sofasDraft = CategoryDraft.presets.sampleDataGoodStore +const sofasDraft = CategoryDraft.presets.sampleDataB2CLifestyle .sofas() .build(); -const livingRoomFurnitureDraft = CategoryDraft.presets.sampleDataGoodStore +const livingRoomFurnitureDraft = CategoryDraft.presets.sampleDataB2CLifestyle .livingRoomFurniture() .build(); @@ -53,15 +53,15 @@ const canelaThreeSeaterSofa = (): TProductDraftBuilder => .description( LocalizedStringDraft.presets .empty() - ['en-GB']( - 'A leather three-seater sofa is a piece of furniture designed to provide comfortable seating for three people. The sofa is made of high-quality leather, which is known for its durability, strength, and natural beauty. The leather material is treated with protective coatings to make it more resistant to wear and tear, stains, and spills. The sofa features a sturdy frame made of wood, with a series of springs and cushions providing support and comfort for the seated individuals. The cushions are filled with down feathers. The leather sofa has clean lines and minimal decorative elements for a more modern or contemporary look. Overall, a leather three-seater sofa is a versatile and stylish piece of furniture that can provide comfortable seating and add a touch of elegance to any living space.' - ) - ['en-US']( - 'A leather three-seater sofa is a piece of furniture designed to provide comfortable seating for three people. The sofa is made of high-quality leather, which is known for its durability, strength, and natural beauty. The leather material is treated with protective coatings to make it more resistant to wear and tear, stains, and spills. The sofa features a sturdy frame made of wood, with a series of springs and cushions providing support and comfort for the seated individuals. The cushions are filled with down feathers. The leather sofa has clean lines and minimal decorative elements for a more modern or contemporary look. Overall, a leather three-seater sofa is a versatile and stylish piece of furniture that can provide comfortable seating and add a touch of elegance to any living space.' - ) - ['de-DE']( - 'Ein Leder-Dreisitzer-Sofa ist ein Möbelstück, das entworfen wurde, um bequemen Platz für drei Personen zu bieten. Das Sofa ist aus hochwertigem Leder gefertigt, das für seine Langlebigkeit, Stärke und natürliche Schönheit bekannt ist. Das Ledermaterial ist mit einer Schutzbeschichtung behandelt, um es widerstandsfähiger gegen Abnutzung, Flecken und Spritzer zu machen. Das Sofa verfügt über einen stabilen Rahmen aus Holz mit einer Reihe von Federn und Kissen, die den sitzenden Personen Halt und Komfort bieten. Die Kissen sind mit Daunenfedern gefüllt. Das Ledersofa hat klare Linien und minimale dekorative Elemente für einen moderneren oder zeitgemäßeren Look. Ein Leder-Dreisitzer-Sofa ein vielseitiges und stilvolles Möbelstück, das bequeme Sitzgelegenheiten bietet und jedem Wohnraum einen Hauch von Eleganz verleiht.' - ) + [ + 'en-GB' + ]('A leather three-seater sofa is a piece of furniture designed to provide comfortable seating for three people. The sofa is made of high-quality leather, which is known for its durability, strength, and natural beauty. The leather material is treated with protective coatings to make it more resistant to wear and tear, stains, and spills. The sofa features a sturdy frame made of wood, with a series of springs and cushions providing support and comfort for the seated individuals. The cushions are filled with down feathers. The leather sofa has clean lines and minimal decorative elements for a more modern or contemporary look. Overall, a leather three-seater sofa is a versatile and stylish piece of furniture that can provide comfortable seating and add a touch of elegance to any living space.') + [ + 'en-US' + ]('A leather three-seater sofa is a piece of furniture designed to provide comfortable seating for three people. The sofa is made of high-quality leather, which is known for its durability, strength, and natural beauty. The leather material is treated with protective coatings to make it more resistant to wear and tear, stains, and spills. The sofa features a sturdy frame made of wood, with a series of springs and cushions providing support and comfort for the seated individuals. The cushions are filled with down feathers. The leather sofa has clean lines and minimal decorative elements for a more modern or contemporary look. Overall, a leather three-seater sofa is a versatile and stylish piece of furniture that can provide comfortable seating and add a touch of elegance to any living space.') + [ + 'de-DE' + ]('Ein Leder-Dreisitzer-Sofa ist ein Möbelstück, das entworfen wurde, um bequemen Platz für drei Personen zu bieten. Das Sofa ist aus hochwertigem Leder gefertigt, das für seine Langlebigkeit, Stärke und natürliche Schönheit bekannt ist. Das Ledermaterial ist mit einer Schutzbeschichtung behandelt, um es widerstandsfähiger gegen Abnutzung, Flecken und Spritzer zu machen. Das Sofa verfügt über einen stabilen Rahmen aus Holz mit einer Reihe von Federn und Kissen, die den sitzenden Personen Halt und Komfort bieten. Die Kissen sind mit Daunenfedern gefüllt. Das Ledersofa hat klare Linien und minimale dekorative Elemente für einen moderneren oder zeitgemäßeren Look. Ein Leder-Dreisitzer-Sofa ein vielseitiges und stilvolles Möbelstück, das bequeme Sitzgelegenheiten bietet und jedem Wohnraum einen Hauch von Eleganz verleiht.') ) .slug( LocalizedStringDraft.presets @@ -80,7 +80,7 @@ const canelaThreeSeaterSofa = (): TProductDraftBuilder => KeyReferenceDraft.presets.taxCategory().key(standardTaxCategory.key!) ) .masterVariant( - ProductVariantDraft.presets.sampleDataGoodStore.canelaThreeSeaterSofa01() + ProductVariantDraft.presets.sampleDataB2CLifestyle.canelaThreeSeaterSofa01() ) .categories([ KeyReferenceDraft.presets.category().key(furnitureDraft.key!), diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/charcoal-chair.spec.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/charcoal-chair.spec.ts similarity index 97% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/charcoal-chair.spec.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/charcoal-chair.spec.ts index 90a9a28a7..88346f892 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/charcoal-chair.spec.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/charcoal-chair.spec.ts @@ -65,7 +65,7 @@ describe(`with charcoalChair preset`, () => { "w": 3300, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Charcoal_Chair-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Charcoal_Chair-1.2.jpeg", }, { "dimensions": { @@ -73,7 +73,7 @@ describe(`with charcoalChair preset`, () => { "w": 5906, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Charcoal_Chair-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Charcoal_Chair-1.1.jpeg", }, ], "key": undefined, @@ -220,7 +220,7 @@ describe(`with charcoalChair preset`, () => { "width": 3300, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Charcoal_Chair-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Charcoal_Chair-1.2.jpeg", }, { "dimensions": { @@ -228,7 +228,7 @@ describe(`with charcoalChair preset`, () => { "width": 5906, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Charcoal_Chair-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Charcoal_Chair-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/charcoal-chair.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/charcoal-chair.ts similarity index 82% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/charcoal-chair.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/charcoal-chair.ts index 3074ceb39..148f0dfef 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/charcoal-chair.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/charcoal-chair.ts @@ -18,24 +18,24 @@ import { ProductVariantDraft } from '../../../../product-variant'; import * as ProductDraft from '../../../product-draft'; import type { TProductDraftBuilder } from '../../../types'; -const standardTaxCategory = TaxCategoryDraft.presets.sampleDataGoodStore +const standardTaxCategory = TaxCategoryDraft.presets.sampleDataB2CLifestyle .standardTaxCategory() .build(); const charcoalChairProductTypeDraft = - ProductTypeDraft.presets.sampleDataGoodStore + ProductTypeDraft.presets.sampleDataB2CLifestyle .furnitureAndDecor() .build(); -const furnitureDraft = CategoryDraft.presets.sampleDataGoodStore +const furnitureDraft = CategoryDraft.presets.sampleDataB2CLifestyle .furniture() .build(); -const armchairsDraft = CategoryDraft.presets.sampleDataGoodStore +const armchairsDraft = CategoryDraft.presets.sampleDataB2CLifestyle .armchairs() .build(); -const livingRoomFurnitureDraft = CategoryDraft.presets.sampleDataGoodStore +const livingRoomFurnitureDraft = CategoryDraft.presets.sampleDataB2CLifestyle .livingRoomFurniture() .build(); @@ -53,15 +53,15 @@ const charcoalChair = (): TProductDraftBuilder => .description( LocalizedStringDraft.presets .empty() - ['en-GB']( - 'This chair with leather upholstery features a sturdy frame and legs. The seat and backrest are covered in high-quality leather, which may be smooth or textured depending on the design. The leather is stretched taut over a layer of padding to provide comfort and support for the person sitting in the chair. The chair has a high backrest making it ideal for the dining room or a study room. Overall, a chair with leather upholstery is typically sleek and modern in design, providing a comfortable and stylish seating option for any room.' - ) - ['en-US']( - 'This chair with leather upholstery features a sturdy frame and legs. The seat and backrest are covered in high-quality leather, which may be smooth or textured depending on the design. The leather is stretched taut over a layer of padding to provide comfort and support for the person sitting in the chair. The chair has a high backrest making it ideal for the dining room or a study room. Overall, a chair with leather upholstery is typically sleek and modern in design, providing a comfortable and stylish seating option for any room.' - ) - ['de-DE']( - 'Dieser Stuhl mit Lederbezug verfügt über einen stabilen Rahmen und Beine. Sitzfläche und Rückenlehne sind mit hochwertigem Leder bezogen, das je nach Ausführung glatt oder strukturiert sein kann. Das Leder wird straff über eine Polsterschicht gespannt, um der auf dem Stuhl sitzenden Person Komfort und Halt zu bieten. Der Stuhl hat eine hohe Rückenlehne, was ihn ideal für das Esszimmer oder ein Arbeitszimmer macht. Ein Stuhl mit Lederpolsterung ist elegant und modern im Design und bietet eine komfortable und stilvolle Sitzgelegenheit für jeden Raum.' - ) + [ + 'en-GB' + ]('This chair with leather upholstery features a sturdy frame and legs. The seat and backrest are covered in high-quality leather, which may be smooth or textured depending on the design. The leather is stretched taut over a layer of padding to provide comfort and support for the person sitting in the chair. The chair has a high backrest making it ideal for the dining room or a study room. Overall, a chair with leather upholstery is typically sleek and modern in design, providing a comfortable and stylish seating option for any room.') + [ + 'en-US' + ]('This chair with leather upholstery features a sturdy frame and legs. The seat and backrest are covered in high-quality leather, which may be smooth or textured depending on the design. The leather is stretched taut over a layer of padding to provide comfort and support for the person sitting in the chair. The chair has a high backrest making it ideal for the dining room or a study room. Overall, a chair with leather upholstery is typically sleek and modern in design, providing a comfortable and stylish seating option for any room.') + [ + 'de-DE' + ]('Dieser Stuhl mit Lederbezug verfügt über einen stabilen Rahmen und Beine. Sitzfläche und Rückenlehne sind mit hochwertigem Leder bezogen, das je nach Ausführung glatt oder strukturiert sein kann. Das Leder wird straff über eine Polsterschicht gespannt, um der auf dem Stuhl sitzenden Person Komfort und Halt zu bieten. Der Stuhl hat eine hohe Rückenlehne, was ihn ideal für das Esszimmer oder ein Arbeitszimmer macht. Ein Stuhl mit Lederpolsterung ist elegant und modern im Design und bietet eine komfortable und stilvolle Sitzgelegenheit für jeden Raum.') ) .slug( LocalizedStringDraft.presets @@ -80,7 +80,7 @@ const charcoalChair = (): TProductDraftBuilder => KeyReferenceDraft.presets.taxCategory().key(standardTaxCategory.key!) ) .masterVariant( - ProductVariantDraft.presets.sampleDataGoodStore.charcoalChair01() + ProductVariantDraft.presets.sampleDataB2CLifestyle.charcoalChair01() ) .categories([ KeyReferenceDraft.presets.category().key(furnitureDraft.key!), diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/charlie-armchair.spec.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/charlie-armchair.spec.ts similarity index 98% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/charlie-armchair.spec.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/charlie-armchair.spec.ts index b3a3342ef..af7488e06 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/charlie-armchair.spec.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/charlie-armchair.spec.ts @@ -65,7 +65,7 @@ describe(`with charlieArmchair preset`, () => { "w": 5500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Charlie_Armchair-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Charlie_Armchair-1.1.jpeg", }, ], "key": undefined, @@ -212,7 +212,7 @@ describe(`with charlieArmchair preset`, () => { "width": 5500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Charlie_Armchair-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Charlie_Armchair-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/charlie-armchair.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/charlie-armchair.ts similarity index 84% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/charlie-armchair.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/charlie-armchair.ts index 210351e14..e2cb21d57 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/charlie-armchair.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/charlie-armchair.ts @@ -18,24 +18,24 @@ import { ProductVariantDraft } from '../../../../product-variant'; import * as ProductDraft from '../../../product-draft'; import type { TProductDraftBuilder } from '../../../types'; -const standardTaxCategory = TaxCategoryDraft.presets.sampleDataGoodStore +const standardTaxCategory = TaxCategoryDraft.presets.sampleDataB2CLifestyle .standardTaxCategory() .build(); const charlieArmchairProductTypeDraft = - ProductTypeDraft.presets.sampleDataGoodStore + ProductTypeDraft.presets.sampleDataB2CLifestyle .furnitureAndDecor() .build(); -const armchairsDraft = CategoryDraft.presets.sampleDataGoodStore +const armchairsDraft = CategoryDraft.presets.sampleDataB2CLifestyle .armchairs() .build(); -const furnitureDraft = CategoryDraft.presets.sampleDataGoodStore +const furnitureDraft = CategoryDraft.presets.sampleDataB2CLifestyle .furniture() .build(); -const livingRoomFurnitureDraft = CategoryDraft.presets.sampleDataGoodStore +const livingRoomFurnitureDraft = CategoryDraft.presets.sampleDataB2CLifestyle .livingRoomFurniture() .build(); @@ -53,15 +53,15 @@ const charlieArmchair = (): TProductDraftBuilder => .description( LocalizedStringDraft.presets .empty() - ['en-GB']( - 'A corduroy chair with wooden legs has a cozy and rustic feel. The chair has a sturdy wooden frame and four straight, tapered legs that support the seat and backrest. The corduroy upholstery is soft and plush fabric with a distinctive ribbed texture that adds visual interest and depth to the chair. The color of the corduroy is a warm and earthy tone. The wooden legs are finished in a natural wood stain. The chair has a simple and understated design that complements a variety of interior decor styles.' - ) - ['en-US']( - 'A corduroy chair with wooden legs has a cozy and rustic feel. The chair has a sturdy wooden frame and four straight, tapered legs that support the seat and backrest. The corduroy upholstery is soft and plush fabric with a distinctive ribbed texture that adds visual interest and depth to the chair. The color of the corduroy is a warm and earthy tone. The wooden legs are finished in a natural wood stain. The chair has a simple and understated design that complements a variety of interior decor styles.' - ) - ['de-DE']( - 'Dieser Sessel mit Kordbezug und Holzbeinen hat eine gemütliche und rustikale Ausstrahlung. Der Stuhl hat einen stabilen Holzrahmen und vier gerade, sich verjüngende Beine, die den Sitz und die Rückenlehne tragen. Die Kordpolsterung ist ein weicher und plüschiger Stoff mit einer unverwechselbaren gerippten Textur, die dem Stuhl visuelle Rafinesse und Tiefe verleiht. Der Kordstoff ist in einem warmem und erdigen Ton gehalten. Die Holzbeine sind natürlich gebeizt. Der Stuhl hat ein einfaches und dezentes Design, das zu einer Vielzahl von Einrichtungsstilen passt.' - ) + [ + 'en-GB' + ]('A corduroy chair with wooden legs has a cozy and rustic feel. The chair has a sturdy wooden frame and four straight, tapered legs that support the seat and backrest. The corduroy upholstery is soft and plush fabric with a distinctive ribbed texture that adds visual interest and depth to the chair. The color of the corduroy is a warm and earthy tone. The wooden legs are finished in a natural wood stain. The chair has a simple and understated design that complements a variety of interior decor styles.') + [ + 'en-US' + ]('A corduroy chair with wooden legs has a cozy and rustic feel. The chair has a sturdy wooden frame and four straight, tapered legs that support the seat and backrest. The corduroy upholstery is soft and plush fabric with a distinctive ribbed texture that adds visual interest and depth to the chair. The color of the corduroy is a warm and earthy tone. The wooden legs are finished in a natural wood stain. The chair has a simple and understated design that complements a variety of interior decor styles.') + [ + 'de-DE' + ]('Dieser Sessel mit Kordbezug und Holzbeinen hat eine gemütliche und rustikale Ausstrahlung. Der Stuhl hat einen stabilen Holzrahmen und vier gerade, sich verjüngende Beine, die den Sitz und die Rückenlehne tragen. Die Kordpolsterung ist ein weicher und plüschiger Stoff mit einer unverwechselbaren gerippten Textur, die dem Stuhl visuelle Rafinesse und Tiefe verleiht. Der Kordstoff ist in einem warmem und erdigen Ton gehalten. Die Holzbeine sind natürlich gebeizt. Der Stuhl hat ein einfaches und dezentes Design, das zu einer Vielzahl von Einrichtungsstilen passt.') ) .slug( LocalizedStringDraft.presets @@ -80,7 +80,7 @@ const charlieArmchair = (): TProductDraftBuilder => KeyReferenceDraft.presets.taxCategory().key(standardTaxCategory.key!) ) .masterVariant( - ProductVariantDraft.presets.sampleDataGoodStore.charlieArmchair01() + ProductVariantDraft.presets.sampleDataB2CLifestyle.charlieArmchair01() ) .categories([ KeyReferenceDraft.presets.category().key(armchairsDraft.key!), diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/chianti-wine-glass.spec.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/chianti-wine-glass.spec.ts similarity index 99% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/chianti-wine-glass.spec.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/chianti-wine-glass.spec.ts index ea5950ca2..f6939b43b 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/chianti-wine-glass.spec.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/chianti-wine-glass.spec.ts @@ -65,7 +65,7 @@ describe(`with chiantiWineGlass preset`, () => { "w": 2457, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Chianti_Wine_Glass-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Chianti_Wine_Glass-1.1.jpeg", }, ], "key": undefined, @@ -212,7 +212,7 @@ describe(`with chiantiWineGlass preset`, () => { "width": 2457, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Chianti_Wine_Glass-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Chianti_Wine_Glass-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/chianti-wine-glass.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/chianti-wine-glass.ts similarity index 85% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/chianti-wine-glass.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/chianti-wine-glass.ts index b4fb827cf..2eb684e13 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/chianti-wine-glass.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/chianti-wine-glass.ts @@ -18,24 +18,24 @@ import { ProductVariantDraft } from '../../../../product-variant'; import * as ProductDraft from '../../../product-draft'; import type { TProductDraftBuilder } from '../../../types'; -const standardTaxCategory = TaxCategoryDraft.presets.sampleDataGoodStore +const standardTaxCategory = TaxCategoryDraft.presets.sampleDataB2CLifestyle .standardTaxCategory() .build(); const chiantiWineGlassProductTypeDraft = - ProductTypeDraft.presets.sampleDataGoodStore + ProductTypeDraft.presets.sampleDataB2CLifestyle .furnitureAndDecor() .build(); -const glasswareDraft = CategoryDraft.presets.sampleDataGoodStore +const glasswareDraft = CategoryDraft.presets.sampleDataB2CLifestyle .glassware() .build(); -const barAndGlasswareDraft = CategoryDraft.presets.sampleDataGoodStore +const barAndGlasswareDraft = CategoryDraft.presets.sampleDataB2CLifestyle .barAndGlassware() .build(); -const kitchenDraft = CategoryDraft.presets.sampleDataGoodStore +const kitchenDraft = CategoryDraft.presets.sampleDataB2CLifestyle .kitchen() .build(); @@ -53,15 +53,15 @@ const chiantiWineGlass = (): TProductDraftBuilder => .description( LocalizedStringDraft.presets .empty() - ['en-GB']( - 'The Chianti Wine Glass is specifically designed to enhance the experience of drinking red wine. It has a round or slightly tapered bowl that is larger than that of a white wine glass, allowing the wine to breathe and develop its full aroma and flavor. The bowl of a red wine glass is wider at the base and tapers slightly towards the top, helping to concentrate the aromas of the wine and directing them towards the nose. The stem of the glass is typically long and slender, allowing the drinker to hold the glass without warming the wine with their body heat. Overall, a red wine glass is a stylish and functional piece of glassware that is specifically designed to enhance the flavor and aroma of red wine. Its elegant design and attention to detail make it a popular choice for wine enthusiasts and casual drinkers alike.' - ) - ['en-US']( - 'The Chianti Wine Glass is specifically designed to enhance the experience of drinking red wine. It has a round or slightly tapered bowl that is larger than that of a white wine glass, allowing the wine to breathe and develop its full aroma and flavor. The bowl of a red wine glass is wider at the base and tapers slightly towards the top, helping to concentrate the aromas of the wine and directing them towards the nose. The stem of the glass is typically long and slender, allowing the drinker to hold the glass without warming the wine with their body heat. Overall, a red wine glass is a stylish and functional piece of glassware that is specifically designed to enhance the flavor and aroma of red wine. Its elegant design and attention to detail make it a popular choice for wine enthusiasts and casual drinkers alike.' - ) - ['de-DE']( - 'Das Chianti Weinglas wurde speziell entwickelt, um das Erlebnis beim Trinken von Rotwein zu verbessern. Es hat einen runden oder leicht konisch zulaufenden Körper, der größer ist als der eines Weißweinglases, wodurch der Wein atmen und sein volles Aroma und seinen vollen Geschmack entfalten kann. Das Rotweinglas ist unten breiter und verjüngt sich leicht nach oben, wodurch die Aromen des Weins konzentriert und zur Nase geleitet werden. Der Stiel des Glases ist lang und schlank. Dadurch kann das Glas gehalten werden, ohne den Wein zu erwärmen. Dieses Rotweinglas ist ein stilvolles und funktionales Glas, das speziell entwickelt wurde, um den Geschmack und das Aroma von Rotwein zu verbessern. Sein elegantes Design und die Liebe zum Detail machen es zu einer beliebten Wahl für Weinliebhaber und Gelegenheitstrinker gleichermaßen.' - ) + [ + 'en-GB' + ]('The Chianti Wine Glass is specifically designed to enhance the experience of drinking red wine. It has a round or slightly tapered bowl that is larger than that of a white wine glass, allowing the wine to breathe and develop its full aroma and flavor. The bowl of a red wine glass is wider at the base and tapers slightly towards the top, helping to concentrate the aromas of the wine and directing them towards the nose. The stem of the glass is typically long and slender, allowing the drinker to hold the glass without warming the wine with their body heat. Overall, a red wine glass is a stylish and functional piece of glassware that is specifically designed to enhance the flavor and aroma of red wine. Its elegant design and attention to detail make it a popular choice for wine enthusiasts and casual drinkers alike.') + [ + 'en-US' + ]('The Chianti Wine Glass is specifically designed to enhance the experience of drinking red wine. It has a round or slightly tapered bowl that is larger than that of a white wine glass, allowing the wine to breathe and develop its full aroma and flavor. The bowl of a red wine glass is wider at the base and tapers slightly towards the top, helping to concentrate the aromas of the wine and directing them towards the nose. The stem of the glass is typically long and slender, allowing the drinker to hold the glass without warming the wine with their body heat. Overall, a red wine glass is a stylish and functional piece of glassware that is specifically designed to enhance the flavor and aroma of red wine. Its elegant design and attention to detail make it a popular choice for wine enthusiasts and casual drinkers alike.') + [ + 'de-DE' + ]('Das Chianti Weinglas wurde speziell entwickelt, um das Erlebnis beim Trinken von Rotwein zu verbessern. Es hat einen runden oder leicht konisch zulaufenden Körper, der größer ist als der eines Weißweinglases, wodurch der Wein atmen und sein volles Aroma und seinen vollen Geschmack entfalten kann. Das Rotweinglas ist unten breiter und verjüngt sich leicht nach oben, wodurch die Aromen des Weins konzentriert und zur Nase geleitet werden. Der Stiel des Glases ist lang und schlank. Dadurch kann das Glas gehalten werden, ohne den Wein zu erwärmen. Dieses Rotweinglas ist ein stilvolles und funktionales Glas, das speziell entwickelt wurde, um den Geschmack und das Aroma von Rotwein zu verbessern. Sein elegantes Design und die Liebe zum Detail machen es zu einer beliebten Wahl für Weinliebhaber und Gelegenheitstrinker gleichermaßen.') ) .slug( LocalizedStringDraft.presets @@ -80,7 +80,7 @@ const chiantiWineGlass = (): TProductDraftBuilder => KeyReferenceDraft.presets.taxCategory().key(standardTaxCategory.key!) ) .masterVariant( - ProductVariantDraft.presets.sampleDataGoodStore.chiantiWineGlass01() + ProductVariantDraft.presets.sampleDataB2CLifestyle.chiantiWineGlass01() ) .categories([ KeyReferenceDraft.presets.category().key(glasswareDraft.key!), diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/classic-beer-mug.spec.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/classic-beer-mug.spec.ts similarity index 98% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/classic-beer-mug.spec.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/classic-beer-mug.spec.ts index c79b11a46..348798ca4 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/classic-beer-mug.spec.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/classic-beer-mug.spec.ts @@ -65,7 +65,7 @@ describe(`with classicBeerMug preset`, () => { "w": 3606, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Classic_Beer_Mug-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Classic_Beer_Mug-1.1.jpeg", }, ], "key": undefined, @@ -212,7 +212,7 @@ describe(`with classicBeerMug preset`, () => { "width": 3606, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Classic_Beer_Mug-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Classic_Beer_Mug-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/classic-beer-mug.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/classic-beer-mug.ts similarity index 81% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/classic-beer-mug.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/classic-beer-mug.ts index 50a7ad514..adce7f27b 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/classic-beer-mug.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/classic-beer-mug.ts @@ -18,24 +18,24 @@ import { ProductVariantDraft } from '../../../../product-variant'; import * as ProductDraft from '../../../product-draft'; import type { TProductDraftBuilder } from '../../../types'; -const standardTaxCategory = TaxCategoryDraft.presets.sampleDataGoodStore +const standardTaxCategory = TaxCategoryDraft.presets.sampleDataB2CLifestyle .standardTaxCategory() .build(); const classicBeerMugProductTypeDraft = - ProductTypeDraft.presets.sampleDataGoodStore + ProductTypeDraft.presets.sampleDataB2CLifestyle .furnitureAndDecor() .build(); -const glasswareDraft = CategoryDraft.presets.sampleDataGoodStore +const glasswareDraft = CategoryDraft.presets.sampleDataB2CLifestyle .glassware() .build(); -const barAndGlasswareDraft = CategoryDraft.presets.sampleDataGoodStore +const barAndGlasswareDraft = CategoryDraft.presets.sampleDataB2CLifestyle .barAndGlassware() .build(); -const kitchenDraft = CategoryDraft.presets.sampleDataGoodStore +const kitchenDraft = CategoryDraft.presets.sampleDataB2CLifestyle .kitchen() .build(); @@ -53,15 +53,15 @@ const classicBeerMug = (): TProductDraftBuilder => .description( LocalizedStringDraft.presets .empty() - ['en-GB']( - "This Classic Beer Mug has a thick and sturdy handle that makes it easy to hold and prevents the drinker's hand from warming the beer. The mug is made of glass. This design allows the beer to settle and develop its full flavor and aroma. The thick walls of the mug help to insulate the beer and keep it cold for longer. The mug typically holds between 12 and 20 ounces of beer. The mug is easy to clean and maintain. It can be washed by hand or in a dishwasher, and should be dried thoroughly to prevent water spots or residue from forming." - ) - ['en-US']( - "This Classic Beer Mug has a thick and sturdy handle that makes it easy to hold and prevents the drinker's hand from warming the beer. The mug is made of glass. This design allows the beer to settle and develop its full flavor and aroma. The thick walls of the mug help to insulate the beer and keep it cold for longer. The mug typically holds between 12 and 20 ounces of beer. The mug is easy to clean and maintain. It can be washed by hand or in a dishwasher, and should be dried thoroughly to prevent water spots or residue from forming." - ) - ['de-DE']( - 'Dieser klassische Bierkrug hat einen robusten Griff, der das Halten erleichtert und verhindert, dass die Hand des Trinkers das Bier erwärmt. Als Material wird hochwertiges Glas eingesetzt. Durch dieses Design kann das Bier seinen vollen Geschmack und sein volles Aroma entfalten. Die robusten Wände des Krugs bilden eine Art Isolationsschicht und halten somit länger das Bier länger kalt. Der Becher fasst normalerweise zwischen 12 und 20 Unzen Bier. Der Becher ist leicht zu reinigen und zu pflegen. Es kann von Hand oder in der Spülmaschine gewaschen werden und sollte gründlich getrocknet werden, um Wasserflecken oder Rückstände zu vermeiden.' - ) + [ + 'en-GB' + ]("This Classic Beer Mug has a thick and sturdy handle that makes it easy to hold and prevents the drinker's hand from warming the beer. The mug is made of glass. This design allows the beer to settle and develop its full flavor and aroma. The thick walls of the mug help to insulate the beer and keep it cold for longer. The mug typically holds between 12 and 20 ounces of beer. The mug is easy to clean and maintain. It can be washed by hand or in a dishwasher, and should be dried thoroughly to prevent water spots or residue from forming.") + [ + 'en-US' + ]("This Classic Beer Mug has a thick and sturdy handle that makes it easy to hold and prevents the drinker's hand from warming the beer. The mug is made of glass. This design allows the beer to settle and develop its full flavor and aroma. The thick walls of the mug help to insulate the beer and keep it cold for longer. The mug typically holds between 12 and 20 ounces of beer. The mug is easy to clean and maintain. It can be washed by hand or in a dishwasher, and should be dried thoroughly to prevent water spots or residue from forming.") + [ + 'de-DE' + ]('Dieser klassische Bierkrug hat einen robusten Griff, der das Halten erleichtert und verhindert, dass die Hand des Trinkers das Bier erwärmt. Als Material wird hochwertiges Glas eingesetzt. Durch dieses Design kann das Bier seinen vollen Geschmack und sein volles Aroma entfalten. Die robusten Wände des Krugs bilden eine Art Isolationsschicht und halten somit länger das Bier länger kalt. Der Becher fasst normalerweise zwischen 12 und 20 Unzen Bier. Der Becher ist leicht zu reinigen und zu pflegen. Es kann von Hand oder in der Spülmaschine gewaschen werden und sollte gründlich getrocknet werden, um Wasserflecken oder Rückstände zu vermeiden.') ) .slug( LocalizedStringDraft.presets @@ -80,7 +80,7 @@ const classicBeerMug = (): TProductDraftBuilder => KeyReferenceDraft.presets.taxCategory().key(standardTaxCategory.key!) ) .masterVariant( - ProductVariantDraft.presets.sampleDataGoodStore.classicBeerMug01() + ProductVariantDraft.presets.sampleDataB2CLifestyle.classicBeerMug01() ) .categories([ KeyReferenceDraft.presets.category().key(glasswareDraft.key!), diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/classic-champagne-glasses.spec.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/classic-champagne-glasses.spec.ts similarity index 96% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/classic-champagne-glasses.spec.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/classic-champagne-glasses.spec.ts index 69a1aeafb..809e9f866 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/classic-champagne-glasses.spec.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/classic-champagne-glasses.spec.ts @@ -76,7 +76,7 @@ describe(`with classicChampagneGlasses preset`, () => { "w": 5468, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Classic_Champagne_Glasses-1.4.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Classic_Champagne_Glasses-1.4.jpeg", }, { "dimensions": { @@ -84,7 +84,7 @@ describe(`with classicChampagneGlasses preset`, () => { "w": 2571, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Classic_Champagne_Glasses-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Classic_Champagne_Glasses-1.1.jpeg", }, { "dimensions": { @@ -92,7 +92,7 @@ describe(`with classicChampagneGlasses preset`, () => { "w": 3643, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Classic_Champagne_Glasses-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Classic_Champagne_Glasses-1.2.jpeg", }, { "dimensions": { @@ -100,7 +100,7 @@ describe(`with classicChampagneGlasses preset`, () => { "w": 1659, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Classic_Champagne_Glasses-1.3.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Classic_Champagne_Glasses-1.3.jpeg", }, ], "key": undefined, @@ -251,7 +251,7 @@ describe(`with classicChampagneGlasses preset`, () => { "width": 5468, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Classic_Champagne_Glasses-1.4.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Classic_Champagne_Glasses-1.4.jpeg", }, { "dimensions": { @@ -259,7 +259,7 @@ describe(`with classicChampagneGlasses preset`, () => { "width": 2571, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Classic_Champagne_Glasses-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Classic_Champagne_Glasses-1.1.jpeg", }, { "dimensions": { @@ -267,7 +267,7 @@ describe(`with classicChampagneGlasses preset`, () => { "width": 3643, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Classic_Champagne_Glasses-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Classic_Champagne_Glasses-1.2.jpeg", }, { "dimensions": { @@ -275,7 +275,7 @@ describe(`with classicChampagneGlasses preset`, () => { "width": 1659, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Classic_Champagne_Glasses-1.3.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Classic_Champagne_Glasses-1.3.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/classic-champagne-glasses.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/classic-champagne-glasses.ts similarity index 88% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/classic-champagne-glasses.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/classic-champagne-glasses.ts index bb8e145db..2a5850a55 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/classic-champagne-glasses.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/classic-champagne-glasses.ts @@ -18,24 +18,24 @@ import { ProductVariantDraft } from '../../../../product-variant'; import * as ProductDraft from '../../../product-draft'; import type { TProductDraftBuilder } from '../../../types'; -const standardTaxCategory = TaxCategoryDraft.presets.sampleDataGoodStore +const standardTaxCategory = TaxCategoryDraft.presets.sampleDataB2CLifestyle .standardTaxCategory() .build(); const classicChampagneGlassesProductTypeDraft = - ProductTypeDraft.presets.sampleDataGoodStore + ProductTypeDraft.presets.sampleDataB2CLifestyle .furnitureAndDecor() .build(); -const glasswareDraft = CategoryDraft.presets.sampleDataGoodStore +const glasswareDraft = CategoryDraft.presets.sampleDataB2CLifestyle .glassware() .build(); -const barAndGlasswareDraft = CategoryDraft.presets.sampleDataGoodStore +const barAndGlasswareDraft = CategoryDraft.presets.sampleDataB2CLifestyle .barAndGlassware() .build(); -const kitchenDraft = CategoryDraft.presets.sampleDataGoodStore +const kitchenDraft = CategoryDraft.presets.sampleDataB2CLifestyle .kitchen() .build(); @@ -53,15 +53,15 @@ const classicChampagneGlasses = (): TProductDraftBuilder => .description( LocalizedStringDraft.presets .empty() - ['en-GB']( - "Classic champagne flutes are tall and slender stemware glasses that are designed specifically for serving champagne or other sparkling wines. They have a narrow and elongated bowl that tapers towards the top, which helps to preserve the carbonation and aroma of the wine. The stem of the flute is long and thin, which allows the drinker to hold the glass without warming the contents inside. This is important because champagne and other sparkling wines are typically served chilled and can lose their effervescence if they become too warm. The base of the flute is broad and sturdy, which provides stability and balance to the glass. The classic design of the champagne flute is elegant and timeless, making it a popular choice for formal occasions and celebrations. The glasses are made from high-quality crystal or glass, which gives them a clear and sparkling appearance. Some champagne flutes may also feature decorative etching or patterns on the bowl or stem, adding an extra touch of elegance to the design. Overall, classic champagne flutes are a stylish and elegant way to serve champagne and other sparkling wines. Their unique design and high-quality materials make them a popular choice for special occasions, such as weddings, anniversaries, or New Year's Eve celebrations." - ) - ['en-US']( - "Classic champagne flutes are tall and slender stemware glasses that are designed specifically for serving champagne or other sparkling wines. They have a narrow and elongated bowl that tapers towards the top, which helps to preserve the carbonation and aroma of the wine. The stem of the flute is long and thin, which allows the drinker to hold the glass without warming the contents inside. This is important because champagne and other sparkling wines are typically served chilled and can lose their effervescence if they become too warm. The base of the flute is broad and sturdy, which provides stability and balance to the glass. The classic design of the champagne flute is elegant and timeless, making it a popular choice for formal occasions and celebrations. The glasses are made from high-quality crystal or glass, which gives them a clear and sparkling appearance. Some champagne flutes may also feature decorative etching or patterns on the bowl or stem, adding an extra touch of elegance to the design. Overall, classic champagne flutes are a stylish and elegant way to serve champagne and other sparkling wines. Their unique design and high-quality materials make them a popular choice for special occasions, such as weddings, anniversaries, or New Year's Eve celebrations." - ) - ['de-DE']( - 'Klassische Champagnerflöten sind hohe und schlanke Stielgläser, die speziell zum Servieren von Champagner oder anderen Schaumweinen entwickelt wurden. Sie haben einen schmalen und länglichen Kelch, der sich nach oben hin verjüngt, wodurch die Kohlensäure und das Aroma des Weins erhalten bleiben. Der Stiel ist lang und dünn und verhindert das Erwärmen des Champagners durch Körperwärme. Dies ist wichtig, da Champagner und andere Schaumweine normalerweise gekühlt serviert werden und ihre Spritzigkeit verlieren können, wenn sie zu warm werden. Die Basis des Glases ist breit und robust, was dem Glas Stabilität und Gleichgewicht verleiht. Das klassische Design der Champagnerflöte ist elegant und zeitlos, was sie zu einer beliebten Wahl für formelle Anlässe und Feiern macht. Die Gläser sind aus hochwertigem Kristall oder Glas gefertigt, was ihnen ein klares und funkelndes Aussehen verleiht. Einige Champagnerflöten können auch dekorative Ätzungen oder Muster auf dem Kelch oder Stiel aufweisen, was dem Design einen zusätzlichen Hauch von Eleganz verleiht. Insgesamt sind klassische Champagnerflöten eine stilvolle und elegante Art, Champagner und andere Schaumweine zu servieren. Ihr einzigartiges Design und hochwertige Materialien machen sie zu einer beliebten Wahl für besondere Anlässe wie Hochzeiten, Jubiläen oder Silvesterfeiern.' - ) + [ + 'en-GB' + ]("Classic champagne flutes are tall and slender stemware glasses that are designed specifically for serving champagne or other sparkling wines. They have a narrow and elongated bowl that tapers towards the top, which helps to preserve the carbonation and aroma of the wine. The stem of the flute is long and thin, which allows the drinker to hold the glass without warming the contents inside. This is important because champagne and other sparkling wines are typically served chilled and can lose their effervescence if they become too warm. The base of the flute is broad and sturdy, which provides stability and balance to the glass. The classic design of the champagne flute is elegant and timeless, making it a popular choice for formal occasions and celebrations. The glasses are made from high-quality crystal or glass, which gives them a clear and sparkling appearance. Some champagne flutes may also feature decorative etching or patterns on the bowl or stem, adding an extra touch of elegance to the design. Overall, classic champagne flutes are a stylish and elegant way to serve champagne and other sparkling wines. Their unique design and high-quality materials make them a popular choice for special occasions, such as weddings, anniversaries, or New Year's Eve celebrations.") + [ + 'en-US' + ]("Classic champagne flutes are tall and slender stemware glasses that are designed specifically for serving champagne or other sparkling wines. They have a narrow and elongated bowl that tapers towards the top, which helps to preserve the carbonation and aroma of the wine. The stem of the flute is long and thin, which allows the drinker to hold the glass without warming the contents inside. This is important because champagne and other sparkling wines are typically served chilled and can lose their effervescence if they become too warm. The base of the flute is broad and sturdy, which provides stability and balance to the glass. The classic design of the champagne flute is elegant and timeless, making it a popular choice for formal occasions and celebrations. The glasses are made from high-quality crystal or glass, which gives them a clear and sparkling appearance. Some champagne flutes may also feature decorative etching or patterns on the bowl or stem, adding an extra touch of elegance to the design. Overall, classic champagne flutes are a stylish and elegant way to serve champagne and other sparkling wines. Their unique design and high-quality materials make them a popular choice for special occasions, such as weddings, anniversaries, or New Year's Eve celebrations.") + [ + 'de-DE' + ]('Klassische Champagnerflöten sind hohe und schlanke Stielgläser, die speziell zum Servieren von Champagner oder anderen Schaumweinen entwickelt wurden. Sie haben einen schmalen und länglichen Kelch, der sich nach oben hin verjüngt, wodurch die Kohlensäure und das Aroma des Weins erhalten bleiben. Der Stiel ist lang und dünn und verhindert das Erwärmen des Champagners durch Körperwärme. Dies ist wichtig, da Champagner und andere Schaumweine normalerweise gekühlt serviert werden und ihre Spritzigkeit verlieren können, wenn sie zu warm werden. Die Basis des Glases ist breit und robust, was dem Glas Stabilität und Gleichgewicht verleiht. Das klassische Design der Champagnerflöte ist elegant und zeitlos, was sie zu einer beliebten Wahl für formelle Anlässe und Feiern macht. Die Gläser sind aus hochwertigem Kristall oder Glas gefertigt, was ihnen ein klares und funkelndes Aussehen verleiht. Einige Champagnerflöten können auch dekorative Ätzungen oder Muster auf dem Kelch oder Stiel aufweisen, was dem Design einen zusätzlichen Hauch von Eleganz verleiht. Insgesamt sind klassische Champagnerflöten eine stilvolle und elegante Art, Champagner und andere Schaumweine zu servieren. Ihr einzigartiges Design und hochwertige Materialien machen sie zu einer beliebten Wahl für besondere Anlässe wie Hochzeiten, Jubiläen oder Silvesterfeiern.') ) .slug( LocalizedStringDraft.presets @@ -80,7 +80,7 @@ const classicChampagneGlasses = (): TProductDraftBuilder => KeyReferenceDraft.presets.taxCategory().key(standardTaxCategory.key!) ) .masterVariant( - ProductVariantDraft.presets.sampleDataGoodStore.classicChampagneGlasses01() + ProductVariantDraft.presets.sampleDataB2CLifestyle.classicChampagneGlasses01() ) .categories([ KeyReferenceDraft.presets.category().key(glasswareDraft.key!), diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/classic-coffee-cup.spec.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/classic-coffee-cup.spec.ts similarity index 98% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/classic-coffee-cup.spec.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/classic-coffee-cup.spec.ts index 9caa78647..c85b1ad15 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/classic-coffee-cup.spec.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/classic-coffee-cup.spec.ts @@ -60,7 +60,7 @@ describe(`with classicCoffeeCup preset`, () => { "w": 6000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Classic_Coffee_Cup-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Classic_Coffee_Cup-1.1.jpeg", }, { "dimensions": { @@ -68,7 +68,7 @@ describe(`with classicCoffeeCup preset`, () => { "w": 4153, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Classic_Coffee_Cup-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Classic_Coffee_Cup-1.2.jpeg", }, ], "key": undefined, @@ -211,7 +211,7 @@ describe(`with classicCoffeeCup preset`, () => { "width": 6000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Classic_Coffee_Cup-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Classic_Coffee_Cup-1.1.jpeg", }, { "dimensions": { @@ -219,7 +219,7 @@ describe(`with classicCoffeeCup preset`, () => { "width": 4153, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Classic_Coffee_Cup-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Classic_Coffee_Cup-1.2.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/classic-coffee-cup.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/classic-coffee-cup.ts similarity index 84% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/classic-coffee-cup.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/classic-coffee-cup.ts index 81bb3c162..103a3c892 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/classic-coffee-cup.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/classic-coffee-cup.ts @@ -18,24 +18,24 @@ import { ProductVariantDraft } from '../../../../product-variant'; import * as ProductDraft from '../../../product-draft'; import type { TProductDraftBuilder } from '../../../types'; -const standardTaxCategory = TaxCategoryDraft.presets.sampleDataGoodStore +const standardTaxCategory = TaxCategoryDraft.presets.sampleDataB2CLifestyle .standardTaxCategory() .build(); const classicCoffeeCupProductTypeDraft = - ProductTypeDraft.presets.sampleDataGoodStore + ProductTypeDraft.presets.sampleDataB2CLifestyle .furnitureAndDecor() .build(); -const barAndGlasswareDraft = CategoryDraft.presets.sampleDataGoodStore +const barAndGlasswareDraft = CategoryDraft.presets.sampleDataB2CLifestyle .barAndGlassware() .build(); -const glasswareDraft = CategoryDraft.presets.sampleDataGoodStore +const glasswareDraft = CategoryDraft.presets.sampleDataB2CLifestyle .glassware() .build(); -const kitchenDraft = CategoryDraft.presets.sampleDataGoodStore +const kitchenDraft = CategoryDraft.presets.sampleDataB2CLifestyle .kitchen() .build(); @@ -53,15 +53,15 @@ const classicCoffeeCup = (): TProductDraftBuilder => .description( LocalizedStringDraft.presets .empty() - ['en-GB']( - 'The Classic Coffee Cup is a classic drinking vessel that can be used to serve coffee in formal settings. The cup is made of ceramic or porcelain and has a cylindrical shape with a handle on one side. It may be plain in design and has a capacity of around 6 to 8 ounces. The saucer is a small plate that is round and is designed to hold the coffee cup when it is not in use. It is made of the same material as the cup. The saucer has a rim or edge that is slightly raised to help prevent spills. When serving coffee in a cup with a saucer, it is common to also provide a small spoon for stirring the coffee and adding sugar or cream. Overall, a coffee cup with a saucer is a classic and elegant way to enjoy a cup of coffee, and is often associated with sophistication and refinement.' - ) - ['en-US']( - 'The Classic Coffee Cup is a classic drinking vessel that can be used to serve coffee in formal settings. The cup is made of ceramic or porcelain and has a cylindrical shape with a handle on one side. It may be plain in design and has a capacity of around 6 to 8 ounces. The saucer is a small plate that is round and is designed to hold the coffee cup when it is not in use. It is made of the same material as the cup. The saucer has a rim or edge that is slightly raised to help prevent spills. When serving coffee in a cup with a saucer, it is common to also provide a small spoon for stirring the coffee and adding sugar or cream. Overall, a coffee cup with a saucer is a classic and elegant way to enjoy a cup of coffee, and is often associated with sophistication and refinement.' - ) - ['de-DE']( - 'Die Classic Coffee Cup ist ein klassisches Trinkgefäß, das zum Servieren von Kaffee in formellen Umgebungen verwendet werden kann. Die Tasse besteht aus Keramik oder Porzellan und hat eine zylindrische Form mit einem Henkel an einer Seite. Es kann schlicht im Design sein und hat eine Kapazität von etwa 6 bis 8 Unzen. Die Untertasse ist ein kleiner Teller, der rund ist und dazu dient, die Kaffeetasse zu halten, wenn sie nicht verwendet wird. Es besteht aus dem gleichen Material wie die Tasse. Die Untertasse hat einen Rand oder Rand, der leicht erhöht ist, um ein Verschütten zu verhindern. Beim Servieren von Kaffee in einer Tasse mit Untertasse ist es üblich, auch einen kleinen Löffel zum Umrühren des Kaffees und zum Hinzufügen von Zucker oder Sahne bereitzustellen. Insgesamt ist eine Kaffeetasse mit Untertasse eine klassische und elegante Art, eine Tasse Kaffee zu genießen, und wird oft mit Raffinesse und Raffinesse in Verbindung gebracht.' - ) + [ + 'en-GB' + ]('The Classic Coffee Cup is a classic drinking vessel that can be used to serve coffee in formal settings. The cup is made of ceramic or porcelain and has a cylindrical shape with a handle on one side. It may be plain in design and has a capacity of around 6 to 8 ounces. The saucer is a small plate that is round and is designed to hold the coffee cup when it is not in use. It is made of the same material as the cup. The saucer has a rim or edge that is slightly raised to help prevent spills. When serving coffee in a cup with a saucer, it is common to also provide a small spoon for stirring the coffee and adding sugar or cream. Overall, a coffee cup with a saucer is a classic and elegant way to enjoy a cup of coffee, and is often associated with sophistication and refinement.') + [ + 'en-US' + ]('The Classic Coffee Cup is a classic drinking vessel that can be used to serve coffee in formal settings. The cup is made of ceramic or porcelain and has a cylindrical shape with a handle on one side. It may be plain in design and has a capacity of around 6 to 8 ounces. The saucer is a small plate that is round and is designed to hold the coffee cup when it is not in use. It is made of the same material as the cup. The saucer has a rim or edge that is slightly raised to help prevent spills. When serving coffee in a cup with a saucer, it is common to also provide a small spoon for stirring the coffee and adding sugar or cream. Overall, a coffee cup with a saucer is a classic and elegant way to enjoy a cup of coffee, and is often associated with sophistication and refinement.') + [ + 'de-DE' + ]('Die Classic Coffee Cup ist ein klassisches Trinkgefäß, das zum Servieren von Kaffee in formellen Umgebungen verwendet werden kann. Die Tasse besteht aus Keramik oder Porzellan und hat eine zylindrische Form mit einem Henkel an einer Seite. Es kann schlicht im Design sein und hat eine Kapazität von etwa 6 bis 8 Unzen. Die Untertasse ist ein kleiner Teller, der rund ist und dazu dient, die Kaffeetasse zu halten, wenn sie nicht verwendet wird. Es besteht aus dem gleichen Material wie die Tasse. Die Untertasse hat einen Rand oder Rand, der leicht erhöht ist, um ein Verschütten zu verhindern. Beim Servieren von Kaffee in einer Tasse mit Untertasse ist es üblich, auch einen kleinen Löffel zum Umrühren des Kaffees und zum Hinzufügen von Zucker oder Sahne bereitzustellen. Insgesamt ist eine Kaffeetasse mit Untertasse eine klassische und elegante Art, eine Tasse Kaffee zu genießen, und wird oft mit Raffinesse und Raffinesse in Verbindung gebracht.') ) .slug( LocalizedStringDraft.presets @@ -80,7 +80,7 @@ const classicCoffeeCup = (): TProductDraftBuilder => KeyReferenceDraft.presets.taxCategory().key(standardTaxCategory.key!) ) .masterVariant( - ProductVariantDraft.presets.sampleDataGoodStore.classicCoffeeCup01() + ProductVariantDraft.presets.sampleDataB2CLifestyle.classicCoffeeCup01() ) .categories([ KeyReferenceDraft.presets.category().key(barAndGlasswareDraft.key!), diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/classic-serving-tray.spec.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/classic-serving-tray.spec.ts similarity index 98% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/classic-serving-tray.spec.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/classic-serving-tray.spec.ts index 69429e06c..a1ce58410 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/classic-serving-tray.spec.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/classic-serving-tray.spec.ts @@ -62,7 +62,7 @@ describe(`with classicServingTray preset`, () => { "w": 4000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Classic_Serving_Tray-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Classic_Serving_Tray-1.1.jpeg", }, { "dimensions": { @@ -70,7 +70,7 @@ describe(`with classicServingTray preset`, () => { "w": 6240, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Classic_Serving_Tray-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Classic_Serving_Tray-1.2.jpeg", }, ], "key": undefined, @@ -217,7 +217,7 @@ describe(`with classicServingTray preset`, () => { "width": 4000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Classic_Serving_Tray-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Classic_Serving_Tray-1.1.jpeg", }, { "dimensions": { @@ -225,7 +225,7 @@ describe(`with classicServingTray preset`, () => { "width": 6240, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Classic_Serving_Tray-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Classic_Serving_Tray-1.2.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/classic-serving-tray.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/classic-serving-tray.ts similarity index 85% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/classic-serving-tray.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/classic-serving-tray.ts index 89c7e27d0..99b92ce1b 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/classic-serving-tray.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/classic-serving-tray.ts @@ -18,28 +18,28 @@ import { ProductVariantDraft } from '../../../../product-variant'; import * as ProductDraft from '../../../product-draft'; import type { TProductDraftBuilder } from '../../../types'; -const standardTaxCategory = TaxCategoryDraft.presets.sampleDataGoodStore +const standardTaxCategory = TaxCategoryDraft.presets.sampleDataB2CLifestyle .standardTaxCategory() .build(); const classicServingTrayProductTypeDraft = - ProductTypeDraft.presets.sampleDataGoodStore + ProductTypeDraft.presets.sampleDataB2CLifestyle .furnitureAndDecor() .build(); -const servingPlattersDraft = CategoryDraft.presets.sampleDataGoodStore +const servingPlattersDraft = CategoryDraft.presets.sampleDataB2CLifestyle .servingPlatters() .build(); -const servewareDraft = CategoryDraft.presets.sampleDataGoodStore +const servewareDraft = CategoryDraft.presets.sampleDataB2CLifestyle .serveware() .build(); -const dinnerwareDraft = CategoryDraft.presets.sampleDataGoodStore +const dinnerwareDraft = CategoryDraft.presets.sampleDataB2CLifestyle .dinnerware() .build(); -const kitchenDraft = CategoryDraft.presets.sampleDataGoodStore +const kitchenDraft = CategoryDraft.presets.sampleDataB2CLifestyle .kitchen() .build(); @@ -57,15 +57,15 @@ const classicServingTray = (): TProductDraftBuilder => .description( LocalizedStringDraft.presets .empty() - ['en-GB']( - 'This Classic Serving Tray is a versatile and functional item that can be used in a variety of settings. The tray is rectangular, with raised edges and handles on either side, making it easy to carry and transport. This Classic Serving Tray features a simple and timeless design, with clean lines and a minimalist aesthetic. It can be used for a variety of purposes, such as carrying drinks and appetizers, serving breakfast in bed, or displaying decorative items. To clean, it is recommended to wash it by hand with a mild detergent, using a soft cloth or sponge. Harsh cleaning agents or abrasives should be avoided, as they can damage the surface of the tray. Overall, a classic serving tray is a practical and stylish item that adds a touch of sophistication to any setting. Its timeless design and versatility make it a popular choice for serving and displaying food, drinks, and other items.' - ) - ['en-US']( - 'This Classic Serving Tray is a versatile and functional item that can be used in a variety of settings. The tray is rectangular, with raised edges and handles on either side, making it easy to carry and transport. This Classic Serving Tray features a simple and timeless design, with clean lines and a minimalist aesthetic. It can be used for a variety of purposes, such as carrying drinks and appetizers, serving breakfast in bed, or displaying decorative items. To clean, it is recommended to wash it by hand with a mild detergent, using a soft cloth or sponge. Harsh cleaning agents or abrasives should be avoided, as they can damage the surface of the tray. Overall, a classic serving tray is a practical and stylish item that adds a touch of sophistication to any setting. Its timeless design and versatility make it a popular choice for serving and displaying food, drinks, and other items.' - ) - ['de-DE']( - 'Dieses klassische Serviertablett ist ein vielseitiger und funktionaler Artikel. Das Tablett ist rechteckig, mit erhöhten Kanten und Griffen auf beiden Seiten, wodurch es leicht zu tragen und zu transportieren ist. Dieses klassische Serviertablett zeichnet sich durch ein einfaches und zeitloses Design mit klaren Linien und einer minimalistischen Ästhetik aus. Es kann für eine Vielzahl von Zwecken verwendet werden, z. B. zum Transport von Getränken und Häppchen, zum Servieren des Frühstücks am Bett oder zum Präsentieren von Dekorationsgegenständen. Zur Reinigung wird empfohlen, es mit einem milden Reinigungsmittel und einem weichen Tuch oder Schwamm von Hand zu waschen. Scharfe Reinigungsmittel oder Scheuermittel sollten vermieden werden, da sie die Oberfläche des Tabletts beschädigen können. Zusammengefasst handelt es sich um ein klassisches Serviertablett mit praktischen und stilvollen Elementen, welches jeder Umgebung einen Hauch von Raffinesse verleiht. Sein zeitloses Design und seine Vielseitigkeit machen es zu einer beliebten Wahl zum Servieren und Präsentieren von Speisen, Getränken und anderen Gegenständen.' - ) + [ + 'en-GB' + ]('This Classic Serving Tray is a versatile and functional item that can be used in a variety of settings. The tray is rectangular, with raised edges and handles on either side, making it easy to carry and transport. This Classic Serving Tray features a simple and timeless design, with clean lines and a minimalist aesthetic. It can be used for a variety of purposes, such as carrying drinks and appetizers, serving breakfast in bed, or displaying decorative items. To clean, it is recommended to wash it by hand with a mild detergent, using a soft cloth or sponge. Harsh cleaning agents or abrasives should be avoided, as they can damage the surface of the tray. Overall, a classic serving tray is a practical and stylish item that adds a touch of sophistication to any setting. Its timeless design and versatility make it a popular choice for serving and displaying food, drinks, and other items.') + [ + 'en-US' + ]('This Classic Serving Tray is a versatile and functional item that can be used in a variety of settings. The tray is rectangular, with raised edges and handles on either side, making it easy to carry and transport. This Classic Serving Tray features a simple and timeless design, with clean lines and a minimalist aesthetic. It can be used for a variety of purposes, such as carrying drinks and appetizers, serving breakfast in bed, or displaying decorative items. To clean, it is recommended to wash it by hand with a mild detergent, using a soft cloth or sponge. Harsh cleaning agents or abrasives should be avoided, as they can damage the surface of the tray. Overall, a classic serving tray is a practical and stylish item that adds a touch of sophistication to any setting. Its timeless design and versatility make it a popular choice for serving and displaying food, drinks, and other items.') + [ + 'de-DE' + ]('Dieses klassische Serviertablett ist ein vielseitiger und funktionaler Artikel. Das Tablett ist rechteckig, mit erhöhten Kanten und Griffen auf beiden Seiten, wodurch es leicht zu tragen und zu transportieren ist. Dieses klassische Serviertablett zeichnet sich durch ein einfaches und zeitloses Design mit klaren Linien und einer minimalistischen Ästhetik aus. Es kann für eine Vielzahl von Zwecken verwendet werden, z. B. zum Transport von Getränken und Häppchen, zum Servieren des Frühstücks am Bett oder zum Präsentieren von Dekorationsgegenständen. Zur Reinigung wird empfohlen, es mit einem milden Reinigungsmittel und einem weichen Tuch oder Schwamm von Hand zu waschen. Scharfe Reinigungsmittel oder Scheuermittel sollten vermieden werden, da sie die Oberfläche des Tabletts beschädigen können. Zusammengefasst handelt es sich um ein klassisches Serviertablett mit praktischen und stilvollen Elementen, welches jeder Umgebung einen Hauch von Raffinesse verleiht. Sein zeitloses Design und seine Vielseitigkeit machen es zu einer beliebten Wahl zum Servieren und Präsentieren von Speisen, Getränken und anderen Gegenständen.') ) .slug( LocalizedStringDraft.presets @@ -84,7 +84,7 @@ const classicServingTray = (): TProductDraftBuilder => KeyReferenceDraft.presets.taxCategory().key(standardTaxCategory.key!) ) .masterVariant( - ProductVariantDraft.presets.sampleDataGoodStore.classicServingTray01() + ProductVariantDraft.presets.sampleDataB2CLifestyle.classicServingTray01() ) .categories([ KeyReferenceDraft.presets.category().key(servingPlattersDraft.key!), diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/clink-champagne-glass.spec.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/clink-champagne-glass.spec.ts similarity index 99% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/clink-champagne-glass.spec.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/clink-champagne-glass.spec.ts index 8816318d4..09dcc2208 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/clink-champagne-glass.spec.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/clink-champagne-glass.spec.ts @@ -66,7 +66,7 @@ describe(`with clinkChampagneGlass preset`, () => { "w": 3000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Clink_Champagne_Glass-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Clink_Champagne_Glass-1.1.jpeg", }, ], "key": undefined, @@ -213,7 +213,7 @@ describe(`with clinkChampagneGlass preset`, () => { "width": 3000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Clink_Champagne_Glass-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Clink_Champagne_Glass-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/clink-champagne-glass.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/clink-champagne-glass.ts similarity index 88% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/clink-champagne-glass.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/clink-champagne-glass.ts index 127d44653..5d5f798bc 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/clink-champagne-glass.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/clink-champagne-glass.ts @@ -18,24 +18,24 @@ import { ProductVariantDraft } from '../../../../product-variant'; import * as ProductDraft from '../../../product-draft'; import type { TProductDraftBuilder } from '../../../types'; -const standardTaxCategory = TaxCategoryDraft.presets.sampleDataGoodStore +const standardTaxCategory = TaxCategoryDraft.presets.sampleDataB2CLifestyle .standardTaxCategory() .build(); const clinkChampagneGlassProductTypeDraft = - ProductTypeDraft.presets.sampleDataGoodStore + ProductTypeDraft.presets.sampleDataB2CLifestyle .furnitureAndDecor() .build(); -const glasswareDraft = CategoryDraft.presets.sampleDataGoodStore +const glasswareDraft = CategoryDraft.presets.sampleDataB2CLifestyle .glassware() .build(); -const barAndGlasswareDraft = CategoryDraft.presets.sampleDataGoodStore +const barAndGlasswareDraft = CategoryDraft.presets.sampleDataB2CLifestyle .barAndGlassware() .build(); -const kitchenDraft = CategoryDraft.presets.sampleDataGoodStore +const kitchenDraft = CategoryDraft.presets.sampleDataB2CLifestyle .kitchen() .build(); @@ -53,15 +53,15 @@ const clinkChampagneGlass = (): TProductDraftBuilder => .description( LocalizedStringDraft.presets .empty() - ['en-GB']( - "A tapered champagne glass, also known as a champagne flute, is a type of stemware that is specifically designed to enhance the experience of drinking champagne or sparkling wine. The glass has a tall, narrow bowl that tapers towards the top, allowing the drinker to see the bubbles rising to the surface of the drink. The tall, slender stem of the glass helps to keep the drinker's hand away from the bowl, preventing the champagne from being warmed by body heat. The base of the glass is typically wide and flat, providing stability and balance. The design of the tapered champagne glass is intended to enhance the aroma and flavor of the drink. The narrow bowl concentrates the bubbles and the aroma of the champagne, directing it towards the drinker's nose. This allows the drinker to fully appreciate the aroma and flavor of the champagne. The tapered champagne glass is typically used for serving champagne or other sparkling wines, but may also be used for other carbonated drinks or cocktails. It is easy to clean and maintain, and can be washed by hand or in a dishwasher. Overall, the tapered champagne glass is a stylish and elegant piece of stemware that is specifically designed to enhance the experience of drinking champagne or sparkling wine. Its unique design and attention to detail make it a popular choice for special occasions and celebrations." - ) - ['en-US']( - "A tapered champagne glass, also known as a champagne flute, is a type of stemware that is specifically designed to enhance the experience of drinking champagne or sparkling wine. The glass has a tall, narrow bowl that tapers towards the top, allowing the drinker to see the bubbles rising to the surface of the drink. The tall, slender stem of the glass helps to keep the drinker's hand away from the bowl, preventing the champagne from being warmed by body heat. The base of the glass is typically wide and flat, providing stability and balance. The design of the tapered champagne glass is intended to enhance the aroma and flavor of the drink. The narrow bowl concentrates the bubbles and the aroma of the champagne, directing it towards the drinker's nose. This allows the drinker to fully appreciate the aroma and flavor of the champagne. The tapered champagne glass is typically used for serving champagne or other sparkling wines, but may also be used for other carbonated drinks or cocktails. It is easy to clean and maintain, and can be washed by hand or in a dishwasher. Overall, the tapered champagne glass is a stylish and elegant piece of stemware that is specifically designed to enhance the experience of drinking champagne or sparkling wine. Its unique design and attention to detail make it a popular choice for special occasions and celebrations." - ) - ['de-DE']( - 'Ein konisches Champagnerglas, auch als Champagnerflöte bekannt, ist ein Glas, das speziell entwickelt wurde, um das Erlebnis beim Trinken von Champagner oder Sekt zu verbessern. Das Glas hat einen hohen, schmalen Kelch, der sich nach oben hin verjüngt - schauen Sie zu wie sich die Bläschen in Ihrem Glas tanzen. Der hohe, schlanke Stiel des Glases verhindert das Aufwärmen des Getränks durch Körperwärme. Die Basis des Glases ist breit und flach und sorgt für Stabilität und Balance. Das Design des konisch zulaufenden Sektglases soll das Aroma und den Geschmack des Getränks verstärken. Der schmale Kelch konzentriert die Bläschen und das Aroma des Champagner. Dadurch können Sie den Geschmack des Champagners voll und ganz genießen. Das konische Sektglas wird typischerweise zum Servieren von Sekt oder anderen Schaumweinen verwendet, kann aber auch für andere kohlensäurehaltige Getränke oder Cocktails verwendet werden. Es ist leicht zu reinigen und zu pflegen und kann von Hand oder in der Spülmaschine gewaschen werden. Insgesamt ist das konische Champagnerglas ein stilvolles und elegantes Stielglas, das speziell entwickelt wurde, um das Erlebnis beim Trinken von Champagner oder Sekt zu verbessern. Sein einzigartiges Design und die Liebe zum Detail machen es zu einer beliebten Wahl für besondere Anlässe und Feiern.' - ) + [ + 'en-GB' + ]("A tapered champagne glass, also known as a champagne flute, is a type of stemware that is specifically designed to enhance the experience of drinking champagne or sparkling wine. The glass has a tall, narrow bowl that tapers towards the top, allowing the drinker to see the bubbles rising to the surface of the drink. The tall, slender stem of the glass helps to keep the drinker's hand away from the bowl, preventing the champagne from being warmed by body heat. The base of the glass is typically wide and flat, providing stability and balance. The design of the tapered champagne glass is intended to enhance the aroma and flavor of the drink. The narrow bowl concentrates the bubbles and the aroma of the champagne, directing it towards the drinker's nose. This allows the drinker to fully appreciate the aroma and flavor of the champagne. The tapered champagne glass is typically used for serving champagne or other sparkling wines, but may also be used for other carbonated drinks or cocktails. It is easy to clean and maintain, and can be washed by hand or in a dishwasher. Overall, the tapered champagne glass is a stylish and elegant piece of stemware that is specifically designed to enhance the experience of drinking champagne or sparkling wine. Its unique design and attention to detail make it a popular choice for special occasions and celebrations.") + [ + 'en-US' + ]("A tapered champagne glass, also known as a champagne flute, is a type of stemware that is specifically designed to enhance the experience of drinking champagne or sparkling wine. The glass has a tall, narrow bowl that tapers towards the top, allowing the drinker to see the bubbles rising to the surface of the drink. The tall, slender stem of the glass helps to keep the drinker's hand away from the bowl, preventing the champagne from being warmed by body heat. The base of the glass is typically wide and flat, providing stability and balance. The design of the tapered champagne glass is intended to enhance the aroma and flavor of the drink. The narrow bowl concentrates the bubbles and the aroma of the champagne, directing it towards the drinker's nose. This allows the drinker to fully appreciate the aroma and flavor of the champagne. The tapered champagne glass is typically used for serving champagne or other sparkling wines, but may also be used for other carbonated drinks or cocktails. It is easy to clean and maintain, and can be washed by hand or in a dishwasher. Overall, the tapered champagne glass is a stylish and elegant piece of stemware that is specifically designed to enhance the experience of drinking champagne or sparkling wine. Its unique design and attention to detail make it a popular choice for special occasions and celebrations.") + [ + 'de-DE' + ]('Ein konisches Champagnerglas, auch als Champagnerflöte bekannt, ist ein Glas, das speziell entwickelt wurde, um das Erlebnis beim Trinken von Champagner oder Sekt zu verbessern. Das Glas hat einen hohen, schmalen Kelch, der sich nach oben hin verjüngt - schauen Sie zu wie sich die Bläschen in Ihrem Glas tanzen. Der hohe, schlanke Stiel des Glases verhindert das Aufwärmen des Getränks durch Körperwärme. Die Basis des Glases ist breit und flach und sorgt für Stabilität und Balance. Das Design des konisch zulaufenden Sektglases soll das Aroma und den Geschmack des Getränks verstärken. Der schmale Kelch konzentriert die Bläschen und das Aroma des Champagner. Dadurch können Sie den Geschmack des Champagners voll und ganz genießen. Das konische Sektglas wird typischerweise zum Servieren von Sekt oder anderen Schaumweinen verwendet, kann aber auch für andere kohlensäurehaltige Getränke oder Cocktails verwendet werden. Es ist leicht zu reinigen und zu pflegen und kann von Hand oder in der Spülmaschine gewaschen werden. Insgesamt ist das konische Champagnerglas ein stilvolles und elegantes Stielglas, das speziell entwickelt wurde, um das Erlebnis beim Trinken von Champagner oder Sekt zu verbessern. Sein einzigartiges Design und die Liebe zum Detail machen es zu einer beliebten Wahl für besondere Anlässe und Feiern.') ) .slug( LocalizedStringDraft.presets @@ -80,7 +80,7 @@ const clinkChampagneGlass = (): TProductDraftBuilder => KeyReferenceDraft.presets.taxCategory().key(standardTaxCategory.key!) ) .masterVariant( - ProductVariantDraft.presets.sampleDataGoodStore.clinkChampagneGlass01() + ProductVariantDraft.presets.sampleDataB2CLifestyle.clinkChampagneGlass01() ) .categories([ KeyReferenceDraft.presets.category().key(glasswareDraft.key!), diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/cloud-queen-bed.spec.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/cloud-queen-bed.spec.ts similarity index 98% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/cloud-queen-bed.spec.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/cloud-queen-bed.spec.ts index 6782457c8..4e3f485a1 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/cloud-queen-bed.spec.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/cloud-queen-bed.spec.ts @@ -57,7 +57,7 @@ describe(`with cloudQueenBed preset`, () => { "w": 5000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Cloud_Queen_Bed-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Cloud_Queen_Bed-1.1.jpeg", }, { "dimensions": { @@ -65,7 +65,7 @@ describe(`with cloudQueenBed preset`, () => { "w": 5000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Cloud_Queen_Bed-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Cloud_Queen_Bed-1.2.jpeg", }, ], "key": undefined, @@ -208,7 +208,7 @@ describe(`with cloudQueenBed preset`, () => { "width": 5000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Cloud_Queen_Bed-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Cloud_Queen_Bed-1.1.jpeg", }, { "dimensions": { @@ -216,7 +216,7 @@ describe(`with cloudQueenBed preset`, () => { "width": 5000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Cloud_Queen_Bed-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Cloud_Queen_Bed-1.2.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/cloud-queen-bed.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/cloud-queen-bed.ts similarity index 85% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/cloud-queen-bed.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/cloud-queen-bed.ts index 1ef0fa68d..d8f8c99b8 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/cloud-queen-bed.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/cloud-queen-bed.ts @@ -18,24 +18,24 @@ import { ProductVariantDraft } from '../../../../product-variant'; import * as ProductDraft from '../../../product-draft'; import type { TProductDraftBuilder } from '../../../types'; -const standardTaxCategory = TaxCategoryDraft.presets.sampleDataGoodStore +const standardTaxCategory = TaxCategoryDraft.presets.sampleDataB2CLifestyle .standardTaxCategory() .build(); const cloudQueenBedProductTypeDraft = - ProductTypeDraft.presets.sampleDataGoodStore + ProductTypeDraft.presets.sampleDataB2CLifestyle .furnitureAndDecor() .build(); -const bedsDraft = CategoryDraft.presets.sampleDataGoodStore +const bedsDraft = CategoryDraft.presets.sampleDataB2CLifestyle .beds() .build(); -const bedroomFurnitureDraft = CategoryDraft.presets.sampleDataGoodStore +const bedroomFurnitureDraft = CategoryDraft.presets.sampleDataB2CLifestyle .bedroomFurniture() .build(); -const furnitureDraft = CategoryDraft.presets.sampleDataGoodStore +const furnitureDraft = CategoryDraft.presets.sampleDataB2CLifestyle .furniture() .build(); @@ -53,15 +53,15 @@ const cloudQueenBed = (): TProductDraftBuilder => .description( LocalizedStringDraft.presets .empty() - ['en-GB']( - 'A queen-sized bed with fabric upholstery and a pillow-like headboard is a comfortable and elegant piece of bedroom furniture. The bed frame is rectangular and large enough to accommodate a standard queen-sized mattress. The fabric upholstery covers the entire frame, creating a smooth and comfortable surface to lean against. The headboard is the centerpiece of the bed, with a soft and plush surface that resembles a pillow. It is rectangular in shape and attached to the top of the bed frame, providing a comfortable backrest for reading or watching TV in bed. The headboard may be upholstered in the same fabric as the bed frame or in a complementary color or pattern. Overall, this bed combines comfort and style, making it a perfect addition to any bedroom.' - ) - ['en-US']( - 'A queen-sized bed with fabric upholstery and a pillow-like headboard is a comfortable and elegant piece of bedroom furniture. The bed frame is rectangular and large enough to accommodate a standard queen-sized mattress. The fabric upholstery covers the entire frame, creating a smooth and comfortable surface to lean against. The headboard is the centerpiece of the bed, with a soft and plush surface that resembles a pillow. It is rectangular in shape and attached to the top of the bed frame, providing a comfortable backrest for reading or watching TV in bed. The headboard may be upholstered in the same fabric as the bed frame or in a complementary color or pattern. Overall, this bed combines comfort and style, making it a perfect addition to any bedroom.' - ) - ['de-DE']( - 'Ein Queensize-Bett mit Stoffbezug - auch auf dem Kopfteil - ist ein komfortables und elegantes Schlafzimmermöbel. Der Bettrahmen ist rechteckig und groß genug, um eine Standardmatratze in Queen-Size-Größe aufzunehmen. Die Stoffpolsterung bedeckt den gesamten Rahmen und schafft eine glatte und bequeme Oberfläche zum Anlehnen. Das Kopfteil ist das Herzstück des Bettes, mit einer weichen und plüschigen Oberfläche, die einem Kissen ähnelt. Es hat eine rechteckige Form und ist oben am Bettrahmen befestigt und bietet eine bequeme Rückenlehne zum Lesen oder Fernsehen im Bett. Das Kopfteil kann mit dem gleichen Stoff wie der Bettrahmen oder in einer komplementären Farbe oder einem Muster bezogen werden. Insgesamt vereint dieses Bett Komfort und Stil und ist somit eine perfekte Ergänzung für jedes Schlafzimmer.' - ) + [ + 'en-GB' + ]('A queen-sized bed with fabric upholstery and a pillow-like headboard is a comfortable and elegant piece of bedroom furniture. The bed frame is rectangular and large enough to accommodate a standard queen-sized mattress. The fabric upholstery covers the entire frame, creating a smooth and comfortable surface to lean against. The headboard is the centerpiece of the bed, with a soft and plush surface that resembles a pillow. It is rectangular in shape and attached to the top of the bed frame, providing a comfortable backrest for reading or watching TV in bed. The headboard may be upholstered in the same fabric as the bed frame or in a complementary color or pattern. Overall, this bed combines comfort and style, making it a perfect addition to any bedroom.') + [ + 'en-US' + ]('A queen-sized bed with fabric upholstery and a pillow-like headboard is a comfortable and elegant piece of bedroom furniture. The bed frame is rectangular and large enough to accommodate a standard queen-sized mattress. The fabric upholstery covers the entire frame, creating a smooth and comfortable surface to lean against. The headboard is the centerpiece of the bed, with a soft and plush surface that resembles a pillow. It is rectangular in shape and attached to the top of the bed frame, providing a comfortable backrest for reading or watching TV in bed. The headboard may be upholstered in the same fabric as the bed frame or in a complementary color or pattern. Overall, this bed combines comfort and style, making it a perfect addition to any bedroom.') + [ + 'de-DE' + ]('Ein Queensize-Bett mit Stoffbezug - auch auf dem Kopfteil - ist ein komfortables und elegantes Schlafzimmermöbel. Der Bettrahmen ist rechteckig und groß genug, um eine Standardmatratze in Queen-Size-Größe aufzunehmen. Die Stoffpolsterung bedeckt den gesamten Rahmen und schafft eine glatte und bequeme Oberfläche zum Anlehnen. Das Kopfteil ist das Herzstück des Bettes, mit einer weichen und plüschigen Oberfläche, die einem Kissen ähnelt. Es hat eine rechteckige Form und ist oben am Bettrahmen befestigt und bietet eine bequeme Rückenlehne zum Lesen oder Fernsehen im Bett. Das Kopfteil kann mit dem gleichen Stoff wie der Bettrahmen oder in einer komplementären Farbe oder einem Muster bezogen werden. Insgesamt vereint dieses Bett Komfort und Stil und ist somit eine perfekte Ergänzung für jedes Schlafzimmer.') ) .slug( LocalizedStringDraft.presets @@ -80,7 +80,7 @@ const cloudQueenBed = (): TProductDraftBuilder => KeyReferenceDraft.presets.taxCategory().key(standardTaxCategory.key!) ) .masterVariant( - ProductVariantDraft.presets.sampleDataGoodStore.cloudQueenBed01() + ProductVariantDraft.presets.sampleDataB2CLifestyle.cloudQueenBed01() ) .categories([ KeyReferenceDraft.presets.category().key(bedsDraft.key!), diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/cobblestone-rug.spec.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/cobblestone-rug.spec.ts similarity index 98% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/cobblestone-rug.spec.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/cobblestone-rug.spec.ts index 722c90eb5..5ce019ce2 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/cobblestone-rug.spec.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/cobblestone-rug.spec.ts @@ -56,7 +56,7 @@ describe(`with cobblestoneRug preset`, () => { "w": 7006, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Cobblestone_Rug-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Cobblestone_Rug-1.1.jpeg", }, ], "key": undefined, @@ -199,7 +199,7 @@ describe(`with cobblestoneRug preset`, () => { "width": 7006, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Cobblestone_Rug-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Cobblestone_Rug-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/cobblestone-rug.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/cobblestone-rug.ts similarity index 78% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/cobblestone-rug.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/cobblestone-rug.ts index 378875829..23dfa8d5d 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/cobblestone-rug.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/cobblestone-rug.ts @@ -18,24 +18,24 @@ import * as ProductVariantDraft from '../../../../product-variant/product-varian import * as ProductDraft from '../../../product-draft'; import type { TProductDraftBuilder } from '../../../types'; -const standardTaxCategoryDraft = TaxCategoryDraft.presets.sampleDataGoodStore +const standardTaxCategoryDraft = TaxCategoryDraft.presets.sampleDataB2CLifestyle .standardTaxCategory() .build(); const cobblestoneRugProductTypeDraft = - ProductTypeDraft.presets.sampleDataGoodStore + ProductTypeDraft.presets.sampleDataB2CLifestyle .furnitureAndDecor() .build(); -const rugsDraft = CategoryDraft.presets.sampleDataGoodStore +const rugsDraft = CategoryDraft.presets.sampleDataB2CLifestyle .rugs() .build(); -const roomDecorDraft = CategoryDraft.presets.sampleDataGoodStore +const roomDecorDraft = CategoryDraft.presets.sampleDataB2CLifestyle .roomDecor() .build(); -const homeDecorDraft = CategoryDraft.presets.sampleDataGoodStore +const homeDecorDraft = CategoryDraft.presets.sampleDataB2CLifestyle .homeDecor() .build(); @@ -53,15 +53,15 @@ const cobblestoneRug = (): TProductDraftBuilder => .description( LocalizedStringDraft.presets .empty() - ['de-DE']( - 'Dieser Strukturteppich kann in einer Vielzahl von Räumen verwendet werden, von Wohnzimmern über Schlafzimmer bis hin zu Heimbüros. Er ist besonders beliebt in modernen und zeitgenössischen Einrichtungsstilen. Hier kann er ein mutiger und grafischer Hingucker sein. Insgesamt ist ein Teppich mit geometrischen Akzenten eine stilvolle und vielseitige Designwahl, die jedem Raum im Haus visuelles Interesse und Textur verleihen kann.' - ) - ['en-GB']( - 'The Cobblestone Rug can be used in a variety of spaces, from living rooms to bedrooms to home offices. It is especially popular in modern and contemporary decor styles, where they can add a bold and graphic element to the space. Overall, a geometric accent rug is a stylish and versatile design choice that can add visual interest and texture to any room in the home.' - ) - ['en-US']( - 'The Cobblestone Rug can be used in a variety of spaces, from living rooms to bedrooms to home offices. It is especially popular in modern and contemporary decor styles, where they can add a bold and graphic element to the space. Overall, a geometric accent rug is a stylish and versatile design choice that can add visual interest and texture to any room in the home.' - ) + [ + 'de-DE' + ]('Dieser Strukturteppich kann in einer Vielzahl von Räumen verwendet werden, von Wohnzimmern über Schlafzimmer bis hin zu Heimbüros. Er ist besonders beliebt in modernen und zeitgenössischen Einrichtungsstilen. Hier kann er ein mutiger und grafischer Hingucker sein. Insgesamt ist ein Teppich mit geometrischen Akzenten eine stilvolle und vielseitige Designwahl, die jedem Raum im Haus visuelles Interesse und Textur verleihen kann.') + [ + 'en-GB' + ]('The Cobblestone Rug can be used in a variety of spaces, from living rooms to bedrooms to home offices. It is especially popular in modern and contemporary decor styles, where they can add a bold and graphic element to the space. Overall, a geometric accent rug is a stylish and versatile design choice that can add visual interest and texture to any room in the home.') + [ + 'en-US' + ]('The Cobblestone Rug can be used in a variety of spaces, from living rooms to bedrooms to home offices. It is especially popular in modern and contemporary decor styles, where they can add a bold and graphic element to the space. Overall, a geometric accent rug is a stylish and versatile design choice that can add visual interest and texture to any room in the home.') ) .slug( LocalizedStringDraft.presets @@ -80,7 +80,7 @@ const cobblestoneRug = (): TProductDraftBuilder => KeyReferenceDraft.presets.taxCategory().key(standardTaxCategoryDraft.key!) ) .masterVariant( - ProductVariantDraft.presets.sampleDataGoodStore.cobblestoneRug01() + ProductVariantDraft.presets.sampleDataB2CLifestyle.cobblestoneRug01() ) .categories([ KeyReferenceDraft.presets.category().key(rugsDraft.key!), diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/cocktail-shaker-set.spec.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/cocktail-shaker-set.spec.ts similarity index 98% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/cocktail-shaker-set.spec.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/cocktail-shaker-set.spec.ts index 6b18061c5..bd5372855 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/cocktail-shaker-set.spec.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/cocktail-shaker-set.spec.ts @@ -59,7 +59,7 @@ describe(`with cocktailShakerSet preset`, () => { "w": 4929, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Cocktail_Shaker_Set-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Cocktail_Shaker_Set-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/cocktail-shaker-set.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/cocktail-shaker-set.ts similarity index 84% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/cocktail-shaker-set.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/cocktail-shaker-set.ts index 51f2d11ef..04aba15e7 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/cocktail-shaker-set.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/cocktail-shaker-set.ts @@ -18,24 +18,24 @@ import * as ProductVariantDraft from '../../../../product-variant/product-varian import * as ProductDraft from '../../../product-draft'; import type { TProductDraftBuilder } from '../../../types'; -const standardTaxCategoryDraft = TaxCategoryDraft.presets.sampleDataGoodStore +const standardTaxCategoryDraft = TaxCategoryDraft.presets.sampleDataB2CLifestyle .standardTaxCategory() .build(); const cocktailShakerSetProductTypeDraft = - ProductTypeDraft.presets.sampleDataGoodStore + ProductTypeDraft.presets.sampleDataB2CLifestyle .furnitureAndDecor() .build(); -const barAccessoriesDraft = CategoryDraft.presets.sampleDataGoodStore +const barAccessoriesDraft = CategoryDraft.presets.sampleDataB2CLifestyle .barAccessories() .build(); -const barAndGlasswareDraft = CategoryDraft.presets.sampleDataGoodStore +const barAndGlasswareDraft = CategoryDraft.presets.sampleDataB2CLifestyle .barAndGlassware() .build(); -const kitchenDraft = CategoryDraft.presets.sampleDataGoodStore +const kitchenDraft = CategoryDraft.presets.sampleDataB2CLifestyle .kitchen() .build(); @@ -53,15 +53,15 @@ const cocktailShakerSet = (): TProductDraftBuilder => .description( LocalizedStringDraft.presets .empty() - ['en-GB']( - "This cocktail making set includes a shaker, strainer, a jigger, and tongs, all of which are made of stainless steel with a gold-plated finish. The shaker is a two-piece container with a lid that fits tightly to prevent spillage. The strainer fits over the top of the shaker to remove any solid ingredients or ice from the cocktail as it's poured into the glass. The jigger is a small measuring cup that helps ensure precise measurements of ingredients. The gold finish gives the set a luxurious, elegant look that's perfect for entertaining or creating special cocktails at home." - ) - ['en-US']( - "This cocktail making set includes a shaker, strainer, a jigger, and tongs, all of which are made of stainless steel with a gold-plated finish. The shaker is a two-piece container with a lid that fits tightly to prevent spillage. The strainer fits over the top of the shaker to remove any solid ingredients or ice from the cocktail as it's poured into the glass. The jigger is a small measuring cup that helps ensure precise measurements of ingredients. The gold finish gives the set a luxurious, elegant look that's perfect for entertaining or creating special cocktails at home." - ) - ['de-DE']( - 'Dieses Set für die Cocktailzubereitung umfasst einen Shaker, ein Sieb, einen Jigger und eine Zange, die alle aus vergoldetem Edelstahl bestehen. Der Shaker ist ein zweiteiliger Behälter mit einem Deckel, der fest sitzt, um ein Verschütten zu verhindern. Das Sieb passt über die Oberseite des Shakers, um feste Zutaten oder Eis aus dem Cocktail zu entfernen, wenn er in das Glas gegossen wird. Der Jigger ist ein kleiner Messbecher, der dabei hilft, die Zutaten präzise abzumessen. Das Gold-Finish verleiht dem Set ein luxuriöses, elegantes Aussehen, das sich perfekt für die Unterhaltung oder die Zubereitung besonderer Cocktails zu Hause eignet.' - ) + [ + 'en-GB' + ]("This cocktail making set includes a shaker, strainer, a jigger, and tongs, all of which are made of stainless steel with a gold-plated finish. The shaker is a two-piece container with a lid that fits tightly to prevent spillage. The strainer fits over the top of the shaker to remove any solid ingredients or ice from the cocktail as it's poured into the glass. The jigger is a small measuring cup that helps ensure precise measurements of ingredients. The gold finish gives the set a luxurious, elegant look that's perfect for entertaining or creating special cocktails at home.") + [ + 'en-US' + ]("This cocktail making set includes a shaker, strainer, a jigger, and tongs, all of which are made of stainless steel with a gold-plated finish. The shaker is a two-piece container with a lid that fits tightly to prevent spillage. The strainer fits over the top of the shaker to remove any solid ingredients or ice from the cocktail as it's poured into the glass. The jigger is a small measuring cup that helps ensure precise measurements of ingredients. The gold finish gives the set a luxurious, elegant look that's perfect for entertaining or creating special cocktails at home.") + [ + 'de-DE' + ]('Dieses Set für die Cocktailzubereitung umfasst einen Shaker, ein Sieb, einen Jigger und eine Zange, die alle aus vergoldetem Edelstahl bestehen. Der Shaker ist ein zweiteiliger Behälter mit einem Deckel, der fest sitzt, um ein Verschütten zu verhindern. Das Sieb passt über die Oberseite des Shakers, um feste Zutaten oder Eis aus dem Cocktail zu entfernen, wenn er in das Glas gegossen wird. Der Jigger ist ein kleiner Messbecher, der dabei hilft, die Zutaten präzise abzumessen. Das Gold-Finish verleiht dem Set ein luxuriöses, elegantes Aussehen, das sich perfekt für die Unterhaltung oder die Zubereitung besonderer Cocktails zu Hause eignet.') ) .slug( LocalizedStringDraft.presets @@ -80,7 +80,7 @@ const cocktailShakerSet = (): TProductDraftBuilder => KeyReferenceDraft.presets.taxCategory().key(standardTaxCategoryDraft.key!) ) .masterVariant( - ProductVariantDraft.presets.sampleDataGoodStore.cocktailShakerSet01() + ProductVariantDraft.presets.sampleDataB2CLifestyle.cocktailShakerSet01() ) .categories([ KeyReferenceDraft.presets.category().key(barAccessoriesDraft.key!), diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/cocktail-shaker.spec.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/cocktail-shaker.spec.ts similarity index 97% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/cocktail-shaker.spec.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/cocktail-shaker.spec.ts index 4c104423f..d1f9d7f3a 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/cocktail-shaker.spec.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/cocktail-shaker.spec.ts @@ -62,7 +62,7 @@ describe(`with cocktailShaker preset`, () => { "w": 3850, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Cocktail_Shaker-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Cocktail_Shaker-1.1.jpeg", }, { "dimensions": { @@ -70,7 +70,7 @@ describe(`with cocktailShaker preset`, () => { "w": 5000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Cocktail_Shaker-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Cocktail_Shaker-1.2.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/cocktail-shaker.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/cocktail-shaker.ts similarity index 82% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/cocktail-shaker.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/cocktail-shaker.ts index 729a232c0..fbe3c55fd 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/cocktail-shaker.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/cocktail-shaker.ts @@ -18,24 +18,24 @@ import * as ProductVariantDraft from '../../../../product-variant/product-varian import * as ProductDraft from '../../../product-draft'; import type { TProductDraftBuilder } from '../../../types'; -const standardTaxCategoryDraft = TaxCategoryDraft.presets.sampleDataGoodStore +const standardTaxCategoryDraft = TaxCategoryDraft.presets.sampleDataB2CLifestyle .standardTaxCategory() .build(); const cocktailShakerProductTypeDraft = - ProductTypeDraft.presets.sampleDataGoodStore + ProductTypeDraft.presets.sampleDataB2CLifestyle .furnitureAndDecor() .build(); -const barAccessoriesDraft = CategoryDraft.presets.sampleDataGoodStore +const barAccessoriesDraft = CategoryDraft.presets.sampleDataB2CLifestyle .barAccessories() .build(); -const barAndGlasswareDraft = CategoryDraft.presets.sampleDataGoodStore +const barAndGlasswareDraft = CategoryDraft.presets.sampleDataB2CLifestyle .barAndGlassware() .build(); -const kitchenDraft = CategoryDraft.presets.sampleDataGoodStore +const kitchenDraft = CategoryDraft.presets.sampleDataB2CLifestyle .kitchen() .build(); @@ -53,15 +53,15 @@ const cocktailShaker = (): TProductDraftBuilder => .description( LocalizedStringDraft.presets .empty() - ['en-GB']( - 'A cocktail shaker is a tool used in mixing and preparing alcoholic beverages such as cocktails. It is a metal container with a lid that seals tightly to prevent spills. The container has a tapered shape, with a wider base and a narrower top. This design allows for easy mixing of ingredients by shaking them together. The lid has a built-in strainer to separate the liquid from the ice and other solid ingredients. The shaker is made of stainless steel.' - ) - ['en-US']( - 'A cocktail shaker is a tool used in mixing and preparing alcoholic beverages such as cocktails. It is a metal container with a lid that seals tightly to prevent spills. The container has a tapered shape, with a wider base and a narrower top. This design allows for easy mixing of ingredients by shaking them together. The lid has a built-in strainer to separate the liquid from the ice and other solid ingredients. The shaker is made of stainless steel.' - ) - ['de-DE']( - 'Ein Cocktailshaker ist ein Werkzeug, das zum Mischen und Zubereiten von alkoholischen Getränken wie Cocktails verwendet wird. Es ist ein Metallbehälter mit einem Deckel, der dicht abschließt, um ein Verschütten zu verhindern. Der Behälter hat eine sich verjüngende Form mit einer breiteren Basis und einer schmaleren Oberseite. Dieses Design ermöglicht ein einfaches Mischen der Zutaten durch Schütteln. Der Deckel hat ein eingebautes Sieb, um die Flüssigkeit vom Eis und anderen festen Zutaten zu trennen. Material: Edelstahöl' - ) + [ + 'en-GB' + ]('A cocktail shaker is a tool used in mixing and preparing alcoholic beverages such as cocktails. It is a metal container with a lid that seals tightly to prevent spills. The container has a tapered shape, with a wider base and a narrower top. This design allows for easy mixing of ingredients by shaking them together. The lid has a built-in strainer to separate the liquid from the ice and other solid ingredients. The shaker is made of stainless steel.') + [ + 'en-US' + ]('A cocktail shaker is a tool used in mixing and preparing alcoholic beverages such as cocktails. It is a metal container with a lid that seals tightly to prevent spills. The container has a tapered shape, with a wider base and a narrower top. This design allows for easy mixing of ingredients by shaking them together. The lid has a built-in strainer to separate the liquid from the ice and other solid ingredients. The shaker is made of stainless steel.') + [ + 'de-DE' + ]('Ein Cocktailshaker ist ein Werkzeug, das zum Mischen und Zubereiten von alkoholischen Getränken wie Cocktails verwendet wird. Es ist ein Metallbehälter mit einem Deckel, der dicht abschließt, um ein Verschütten zu verhindern. Der Behälter hat eine sich verjüngende Form mit einer breiteren Basis und einer schmaleren Oberseite. Dieses Design ermöglicht ein einfaches Mischen der Zutaten durch Schütteln. Der Deckel hat ein eingebautes Sieb, um die Flüssigkeit vom Eis und anderen festen Zutaten zu trennen. Material: Edelstahöl') ) .slug( LocalizedStringDraft.presets @@ -80,7 +80,7 @@ const cocktailShaker = (): TProductDraftBuilder => KeyReferenceDraft.presets.taxCategory().key(standardTaxCategoryDraft.key!) ) .masterVariant( - ProductVariantDraft.presets.sampleDataGoodStore.cocktailShaker01() + ProductVariantDraft.presets.sampleDataB2CLifestyle.cocktailShaker01() ) .categories([ KeyReferenceDraft.presets.category().key(barAccessoriesDraft.key!), diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/cocktail-stirring-spoon.spec.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/cocktail-stirring-spoon.spec.ts similarity index 98% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/cocktail-stirring-spoon.spec.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/cocktail-stirring-spoon.spec.ts index a4e9ae4c7..06368eb27 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/cocktail-stirring-spoon.spec.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/cocktail-stirring-spoon.spec.ts @@ -60,7 +60,7 @@ describe(`with cocktailStirringSpoon preset`, () => { "w": 5757, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Cocktail_Stirring_Spoon-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Cocktail_Stirring_Spoon-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/cocktail-stirring-spoon.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/cocktail-stirring-spoon.ts similarity index 81% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/cocktail-stirring-spoon.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/cocktail-stirring-spoon.ts index a38c7a3c4..c7de030ef 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/cocktail-stirring-spoon.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/cocktail-stirring-spoon.ts @@ -18,24 +18,24 @@ import * as ProductVariantDraft from '../../../../product-variant/product-varian import * as ProductDraft from '../../../product-draft'; import type { TProductDraftBuilder } from '../../../types'; -const standardTaxCategoryDraft = TaxCategoryDraft.presets.sampleDataGoodStore +const standardTaxCategoryDraft = TaxCategoryDraft.presets.sampleDataB2CLifestyle .standardTaxCategory() .build(); const cocktailStirringSpoonProductTypeDraft = - ProductTypeDraft.presets.sampleDataGoodStore + ProductTypeDraft.presets.sampleDataB2CLifestyle .furnitureAndDecor() .build(); -const barAccessoriesDraft = CategoryDraft.presets.sampleDataGoodStore +const barAccessoriesDraft = CategoryDraft.presets.sampleDataB2CLifestyle .barAccessories() .build(); -const barAndGlasswareDraft = CategoryDraft.presets.sampleDataGoodStore +const barAndGlasswareDraft = CategoryDraft.presets.sampleDataB2CLifestyle .barAndGlassware() .build(); -const kitchenDraft = CategoryDraft.presets.sampleDataGoodStore +const kitchenDraft = CategoryDraft.presets.sampleDataB2CLifestyle .kitchen() .build(); @@ -53,15 +53,15 @@ const cocktailStirringSpoon = (): TProductDraftBuilder => .description( LocalizedStringDraft.presets .empty() - ['en-GB']( - 'A cocktail stirring spoon is a long and slender utensil, made of stainless steel, used for stirring and mixing cocktails. It is usually around 8 inches long with a small, flat disc-shaped end for muddling ingredients and a twisted or spiraled handle for easy gripping. The twisted handle is not just for decoration, but also helps to create a better grip when mixing cocktails.' - ) - ['en-US']( - 'A cocktail stirring spoon is a long and slender utensil, made of stainless steel, used for stirring and mixing cocktails. It is usually around 8 inches long with a small, flat disc-shaped end for muddling ingredients and a twisted or spiraled handle for easy gripping. The twisted handle is not just for decoration, but also helps to create a better grip when mixing cocktails.' - ) - ['de-DE']( - 'Dieser Cocktail-Rührlöffel ist ein schlankes Utensil aus Edelstahl, das zum Rühren und Mixen von Cocktails verwendet wird. Er ist etwa 8 cm lang und mit einem kleinen, flachen, scheibenförmigen Ende zum Vermischen von Zutaten und einem gedrehten oder spiralförmigen Griff zum einfachen Greifen versehen. Der gedrehte Griff dient nicht nur der Dekoration, sondern verhilft auch zu einem besseren Halt beim Mixen von Cocktails.' - ) + [ + 'en-GB' + ]('A cocktail stirring spoon is a long and slender utensil, made of stainless steel, used for stirring and mixing cocktails. It is usually around 8 inches long with a small, flat disc-shaped end for muddling ingredients and a twisted or spiraled handle for easy gripping. The twisted handle is not just for decoration, but also helps to create a better grip when mixing cocktails.') + [ + 'en-US' + ]('A cocktail stirring spoon is a long and slender utensil, made of stainless steel, used for stirring and mixing cocktails. It is usually around 8 inches long with a small, flat disc-shaped end for muddling ingredients and a twisted or spiraled handle for easy gripping. The twisted handle is not just for decoration, but also helps to create a better grip when mixing cocktails.') + [ + 'de-DE' + ]('Dieser Cocktail-Rührlöffel ist ein schlankes Utensil aus Edelstahl, das zum Rühren und Mixen von Cocktails verwendet wird. Er ist etwa 8 cm lang und mit einem kleinen, flachen, scheibenförmigen Ende zum Vermischen von Zutaten und einem gedrehten oder spiralförmigen Griff zum einfachen Greifen versehen. Der gedrehte Griff dient nicht nur der Dekoration, sondern verhilft auch zu einem besseren Halt beim Mixen von Cocktails.') ) .slug( LocalizedStringDraft.presets @@ -80,7 +80,7 @@ const cocktailStirringSpoon = (): TProductDraftBuilder => KeyReferenceDraft.presets.taxCategory().key(standardTaxCategoryDraft.key!) ) .masterVariant( - ProductVariantDraft.presets.sampleDataGoodStore.cocktailStirringSpoon01() + ProductVariantDraft.presets.sampleDataB2CLifestyle.cocktailStirringSpoon01() ) .categories([ KeyReferenceDraft.presets.category().key(barAccessoriesDraft.key!), diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/cocktail-strainer.spec.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/cocktail-strainer.spec.ts similarity index 98% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/cocktail-strainer.spec.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/cocktail-strainer.spec.ts index 4c3a3b639..2da6e1911 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/cocktail-strainer.spec.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/cocktail-strainer.spec.ts @@ -59,7 +59,7 @@ describe(`with cocktailStrainer preset`, () => { "w": 5472, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Cocktail_Strainer-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Cocktail_Strainer-1.1.jpeg", }, { "dimensions": { @@ -67,7 +67,7 @@ describe(`with cocktailStrainer preset`, () => { "w": 3648, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Cocktail_Strainer-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Cocktail_Strainer-1.2.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/cocktail-strainer.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/cocktail-strainer.ts similarity index 86% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/cocktail-strainer.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/cocktail-strainer.ts index 98925b319..56a11ab19 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/cocktail-strainer.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/cocktail-strainer.ts @@ -18,24 +18,24 @@ import * as ProductVariantDraft from '../../../../product-variant/product-varian import * as ProductDraft from '../../../product-draft'; import type { TProductDraftBuilder } from '../../../types'; -const standardTaxCategoryDraft = TaxCategoryDraft.presets.sampleDataGoodStore +const standardTaxCategoryDraft = TaxCategoryDraft.presets.sampleDataB2CLifestyle .standardTaxCategory() .build(); const cocktailStrainerProductTypeDraft = - ProductTypeDraft.presets.sampleDataGoodStore + ProductTypeDraft.presets.sampleDataB2CLifestyle .furnitureAndDecor() .build(); -const barAccessoriesDraft = CategoryDraft.presets.sampleDataGoodStore +const barAccessoriesDraft = CategoryDraft.presets.sampleDataB2CLifestyle .barAccessories() .build(); -const barAndGlasswareDraft = CategoryDraft.presets.sampleDataGoodStore +const barAndGlasswareDraft = CategoryDraft.presets.sampleDataB2CLifestyle .barAndGlassware() .build(); -const kitchenDraft = CategoryDraft.presets.sampleDataGoodStore +const kitchenDraft = CategoryDraft.presets.sampleDataB2CLifestyle .kitchen() .build(); @@ -53,15 +53,15 @@ const cocktailStrainer = (): TProductDraftBuilder => .description( LocalizedStringDraft.presets .empty() - ['en-GB']( - 'A strainer for cocktail shakers is a bar tool used to strain ice and other solid ingredients from mixed drinks, while pouring the liquid portion of the cocktail into a serving glass. It is made of metal, with a flat, perforated disc that fits over the mouth of the shaker. The strainer is held in place by placing a finger over the small, handle-like protrusion on one side of the disc, while pouring the liquid out through the larger opening on the other side. The perforated disc helps to filter out any small bits of ice or fruit that might be left in the mixture, resulting in a smooth and refined cocktail. The strainer also has a spring around the edge of the disc that helps to hold it securely in place over the shaker, preventing any spills or drips.' - ) - ['en-US']( - 'A strainer for cocktail shakers is a bar tool used to strain ice and other solid ingredients from mixed drinks, while pouring the liquid portion of the cocktail into a serving glass. It is made of metal, with a flat, perforated disc that fits over the mouth of the shaker. The strainer is held in place by placing a finger over the small, handle-like protrusion on one side of the disc, while pouring the liquid out through the larger opening on the other side. The perforated disc helps to filter out any small bits of ice or fruit that might be left in the mixture, resulting in a smooth and refined cocktail. The strainer also has a spring around the edge of the disc that helps to hold it securely in place over the shaker, preventing any spills or drips.' - ) - ['de-DE']( - 'Dieses Sieb für Cocktailshaker ist ein Barwerkzeug, das verwendet wird, um Eis und andere feste Zutaten aus Mixgetränken zu trennen, während der flüssige Teil des Cocktails in ein Servierglas gegossen wird. Das Sieb besteht aus Metall und passt über die Öffnung eines klassischen Cocktail-Shakers. Das Sieb wird an Ort und Stelle gehalten, indem man einen Finger über den kleinen, griffartigen Vorsprung auf einer Seite des Siebes legt, während man die Flüssigkeit durch die größere Öffnung auf der anderen Seite ausgießt. Das Sieb hilft dabei, kleine Eis- oder Fruchtstücke herauszufiltern, die in der Mischung zurückbleiben könnten, was zu einem smoothen und raffinierten Cocktail führt. Das Sieb hat auch eine Feder um den Rand, die hilft, es sicher über dem Shaker zu halten und so ein Verschütten oder Tropfen zu verhindern.' - ) + [ + 'en-GB' + ]('A strainer for cocktail shakers is a bar tool used to strain ice and other solid ingredients from mixed drinks, while pouring the liquid portion of the cocktail into a serving glass. It is made of metal, with a flat, perforated disc that fits over the mouth of the shaker. The strainer is held in place by placing a finger over the small, handle-like protrusion on one side of the disc, while pouring the liquid out through the larger opening on the other side. The perforated disc helps to filter out any small bits of ice or fruit that might be left in the mixture, resulting in a smooth and refined cocktail. The strainer also has a spring around the edge of the disc that helps to hold it securely in place over the shaker, preventing any spills or drips.') + [ + 'en-US' + ]('A strainer for cocktail shakers is a bar tool used to strain ice and other solid ingredients from mixed drinks, while pouring the liquid portion of the cocktail into a serving glass. It is made of metal, with a flat, perforated disc that fits over the mouth of the shaker. The strainer is held in place by placing a finger over the small, handle-like protrusion on one side of the disc, while pouring the liquid out through the larger opening on the other side. The perforated disc helps to filter out any small bits of ice or fruit that might be left in the mixture, resulting in a smooth and refined cocktail. The strainer also has a spring around the edge of the disc that helps to hold it securely in place over the shaker, preventing any spills or drips.') + [ + 'de-DE' + ]('Dieses Sieb für Cocktailshaker ist ein Barwerkzeug, das verwendet wird, um Eis und andere feste Zutaten aus Mixgetränken zu trennen, während der flüssige Teil des Cocktails in ein Servierglas gegossen wird. Das Sieb besteht aus Metall und passt über die Öffnung eines klassischen Cocktail-Shakers. Das Sieb wird an Ort und Stelle gehalten, indem man einen Finger über den kleinen, griffartigen Vorsprung auf einer Seite des Siebes legt, während man die Flüssigkeit durch die größere Öffnung auf der anderen Seite ausgießt. Das Sieb hilft dabei, kleine Eis- oder Fruchtstücke herauszufiltern, die in der Mischung zurückbleiben könnten, was zu einem smoothen und raffinierten Cocktail führt. Das Sieb hat auch eine Feder um den Rand, die hilft, es sicher über dem Shaker zu halten und so ein Verschütten oder Tropfen zu verhindern.') ) .slug( LocalizedStringDraft.presets @@ -80,7 +80,7 @@ const cocktailStrainer = (): TProductDraftBuilder => KeyReferenceDraft.presets.taxCategory().key(standardTaxCategoryDraft.key!) ) .masterVariant( - ProductVariantDraft.presets.sampleDataGoodStore.cocktailStrainer01() + ProductVariantDraft.presets.sampleDataB2CLifestyle.cocktailStrainer01() ) .categories([ KeyReferenceDraft.presets.category().key(barAccessoriesDraft.key!), diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/cocoa-pillow-cover.spec.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/cocoa-pillow-cover.spec.ts similarity index 99% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/cocoa-pillow-cover.spec.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/cocoa-pillow-cover.spec.ts index 4125283ec..44afa84a6 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/cocoa-pillow-cover.spec.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/cocoa-pillow-cover.spec.ts @@ -55,7 +55,7 @@ describe(`with cocoaPillowCover preset`, () => { "w": 6240, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Cocoa_Pillow_Cover-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Cocoa_Pillow_Cover-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/cocoa-pillow-cover.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/cocoa-pillow-cover.ts similarity index 87% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/cocoa-pillow-cover.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/cocoa-pillow-cover.ts index c54f6d769..3ac638a7b 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/cocoa-pillow-cover.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/cocoa-pillow-cover.ts @@ -18,20 +18,20 @@ import * as ProductVariantDraft from '../../../../product-variant/product-varian import * as ProductDraft from '../../../product-draft'; import type { TProductDraftBuilder } from '../../../types'; -const standardTaxCategoryDraft = TaxCategoryDraft.presets.sampleDataGoodStore +const standardTaxCategoryDraft = TaxCategoryDraft.presets.sampleDataB2CLifestyle .standardTaxCategory() .build(); const cocoaPillowCoverProductTypeDraft = - ProductTypeDraft.presets.sampleDataGoodStore + ProductTypeDraft.presets.sampleDataB2CLifestyle .furnitureAndDecor() .build(); -const beddingDraft = CategoryDraft.presets.sampleDataGoodStore +const beddingDraft = CategoryDraft.presets.sampleDataB2CLifestyle .bedding() .build(); -const homeDecorDraft = CategoryDraft.presets.sampleDataGoodStore +const homeDecorDraft = CategoryDraft.presets.sampleDataB2CLifestyle .homeDecor() .build(); @@ -49,15 +49,15 @@ const cocoaPillowCover = (): TProductDraftBuilder => .description( LocalizedStringDraft.presets .empty() - ['en-GB']( - 'A square linen pillowcase is a type of textile covering for a square-shaped pillow that is typically used to add visual interest and texture to a room. It is made from a natural linen fabric, which is known for its durability, breathability, and classic look. The pillowcase is designed to fit over a standard size square pillow, usually around 18 inches square. The linen fabric has a soft and slightly textured surface that adds a cozy and inviting feel to the pillow. The edges of the pillowcase are finished with a neat hem or piping, which adds a polished look to the overall design. The pillowcase is used to add a touch of warmth and natural elegance to a room, whether it is placed on a bed, a sofa, or an accent chair. It can be used on its own or paired with other decorative pillows in different shapes and colors to create a layered and cohesive look. Overall, a square linen pillowcase is a versatile and timeless accent piece that can enhance the comfort and style of any room in the home.' - ) - ['en-US']( - 'A square linen pillowcase is a type of textile covering for a square-shaped pillow that is typically used to add visual interest and texture to a room. It is made from a natural linen fabric, which is known for its durability, breathability, and classic look. The pillowcase is designed to fit over a standard size square pillow, usually around 18 inches square. The linen fabric has a soft and slightly textured surface that adds a cozy and inviting feel to the pillow. The edges of the pillowcase are finished with a neat hem or piping, which adds a polished look to the overall design. The pillowcase is used to add a touch of warmth and natural elegance to a room, whether it is placed on a bed, a sofa, or an accent chair. It can be used on its own or paired with other decorative pillows in different shapes and colors to create a layered and cohesive look. Overall, a square linen pillowcase is a versatile and timeless accent piece that can enhance the comfort and style of any room in the home.' - ) - ['de-DE']( - 'Dieser quadratische Kissenbezug aus Leinen besteht aus einem natürlichen Leinenstoff, der für seine Haltbarkeit, Atmungsaktivität und seinen klassischen Look bekannt ist. Der Kissenbezug ist so konzipiert, dass er über ein quadratisches Kissen in Standardgröße passt, normalerweise etwa 30cm im Quadrat. Der Leinenstoff hat eine weiche und leicht strukturierte Oberfläche, die dem Kissen ein gemütliches und einladendes Gefühl verleiht. Die Kanten des Kissenbezugs sind mit einer Paspelierung versehen, was dem Gesamtdesign einen eleganten Look verleiht. Der Kissenbezug wird verwendet, um einem Raum einen Hauch von Wärme und natürlicher Eleganz zu verleihen, egal ob er auf einem Bett, einem Sofa oder einem Sessel platziert wird. Er kann alleine verwendet oder mit anderen dekorativen Kissen in verschiedenen Formen und Farben kombiniert werden, um einen mehrschichtigen und zusammenhängenden Look zu schaffen. Dieser quadratische Kissenbezug aus Leinen ein vielseitiges und zeitloses Accessoire, das den Komfort und Stil jedes Raums im Haus verbessern kann.' - ) + [ + 'en-GB' + ]('A square linen pillowcase is a type of textile covering for a square-shaped pillow that is typically used to add visual interest and texture to a room. It is made from a natural linen fabric, which is known for its durability, breathability, and classic look. The pillowcase is designed to fit over a standard size square pillow, usually around 18 inches square. The linen fabric has a soft and slightly textured surface that adds a cozy and inviting feel to the pillow. The edges of the pillowcase are finished with a neat hem or piping, which adds a polished look to the overall design. The pillowcase is used to add a touch of warmth and natural elegance to a room, whether it is placed on a bed, a sofa, or an accent chair. It can be used on its own or paired with other decorative pillows in different shapes and colors to create a layered and cohesive look. Overall, a square linen pillowcase is a versatile and timeless accent piece that can enhance the comfort and style of any room in the home.') + [ + 'en-US' + ]('A square linen pillowcase is a type of textile covering for a square-shaped pillow that is typically used to add visual interest and texture to a room. It is made from a natural linen fabric, which is known for its durability, breathability, and classic look. The pillowcase is designed to fit over a standard size square pillow, usually around 18 inches square. The linen fabric has a soft and slightly textured surface that adds a cozy and inviting feel to the pillow. The edges of the pillowcase are finished with a neat hem or piping, which adds a polished look to the overall design. The pillowcase is used to add a touch of warmth and natural elegance to a room, whether it is placed on a bed, a sofa, or an accent chair. It can be used on its own or paired with other decorative pillows in different shapes and colors to create a layered and cohesive look. Overall, a square linen pillowcase is a versatile and timeless accent piece that can enhance the comfort and style of any room in the home.') + [ + 'de-DE' + ]('Dieser quadratische Kissenbezug aus Leinen besteht aus einem natürlichen Leinenstoff, der für seine Haltbarkeit, Atmungsaktivität und seinen klassischen Look bekannt ist. Der Kissenbezug ist so konzipiert, dass er über ein quadratisches Kissen in Standardgröße passt, normalerweise etwa 30cm im Quadrat. Der Leinenstoff hat eine weiche und leicht strukturierte Oberfläche, die dem Kissen ein gemütliches und einladendes Gefühl verleiht. Die Kanten des Kissenbezugs sind mit einer Paspelierung versehen, was dem Gesamtdesign einen eleganten Look verleiht. Der Kissenbezug wird verwendet, um einem Raum einen Hauch von Wärme und natürlicher Eleganz zu verleihen, egal ob er auf einem Bett, einem Sofa oder einem Sessel platziert wird. Er kann alleine verwendet oder mit anderen dekorativen Kissen in verschiedenen Formen und Farben kombiniert werden, um einen mehrschichtigen und zusammenhängenden Look zu schaffen. Dieser quadratische Kissenbezug aus Leinen ein vielseitiges und zeitloses Accessoire, das den Komfort und Stil jedes Raums im Haus verbessern kann.') ) .slug( LocalizedStringDraft.presets @@ -76,7 +76,7 @@ const cocoaPillowCover = (): TProductDraftBuilder => KeyReferenceDraft.presets.taxCategory().key(standardTaxCategoryDraft.key!) ) .masterVariant( - ProductVariantDraft.presets.sampleDataGoodStore.cocoaPillowCover01() + ProductVariantDraft.presets.sampleDataB2CLifestyle.cocoaPillowCover01() ) .categories([ KeyReferenceDraft.presets.category().key(beddingDraft.key!), diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/comfort-coffee-mug.spec.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/comfort-coffee-mug.spec.ts similarity index 98% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/comfort-coffee-mug.spec.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/comfort-coffee-mug.spec.ts index e8059d5c4..7d5dadcfc 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/comfort-coffee-mug.spec.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/comfort-coffee-mug.spec.ts @@ -59,7 +59,7 @@ describe(`with comfortCoffeeMug preset`, () => { "w": 2340, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Comfort_Coffee_Mug-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Comfort_Coffee_Mug-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/comfort-coffee-mug.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/comfort-coffee-mug.ts similarity index 85% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/comfort-coffee-mug.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/comfort-coffee-mug.ts index 052e47828..17fa8af01 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/comfort-coffee-mug.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/comfort-coffee-mug.ts @@ -18,24 +18,24 @@ import * as ProductVariantDraft from '../../../../product-variant/product-varian import * as ProductDraft from '../../../product-draft'; import type { TProductDraftBuilder } from '../../../types'; -const standardTaxCategoryDraft = TaxCategoryDraft.presets.sampleDataGoodStore +const standardTaxCategoryDraft = TaxCategoryDraft.presets.sampleDataB2CLifestyle .standardTaxCategory() .build(); const comfortCoffeeMugProductTypeDraft = - ProductTypeDraft.presets.sampleDataGoodStore + ProductTypeDraft.presets.sampleDataB2CLifestyle .furnitureAndDecor() .build(); -const glasswareDraft = CategoryDraft.presets.sampleDataGoodStore +const glasswareDraft = CategoryDraft.presets.sampleDataB2CLifestyle .glassware() .build(); -const barAndGlasswareDraft = CategoryDraft.presets.sampleDataGoodStore +const barAndGlasswareDraft = CategoryDraft.presets.sampleDataB2CLifestyle .barAndGlassware() .build(); -const kitchenDraft = CategoryDraft.presets.sampleDataGoodStore +const kitchenDraft = CategoryDraft.presets.sampleDataB2CLifestyle .kitchen() .build(); @@ -53,15 +53,15 @@ const comfortCoffeeMug = (): TProductDraftBuilder => .description( LocalizedStringDraft.presets .empty() - ['en-GB']( - 'The Comfort Coffee Mug is made from ceramic. The design of the mug is intended to make it easy to hold and drink from, with a handle on one side for comfortable grip. The mug is plain, but its basic design is generally simple and functional. The body of the mug is often smooth-sided, with a wide opening that makes it easy to pour and drink coffee. The Comfort Coffee Mug is easy to clean and maintain. It can be washed by hand or in a dishwasher, and should be dried thoroughly to prevent water spots or residue from forming. Overall, the Comfort Coffee Mug is a practical and functional type of drinking vessel that is ideal for enjoying a cup of coffee at home or at work. Its basic design and ease of use make it a popular choice for coffee lovers of all types.' - ) - ['en-US']( - 'The Comfort Coffee Mug is made from ceramic. The design of the mug is intended to make it easy to hold and drink from, with a handle on one side for comfortable grip. The mug is plain, but its basic design is generally simple and functional. The body of the mug is often smooth-sided, with a wide opening that makes it easy to pour and drink coffee. The Comfort Coffee Mug is easy to clean and maintain. It can be washed by hand or in a dishwasher, and should be dried thoroughly to prevent water spots or residue from forming. Overall, the Comfort Coffee Mug is a practical and functional type of drinking vessel that is ideal for enjoying a cup of coffee at home or at work. Its basic design and ease of use make it a popular choice for coffee lovers of all types.' - ) - ['de-DE']( - 'Unsere Komfort-Kaffeestasse ist aus Keramik gefertigt. Das Design der Tasse die für ein optimales Trinkerlebenis optimiert - unter anderem durch einen Griff auf einer Seite für bequemen Halt. Der Becher ist schlicht und sein zeitloses Design ist einfach und funktional. Die Komfort-Kaffeetasse ist leicht zu reinigen und zu pflegen. Sie kann von Hand oder in der Spülmaschine gewaschen werden und sollte gründlich getrocknet werden, um Wasserflecken oder Rückstände zu vermeiden. Diese Komfort-Kaffeetasse ist ein praktisches und funktionelles Trinkgefäß, das sich ideal für den Kaffeegenuss zu Hause oder am Arbeitsplatz eignet. Sein einfaches Design und seine Benutzerfreundlichkeit machen ihn zu einer beliebten Wahl für Kaffeeliebhaber.' - ) + [ + 'en-GB' + ]('The Comfort Coffee Mug is made from ceramic. The design of the mug is intended to make it easy to hold and drink from, with a handle on one side for comfortable grip. The mug is plain, but its basic design is generally simple and functional. The body of the mug is often smooth-sided, with a wide opening that makes it easy to pour and drink coffee. The Comfort Coffee Mug is easy to clean and maintain. It can be washed by hand or in a dishwasher, and should be dried thoroughly to prevent water spots or residue from forming. Overall, the Comfort Coffee Mug is a practical and functional type of drinking vessel that is ideal for enjoying a cup of coffee at home or at work. Its basic design and ease of use make it a popular choice for coffee lovers of all types.') + [ + 'en-US' + ]('The Comfort Coffee Mug is made from ceramic. The design of the mug is intended to make it easy to hold and drink from, with a handle on one side for comfortable grip. The mug is plain, but its basic design is generally simple and functional. The body of the mug is often smooth-sided, with a wide opening that makes it easy to pour and drink coffee. The Comfort Coffee Mug is easy to clean and maintain. It can be washed by hand or in a dishwasher, and should be dried thoroughly to prevent water spots or residue from forming. Overall, the Comfort Coffee Mug is a practical and functional type of drinking vessel that is ideal for enjoying a cup of coffee at home or at work. Its basic design and ease of use make it a popular choice for coffee lovers of all types.') + [ + 'de-DE' + ]('Unsere Komfort-Kaffeestasse ist aus Keramik gefertigt. Das Design der Tasse die für ein optimales Trinkerlebenis optimiert - unter anderem durch einen Griff auf einer Seite für bequemen Halt. Der Becher ist schlicht und sein zeitloses Design ist einfach und funktional. Die Komfort-Kaffeetasse ist leicht zu reinigen und zu pflegen. Sie kann von Hand oder in der Spülmaschine gewaschen werden und sollte gründlich getrocknet werden, um Wasserflecken oder Rückstände zu vermeiden. Diese Komfort-Kaffeetasse ist ein praktisches und funktionelles Trinkgefäß, das sich ideal für den Kaffeegenuss zu Hause oder am Arbeitsplatz eignet. Sein einfaches Design und seine Benutzerfreundlichkeit machen ihn zu einer beliebten Wahl für Kaffeeliebhaber.') ) .slug( LocalizedStringDraft.presets @@ -80,7 +80,7 @@ const comfortCoffeeMug = (): TProductDraftBuilder => KeyReferenceDraft.presets.taxCategory().key(standardTaxCategoryDraft.key!) ) .masterVariant( - ProductVariantDraft.presets.sampleDataGoodStore.comfortCoffeeMug01() + ProductVariantDraft.presets.sampleDataB2CLifestyle.comfortCoffeeMug01() ) .categories([ KeyReferenceDraft.presets.category().key(glasswareDraft.key!), diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/cotton-silk-bedsheet.spec.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/cotton-silk-bedsheet.spec.ts similarity index 96% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/cotton-silk-bedsheet.spec.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/cotton-silk-bedsheet.spec.ts index 33526af66..7ad4c554d 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/cotton-silk-bedsheet.spec.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/cotton-silk-bedsheet.spec.ts @@ -69,7 +69,7 @@ describe(`with cottonSilkBedsheet preset`, () => { "w": 7500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Cotton_Silk_Bedsheet-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Cotton_Silk_Bedsheet-1.1.jpeg", }, ], "key": undefined, @@ -193,7 +193,7 @@ describe(`with cottonSilkBedsheet preset`, () => { "w": 7500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Cotton_Silk_Bedsheet-2.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Cotton_Silk_Bedsheet-2.1.jpeg", }, ], "key": undefined, @@ -285,7 +285,7 @@ describe(`with cottonSilkBedsheet preset`, () => { "w": 7500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Cotton_Silk_Bedsheet-3.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Cotton_Silk_Bedsheet-3.1.jpeg", }, ], "key": undefined, @@ -377,7 +377,7 @@ describe(`with cottonSilkBedsheet preset`, () => { "w": 5589, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Cotton_Silk_Bedsheet-4.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Cotton_Silk_Bedsheet-4.1.jpeg", }, { "dimensions": { @@ -385,7 +385,7 @@ describe(`with cottonSilkBedsheet preset`, () => { "w": 5216, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Cotton_Silk_Bedsheet-4.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Cotton_Silk_Bedsheet-4.2.jpeg", }, ], "key": undefined, @@ -477,7 +477,7 @@ describe(`with cottonSilkBedsheet preset`, () => { "w": 5589, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Cotton_Silk_Bedsheet-5.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Cotton_Silk_Bedsheet-5.1.jpeg", }, { "dimensions": { @@ -485,7 +485,7 @@ describe(`with cottonSilkBedsheet preset`, () => { "w": 5216, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Cotton_Silk_Bedsheet-5.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Cotton_Silk_Bedsheet-5.2.jpeg", }, ], "key": undefined, @@ -577,7 +577,7 @@ describe(`with cottonSilkBedsheet preset`, () => { "w": 5589, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Cotton_Silk_Bedsheet-6.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Cotton_Silk_Bedsheet-6.1.jpeg", }, { "dimensions": { @@ -585,7 +585,7 @@ describe(`with cottonSilkBedsheet preset`, () => { "w": 5216, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Cotton_Silk_Bedsheet-6.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Cotton_Silk_Bedsheet-6.2.jpeg", }, ], "key": undefined, @@ -677,7 +677,7 @@ describe(`with cottonSilkBedsheet preset`, () => { "w": 6016, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Cotton_Silk_Bedsheet-7.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Cotton_Silk_Bedsheet-7.1.jpeg", }, ], "key": undefined, @@ -769,7 +769,7 @@ describe(`with cottonSilkBedsheet preset`, () => { "w": 6016, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Cotton_Silk_Bedsheet-8.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Cotton_Silk_Bedsheet-8.1.jpeg", }, ], "key": undefined, @@ -861,7 +861,7 @@ describe(`with cottonSilkBedsheet preset`, () => { "w": 6016, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Cotton_Silk_Bedsheet-9.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Cotton_Silk_Bedsheet-9.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/cotton-silk-bedsheet.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/cotton-silk-bedsheet.ts similarity index 68% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/cotton-silk-bedsheet.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/cotton-silk-bedsheet.ts index 0e07d9a22..287e99998 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/cotton-silk-bedsheet.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/cotton-silk-bedsheet.ts @@ -18,20 +18,20 @@ import * as ProductVariantDraft from '../../../../product-variant/product-varian import * as ProductDraft from '../../../product-draft'; import type { TProductDraftBuilder } from '../../../types'; -const standardTaxCategoryDraft = TaxCategoryDraft.presets.sampleDataGoodStore +const standardTaxCategoryDraft = TaxCategoryDraft.presets.sampleDataB2CLifestyle .standardTaxCategory() .build(); const cottonSilkBedsheetProductTypeDraft = - ProductTypeDraft.presets.sampleDataGoodStore + ProductTypeDraft.presets.sampleDataB2CLifestyle .furnitureAndDecor() .build(); -const beddingDraft = CategoryDraft.presets.sampleDataGoodStore +const beddingDraft = CategoryDraft.presets.sampleDataB2CLifestyle .bedding() .build(); -const homeDecorDraft = CategoryDraft.presets.sampleDataGoodStore +const homeDecorDraft = CategoryDraft.presets.sampleDataB2CLifestyle .homeDecor() .build(); @@ -49,15 +49,15 @@ const cottonSilkBedsheet = (): TProductDraftBuilder => .description( LocalizedStringDraft.presets .empty() - ['en-GB']( - 'Cotton silk bed sheets are made from a blend of cotton and silk fibers. Cotton is known for its durability, breathability, and ease of care. Silk, on the other hand, is renowned for its smoothness, lustrous sheen, and luxurious feel. By combining the two, we offer a product that balances durability, breathability, and luxury. Cotton silk bed sheets often have a subtle sheen from the silk, making them look more luxurious. ' - ) - ['en-US']( - 'Cotton silk bed sheets are made from a blend of cotton and silk fibers. Cotton is known for its durability, breathability, and ease of care. Silk, on the other hand, is renowned for its smoothness, lustrous sheen, and luxurious feel. By combining the two, we offer a product that balances durability, breathability, and luxury. Cotton silk bed sheets often have a subtle sheen from the silk, making them look more luxurious. ' - ) - ['de-DE']( - 'Diese Bettwäsche aus Baumwollseide besteht aus einer Mischung aus Baumwoll- und Seidenfasern. Baumwolle ist für ihre Strapazierfähigkeit, Atmungsaktivität und Pflegeleichtigkeit bekannt. Seide hingegen ist bekannt für ihre Geschmeidigkeit, ihren strahlenden Glanz und ihr luxuriöses Gefühl. Durch die Kombination beider Fasersorten bieten wir ein Produkt an, das Haltbarkeit, Atmungsaktivität und Luxus in Einklang bringt. ' - ) + [ + 'en-GB' + ]('Cotton silk bed sheets are made from a blend of cotton and silk fibers. Cotton is known for its durability, breathability, and ease of care. Silk, on the other hand, is renowned for its smoothness, lustrous sheen, and luxurious feel. By combining the two, we offer a product that balances durability, breathability, and luxury. Cotton silk bed sheets often have a subtle sheen from the silk, making them look more luxurious. ') + [ + 'en-US' + ]('Cotton silk bed sheets are made from a blend of cotton and silk fibers. Cotton is known for its durability, breathability, and ease of care. Silk, on the other hand, is renowned for its smoothness, lustrous sheen, and luxurious feel. By combining the two, we offer a product that balances durability, breathability, and luxury. Cotton silk bed sheets often have a subtle sheen from the silk, making them look more luxurious. ') + [ + 'de-DE' + ]('Diese Bettwäsche aus Baumwollseide besteht aus einer Mischung aus Baumwoll- und Seidenfasern. Baumwolle ist für ihre Strapazierfähigkeit, Atmungsaktivität und Pflegeleichtigkeit bekannt. Seide hingegen ist bekannt für ihre Geschmeidigkeit, ihren strahlenden Glanz und ihr luxuriöses Gefühl. Durch die Kombination beider Fasersorten bieten wir ein Produkt an, das Haltbarkeit, Atmungsaktivität und Luxus in Einklang bringt. ') ) .slug( LocalizedStringDraft.presets @@ -76,17 +76,17 @@ const cottonSilkBedsheet = (): TProductDraftBuilder => KeyReferenceDraft.presets.taxCategory().key(standardTaxCategoryDraft.key!) ) .masterVariant( - ProductVariantDraft.presets.sampleDataGoodStore.cottonSilkBedsheet01() + ProductVariantDraft.presets.sampleDataB2CLifestyle.cottonSilkBedsheet01() ) .variants([ - ProductVariantDraft.presets.sampleDataGoodStore.cottonSilkBedsheet02(), - ProductVariantDraft.presets.sampleDataGoodStore.cottonSilkBedsheet03(), - ProductVariantDraft.presets.sampleDataGoodStore.cottonSilkBedsheet04(), - ProductVariantDraft.presets.sampleDataGoodStore.cottonSilkBedsheet05(), - ProductVariantDraft.presets.sampleDataGoodStore.cottonSilkBedsheet06(), - ProductVariantDraft.presets.sampleDataGoodStore.cottonSilkBedsheet07(), - ProductVariantDraft.presets.sampleDataGoodStore.cottonSilkBedsheet08(), - ProductVariantDraft.presets.sampleDataGoodStore.cottonSilkBedsheet09(), + ProductVariantDraft.presets.sampleDataB2CLifestyle.cottonSilkBedsheet02(), + ProductVariantDraft.presets.sampleDataB2CLifestyle.cottonSilkBedsheet03(), + ProductVariantDraft.presets.sampleDataB2CLifestyle.cottonSilkBedsheet04(), + ProductVariantDraft.presets.sampleDataB2CLifestyle.cottonSilkBedsheet05(), + ProductVariantDraft.presets.sampleDataB2CLifestyle.cottonSilkBedsheet06(), + ProductVariantDraft.presets.sampleDataB2CLifestyle.cottonSilkBedsheet07(), + ProductVariantDraft.presets.sampleDataB2CLifestyle.cottonSilkBedsheet08(), + ProductVariantDraft.presets.sampleDataB2CLifestyle.cottonSilkBedsheet09(), ]) .categories([ KeyReferenceDraft.presets.category().key(beddingDraft.key!), diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/cotton-two-seater-sofa.spec.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/cotton-two-seater-sofa.spec.ts similarity index 96% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/cotton-two-seater-sofa.spec.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/cotton-two-seater-sofa.spec.ts index 1bb7223aa..09d36bce7 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/cotton-two-seater-sofa.spec.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/cotton-two-seater-sofa.spec.ts @@ -49,7 +49,7 @@ describe(`with cottonTwoSeaterSofa preset`, () => { "w": 5035, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Cotton_Two_Seater_Sofa-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Cotton_Two_Seater_Sofa-1.1.jpeg", }, { "dimensions": { @@ -57,7 +57,7 @@ describe(`with cottonTwoSeaterSofa preset`, () => { "w": 1000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Cotton_Two_Seater_Sofa-1.3.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Cotton_Two_Seater_Sofa-1.3.jpeg", }, { "dimensions": { @@ -65,7 +65,7 @@ describe(`with cottonTwoSeaterSofa preset`, () => { "w": 5760, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Cotton_Two_Seater_Sofa-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Cotton_Two_Seater_Sofa-1.2.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/cotton-two-seater-sofa.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/cotton-two-seater-sofa.ts similarity index 85% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/cotton-two-seater-sofa.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/cotton-two-seater-sofa.ts index 8eb16ea4c..e31a42103 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/cotton-two-seater-sofa.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/cotton-two-seater-sofa.ts @@ -18,24 +18,24 @@ import * as ProductVariantDraft from '../../../../product-variant/product-varian import * as ProductDraft from '../../../product-draft'; import type { TProductDraftBuilder } from '../../../types'; -const standardTaxCategoryDraft = TaxCategoryDraft.presets.sampleDataGoodStore +const standardTaxCategoryDraft = TaxCategoryDraft.presets.sampleDataB2CLifestyle .standardTaxCategory() .build(); const cottonTwoSeaterSofaProductTypeDraft = - ProductTypeDraft.presets.sampleDataGoodStore + ProductTypeDraft.presets.sampleDataB2CLifestyle .furnitureAndDecor() .build(); -const sofasDraft = CategoryDraft.presets.sampleDataGoodStore +const sofasDraft = CategoryDraft.presets.sampleDataB2CLifestyle .sofas() .build(); -const furnitureDraft = CategoryDraft.presets.sampleDataGoodStore +const furnitureDraft = CategoryDraft.presets.sampleDataB2CLifestyle .furniture() .build(); -const livingRoomFurnitureDraft = CategoryDraft.presets.sampleDataGoodStore +const livingRoomFurnitureDraft = CategoryDraft.presets.sampleDataB2CLifestyle .livingRoomFurniture() .build(); @@ -53,15 +53,15 @@ const cottonTwoSeaterSofa = (): TProductDraftBuilder => .description( LocalizedStringDraft.presets .empty() - ['en-GB']( - "The 2-seater cotton sofa is a cozy and comfortable seating option for any home. Made from soft, high-quality cotton fabric, this sofa is gentle on the skin and easy to maintain. The two seat cushions are plush and supportive, providing a comfortable seating experience. The sofa's backrest is well-padded, providing ample back support, while the armrests are gently rounded for a comfortable and relaxed feel. The wooden frame of the sofa is sturdy and durable, ensuring it will last for years to come. With a neutral color, this sofa can blend seamlessly into any interior design style, while the simple and elegant design adds a touch of sophistication to any room." - ) - ['en-US']( - "The 2-seater cotton sofa is a cozy and comfortable seating option for any home. Made from soft, high-quality cotton fabric, this sofa is gentle on the skin and easy to maintain. The two seat cushions are plush and supportive, providing a comfortable seating experience. The sofa's backrest is well-padded, providing ample back support, while the armrests are gently rounded for a comfortable and relaxed feel. The wooden frame of the sofa is sturdy and durable, ensuring it will last for years to come. With a neutral color, this sofa can blend seamlessly into any interior design style, while the simple and elegant design adds a touch of sophistication to any room." - ) - ['de-DE']( - 'Unser 2-Sitzer-Baumwollsofa ist eine gemütliche und bequeme Sitzgelegenheit für jedes Zuhause. Aus weichem, hochwertigem Baumwollstoff gefertigt, ist dieses Sofa sanft zur Haut und pflegeleicht. Die beiden Sitzkissen sind weich und stützend und bieten ein komfortables Sitzerlebnis. Die Rückenlehne des Sofas ist gut gepolstert und bietet reichlich Rückenunterstützung, während die Armlehnen für ein bequemes und entspanntes Gefühl sanft abgerundet sind. Der Holzrahmen des Sofas ist robust und langlebig, sodass er viele Jahre hält. Mit einer neutralen Farbe fügt sich dieses Sofa nahtlos in jeden Einrichtungsstil ein, während das schlichte und elegante Design jedem Raum einen Hauch von Raffinesse verleiht.' - ) + [ + 'en-GB' + ]("The 2-seater cotton sofa is a cozy and comfortable seating option for any home. Made from soft, high-quality cotton fabric, this sofa is gentle on the skin and easy to maintain. The two seat cushions are plush and supportive, providing a comfortable seating experience. The sofa's backrest is well-padded, providing ample back support, while the armrests are gently rounded for a comfortable and relaxed feel. The wooden frame of the sofa is sturdy and durable, ensuring it will last for years to come. With a neutral color, this sofa can blend seamlessly into any interior design style, while the simple and elegant design adds a touch of sophistication to any room.") + [ + 'en-US' + ]("The 2-seater cotton sofa is a cozy and comfortable seating option for any home. Made from soft, high-quality cotton fabric, this sofa is gentle on the skin and easy to maintain. The two seat cushions are plush and supportive, providing a comfortable seating experience. The sofa's backrest is well-padded, providing ample back support, while the armrests are gently rounded for a comfortable and relaxed feel. The wooden frame of the sofa is sturdy and durable, ensuring it will last for years to come. With a neutral color, this sofa can blend seamlessly into any interior design style, while the simple and elegant design adds a touch of sophistication to any room.") + [ + 'de-DE' + ]('Unser 2-Sitzer-Baumwollsofa ist eine gemütliche und bequeme Sitzgelegenheit für jedes Zuhause. Aus weichem, hochwertigem Baumwollstoff gefertigt, ist dieses Sofa sanft zur Haut und pflegeleicht. Die beiden Sitzkissen sind weich und stützend und bieten ein komfortables Sitzerlebnis. Die Rückenlehne des Sofas ist gut gepolstert und bietet reichlich Rückenunterstützung, während die Armlehnen für ein bequemes und entspanntes Gefühl sanft abgerundet sind. Der Holzrahmen des Sofas ist robust und langlebig, sodass er viele Jahre hält. Mit einer neutralen Farbe fügt sich dieses Sofa nahtlos in jeden Einrichtungsstil ein, während das schlichte und elegante Design jedem Raum einen Hauch von Raffinesse verleiht.') ) .slug( LocalizedStringDraft.presets @@ -80,7 +80,7 @@ const cottonTwoSeaterSofa = (): TProductDraftBuilder => KeyReferenceDraft.presets.taxCategory().key(standardTaxCategoryDraft.key!) ) .masterVariant( - ProductVariantDraft.presets.sampleDataGoodStore.cottonTwoSeaterSofa01() + ProductVariantDraft.presets.sampleDataB2CLifestyle.cottonTwoSeaterSofa01() ) .categories([ KeyReferenceDraft.presets.category().key(sofasDraft.key!), diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/crystal-drinking-glass.spec.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/crystal-drinking-glass.spec.ts similarity index 99% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/crystal-drinking-glass.spec.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/crystal-drinking-glass.spec.ts index 377c411eb..1bc14e6c8 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/crystal-drinking-glass.spec.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/crystal-drinking-glass.spec.ts @@ -57,7 +57,7 @@ describe(`with crystalDrinkingGlass preset`, () => { "w": 3000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Crystal_Drinking_Glass-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Crystal_Drinking_Glass-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/crystal-drinking-glass.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/crystal-drinking-glass.ts similarity index 87% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/crystal-drinking-glass.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/crystal-drinking-glass.ts index ab2a75a90..37df3d95b 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/crystal-drinking-glass.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/crystal-drinking-glass.ts @@ -18,24 +18,24 @@ import * as ProductVariantDraft from '../../../../product-variant/product-varian import * as ProductDraft from '../../../product-draft'; import type { TProductDraftBuilder } from '../../../types'; -const standardTaxCategoryDraft = TaxCategoryDraft.presets.sampleDataGoodStore +const standardTaxCategoryDraft = TaxCategoryDraft.presets.sampleDataB2CLifestyle .standardTaxCategory() .build(); const crystalDrinkingGlassProductTypeDraft = - ProductTypeDraft.presets.sampleDataGoodStore + ProductTypeDraft.presets.sampleDataB2CLifestyle .furnitureAndDecor() .build(); -const glasswareDraft = CategoryDraft.presets.sampleDataGoodStore +const glasswareDraft = CategoryDraft.presets.sampleDataB2CLifestyle .glassware() .build(); -const barAndGlasswareDraft = CategoryDraft.presets.sampleDataGoodStore +const barAndGlasswareDraft = CategoryDraft.presets.sampleDataB2CLifestyle .barAndGlassware() .build(); -const kitchenDraft = CategoryDraft.presets.sampleDataGoodStore +const kitchenDraft = CategoryDraft.presets.sampleDataB2CLifestyle .kitchen() .build(); @@ -53,15 +53,15 @@ const crystalDrinkingGlass = (): TProductDraftBuilder => .description( LocalizedStringDraft.presets .empty() - ['en-GB']( - 'This Crystal Drinking Glass is made of high-quality, lead-free crystal glass that is thin and delicate, yet strong and durable. The crystal material of the highball glass enhances the appearance of the drink, making it appear more sparkling and colorful. It also enhances the aroma and flavor of the drink, allowing the drinker to fully appreciate the complexity of the ingredients. The design of the glass is intended to accommodate the addition of ice, soda, or other mixers, while still leaving plenty of room for the drink itself. The wide mouth of the glass allows the drinker to smell the aroma of the drink, while the straight sides and smooth surface make it easy to sip and enjoy. The crystal highball glass is easy to clean and maintain. It can be washed by hand or in a dishwasher, and should be dried thoroughly to prevent water spots or residue from forming. Overall, the crystal highball glass is a stylish and elegant piece of glassware that is perfect for serving tall, mixed drinks. Its delicate crystal material and intricate design make it a popular choice for special occasions and fine dining experiences.' - ) - ['en-US']( - 'This Crystal Drinking Glass is made of high-quality, lead-free crystal glass that is thin and delicate, yet strong and durable. The crystal material of the highball glass enhances the appearance of the drink, making it appear more sparkling and colorful. It also enhances the aroma and flavor of the drink, allowing the drinker to fully appreciate the complexity of the ingredients. The design of the glass is intended to accommodate the addition of ice, soda, or other mixers, while still leaving plenty of room for the drink itself. The wide mouth of the glass allows the drinker to smell the aroma of the drink, while the straight sides and smooth surface make it easy to sip and enjoy. The crystal highball glass is easy to clean and maintain. It can be washed by hand or in a dishwasher, and should be dried thoroughly to prevent water spots or residue from forming. Overall, the crystal highball glass is a stylish and elegant piece of glassware that is perfect for serving tall, mixed drinks. Its delicate crystal material and intricate design make it a popular choice for special occasions and fine dining experiences.' - ) - ['de-DE']( - 'Dieses Kristall-Glas besteht aus hochwertigem, bleifreiem Kristallglas, das dünn und zart, aber dennoch stark und langlebig ist. Das hochwertige Kristallmaterial wertet das Trinkerlebnis auf und lässt die Getränke funkelnder und farbenfroher erscheinen. Das Glas ist zudem so designed, dass es auch das Aroma und den Geschmack des Getränks verbessert. Das Design des Glases soll die Zugabe von Eis, Soda oder anderen Mixern ermöglichen und dennoch viel Platz für das Getränk selbst lassen. Die weite Öffnung des Glases lässt das Aroma des Getränkes aufsteigen, während die geraden Seiten und die glatte Oberfläche das Trinken und Genießen erleichtern. Dieses Kristall-Glas ist leicht zu reinigen und zu pflegen. Es kann von Hand oder in der Spülmaschine gewaschen werden und sollte gründlich getrocknet werden, um Wasserflecken oder Rückstände zu vermeiden. Insgesamt ist dieses Glas aus Kristall ein stilvolles und elegantes Glasgeschirr, das sich perfekt zum Servieren von großen Mixgetränken eignet. Sein zartes Kristallmaterial und sein kompliziertes Design machen es zu einer beliebten Wahl für besondere Anlässe und gehobene Speiseerlebnisse.' - ) + [ + 'en-GB' + ]('This Crystal Drinking Glass is made of high-quality, lead-free crystal glass that is thin and delicate, yet strong and durable. The crystal material of the highball glass enhances the appearance of the drink, making it appear more sparkling and colorful. It also enhances the aroma and flavor of the drink, allowing the drinker to fully appreciate the complexity of the ingredients. The design of the glass is intended to accommodate the addition of ice, soda, or other mixers, while still leaving plenty of room for the drink itself. The wide mouth of the glass allows the drinker to smell the aroma of the drink, while the straight sides and smooth surface make it easy to sip and enjoy. The crystal highball glass is easy to clean and maintain. It can be washed by hand or in a dishwasher, and should be dried thoroughly to prevent water spots or residue from forming. Overall, the crystal highball glass is a stylish and elegant piece of glassware that is perfect for serving tall, mixed drinks. Its delicate crystal material and intricate design make it a popular choice for special occasions and fine dining experiences.') + [ + 'en-US' + ]('This Crystal Drinking Glass is made of high-quality, lead-free crystal glass that is thin and delicate, yet strong and durable. The crystal material of the highball glass enhances the appearance of the drink, making it appear more sparkling and colorful. It also enhances the aroma and flavor of the drink, allowing the drinker to fully appreciate the complexity of the ingredients. The design of the glass is intended to accommodate the addition of ice, soda, or other mixers, while still leaving plenty of room for the drink itself. The wide mouth of the glass allows the drinker to smell the aroma of the drink, while the straight sides and smooth surface make it easy to sip and enjoy. The crystal highball glass is easy to clean and maintain. It can be washed by hand or in a dishwasher, and should be dried thoroughly to prevent water spots or residue from forming. Overall, the crystal highball glass is a stylish and elegant piece of glassware that is perfect for serving tall, mixed drinks. Its delicate crystal material and intricate design make it a popular choice for special occasions and fine dining experiences.') + [ + 'de-DE' + ]('Dieses Kristall-Glas besteht aus hochwertigem, bleifreiem Kristallglas, das dünn und zart, aber dennoch stark und langlebig ist. Das hochwertige Kristallmaterial wertet das Trinkerlebnis auf und lässt die Getränke funkelnder und farbenfroher erscheinen. Das Glas ist zudem so designed, dass es auch das Aroma und den Geschmack des Getränks verbessert. Das Design des Glases soll die Zugabe von Eis, Soda oder anderen Mixern ermöglichen und dennoch viel Platz für das Getränk selbst lassen. Die weite Öffnung des Glases lässt das Aroma des Getränkes aufsteigen, während die geraden Seiten und die glatte Oberfläche das Trinken und Genießen erleichtern. Dieses Kristall-Glas ist leicht zu reinigen und zu pflegen. Es kann von Hand oder in der Spülmaschine gewaschen werden und sollte gründlich getrocknet werden, um Wasserflecken oder Rückstände zu vermeiden. Insgesamt ist dieses Glas aus Kristall ein stilvolles und elegantes Glasgeschirr, das sich perfekt zum Servieren von großen Mixgetränken eignet. Sein zartes Kristallmaterial und sein kompliziertes Design machen es zu einer beliebten Wahl für besondere Anlässe und gehobene Speiseerlebnisse.') ) .slug( LocalizedStringDraft.presets @@ -80,7 +80,7 @@ const crystalDrinkingGlass = (): TProductDraftBuilder => KeyReferenceDraft.presets.taxCategory().key(standardTaxCategoryDraft.key!) ) .masterVariant( - ProductVariantDraft.presets.sampleDataGoodStore.crystalDrinkingGlass01() + ProductVariantDraft.presets.sampleDataB2CLifestyle.crystalDrinkingGlass01() ) .categories([ KeyReferenceDraft.presets.category().key(glasswareDraft.key!), diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/cube-jute-basket.spec.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/cube-jute-basket.spec.ts similarity index 99% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/cube-jute-basket.spec.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/cube-jute-basket.spec.ts index aab74895e..0597a0e3c 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/cube-jute-basket.spec.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/cube-jute-basket.spec.ts @@ -62,7 +62,7 @@ describe(`with cubeJuteBasket preset`, () => { "w": 4684, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Cube_Jute_Basket-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Cube_Jute_Basket-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/cube-jute-basket.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/cube-jute-basket.ts similarity index 85% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/cube-jute-basket.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/cube-jute-basket.ts index 436ae91c9..cb459f639 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/cube-jute-basket.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/cube-jute-basket.ts @@ -18,24 +18,24 @@ import * as ProductVariantDraft from '../../../../product-variant/product-varian import * as ProductDraft from '../../../product-draft'; import type { TProductDraftBuilder } from '../../../types'; -const standardTaxCategoryDraft = TaxCategoryDraft.presets.sampleDataGoodStore +const standardTaxCategoryDraft = TaxCategoryDraft.presets.sampleDataB2CLifestyle .standardTaxCategory() .build(); const cubeJuteBasketProductTypeDraft = - ProductTypeDraft.presets.sampleDataGoodStore + ProductTypeDraft.presets.sampleDataB2CLifestyle .furnitureAndDecor() .build(); -const homeAccentsDraft = CategoryDraft.presets.sampleDataGoodStore +const homeAccentsDraft = CategoryDraft.presets.sampleDataB2CLifestyle .homeAccents() .build(); -const roomDecorDraft = CategoryDraft.presets.sampleDataGoodStore +const roomDecorDraft = CategoryDraft.presets.sampleDataB2CLifestyle .roomDecor() .build(); -const homeDecorDraft = CategoryDraft.presets.sampleDataGoodStore +const homeDecorDraft = CategoryDraft.presets.sampleDataB2CLifestyle .homeDecor() .build(); @@ -53,15 +53,15 @@ const cubeJuteBasket = (): TProductDraftBuilder => .description( LocalizedStringDraft.presets .empty() - ['en-GB']( - 'A cube jute basket for the living room is a practical and stylish storage solution that adds warmth and texture to the space. The basket is made from natural jute fibers, which are tightly woven together to create a sturdy and durable structure. The cube shape of the basket is perfect for storing a variety of items, such as blankets, magazines, remote controls, or even small plants. The open top of the basket allows for easy access to its contents, while the sides provide a secure barrier to keep everything neatly contained. The neutral color of the jute fibers complements a variety of decor styles, from bohemian to coastal to rustic. The basket can be placed on the floor or on a shelf, and its compact size makes it easy to move around as needed.' - ) - ['en-US']( - 'A cube jute basket for the living room is a practical and stylish storage solution that adds warmth and texture to the space. The basket is made from natural jute fibers, which are tightly woven together to create a sturdy and durable structure. The cube shape of the basket is perfect for storing a variety of items, such as blankets, magazines, remote controls, or even small plants. The open top of the basket allows for easy access to its contents, while the sides provide a secure barrier to keep everything neatly contained. The neutral color of the jute fibers complements a variety of decor styles, from bohemian to coastal to rustic. The basket can be placed on the floor or on a shelf, and its compact size makes it easy to move around as needed.' - ) - ['de-DE']( - 'Dieser Würfelkorb aus Jute für das Wohnzimmer ist eine praktische und stilvolle Aufbewahrungslösung, die dem Raum Wärme und Struktur verleiht. Der Korb besteht aus natürlichen Jutefasern, die eng miteinander verwoben sind, um eine robuste und langlebige Struktur zu schaffen. Die Würfelform des Korbs eignet sich perfekt zur Aufbewahrung einer Vielzahl von Gegenständen wie Decken, Zeitschriften, Fernbedienungen oder sogar kleinen Pflanzen. Die offene Oberseite des Korbs ermöglicht einen einfachen Zugriff auf den Inhalt, während die Seiten eine sichere Barriere bieten, um alles ordentlich zu verstauen. Die neutrale Farbe der Jutefasern ergänzt eine Vielzahl von Einrichtungsstilen, von böhmisch über küstennah bis rustikal. Der Korb kann auf den Boden oder in ein Regal gestellt werden und lässt sich dank seiner kompakten Größe bei Bedarf leicht bewegen.' - ) + [ + 'en-GB' + ]('A cube jute basket for the living room is a practical and stylish storage solution that adds warmth and texture to the space. The basket is made from natural jute fibers, which are tightly woven together to create a sturdy and durable structure. The cube shape of the basket is perfect for storing a variety of items, such as blankets, magazines, remote controls, or even small plants. The open top of the basket allows for easy access to its contents, while the sides provide a secure barrier to keep everything neatly contained. The neutral color of the jute fibers complements a variety of decor styles, from bohemian to coastal to rustic. The basket can be placed on the floor or on a shelf, and its compact size makes it easy to move around as needed.') + [ + 'en-US' + ]('A cube jute basket for the living room is a practical and stylish storage solution that adds warmth and texture to the space. The basket is made from natural jute fibers, which are tightly woven together to create a sturdy and durable structure. The cube shape of the basket is perfect for storing a variety of items, such as blankets, magazines, remote controls, or even small plants. The open top of the basket allows for easy access to its contents, while the sides provide a secure barrier to keep everything neatly contained. The neutral color of the jute fibers complements a variety of decor styles, from bohemian to coastal to rustic. The basket can be placed on the floor or on a shelf, and its compact size makes it easy to move around as needed.') + [ + 'de-DE' + ]('Dieser Würfelkorb aus Jute für das Wohnzimmer ist eine praktische und stilvolle Aufbewahrungslösung, die dem Raum Wärme und Struktur verleiht. Der Korb besteht aus natürlichen Jutefasern, die eng miteinander verwoben sind, um eine robuste und langlebige Struktur zu schaffen. Die Würfelform des Korbs eignet sich perfekt zur Aufbewahrung einer Vielzahl von Gegenständen wie Decken, Zeitschriften, Fernbedienungen oder sogar kleinen Pflanzen. Die offene Oberseite des Korbs ermöglicht einen einfachen Zugriff auf den Inhalt, während die Seiten eine sichere Barriere bieten, um alles ordentlich zu verstauen. Die neutrale Farbe der Jutefasern ergänzt eine Vielzahl von Einrichtungsstilen, von böhmisch über küstennah bis rustikal. Der Korb kann auf den Boden oder in ein Regal gestellt werden und lässt sich dank seiner kompakten Größe bei Bedarf leicht bewegen.') ) .slug( LocalizedStringDraft.presets @@ -80,7 +80,7 @@ const cubeJuteBasket = (): TProductDraftBuilder => KeyReferenceDraft.presets.taxCategory().key(standardTaxCategoryDraft.key!) ) .masterVariant( - ProductVariantDraft.presets.sampleDataGoodStore.cubeJuteBasket01() + ProductVariantDraft.presets.sampleDataB2CLifestyle.cubeJuteBasket01() ) .categories([ KeyReferenceDraft.presets.category().key(homeAccentsDraft.key!), diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/double-sided-shot-glass.spec.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/double-sided-shot-glass.spec.ts similarity index 98% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/double-sided-shot-glass.spec.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/double-sided-shot-glass.spec.ts index b0a1e1750..bf7f569c2 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/double-sided-shot-glass.spec.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/double-sided-shot-glass.spec.ts @@ -60,7 +60,7 @@ describe(`with doubleSidedShotGlass preset`, () => { "w": 3648, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Double_Sided_Shot_Glass-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Double_Sided_Shot_Glass-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/double-sided-shot-glass.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/double-sided-shot-glass.ts similarity index 80% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/double-sided-shot-glass.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/double-sided-shot-glass.ts index f6c1be247..240ee9924 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/double-sided-shot-glass.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/double-sided-shot-glass.ts @@ -18,24 +18,24 @@ import * as ProductVariantDraft from '../../../../product-variant/product-varian import * as ProductDraft from '../../../product-draft'; import type { TProductDraftBuilder } from '../../../types'; -const standardTaxCategoryDraft = TaxCategoryDraft.presets.sampleDataGoodStore +const standardTaxCategoryDraft = TaxCategoryDraft.presets.sampleDataB2CLifestyle .standardTaxCategory() .build(); const doubleSidedShotGlassProductTypeDraft = - ProductTypeDraft.presets.sampleDataGoodStore + ProductTypeDraft.presets.sampleDataB2CLifestyle .furnitureAndDecor() .build(); -const barAccessoriesDraft = CategoryDraft.presets.sampleDataGoodStore +const barAccessoriesDraft = CategoryDraft.presets.sampleDataB2CLifestyle .barAccessories() .build(); -const barAndGlasswareDraft = CategoryDraft.presets.sampleDataGoodStore +const barAndGlasswareDraft = CategoryDraft.presets.sampleDataB2CLifestyle .barAndGlassware() .build(); -const kitchenDraft = CategoryDraft.presets.sampleDataGoodStore +const kitchenDraft = CategoryDraft.presets.sampleDataB2CLifestyle .kitchen() .build(); @@ -53,15 +53,15 @@ const doubleSidedShotGlass = (): TProductDraftBuilder => .description( LocalizedStringDraft.presets .empty() - ['en-GB']( - 'This steel shot glass is made of steel and has two ends, one for measuring a standard shot, and the other for measuring a larger double shot. The ends are shaped like small cups with rounded edges for easy pouring. The steel construction makes it durable and resistant to wear and tear, while also providing a sleek and modern appearance.' - ) - ['en-US']( - 'This steel shot glass is made of steel and has two ends, one for measuring a standard shot, and the other for measuring a larger double shot. The ends are shaped like small cups with rounded edges for easy pouring. The steel construction makes it durable and resistant to wear and tear, while also providing a sleek and modern appearance.' - ) - ['de-DE']( - 'Dieses Stahlschnapsglas besteht aus Stahl und hat zwei Enden, eines zum Messen eines Standardschnapses und das andere zum Messen eines größeren Doppelschnapses. Die Enden sind wie kleine Tassen mit abgerundeten Kanten zum einfachen Ausgießen geformt. Die Stahlkonstruktion macht es langlebig und verschleißfest und bietet gleichzeitig ein elegantes und modernes Erscheinungsbild.' - ) + [ + 'en-GB' + ]('This steel shot glass is made of steel and has two ends, one for measuring a standard shot, and the other for measuring a larger double shot. The ends are shaped like small cups with rounded edges for easy pouring. The steel construction makes it durable and resistant to wear and tear, while also providing a sleek and modern appearance.') + [ + 'en-US' + ]('This steel shot glass is made of steel and has two ends, one for measuring a standard shot, and the other for measuring a larger double shot. The ends are shaped like small cups with rounded edges for easy pouring. The steel construction makes it durable and resistant to wear and tear, while also providing a sleek and modern appearance.') + [ + 'de-DE' + ]('Dieses Stahlschnapsglas besteht aus Stahl und hat zwei Enden, eines zum Messen eines Standardschnapses und das andere zum Messen eines größeren Doppelschnapses. Die Enden sind wie kleine Tassen mit abgerundeten Kanten zum einfachen Ausgießen geformt. Die Stahlkonstruktion macht es langlebig und verschleißfest und bietet gleichzeitig ein elegantes und modernes Erscheinungsbild.') ) .slug( LocalizedStringDraft.presets @@ -80,7 +80,7 @@ const doubleSidedShotGlass = (): TProductDraftBuilder => KeyReferenceDraft.presets.taxCategory().key(standardTaxCategoryDraft.key!) ) .masterVariant( - ProductVariantDraft.presets.sampleDataGoodStore.doubleSidedShotGlass01() + ProductVariantDraft.presets.sampleDataB2CLifestyle.doubleSidedShotGlass01() ) .categories([ KeyReferenceDraft.presets.category().key(barAccessoriesDraft.key!), diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/double-walled-espresso-glass.spec.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/double-walled-espresso-glass.spec.ts similarity index 98% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/double-walled-espresso-glass.spec.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/double-walled-espresso-glass.spec.ts index 8a5a40d49..bb2425619 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/double-walled-espresso-glass.spec.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/double-walled-espresso-glass.spec.ts @@ -65,7 +65,7 @@ describe(`with doubleWalledEspressoGlass preset`, () => { "w": 3371, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Double_Walled_Espresso_Glass-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Double_Walled_Espresso_Glass-1.1.jpeg", }, { "dimensions": { @@ -73,7 +73,7 @@ describe(`with doubleWalledEspressoGlass preset`, () => { "w": 987, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Double_Walled_Espresso_Glass-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Double_Walled_Espresso_Glass-1.2.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/double-walled-espresso-glass.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/double-walled-espresso-glass.ts similarity index 88% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/double-walled-espresso-glass.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/double-walled-espresso-glass.ts index 8135cd1e4..f72071023 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/double-walled-espresso-glass.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/double-walled-espresso-glass.ts @@ -18,24 +18,24 @@ import * as ProductVariantDraft from '../../../../product-variant/product-varian import * as ProductDraft from '../../../product-draft'; import type { TProductDraftBuilder } from '../../../types'; -const standardTaxCategoryDraft = TaxCategoryDraft.presets.sampleDataGoodStore +const standardTaxCategoryDraft = TaxCategoryDraft.presets.sampleDataB2CLifestyle .standardTaxCategory() .build(); const doubleWalledEspressoGlassProductTypeDraft = - ProductTypeDraft.presets.sampleDataGoodStore + ProductTypeDraft.presets.sampleDataB2CLifestyle .furnitureAndDecor() .build(); -const glasswareDraft = CategoryDraft.presets.sampleDataGoodStore +const glasswareDraft = CategoryDraft.presets.sampleDataB2CLifestyle .glassware() .build(); -const barAndGlasswareDraft = CategoryDraft.presets.sampleDataGoodStore +const barAndGlasswareDraft = CategoryDraft.presets.sampleDataB2CLifestyle .barAndGlassware() .build(); -const kitchenDraft = CategoryDraft.presets.sampleDataGoodStore +const kitchenDraft = CategoryDraft.presets.sampleDataB2CLifestyle .kitchen() .build(); @@ -53,15 +53,15 @@ const doubleWalledEspressoGlass = (): TProductDraftBuilder => .description( LocalizedStringDraft.presets .empty() - ['de-DE']( - 'Eine doppelwandige Espressotasse aus Glas ist speziell zum Servieren von Espresso entwickelt worden. Sie besteht aus Glas und ist doppelwandig aufgebaut, was bedeutet, dass es zwei Glasschichten gibt, die durch einen kleinen Spalt getrennt sind. Das doppelwandige Design der Espressotasse aus Glas bietet mehrere Vorteile. Erstens hilft es, den Espresso zu isolieren, wodurch er länger heiß bleibt. Zweitens sorgt die doppelwandige Konstruktion dafür, dass sich die Außenseite der Tasse kühl anfühlt, wodurch sie auch bei sehr heißem Espresso angenehm in der Hand liegt. Die Tasse hat ein Fassungsvermögen von etwa 2-3 cl, was die perfekte Größe für einen Schuss Espresso ist. Das Glas ist außerdem transparent, sodass Sie die satte, dunkle Farbe des Espressos sehen können, wenn er eingeschenkt und getrunken wird. Die doppelwandige Espressotasse aus Glas wird oft mit einer passenden Untertasse kombiniert, die der Tasse einen stabilen Stand bietet und auch Platz für einen kleinen Löffel oder Keks bietet. Insgesamt ist die doppelwandige Espressotasse aus Glas eine stilvolle und funktionale Möglichkeit, die reichen und komplexen Aromen eines Espressos zu genießen.' - ) - ['en-GB']( - 'A double-walled glass espresso cup is a type of drinking vessel that is specifically designed for serving espresso. It is made of glass and features a double-walled construction, which means that there are two layers of glass that are separated by a small gap. The double-walled design of the glass espresso cup provides several benefits. First, it helps to insulate the espresso, which keeps it hot for longer periods of time. Second, the double-walled construction keeps the outside of the cup cool to the touch, which makes it comfortable to hold even when the espresso inside is very hot. The cup is typically small in size, with a capacity of around 2-3 ounces, which is the perfect size for a shot of espresso. The glass is also transparent, which allows you to see the rich, dark color of the espresso as it is poured and consumed. The double-walled glass espresso cup is often paired with a matching saucer, which provides a stable base for the cup and also provides a place to set a small spoon or biscuit. Overall, the double-walled glass espresso cup is a stylish and functional way to enjoy the rich and complex flavors of a shot of espresso.' - ) - ['en-US']( - 'A double-walled glass espresso cup is a type of drinking vessel that is specifically designed for serving espresso. It is made of glass and features a double-walled construction, which means that there are two layers of glass that are separated by a small gap. The double-walled design of the glass espresso cup provides several benefits. First, it helps to insulate the espresso, which keeps it hot for longer periods of time. Second, the double-walled construction keeps the outside of the cup cool to the touch, which makes it comfortable to hold even when the espresso inside is very hot. The cup is typically small in size, with a capacity of around 2-3 ounces, which is the perfect size for a shot of espresso. The glass is also transparent, which allows you to see the rich, dark color of the espresso as it is poured and consumed. The double-walled glass espresso cup is often paired with a matching saucer, which provides a stable base for the cup and also provides a place to set a small spoon or biscuit. Overall, the double-walled glass espresso cup is a stylish and functional way to enjoy the rich and complex flavors of a shot of espresso.' - ) + [ + 'de-DE' + ]('Eine doppelwandige Espressotasse aus Glas ist speziell zum Servieren von Espresso entwickelt worden. Sie besteht aus Glas und ist doppelwandig aufgebaut, was bedeutet, dass es zwei Glasschichten gibt, die durch einen kleinen Spalt getrennt sind. Das doppelwandige Design der Espressotasse aus Glas bietet mehrere Vorteile. Erstens hilft es, den Espresso zu isolieren, wodurch er länger heiß bleibt. Zweitens sorgt die doppelwandige Konstruktion dafür, dass sich die Außenseite der Tasse kühl anfühlt, wodurch sie auch bei sehr heißem Espresso angenehm in der Hand liegt. Die Tasse hat ein Fassungsvermögen von etwa 2-3 cl, was die perfekte Größe für einen Schuss Espresso ist. Das Glas ist außerdem transparent, sodass Sie die satte, dunkle Farbe des Espressos sehen können, wenn er eingeschenkt und getrunken wird. Die doppelwandige Espressotasse aus Glas wird oft mit einer passenden Untertasse kombiniert, die der Tasse einen stabilen Stand bietet und auch Platz für einen kleinen Löffel oder Keks bietet. Insgesamt ist die doppelwandige Espressotasse aus Glas eine stilvolle und funktionale Möglichkeit, die reichen und komplexen Aromen eines Espressos zu genießen.') + [ + 'en-GB' + ]('A double-walled glass espresso cup is a type of drinking vessel that is specifically designed for serving espresso. It is made of glass and features a double-walled construction, which means that there are two layers of glass that are separated by a small gap. The double-walled design of the glass espresso cup provides several benefits. First, it helps to insulate the espresso, which keeps it hot for longer periods of time. Second, the double-walled construction keeps the outside of the cup cool to the touch, which makes it comfortable to hold even when the espresso inside is very hot. The cup is typically small in size, with a capacity of around 2-3 ounces, which is the perfect size for a shot of espresso. The glass is also transparent, which allows you to see the rich, dark color of the espresso as it is poured and consumed. The double-walled glass espresso cup is often paired with a matching saucer, which provides a stable base for the cup and also provides a place to set a small spoon or biscuit. Overall, the double-walled glass espresso cup is a stylish and functional way to enjoy the rich and complex flavors of a shot of espresso.') + [ + 'en-US' + ]('A double-walled glass espresso cup is a type of drinking vessel that is specifically designed for serving espresso. It is made of glass and features a double-walled construction, which means that there are two layers of glass that are separated by a small gap. The double-walled design of the glass espresso cup provides several benefits. First, it helps to insulate the espresso, which keeps it hot for longer periods of time. Second, the double-walled construction keeps the outside of the cup cool to the touch, which makes it comfortable to hold even when the espresso inside is very hot. The cup is typically small in size, with a capacity of around 2-3 ounces, which is the perfect size for a shot of espresso. The glass is also transparent, which allows you to see the rich, dark color of the espresso as it is poured and consumed. The double-walled glass espresso cup is often paired with a matching saucer, which provides a stable base for the cup and also provides a place to set a small spoon or biscuit. Overall, the double-walled glass espresso cup is a stylish and functional way to enjoy the rich and complex flavors of a shot of espresso.') ) .slug( LocalizedStringDraft.presets @@ -80,7 +80,7 @@ const doubleWalledEspressoGlass = (): TProductDraftBuilder => KeyReferenceDraft.presets.taxCategory().key(standardTaxCategoryDraft.key!) ) .masterVariant( - ProductVariantDraft.presets.sampleDataGoodStore.doubleWalledEspressoGlass01() + ProductVariantDraft.presets.sampleDataB2CLifestyle.doubleWalledEspressoGlass01() ) .categories([ KeyReferenceDraft.presets.category().key(glasswareDraft.key!), diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/ecru-double-bed.spec.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/ecru-double-bed.spec.ts similarity index 98% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/ecru-double-bed.spec.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/ecru-double-bed.spec.ts index 3db1c7f91..8c6a1110b 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/ecru-double-bed.spec.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/ecru-double-bed.spec.ts @@ -59,7 +59,7 @@ describe(`with ecruDoubleBed preset`, () => { "w": 2000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Ecru_Double_Bed-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Ecru_Double_Bed-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/ecru-double-bed.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/ecru-double-bed.ts similarity index 86% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/ecru-double-bed.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/ecru-double-bed.ts index 62f62371c..0997debf9 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/ecru-double-bed.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/ecru-double-bed.ts @@ -18,24 +18,24 @@ import * as ProductVariantDraft from '../../../../product-variant/product-varian import * as ProductDraft from '../../../product-draft'; import type { TProductDraftBuilder } from '../../../types'; -const standardTaxCategoryDraft = TaxCategoryDraft.presets.sampleDataGoodStore +const standardTaxCategoryDraft = TaxCategoryDraft.presets.sampleDataB2CLifestyle .standardTaxCategory() .build(); const ecruDoubleBedProductTypeDraft = - ProductTypeDraft.presets.sampleDataGoodStore + ProductTypeDraft.presets.sampleDataB2CLifestyle .furnitureAndDecor() .build(); -const bedroomFurnitureDraft = CategoryDraft.presets.sampleDataGoodStore +const bedroomFurnitureDraft = CategoryDraft.presets.sampleDataB2CLifestyle .bedroomFurniture() .build(); -const furnitureDraft = CategoryDraft.presets.sampleDataGoodStore +const furnitureDraft = CategoryDraft.presets.sampleDataB2CLifestyle .furniture() .build(); -const bedsDraft = CategoryDraft.presets.sampleDataGoodStore +const bedsDraft = CategoryDraft.presets.sampleDataB2CLifestyle .beds() .build(); @@ -53,15 +53,15 @@ const ecruDoubleBed = (): TProductDraftBuilder => .description( LocalizedStringDraft.presets .empty() - ['en-GB']( - 'A double-sized bed with a sofa headboard is a unique and versatile piece of furniture that combines the comfort of a bed with the functionality of a sofa. The bed frame is rectangular and large enough to accommodate a standard double mattress. The headboard is in the form of a sofa, which is attached to the top of the bed frame. The sofa headboard provides a comfortable backrest for sitting up in bed to read, watch TV, or work on a laptop. The sofa headboard is upholstered in a soft and durable fabric, providing a comfortable seating surface. Overall, a queen bed with a sofa headboard is a practical and stylish piece of furniture that can add both comfort and functionality to any bedroom.' - ) - ['en-US']( - 'A double-sized bed with a sofa headboard is a unique and versatile piece of furniture that combines the comfort of a bed with the functionality of a sofa. The bed frame is rectangular and large enough to accommodate a standard double mattress. The headboard is in the form of a sofa, which is attached to the top of the bed frame. The sofa headboard provides a comfortable backrest for sitting up in bed to read, watch TV, or work on a laptop. The sofa headboard is upholstered in a soft and durable fabric, providing a comfortable seating surface. Overall, a queen bed with a sofa headboard is a practical and stylish piece of furniture that can add both comfort and functionality to any bedroom.' - ) - ['de-DE']( - 'Dieses Doppelbett mit gepolstertem Kopfteil ist ein einzigartiges und vielseitiges Möbelstück, das den Komfort eines Bettes mit der Funktionalität eines Sofas verbindet. Der Bettrahmen ist rechteckig und groß genug, um eine Standard-Doppelmatratze aufzunehmen. Das Kopfteil hat die Form eines Sofas, das oben am Bettrahmen befestigt ist. Das Kopfteil des Sofas bietet eine bequeme Rückenlehne zum Sitzen im Bett, um zu lesen, fernzusehen oder an einem Laptop zu arbeiten. Das Kopfteil des Sofas ist mit einem weichen und strapazierfähigen Stoff bezogen und bietet eine bequeme Sitzfläche. Insgesamt ist ein Queensize-Bett mit Sofa-Kopfteil ein praktisches und stilvolles Möbelstück, das jedem Schlafzimmer sowohl Komfort als auch Funktionalität verleiht.' - ) + [ + 'en-GB' + ]('A double-sized bed with a sofa headboard is a unique and versatile piece of furniture that combines the comfort of a bed with the functionality of a sofa. The bed frame is rectangular and large enough to accommodate a standard double mattress. The headboard is in the form of a sofa, which is attached to the top of the bed frame. The sofa headboard provides a comfortable backrest for sitting up in bed to read, watch TV, or work on a laptop. The sofa headboard is upholstered in a soft and durable fabric, providing a comfortable seating surface. Overall, a queen bed with a sofa headboard is a practical and stylish piece of furniture that can add both comfort and functionality to any bedroom.') + [ + 'en-US' + ]('A double-sized bed with a sofa headboard is a unique and versatile piece of furniture that combines the comfort of a bed with the functionality of a sofa. The bed frame is rectangular and large enough to accommodate a standard double mattress. The headboard is in the form of a sofa, which is attached to the top of the bed frame. The sofa headboard provides a comfortable backrest for sitting up in bed to read, watch TV, or work on a laptop. The sofa headboard is upholstered in a soft and durable fabric, providing a comfortable seating surface. Overall, a queen bed with a sofa headboard is a practical and stylish piece of furniture that can add both comfort and functionality to any bedroom.') + [ + 'de-DE' + ]('Dieses Doppelbett mit gepolstertem Kopfteil ist ein einzigartiges und vielseitiges Möbelstück, das den Komfort eines Bettes mit der Funktionalität eines Sofas verbindet. Der Bettrahmen ist rechteckig und groß genug, um eine Standard-Doppelmatratze aufzunehmen. Das Kopfteil hat die Form eines Sofas, das oben am Bettrahmen befestigt ist. Das Kopfteil des Sofas bietet eine bequeme Rückenlehne zum Sitzen im Bett, um zu lesen, fernzusehen oder an einem Laptop zu arbeiten. Das Kopfteil des Sofas ist mit einem weichen und strapazierfähigen Stoff bezogen und bietet eine bequeme Sitzfläche. Insgesamt ist ein Queensize-Bett mit Sofa-Kopfteil ein praktisches und stilvolles Möbelstück, das jedem Schlafzimmer sowohl Komfort als auch Funktionalität verleiht.') ) .slug( LocalizedStringDraft.presets @@ -80,7 +80,7 @@ const ecruDoubleBed = (): TProductDraftBuilder => KeyReferenceDraft.presets.taxCategory().key(standardTaxCategoryDraft.key!) ) .masterVariant( - ProductVariantDraft.presets.sampleDataGoodStore.ecruDoubleBed01() + ProductVariantDraft.presets.sampleDataB2CLifestyle.ecruDoubleBed01() ) .categories([ KeyReferenceDraft.presets.category().key(bedroomFurnitureDraft.key!), diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/edgar-armchair.spec.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/edgar-armchair.spec.ts similarity index 98% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/edgar-armchair.spec.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/edgar-armchair.spec.ts index 4b4c95931..c54641d14 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/edgar-armchair.spec.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/edgar-armchair.spec.ts @@ -68,7 +68,7 @@ describe(`with edgarArmchair preset`, () => { "w": 5000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Edgar_Armchair-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Edgar_Armchair-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/edgar-armchair.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/edgar-armchair.ts similarity index 86% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/edgar-armchair.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/edgar-armchair.ts index 37824fd25..159396a38 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/edgar-armchair.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/edgar-armchair.ts @@ -18,28 +18,28 @@ import * as ProductVariantDraft from '../../../../product-variant/product-varian import * as ProductDraft from '../../../product-draft'; import type { TProductDraftBuilder } from '../../../types'; -const standardTaxCategoryDraft = TaxCategoryDraft.presets.sampleDataGoodStore +const standardTaxCategoryDraft = TaxCategoryDraft.presets.sampleDataB2CLifestyle .standardTaxCategory() .build(); const edgarArmchairProductTypeDraft = - ProductTypeDraft.presets.sampleDataGoodStore + ProductTypeDraft.presets.sampleDataB2CLifestyle .furnitureAndDecor() .build(); -const newArrivalsDraft = CategoryDraft.presets.sampleDataGoodStore +const newArrivalsDraft = CategoryDraft.presets.sampleDataB2CLifestyle .newArrivals() .build(); -const furnitureDraft = CategoryDraft.presets.sampleDataGoodStore +const furnitureDraft = CategoryDraft.presets.sampleDataB2CLifestyle .furniture() .build(); -const armchairsDraft = CategoryDraft.presets.sampleDataGoodStore +const armchairsDraft = CategoryDraft.presets.sampleDataB2CLifestyle .armchairs() .build(); -const livingRoomFurnitureDraft = CategoryDraft.presets.sampleDataGoodStore +const livingRoomFurnitureDraft = CategoryDraft.presets.sampleDataB2CLifestyle .livingRoomFurniture() .build(); @@ -57,15 +57,15 @@ const edgarArmchair = (): TProductDraftBuilder => .description( LocalizedStringDraft.presets .empty() - ['en-GB']( - 'An abstract modern style armchair with metal legs is a unique piece of furniture that would add a touch of sophistication to any room. The chair is designed with clean lines and a sleek profile, featuring a low, wide seat and a tall backrest that curves gently around the sides of the chair. The seat and backrest are upholstered in a textured, durable fabric, which adds a contemporary edge to the classic armchair design. The metal legs are thin and tapered, providing a delicate yet sturdy base for the chair. Overall, this armchair is a perfect blend of style and comfort, making it a great addition to any modern living space.' - ) - ['en-US']( - 'An abstract modern style armchair with metal legs is a unique piece of furniture that would add a touch of sophistication to any room. The chair is designed with clean lines and a sleek profile, featuring a low, wide seat and a tall backrest that curves gently around the sides of the chair. The seat and backrest are upholstered in a textured, durable fabric, which adds a contemporary edge to the classic armchair design. The metal legs are thin and tapered, providing a delicate yet sturdy base for the chair. Overall, this armchair is a perfect blend of style and comfort, making it a great addition to any modern living space.' - ) - ['de-DE']( - 'Ein Sessel im abstrakten modernen Stil mit Metallbeinen ist ein einzigartiges Möbelstück, das jedem Raum einen Hauch von Raffinesse verleiht. Der Stuhl ist mit klaren Linien und einem schlanken Profil gestaltet und verfügt über einen niedrigen, breiten Sitz und eine hohe Rückenlehne, die sich sanft um die Seiten des Stuhls krümmt. Der Sitz und die Rückenlehne sind mit einem strukturierten, strapazierfähigen Stoff bezogen, der dem klassischen Sesseldesign eine zeitgemäße Note verleiht. Die Metallbeine sind dünn und konisch zulaufend und bilden eine filigrane und dennoch stabile Basis für den Stuhl. Insgesamt ist dieser Sessel eine perfekte Mischung aus Stil und Komfort, was ihn zu einer großartigen Ergänzung für jeden modernen Wohnraum macht.' - ) + [ + 'en-GB' + ]('An abstract modern style armchair with metal legs is a unique piece of furniture that would add a touch of sophistication to any room. The chair is designed with clean lines and a sleek profile, featuring a low, wide seat and a tall backrest that curves gently around the sides of the chair. The seat and backrest are upholstered in a textured, durable fabric, which adds a contemporary edge to the classic armchair design. The metal legs are thin and tapered, providing a delicate yet sturdy base for the chair. Overall, this armchair is a perfect blend of style and comfort, making it a great addition to any modern living space.') + [ + 'en-US' + ]('An abstract modern style armchair with metal legs is a unique piece of furniture that would add a touch of sophistication to any room. The chair is designed with clean lines and a sleek profile, featuring a low, wide seat and a tall backrest that curves gently around the sides of the chair. The seat and backrest are upholstered in a textured, durable fabric, which adds a contemporary edge to the classic armchair design. The metal legs are thin and tapered, providing a delicate yet sturdy base for the chair. Overall, this armchair is a perfect blend of style and comfort, making it a great addition to any modern living space.') + [ + 'de-DE' + ]('Ein Sessel im abstrakten modernen Stil mit Metallbeinen ist ein einzigartiges Möbelstück, das jedem Raum einen Hauch von Raffinesse verleiht. Der Stuhl ist mit klaren Linien und einem schlanken Profil gestaltet und verfügt über einen niedrigen, breiten Sitz und eine hohe Rückenlehne, die sich sanft um die Seiten des Stuhls krümmt. Der Sitz und die Rückenlehne sind mit einem strukturierten, strapazierfähigen Stoff bezogen, der dem klassischen Sesseldesign eine zeitgemäße Note verleiht. Die Metallbeine sind dünn und konisch zulaufend und bilden eine filigrane und dennoch stabile Basis für den Stuhl. Insgesamt ist dieser Sessel eine perfekte Mischung aus Stil und Komfort, was ihn zu einer großartigen Ergänzung für jeden modernen Wohnraum macht.') ) .slug( LocalizedStringDraft.presets @@ -84,7 +84,7 @@ const edgarArmchair = (): TProductDraftBuilder => KeyReferenceDraft.presets.taxCategory().key(standardTaxCategoryDraft.key!) ) .masterVariant( - ProductVariantDraft.presets.sampleDataGoodStore.edgarArmchair01() + ProductVariantDraft.presets.sampleDataB2CLifestyle.edgarArmchair01() ) .categories([ KeyReferenceDraft.presets.category().key(newArrivalsDraft.key!), diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/ella-square-plate.spec.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/ella-square-plate.spec.ts similarity index 97% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/ella-square-plate.spec.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/ella-square-plate.spec.ts index 4fa521cff..c9589fb9f 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/ella-square-plate.spec.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/ella-square-plate.spec.ts @@ -64,7 +64,7 @@ describe(`with ellaSquarePlate preset`, () => { "w": 5692, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Ella_Square_Plate-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Ella_Square_Plate-1.1.jpeg", }, { "dimensions": { @@ -72,7 +72,7 @@ describe(`with ellaSquarePlate preset`, () => { "w": 7360, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Ella_Square_Plate-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Ella_Square_Plate-1.2.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/ella-square-plate.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/ella-square-plate.ts similarity index 81% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/ella-square-plate.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/ella-square-plate.ts index d35964d0e..1bc21de42 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/ella-square-plate.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/ella-square-plate.ts @@ -18,32 +18,32 @@ import * as ProductVariantDraft from '../../../../product-variant/product-varian import * as ProductDraft from '../../../product-draft'; import type { TProductDraftBuilder } from '../../../types'; -const standardTaxCategoryDraft = TaxCategoryDraft.presets.sampleDataGoodStore +const standardTaxCategoryDraft = TaxCategoryDraft.presets.sampleDataB2CLifestyle .standardTaxCategory() .build(); const ellaSquarePlateProductTypeDraft = - ProductTypeDraft.presets.sampleDataGoodStore + ProductTypeDraft.presets.sampleDataB2CLifestyle .furnitureAndDecor() .build(); -const platesDraft = CategoryDraft.presets.sampleDataGoodStore +const platesDraft = CategoryDraft.presets.sampleDataB2CLifestyle .plates() .build(); -const kitchenDraft = CategoryDraft.presets.sampleDataGoodStore +const kitchenDraft = CategoryDraft.presets.sampleDataB2CLifestyle .kitchen() .build(); -const servingPlattersDraft = CategoryDraft.presets.sampleDataGoodStore +const servingPlattersDraft = CategoryDraft.presets.sampleDataB2CLifestyle .servingPlatters() .build(); -const servewareDraft = CategoryDraft.presets.sampleDataGoodStore +const servewareDraft = CategoryDraft.presets.sampleDataB2CLifestyle .serveware() .build(); -const dinnerwareDraft = CategoryDraft.presets.sampleDataGoodStore +const dinnerwareDraft = CategoryDraft.presets.sampleDataB2CLifestyle .dinnerware() .build(); @@ -61,15 +61,15 @@ const ellaSquarePlate = (): TProductDraftBuilder => .description( LocalizedStringDraft.presets .empty() - ['de-DE']( - 'Dieser quadratische Teller "Ella" ist ideal zum Servieren oder Präsentieren von Speisen, von Vorspeisen und Hauptgerichten bis hin zu Desserts und Snacks. Er kann sowohl für formelle als auch für ungezwungene Anlässe verwendet werden, und seine Einfachheit und Vielseitigkeit machen ihn zu einer beliebten Wahl für viele verschiedene Arten von Küchen. Insgesamt ist ein quadratischer Keramikteller eine funktionale und stilvolle Wahl zum Servieren von Mahlzeiten und kann jedem Speiseerlebnis einen Hauch von Eleganz verleihen.' - ) - ['en-GB']( - 'This Ella square ceramic plate is a flat, four-sided dish ideal for serving or displaying food. A flat square serving plate is ideal for serving a variety of foods, from appetizers and main courses to desserts and snacks. It can be used for both formal and casual occasions, and its simplicity and versatility make it a popular choice for many different types of cuisines. Overall, a square ceramic plate is a functional and stylish choice for serving meals and can add a touch of elegance to any dining experience.' - ) - ['en-US']( - 'This Ella square ceramic plate is a flat, four-sided dish ideal for serving or displaying food. A flat square serving plate is ideal for serving a variety of foods, from appetizers and main courses to desserts and snacks. It can be used for both formal and casual occasions, and its simplicity and versatility make it a popular choice for many different types of cuisines. Overall, a square ceramic plate is a functional and stylish choice for serving meals and can add a touch of elegance to any dining experience.' - ) + [ + 'de-DE' + ]('Dieser quadratische Teller "Ella" ist ideal zum Servieren oder Präsentieren von Speisen, von Vorspeisen und Hauptgerichten bis hin zu Desserts und Snacks. Er kann sowohl für formelle als auch für ungezwungene Anlässe verwendet werden, und seine Einfachheit und Vielseitigkeit machen ihn zu einer beliebten Wahl für viele verschiedene Arten von Küchen. Insgesamt ist ein quadratischer Keramikteller eine funktionale und stilvolle Wahl zum Servieren von Mahlzeiten und kann jedem Speiseerlebnis einen Hauch von Eleganz verleihen.') + [ + 'en-GB' + ]('This Ella square ceramic plate is a flat, four-sided dish ideal for serving or displaying food. A flat square serving plate is ideal for serving a variety of foods, from appetizers and main courses to desserts and snacks. It can be used for both formal and casual occasions, and its simplicity and versatility make it a popular choice for many different types of cuisines. Overall, a square ceramic plate is a functional and stylish choice for serving meals and can add a touch of elegance to any dining experience.') + [ + 'en-US' + ]('This Ella square ceramic plate is a flat, four-sided dish ideal for serving or displaying food. A flat square serving plate is ideal for serving a variety of foods, from appetizers and main courses to desserts and snacks. It can be used for both formal and casual occasions, and its simplicity and versatility make it a popular choice for many different types of cuisines. Overall, a square ceramic plate is a functional and stylish choice for serving meals and can add a touch of elegance to any dining experience.') ) .slug( LocalizedStringDraft.presets @@ -88,7 +88,7 @@ const ellaSquarePlate = (): TProductDraftBuilder => KeyReferenceDraft.presets.taxCategory().key(standardTaxCategoryDraft.key!) ) .masterVariant( - ProductVariantDraft.presets.sampleDataGoodStore.ellaSquarePlate01() + ProductVariantDraft.presets.sampleDataB2CLifestyle.ellaSquarePlate01() ) .categories([ KeyReferenceDraft.presets.category().key(platesDraft.key!), diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/emerald-velvet-chair.spec.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/emerald-velvet-chair.spec.ts similarity index 99% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/emerald-velvet-chair.spec.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/emerald-velvet-chair.spec.ts index 2473ad822..71a99f724 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/emerald-velvet-chair.spec.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/emerald-velvet-chair.spec.ts @@ -65,7 +65,7 @@ describe(`with emeraldVelvetChair preset`, () => { "w": 6000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Emerald_Velvet_Chair-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Emerald_Velvet_Chair-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/emerald-velvet-chair.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/emerald-velvet-chair.ts similarity index 86% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/emerald-velvet-chair.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/emerald-velvet-chair.ts index 276573759..8128eff8f 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/emerald-velvet-chair.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/emerald-velvet-chair.ts @@ -18,24 +18,24 @@ import * as ProductVariantDraft from '../../../../product-variant/product-varian import * as ProductDraft from '../../../product-draft'; import type { TProductDraftBuilder } from '../../../types'; -const standardTaxCategoryDraft = TaxCategoryDraft.presets.sampleDataGoodStore +const standardTaxCategoryDraft = TaxCategoryDraft.presets.sampleDataB2CLifestyle .standardTaxCategory() .build(); const emeraldVelvetChairProductTypeDraft = - ProductTypeDraft.presets.sampleDataGoodStore + ProductTypeDraft.presets.sampleDataB2CLifestyle .furnitureAndDecor() .build(); -const furnitureDraft = CategoryDraft.presets.sampleDataGoodStore +const furnitureDraft = CategoryDraft.presets.sampleDataB2CLifestyle .furniture() .build(); -const armchairsDraft = CategoryDraft.presets.sampleDataGoodStore +const armchairsDraft = CategoryDraft.presets.sampleDataB2CLifestyle .armchairs() .build(); -const livingRoomFurnitureDraft = CategoryDraft.presets.sampleDataGoodStore +const livingRoomFurnitureDraft = CategoryDraft.presets.sampleDataB2CLifestyle .livingRoomFurniture() .build(); @@ -53,15 +53,15 @@ const emeraldVelvetChair = (): TProductDraftBuilder => .description( LocalizedStringDraft.presets .empty() - ['en-GB']( - 'A velvet chair with a brass frame is an elegant and luxurious piece of furniture. The soft, plush velvet material of the chair provides a comfortable and cozy seating experience. The emerald color of the velvet fabric is soft and delicate, adding a touch of femininity to the overall look of the chair. The brass frame of the chair is sturdy and durable, providing a solid foundation for the seating area. The brass color of the frame adds a touch of warmth and sophistication to the overall look of the chair. The combination of the velvet and brass frame creates a striking contrast, making this chair a statement piece in any room. The chair features a high backrest with a curved design, providing support for the back and shoulders. The chair is designed for both style and comfort, making it a great addition to any living room, bedroom, or office space.' - ) - ['en-US']( - 'A velvet chair with a brass frame is an elegant and luxurious piece of furniture. The soft, plush velvet material of the chair provides a comfortable and cozy seating experience. The emerald color of the velvet fabric is soft and delicate, adding a touch of femininity to the overall look of the chair. The brass frame of the chair is sturdy and durable, providing a solid foundation for the seating area. The brass color of the frame adds a touch of warmth and sophistication to the overall look of the chair. The combination of the velvet and brass frame creates a striking contrast, making this chair a statement piece in any room. The chair features a high backrest with a curved design, providing support for the back and shoulders. The chair is designed for both style and comfort, making it a great addition to any living room, bedroom, or office space.' - ) - ['de-DE']( - 'Dieser Samtstuhl mit Messinggestell ist ein elegantes und luxuriöses Möbelstück. Das weiche, plüschige Samtmaterial des Stuhls sorgt für ein bequemes und gemütliches Sitzerlebnis. Die smaragdgrüne Farbe des Samtstoffs ist weich und zart und verleiht dem Gesamtbild des Stuhls einen Hauch von Weiblichkeit. Der Messingrahmen des Stuhls ist robust und langlebig und bietet eine solide Grundlage für den Sitzbereich. Die Messingfarbe des Gestells verleiht dem Gesamtbild des Stuhls einen Hauch von Wärme und Raffinesse. Die Kombination aus Samt und Messingrahmen schafft einen auffälligen Kontrast und macht diesen Stuhl zu einem Statement-Piece in jedem Raum. Der Stuhl verfügt über eine hohe Rückenlehne mit geschwungenem Design, die Rücken und Schultern stützt. Der Stuhl ist sowohl auf Stil als auch auf Komfort ausgelegt, was ihn zu einer großartigen Ergänzung für jedes Wohnzimmer, Schlafzimmer oder Büro macht.' - ) + [ + 'en-GB' + ]('A velvet chair with a brass frame is an elegant and luxurious piece of furniture. The soft, plush velvet material of the chair provides a comfortable and cozy seating experience. The emerald color of the velvet fabric is soft and delicate, adding a touch of femininity to the overall look of the chair. The brass frame of the chair is sturdy and durable, providing a solid foundation for the seating area. The brass color of the frame adds a touch of warmth and sophistication to the overall look of the chair. The combination of the velvet and brass frame creates a striking contrast, making this chair a statement piece in any room. The chair features a high backrest with a curved design, providing support for the back and shoulders. The chair is designed for both style and comfort, making it a great addition to any living room, bedroom, or office space.') + [ + 'en-US' + ]('A velvet chair with a brass frame is an elegant and luxurious piece of furniture. The soft, plush velvet material of the chair provides a comfortable and cozy seating experience. The emerald color of the velvet fabric is soft and delicate, adding a touch of femininity to the overall look of the chair. The brass frame of the chair is sturdy and durable, providing a solid foundation for the seating area. The brass color of the frame adds a touch of warmth and sophistication to the overall look of the chair. The combination of the velvet and brass frame creates a striking contrast, making this chair a statement piece in any room. The chair features a high backrest with a curved design, providing support for the back and shoulders. The chair is designed for both style and comfort, making it a great addition to any living room, bedroom, or office space.') + [ + 'de-DE' + ]('Dieser Samtstuhl mit Messinggestell ist ein elegantes und luxuriöses Möbelstück. Das weiche, plüschige Samtmaterial des Stuhls sorgt für ein bequemes und gemütliches Sitzerlebnis. Die smaragdgrüne Farbe des Samtstoffs ist weich und zart und verleiht dem Gesamtbild des Stuhls einen Hauch von Weiblichkeit. Der Messingrahmen des Stuhls ist robust und langlebig und bietet eine solide Grundlage für den Sitzbereich. Die Messingfarbe des Gestells verleiht dem Gesamtbild des Stuhls einen Hauch von Wärme und Raffinesse. Die Kombination aus Samt und Messingrahmen schafft einen auffälligen Kontrast und macht diesen Stuhl zu einem Statement-Piece in jedem Raum. Der Stuhl verfügt über eine hohe Rückenlehne mit geschwungenem Design, die Rücken und Schultern stützt. Der Stuhl ist sowohl auf Stil als auch auf Komfort ausgelegt, was ihn zu einer großartigen Ergänzung für jedes Wohnzimmer, Schlafzimmer oder Büro macht.') ) .slug( LocalizedStringDraft.presets @@ -80,7 +80,7 @@ const emeraldVelvetChair = (): TProductDraftBuilder => KeyReferenceDraft.presets.taxCategory().key(standardTaxCategoryDraft.key!) ) .masterVariant( - ProductVariantDraft.presets.sampleDataGoodStore.emeraldVelvetChair01() + ProductVariantDraft.presets.sampleDataB2CLifestyle.emeraldVelvetChair01() ) .categories([ KeyReferenceDraft.presets.category().key(furnitureDraft.key!), diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/entryway-closet.spec.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/entryway-closet.spec.ts similarity index 97% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/entryway-closet.spec.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/entryway-closet.spec.ts index 0160d2e82..53e8f9444 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/entryway-closet.spec.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/entryway-closet.spec.ts @@ -64,7 +64,7 @@ describe(`with entrywayCloset preset`, () => { "w": 5500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Entryway_Closet-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Entryway_Closet-1.1.jpeg", }, { "dimensions": { @@ -72,7 +72,7 @@ describe(`with entrywayCloset preset`, () => { "w": 4700, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Entryway_Closet-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Entryway_Closet-1.2.jpeg", }, { "dimensions": { @@ -80,7 +80,7 @@ describe(`with entrywayCloset preset`, () => { "w": 5500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Entryway_Closet-1.3.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Entryway_Closet-1.3.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/entryway-closet.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/entryway-closet.ts similarity index 83% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/entryway-closet.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/entryway-closet.ts index 5a03e7958..8b083b916 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/entryway-closet.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/entryway-closet.ts @@ -18,24 +18,24 @@ import * as ProductVariantDraft from '../../../../product-variant/product-varian import * as ProductDraft from '../../../product-draft'; import type { TProductDraftBuilder } from '../../../types'; -const standardTaxCategoryDraft = TaxCategoryDraft.presets.sampleDataGoodStore +const standardTaxCategoryDraft = TaxCategoryDraft.presets.sampleDataB2CLifestyle .standardTaxCategory() .build(); const entrywayClosetProductTypeDraft = - ProductTypeDraft.presets.sampleDataGoodStore + ProductTypeDraft.presets.sampleDataB2CLifestyle .furnitureAndDecor() .build(); -const furnitureDraft = CategoryDraft.presets.sampleDataGoodStore +const furnitureDraft = CategoryDraft.presets.sampleDataB2CLifestyle .furniture() .build(); -const bedroomFurnitureDraft = CategoryDraft.presets.sampleDataGoodStore +const bedroomFurnitureDraft = CategoryDraft.presets.sampleDataB2CLifestyle .bedroomFurniture() .build(); -const storageTablesDraft = CategoryDraft.presets.sampleDataGoodStore +const storageTablesDraft = CategoryDraft.presets.sampleDataB2CLifestyle .dressers() .build(); @@ -53,15 +53,15 @@ const entrywayCloset = (): TProductDraftBuilder => .description( LocalizedStringDraft.presets .empty() - ['en-GB']( - 'An entryway closet with mirrors and lights is a built-in closet that is situated near the entrance of a house or apartment. The closet features full-length mirrors, which are designed to allow people to check their appearance before leaving the house. The closet has lighting installed, which can help to brighten the space and make it easier to find and grab items stored within. The overall design of the closet is minimalist in nature, with clean lines and a simple color scheme that is meant to blend seamlessly with the surrounding decor. In addition to mirrors and lighting, the closet may feature hooks or shelves for storing jackets, hats, shoes, and other accessories.' - ) - ['en-US']( - 'An entryway closet with mirrors and lights is a built-in closet that is situated near the entrance of a house or apartment. The closet features full-length mirrors, which are designed to allow people to check their appearance before leaving the house. The closet has lighting installed, which can help to brighten the space and make it easier to find and grab items stored within. The overall design of the closet is minimalist in nature, with clean lines and a simple color scheme that is meant to blend seamlessly with the surrounding decor. In addition to mirrors and lighting, the closet may feature hooks or shelves for storing jackets, hats, shoes, and other accessories.' - ) - ['de-DE']( - 'Ein Einbauschrank mit Spiegeln und Leuchten wird in der Nähe des Eingangs eines Hauses oder einer Wohnung platziert. Der Schrank verfügt über Ganzkörperspiegel, um Ihnen zu ermöglichen Ihr Aussehen zu überprüfen, bevor sie das Haus verlassen. Der Schrank verfügt über eine Beleuchtung, die dazu beitragen kann, den Raum aufzuhellen und das Auffinden von aufbewahrten Gegenständen zu erleichtern. Das Gesamtdesign des Schranks ist von Natur aus minimalistisch, mit klaren Linien und einem einfachen Farbschema, das sich nahtlos in das umgebende Dekor einfügen soll. Zusätzlich zu Spiegeln und Beleuchtung kann der Schrank Haken oder Regale zum Aufbewahren von Jacken, Hüten, Schuhen und anderen Accessoires aufweisen.' - ) + [ + 'en-GB' + ]('An entryway closet with mirrors and lights is a built-in closet that is situated near the entrance of a house or apartment. The closet features full-length mirrors, which are designed to allow people to check their appearance before leaving the house. The closet has lighting installed, which can help to brighten the space and make it easier to find and grab items stored within. The overall design of the closet is minimalist in nature, with clean lines and a simple color scheme that is meant to blend seamlessly with the surrounding decor. In addition to mirrors and lighting, the closet may feature hooks or shelves for storing jackets, hats, shoes, and other accessories.') + [ + 'en-US' + ]('An entryway closet with mirrors and lights is a built-in closet that is situated near the entrance of a house or apartment. The closet features full-length mirrors, which are designed to allow people to check their appearance before leaving the house. The closet has lighting installed, which can help to brighten the space and make it easier to find and grab items stored within. The overall design of the closet is minimalist in nature, with clean lines and a simple color scheme that is meant to blend seamlessly with the surrounding decor. In addition to mirrors and lighting, the closet may feature hooks or shelves for storing jackets, hats, shoes, and other accessories.') + [ + 'de-DE' + ]('Ein Einbauschrank mit Spiegeln und Leuchten wird in der Nähe des Eingangs eines Hauses oder einer Wohnung platziert. Der Schrank verfügt über Ganzkörperspiegel, um Ihnen zu ermöglichen Ihr Aussehen zu überprüfen, bevor sie das Haus verlassen. Der Schrank verfügt über eine Beleuchtung, die dazu beitragen kann, den Raum aufzuhellen und das Auffinden von aufbewahrten Gegenständen zu erleichtern. Das Gesamtdesign des Schranks ist von Natur aus minimalistisch, mit klaren Linien und einem einfachen Farbschema, das sich nahtlos in das umgebende Dekor einfügen soll. Zusätzlich zu Spiegeln und Beleuchtung kann der Schrank Haken oder Regale zum Aufbewahren von Jacken, Hüten, Schuhen und anderen Accessoires aufweisen.') ) .slug( LocalizedStringDraft.presets @@ -80,7 +80,7 @@ const entrywayCloset = (): TProductDraftBuilder => KeyReferenceDraft.presets.taxCategory().key(standardTaxCategoryDraft.key!) ) .masterVariant( - ProductVariantDraft.presets.sampleDataGoodStore.entrywayCloset01() + ProductVariantDraft.presets.sampleDataB2CLifestyle.entrywayCloset01() ) .categories([ KeyReferenceDraft.presets.category().key(furnitureDraft.key!), diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/evergreen-candle.spec.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/evergreen-candle.spec.ts similarity index 97% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/evergreen-candle.spec.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/evergreen-candle.spec.ts index 5e754531a..f4ec39e2f 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/evergreen-candle.spec.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/evergreen-candle.spec.ts @@ -48,7 +48,7 @@ describe(`with evergreenCandle preset`, () => { "w": 3840, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Evergreen_Candle-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Evergreen_Candle-1.1.jpeg", }, { "dimensions": { @@ -56,7 +56,7 @@ describe(`with evergreenCandle preset`, () => { "w": 3840, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Evergreen_Candle-1.3.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Evergreen_Candle-1.3.jpeg", }, { "dimensions": { @@ -64,7 +64,7 @@ describe(`with evergreenCandle preset`, () => { "w": 4480, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Evergreen_Candle-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Evergreen_Candle-1.2.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/evergreen-candle.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/evergreen-candle.ts similarity index 85% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/evergreen-candle.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/evergreen-candle.ts index d584167d2..2b2aaefbc 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/evergreen-candle.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/evergreen-candle.ts @@ -18,24 +18,24 @@ import * as ProductVariantDraft from '../../../../product-variant/product-varian import * as ProductDraft from '../../../product-draft'; import type { TProductDraftBuilder } from '../../../types'; -const standardTaxCategoryDraft = TaxCategoryDraft.presets.sampleDataGoodStore +const standardTaxCategoryDraft = TaxCategoryDraft.presets.sampleDataB2CLifestyle .standardTaxCategory() .build(); const evergreenCandleProductTypeDraft = - ProductTypeDraft.presets.sampleDataGoodStore + ProductTypeDraft.presets.sampleDataB2CLifestyle .furnitureAndDecor() .build(); -const homeAccentsDraft = CategoryDraft.presets.sampleDataGoodStore +const homeAccentsDraft = CategoryDraft.presets.sampleDataB2CLifestyle .homeAccents() .build(); -const roomDecorDraft = CategoryDraft.presets.sampleDataGoodStore +const roomDecorDraft = CategoryDraft.presets.sampleDataB2CLifestyle .roomDecor() .build(); -const homeDecorDraft = CategoryDraft.presets.sampleDataGoodStore +const homeDecorDraft = CategoryDraft.presets.sampleDataB2CLifestyle .homeDecor() .build(); @@ -53,15 +53,15 @@ const evergreenCandle = (): TProductDraftBuilder => .description( LocalizedStringDraft.presets .empty() - ['en-GB']( - 'The candlestick features a simple, rustic design with a tall, slender shape that is reminiscent of a tree trunk. It may also be decorated with small evergreen branches, berries, and pinecones to create a more natural and organic look. When the candle is lit, it will cast a warm and cozy glow, creating a festive and inviting atmosphere in any room. The evergreen scent of the candlestick may also be enhanced by the heat of the candle, filling the room with the natural fragrance of pine and wood. Overall, an evergreen candle stick is a charming and rustic addition to any home during the holiday season. Its natural materials and earthy tones can help to create a warm and inviting atmosphere, while its simple yet elegant design can add a touch of nature to any room.' - ) - ['en-US']( - 'The candlestick features a simple, rustic design with a tall, slender shape that is reminiscent of a tree trunk. It may also be decorated with small evergreen branches, berries, and pinecones to create a more natural and organic look. When the candle is lit, it will cast a warm and cozy glow, creating a festive and inviting atmosphere in any room. The evergreen scent of the candlestick may also be enhanced by the heat of the candle, filling the room with the natural fragrance of pine and wood. Overall, an evergreen candle stick is a charming and rustic addition to any home during the holiday season. Its natural materials and earthy tones can help to create a warm and inviting atmosphere, while its simple yet elegant design can add a touch of nature to any room.' - ) - ['de-DE']( - 'Dieser Kerzenhalter hat ein schlichtes, rustikales Design mit einer hohen, schlanken Form, die an einen Baumstamm erinnert. Er kann auch mit kleinen immergrünen Zweigen, Beeren und Tannenzapfen dekoriert werden, um ein natürlicheres und organischeres Aussehen zu schaffen. Wenn die Kerze angezündet wird, wirft sie einen warmen und gemütlichen Schein und schafft eine festliche und einladende Atmosphäre in jedem Raum. Der immergrüne Duft des Kerzenhalters kann auch durch die Wärme der Kerze verstärkt werden und erfüllt den Raum mit dem natürlichen Duft von Kiefer und Holz. Insgesamt ist ein immergrüner Kerzenhalter während der Weihnachtszeit eine charmante und rustikale Ergänzung für jedes Zuhause. Seine natürlichen Materialien und Erdtöne können dazu beitragen, eine warme und einladende Atmosphäre zu schaffen, während sein einfaches, aber elegantes Design jedem Raum einen Hauch von Natur verleiht.' - ) + [ + 'en-GB' + ]('The candlestick features a simple, rustic design with a tall, slender shape that is reminiscent of a tree trunk. It may also be decorated with small evergreen branches, berries, and pinecones to create a more natural and organic look. When the candle is lit, it will cast a warm and cozy glow, creating a festive and inviting atmosphere in any room. The evergreen scent of the candlestick may also be enhanced by the heat of the candle, filling the room with the natural fragrance of pine and wood. Overall, an evergreen candle stick is a charming and rustic addition to any home during the holiday season. Its natural materials and earthy tones can help to create a warm and inviting atmosphere, while its simple yet elegant design can add a touch of nature to any room.') + [ + 'en-US' + ]('The candlestick features a simple, rustic design with a tall, slender shape that is reminiscent of a tree trunk. It may also be decorated with small evergreen branches, berries, and pinecones to create a more natural and organic look. When the candle is lit, it will cast a warm and cozy glow, creating a festive and inviting atmosphere in any room. The evergreen scent of the candlestick may also be enhanced by the heat of the candle, filling the room with the natural fragrance of pine and wood. Overall, an evergreen candle stick is a charming and rustic addition to any home during the holiday season. Its natural materials and earthy tones can help to create a warm and inviting atmosphere, while its simple yet elegant design can add a touch of nature to any room.') + [ + 'de-DE' + ]('Dieser Kerzenhalter hat ein schlichtes, rustikales Design mit einer hohen, schlanken Form, die an einen Baumstamm erinnert. Er kann auch mit kleinen immergrünen Zweigen, Beeren und Tannenzapfen dekoriert werden, um ein natürlicheres und organischeres Aussehen zu schaffen. Wenn die Kerze angezündet wird, wirft sie einen warmen und gemütlichen Schein und schafft eine festliche und einladende Atmosphäre in jedem Raum. Der immergrüne Duft des Kerzenhalters kann auch durch die Wärme der Kerze verstärkt werden und erfüllt den Raum mit dem natürlichen Duft von Kiefer und Holz. Insgesamt ist ein immergrüner Kerzenhalter während der Weihnachtszeit eine charmante und rustikale Ergänzung für jedes Zuhause. Seine natürlichen Materialien und Erdtöne können dazu beitragen, eine warme und einladende Atmosphäre zu schaffen, während sein einfaches, aber elegantes Design jedem Raum einen Hauch von Natur verleiht.') ) .slug( LocalizedStringDraft.presets @@ -80,7 +80,7 @@ const evergreenCandle = (): TProductDraftBuilder => KeyReferenceDraft.presets.taxCategory().key(standardTaxCategoryDraft.key!) ) .masterVariant( - ProductVariantDraft.presets.sampleDataGoodStore.evergreenCandle01() + ProductVariantDraft.presets.sampleDataB2CLifestyle.evergreenCandle01() ) .categories([ KeyReferenceDraft.presets.category().key(homeAccentsDraft.key!), diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/fawn-armchair.spec.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/fawn-armchair.spec.ts similarity index 98% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/fawn-armchair.spec.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/fawn-armchair.spec.ts index 40723209c..9036684fc 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/fawn-armchair.spec.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/fawn-armchair.spec.ts @@ -64,7 +64,7 @@ describe(`with fawnArmchair preset`, () => { "w": 2400, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Fawn_Armchair-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Fawn_Armchair-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/fawn-armchair.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/fawn-armchair.ts similarity index 82% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/fawn-armchair.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/fawn-armchair.ts index 817a51091..bf8dc501d 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/fawn-armchair.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/fawn-armchair.ts @@ -18,24 +18,24 @@ import * as ProductVariantDraft from '../../../../product-variant/product-varian import * as ProductDraft from '../../../product-draft'; import type { TProductDraftBuilder } from '../../../types'; -const standardTaxCategoryDraft = TaxCategoryDraft.presets.sampleDataGoodStore +const standardTaxCategoryDraft = TaxCategoryDraft.presets.sampleDataB2CLifestyle .standardTaxCategory() .build(); const fawnArmchairProductTypeDraft = - ProductTypeDraft.presets.sampleDataGoodStore + ProductTypeDraft.presets.sampleDataB2CLifestyle .furnitureAndDecor() .build(); -const furnitureDraft = CategoryDraft.presets.sampleDataGoodStore +const furnitureDraft = CategoryDraft.presets.sampleDataB2CLifestyle .furniture() .build(); -const armchairsDraft = CategoryDraft.presets.sampleDataGoodStore +const armchairsDraft = CategoryDraft.presets.sampleDataB2CLifestyle .armchairs() .build(); -const livingRoomFurnitureDraft = CategoryDraft.presets.sampleDataGoodStore +const livingRoomFurnitureDraft = CategoryDraft.presets.sampleDataB2CLifestyle .livingRoomFurniture() .build(); @@ -53,15 +53,15 @@ const fawnArmchair = (): TProductDraftBuilder => .description( LocalizedStringDraft.presets .empty() - ['en-GB']( - "An art deco leather chair with ebony legs has a sleek, streamlined design that exudes sophistication and elegance. The chair has a comfortable padded seat and backrest, with the leather upholstery providing a soft and luxurious feel. The ebony legs are long and tapered, with a smooth finish that accentuates the chair's modern style. The chair also features distinctive art deco elements such as angular shapes, bold lines, and geometric patterns. Overall, this chair would be a striking piece of furniture that adds both style and comfort to any room." - ) - ['en-US']( - "An art deco leather chair with ebony legs has a sleek, streamlined design that exudes sophistication and elegance. The chair has a comfortable padded seat and backrest, with the leather upholstery providing a soft and luxurious feel. The ebony legs are long and tapered, with a smooth finish that accentuates the chair's modern style. The chair also features distinctive art deco elements such as angular shapes, bold lines, and geometric patterns. Overall, this chair would be a striking piece of furniture that adds both style and comfort to any room." - ) - ['de-DE']( - 'Dieser Lederstuhl mit Ebenholzbeinen im Art-Deco-Stil hat ein schlankes, stromlinienförmiges Design, das Raffinesse und Eleganz ausstrahlt. Der Stuhl hat einen bequem gepolsterten Sitz und eine Rückenlehne. Die Lederpolsterung vermittelt ein weiches und luxuriöses Gefühl. Die Beine aus Ebenholz sind lang und konisch zulaufend, mit einer glatten Oberfläche, die den modernen Stil des Stuhls betont. Der Stuhl weist auch markante Art-Deco-Elemente wie eckige Formen, kräftige Linien und geometrische Muster auf. Dieser Stuhl ist ein markantes Möbelstück, das jedem Raum sowohl Stil als auch Komfort verleiht.' - ) + [ + 'en-GB' + ]("An art deco leather chair with ebony legs has a sleek, streamlined design that exudes sophistication and elegance. The chair has a comfortable padded seat and backrest, with the leather upholstery providing a soft and luxurious feel. The ebony legs are long and tapered, with a smooth finish that accentuates the chair's modern style. The chair also features distinctive art deco elements such as angular shapes, bold lines, and geometric patterns. Overall, this chair would be a striking piece of furniture that adds both style and comfort to any room.") + [ + 'en-US' + ]("An art deco leather chair with ebony legs has a sleek, streamlined design that exudes sophistication and elegance. The chair has a comfortable padded seat and backrest, with the leather upholstery providing a soft and luxurious feel. The ebony legs are long and tapered, with a smooth finish that accentuates the chair's modern style. The chair also features distinctive art deco elements such as angular shapes, bold lines, and geometric patterns. Overall, this chair would be a striking piece of furniture that adds both style and comfort to any room.") + [ + 'de-DE' + ]('Dieser Lederstuhl mit Ebenholzbeinen im Art-Deco-Stil hat ein schlankes, stromlinienförmiges Design, das Raffinesse und Eleganz ausstrahlt. Der Stuhl hat einen bequem gepolsterten Sitz und eine Rückenlehne. Die Lederpolsterung vermittelt ein weiches und luxuriöses Gefühl. Die Beine aus Ebenholz sind lang und konisch zulaufend, mit einer glatten Oberfläche, die den modernen Stil des Stuhls betont. Der Stuhl weist auch markante Art-Deco-Elemente wie eckige Formen, kräftige Linien und geometrische Muster auf. Dieser Stuhl ist ein markantes Möbelstück, das jedem Raum sowohl Stil als auch Komfort verleiht.') ) .slug( LocalizedStringDraft.presets @@ -80,7 +80,7 @@ const fawnArmchair = (): TProductDraftBuilder => KeyReferenceDraft.presets.taxCategory().key(standardTaxCategoryDraft.key!) ) .masterVariant( - ProductVariantDraft.presets.sampleDataGoodStore.fawnArmchair01() + ProductVariantDraft.presets.sampleDataB2CLifestyle.fawnArmchair01() ) .categories([ KeyReferenceDraft.presets.category().key(furnitureDraft.key!), diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/geometric-pillow-case.spec.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/geometric-pillow-case.spec.ts similarity index 96% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/geometric-pillow-case.spec.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/geometric-pillow-case.spec.ts index 80e498d83..a3b84874b 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/geometric-pillow-case.spec.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/geometric-pillow-case.spec.ts @@ -71,7 +71,7 @@ describe(`with geometricPillowCase preset`, () => { "w": 5000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Geometric_Pillow_Case-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Geometric_Pillow_Case-1.1.jpeg", }, { "dimensions": { @@ -79,7 +79,7 @@ describe(`with geometricPillowCase preset`, () => { "w": 5000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Geometric_Pillow_Case-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Geometric_Pillow_Case-1.2.jpeg", }, ], "key": undefined, @@ -204,7 +204,7 @@ describe(`with geometricPillowCase preset`, () => { "w": 5000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Geometric_Pillow_Case-2.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Geometric_Pillow_Case-2.1.jpeg", }, { "dimensions": { @@ -212,7 +212,7 @@ describe(`with geometricPillowCase preset`, () => { "w": 5000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Geometric_Pillow_Case-2.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Geometric_Pillow_Case-2.2.jpeg", }, ], "key": undefined, @@ -305,7 +305,7 @@ describe(`with geometricPillowCase preset`, () => { "w": 5000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Geometric_Pillow_Case-3.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Geometric_Pillow_Case-3.1.jpeg", }, { "dimensions": { @@ -313,7 +313,7 @@ describe(`with geometricPillowCase preset`, () => { "w": 5000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Geometric_Pillow_Case-3.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Geometric_Pillow_Case-3.2.jpeg", }, ], "key": undefined, @@ -425,7 +425,7 @@ describe(`with geometricPillowCase preset`, () => { "width": 5000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Geometric_Pillow_Case-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Geometric_Pillow_Case-1.1.jpeg", }, { "dimensions": { @@ -433,7 +433,7 @@ describe(`with geometricPillowCase preset`, () => { "width": 5000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Geometric_Pillow_Case-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Geometric_Pillow_Case-1.2.jpeg", }, ], "key": undefined, @@ -555,7 +555,7 @@ describe(`with geometricPillowCase preset`, () => { "width": 5000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Geometric_Pillow_Case-2.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Geometric_Pillow_Case-2.1.jpeg", }, { "dimensions": { @@ -563,7 +563,7 @@ describe(`with geometricPillowCase preset`, () => { "width": 5000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Geometric_Pillow_Case-2.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Geometric_Pillow_Case-2.2.jpeg", }, ], "key": undefined, @@ -641,7 +641,7 @@ describe(`with geometricPillowCase preset`, () => { "width": 5000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Geometric_Pillow_Case-3.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Geometric_Pillow_Case-3.1.jpeg", }, { "dimensions": { @@ -649,7 +649,7 @@ describe(`with geometricPillowCase preset`, () => { "width": 5000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Geometric_Pillow_Case-3.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Geometric_Pillow_Case-3.2.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/geometric-pillow-case.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/geometric-pillow-case.ts similarity index 84% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/geometric-pillow-case.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/geometric-pillow-case.ts index e39303cfc..649f1e8b8 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/geometric-pillow-case.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/geometric-pillow-case.ts @@ -18,24 +18,24 @@ import * as ProductVariantDraft from '../../../../product-variant/product-varian import * as ProductDraft from '../../../product-draft'; import type { TProductDraftBuilder } from '../../../types'; -const standardTaxCategory = TaxCategoryDraft.presets.sampleDataGoodStore +const standardTaxCategory = TaxCategoryDraft.presets.sampleDataB2CLifestyle .standardTaxCategory() .build(); const geometricPillowCaseProductTypeDraft = - ProductTypeDraft.presets.sampleDataGoodStore + ProductTypeDraft.presets.sampleDataB2CLifestyle .furnitureAndDecor() .build(); -const homeDecorDraft = CategoryDraft.presets.sampleDataGoodStore +const homeDecorDraft = CategoryDraft.presets.sampleDataB2CLifestyle .homeDecor() .build(); -const newArrivalsDraft = CategoryDraft.presets.sampleDataGoodStore +const newArrivalsDraft = CategoryDraft.presets.sampleDataB2CLifestyle .newArrivals() .build(); -const beddingDraft = CategoryDraft.presets.sampleDataGoodStore +const beddingDraft = CategoryDraft.presets.sampleDataB2CLifestyle .bedding() .build(); @@ -53,15 +53,15 @@ const geometricPillowCase = (): TProductDraftBuilder => .description( LocalizedStringDraft.presets .empty() - ['en-GB']( - 'A geometric pillowcase for throw pillows is a stylish and modern home decor accessory that can add a pop of visual interest to any room. The pillowcase is typically made from a soft and durable material, such as cotton, linen, or polyester, and features a bold geometric pattern that creates a sense of depth and dimension. The geometric pattern on the pillowcase is typically created using a variety of shapes, such as triangles, squares, or hexagons, arranged in a repeating pattern. The pillowcase features a zipper closure, making it easy to remove and wash as needed. The geometric pillowcase is a versatile and stylish accessory that can be used to accent a variety of decor styles, from modern and minimalist to bohemian and eclectic. It is perfect for complementing other patterned decor elements in a more eclectic space. Overall, a geometric pillowcase for throw pillows is a stylish and versatile accessory that can help to create a cohesive and visually interesting decor scheme in any room. Its bold and modern design, combined with its soft and durable materials, make it a must-have accessory for any home.' - ) - ['en-US']( - 'A geometric pillowcase for throw pillows is a stylish and modern home decor accessory that can add a pop of visual interest to any room. The pillowcase is typically made from a soft and durable material, such as cotton, linen, or polyester, and features a bold geometric pattern that creates a sense of depth and dimension. The geometric pattern on the pillowcase is typically created using a variety of shapes, such as triangles, squares, or hexagons, arranged in a repeating pattern. The pillowcase features a zipper closure, making it easy to remove and wash as needed. The geometric pillowcase is a versatile and stylish accessory that can be used to accent a variety of decor styles, from modern and minimalist to bohemian and eclectic. It is perfect for complementing other patterned decor elements in a more eclectic space. Overall, a geometric pillowcase for throw pillows is a stylish and versatile accessory that can help to create a cohesive and visually interesting decor scheme in any room. Its bold and modern design, combined with its soft and durable materials, make it a must-have accessory for any home.' - ) - ['de-DE']( - 'Ein geometrischer Kissenbezug für Zierkissen ist ein stilvolles und modernes Wohnaccessoire, das jedem Raum einen Hauch von visuellem Interesse verleihen kann. Der Kissenbezug besteht normalerweise aus einem weichen und strapazierfähigen Material wie Baumwolle, Leinen oder Polyester und weist ein kräftiges geometrisches Muster auf, das ein Gefühl von Tiefe und Dimension erzeugt. Das geometrische Muster auf dem Kissenbezug wird normalerweise mit einer Vielzahl von Formen wie Dreiecken, Quadraten oder Sechsecken erstellt, die in einem sich wiederholenden Muster angeordnet sind. Der Kissenbezug verfügt über einen Reißverschluss, so dass er bei Bedarf einfach abgenommen und gewaschen werden kann. Der geometrische Kissenbezug ist ein vielseitiges und stilvolles Accessoire, das verwendet werden kann, um eine Vielzahl von Einrichtungsstilen zu betonen, von modern und minimalistisch bis hin zu unkonventionell und vielseitig. Er ist perfekt, um andere gemusterte Dekorelemente in einem vielseitigen Raum zu ergänzen. Insgesamt ist ein geometrischer Kissenbezug für Zierkissen ein stilvolles und vielseitiges Accessoire, das dazu beitragen kann, in jedem Raum ein zusammenhängendes und optisch interessantes Dekor zu schaffen. Das mutige und moderne Design, kombiniert mit weichen und langlebigen Materialien, machen ihn zu einem unverzichtbaren Accessoire für jedes Zuhause.' - ) + [ + 'en-GB' + ]('A geometric pillowcase for throw pillows is a stylish and modern home decor accessory that can add a pop of visual interest to any room. The pillowcase is typically made from a soft and durable material, such as cotton, linen, or polyester, and features a bold geometric pattern that creates a sense of depth and dimension. The geometric pattern on the pillowcase is typically created using a variety of shapes, such as triangles, squares, or hexagons, arranged in a repeating pattern. The pillowcase features a zipper closure, making it easy to remove and wash as needed. The geometric pillowcase is a versatile and stylish accessory that can be used to accent a variety of decor styles, from modern and minimalist to bohemian and eclectic. It is perfect for complementing other patterned decor elements in a more eclectic space. Overall, a geometric pillowcase for throw pillows is a stylish and versatile accessory that can help to create a cohesive and visually interesting decor scheme in any room. Its bold and modern design, combined with its soft and durable materials, make it a must-have accessory for any home.') + [ + 'en-US' + ]('A geometric pillowcase for throw pillows is a stylish and modern home decor accessory that can add a pop of visual interest to any room. The pillowcase is typically made from a soft and durable material, such as cotton, linen, or polyester, and features a bold geometric pattern that creates a sense of depth and dimension. The geometric pattern on the pillowcase is typically created using a variety of shapes, such as triangles, squares, or hexagons, arranged in a repeating pattern. The pillowcase features a zipper closure, making it easy to remove and wash as needed. The geometric pillowcase is a versatile and stylish accessory that can be used to accent a variety of decor styles, from modern and minimalist to bohemian and eclectic. It is perfect for complementing other patterned decor elements in a more eclectic space. Overall, a geometric pillowcase for throw pillows is a stylish and versatile accessory that can help to create a cohesive and visually interesting decor scheme in any room. Its bold and modern design, combined with its soft and durable materials, make it a must-have accessory for any home.') + [ + 'de-DE' + ]('Ein geometrischer Kissenbezug für Zierkissen ist ein stilvolles und modernes Wohnaccessoire, das jedem Raum einen Hauch von visuellem Interesse verleihen kann. Der Kissenbezug besteht normalerweise aus einem weichen und strapazierfähigen Material wie Baumwolle, Leinen oder Polyester und weist ein kräftiges geometrisches Muster auf, das ein Gefühl von Tiefe und Dimension erzeugt. Das geometrische Muster auf dem Kissenbezug wird normalerweise mit einer Vielzahl von Formen wie Dreiecken, Quadraten oder Sechsecken erstellt, die in einem sich wiederholenden Muster angeordnet sind. Der Kissenbezug verfügt über einen Reißverschluss, so dass er bei Bedarf einfach abgenommen und gewaschen werden kann. Der geometrische Kissenbezug ist ein vielseitiges und stilvolles Accessoire, das verwendet werden kann, um eine Vielzahl von Einrichtungsstilen zu betonen, von modern und minimalistisch bis hin zu unkonventionell und vielseitig. Er ist perfekt, um andere gemusterte Dekorelemente in einem vielseitigen Raum zu ergänzen. Insgesamt ist ein geometrischer Kissenbezug für Zierkissen ein stilvolles und vielseitiges Accessoire, das dazu beitragen kann, in jedem Raum ein zusammenhängendes und optisch interessantes Dekor zu schaffen. Das mutige und moderne Design, kombiniert mit weichen und langlebigen Materialien, machen ihn zu einem unverzichtbaren Accessoire für jedes Zuhause.') ) .slug( LocalizedStringDraft.presets @@ -80,11 +80,11 @@ const geometricPillowCase = (): TProductDraftBuilder => KeyReferenceDraft.presets.taxCategory().key(standardTaxCategory.key!) ) .masterVariant( - ProductVariantDraft.presets.sampleDataGoodStore.geometricPillowCase01() + ProductVariantDraft.presets.sampleDataB2CLifestyle.geometricPillowCase01() ) .variants([ - ProductVariantDraft.presets.sampleDataGoodStore.geometricPillowCase02(), - ProductVariantDraft.presets.sampleDataGoodStore.geometricPillowCase03(), + ProductVariantDraft.presets.sampleDataB2CLifestyle.geometricPillowCase02(), + ProductVariantDraft.presets.sampleDataB2CLifestyle.geometricPillowCase03(), ]) .categories([ KeyReferenceDraft.presets.category().key(homeDecorDraft.key!), diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/glam-armchair.spec.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/glam-armchair.spec.ts similarity index 99% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/glam-armchair.spec.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/glam-armchair.spec.ts index e98622ae6..cb8ef659f 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/glam-armchair.spec.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/glam-armchair.spec.ts @@ -68,7 +68,7 @@ describe(`with glamArmchair preset`, () => { "w": 5500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Glam_Armchair-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Glam_Armchair-1.1.jpeg", }, ], "key": undefined, @@ -215,7 +215,7 @@ describe(`with glamArmchair preset`, () => { "width": 5500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Glam_Armchair-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Glam_Armchair-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/glam-armchair.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/glam-armchair.ts similarity index 85% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/glam-armchair.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/glam-armchair.ts index b7011ab64..d799116d0 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/glam-armchair.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/glam-armchair.ts @@ -18,24 +18,24 @@ import * as ProductVariantDraft from '../../../../product-variant/product-varian import * as ProductDraft from '../../../product-draft'; import type { TProductDraftBuilder } from '../../../types'; -const standardTaxCategory = TaxCategoryDraft.presets.sampleDataGoodStore +const standardTaxCategory = TaxCategoryDraft.presets.sampleDataB2CLifestyle .standardTaxCategory() .build(); const glamArmchairProductTypeDraft = - ProductTypeDraft.presets.sampleDataGoodStore + ProductTypeDraft.presets.sampleDataB2CLifestyle .furnitureAndDecor() .build(); -const furnitureDraft = CategoryDraft.presets.sampleDataGoodStore +const furnitureDraft = CategoryDraft.presets.sampleDataB2CLifestyle .furniture() .build(); -const armchairsDraft = CategoryDraft.presets.sampleDataGoodStore +const armchairsDraft = CategoryDraft.presets.sampleDataB2CLifestyle .armchairs() .build(); -const livingRoomFurnitureDraft = CategoryDraft.presets.sampleDataGoodStore +const livingRoomFurnitureDraft = CategoryDraft.presets.sampleDataB2CLifestyle .livingRoomFurniture() .build(); @@ -53,15 +53,15 @@ const glamArmchair = (): TProductDraftBuilder => .description( LocalizedStringDraft.presets .empty() - ['en-GB']( - 'A gold velvet chair with a brass frame is an elegant and luxurious piece of furniture. The soft, plush velvet material of the chair provides a comfortable and cozy seating experience. The gold color of the velvet fabric is soft and delicate, adding a touch of glamour to the overall look of the chair. The brass frame of the chair is sturdy and durable, providing a solid foundation for the seating area. The brass color of the frame adds a touch of warmth and sophistication to the overall look of the chair. The combination of the gold velvet and brass frame creates a striking contrast, making this chair a statement piece in any room. The chair features a high backrest with a curved design, providing support for the back and shoulders. The armrests are also curved, providing a comfortable place to rest the arms. The chair is designed for both style and comfort, making it a great addition to any living room, bedroom, or office space.' - ) - ['en-US']( - 'A gold velvet chair with a brass frame is an elegant and luxurious piece of furniture. The soft, plush velvet material of the chair provides a comfortable and cozy seating experience. The gold color of the velvet fabric is soft and delicate, adding a touch of glamour to the overall look of the chair. The brass frame of the chair is sturdy and durable, providing a solid foundation for the seating area. The brass color of the frame adds a touch of warmth and sophistication to the overall look of the chair. The combination of the gold velvet and brass frame creates a striking contrast, making this chair a statement piece in any room. The chair features a high backrest with a curved design, providing support for the back and shoulders. The armrests are also curved, providing a comfortable place to rest the arms. The chair is designed for both style and comfort, making it a great addition to any living room, bedroom, or office space.' - ) - ['de-DE']( - 'Ein goldfarbener Samtstuhl mit Messingrahmen ist ein elegantes und luxuriöses Möbelstück. Das weiche, plüschige Samtmaterial des Stuhls sorgt für ein bequemes und gemütliches Sitzerlebnis. Die goldene Farbe des Samtstoffs ist weich und zart und verleiht dem Gesamtbild des Stuhls einen Hauch von Glamour. Der Messingrahmen des Stuhls ist robust und langlebig und bietet eine solide Grundlage für den Sitzbereich. Die Messingfarbe des Gestells verleiht dem Gesamtbild des Stuhls einen Hauch von Wärme und Raffinesse. Die Kombination aus Goldsamt und Messingrahmen schafft einen auffälligen Kontrast und macht diesen Stuhl zu einem Statement-Piece in jedem Raum. Der Stuhl verfügt über eine hohe Rückenlehne mit geschwungenem Design, die Rücken und Schultern stützt. Die Armlehnen sind ebenfalls gebogen und bieten eine bequeme Ablagefläche für die Arme. Der Stuhl ist sowohl stilvoll als auch auf Komfort ausgelegt, was ihn zu einer großartigen Ergänzung für jedes Wohnzimmer, Schlafzimmer oder Büro macht.' - ) + [ + 'en-GB' + ]('A gold velvet chair with a brass frame is an elegant and luxurious piece of furniture. The soft, plush velvet material of the chair provides a comfortable and cozy seating experience. The gold color of the velvet fabric is soft and delicate, adding a touch of glamour to the overall look of the chair. The brass frame of the chair is sturdy and durable, providing a solid foundation for the seating area. The brass color of the frame adds a touch of warmth and sophistication to the overall look of the chair. The combination of the gold velvet and brass frame creates a striking contrast, making this chair a statement piece in any room. The chair features a high backrest with a curved design, providing support for the back and shoulders. The armrests are also curved, providing a comfortable place to rest the arms. The chair is designed for both style and comfort, making it a great addition to any living room, bedroom, or office space.') + [ + 'en-US' + ]('A gold velvet chair with a brass frame is an elegant and luxurious piece of furniture. The soft, plush velvet material of the chair provides a comfortable and cozy seating experience. The gold color of the velvet fabric is soft and delicate, adding a touch of glamour to the overall look of the chair. The brass frame of the chair is sturdy and durable, providing a solid foundation for the seating area. The brass color of the frame adds a touch of warmth and sophistication to the overall look of the chair. The combination of the gold velvet and brass frame creates a striking contrast, making this chair a statement piece in any room. The chair features a high backrest with a curved design, providing support for the back and shoulders. The armrests are also curved, providing a comfortable place to rest the arms. The chair is designed for both style and comfort, making it a great addition to any living room, bedroom, or office space.') + [ + 'de-DE' + ]('Ein goldfarbener Samtstuhl mit Messingrahmen ist ein elegantes und luxuriöses Möbelstück. Das weiche, plüschige Samtmaterial des Stuhls sorgt für ein bequemes und gemütliches Sitzerlebnis. Die goldene Farbe des Samtstoffs ist weich und zart und verleiht dem Gesamtbild des Stuhls einen Hauch von Glamour. Der Messingrahmen des Stuhls ist robust und langlebig und bietet eine solide Grundlage für den Sitzbereich. Die Messingfarbe des Gestells verleiht dem Gesamtbild des Stuhls einen Hauch von Wärme und Raffinesse. Die Kombination aus Goldsamt und Messingrahmen schafft einen auffälligen Kontrast und macht diesen Stuhl zu einem Statement-Piece in jedem Raum. Der Stuhl verfügt über eine hohe Rückenlehne mit geschwungenem Design, die Rücken und Schultern stützt. Die Armlehnen sind ebenfalls gebogen und bieten eine bequeme Ablagefläche für die Arme. Der Stuhl ist sowohl stilvoll als auch auf Komfort ausgelegt, was ihn zu einer großartigen Ergänzung für jedes Wohnzimmer, Schlafzimmer oder Büro macht.') ) .slug( LocalizedStringDraft.presets @@ -80,7 +80,7 @@ const glamArmchair = (): TProductDraftBuilder => KeyReferenceDraft.presets.taxCategory().key(standardTaxCategory.key!) ) .masterVariant( - ProductVariantDraft.presets.sampleDataGoodStore.glamArmchair01() + ProductVariantDraft.presets.sampleDataB2CLifestyle.glamArmchair01() ) .categories([ KeyReferenceDraft.presets.category().key(furnitureDraft.key!), diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/gold-rimmed-champagne-glasses.spec.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/gold-rimmed-champagne-glasses.spec.ts similarity index 96% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/gold-rimmed-champagne-glasses.spec.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/gold-rimmed-champagne-glasses.spec.ts index acd087f0e..740f0b571 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/gold-rimmed-champagne-glasses.spec.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/gold-rimmed-champagne-glasses.spec.ts @@ -72,7 +72,7 @@ describe(`with goldRimmedChampagneGlasses preset`, () => { "w": 2192, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Gold_Rimmed_Champagne_Glasses-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Gold_Rimmed_Champagne_Glasses-1.1.jpeg", }, { "dimensions": { @@ -80,7 +80,7 @@ describe(`with goldRimmedChampagneGlasses preset`, () => { "w": 5143, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Gold_Rimmed_Champagne_Glasses-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Gold_Rimmed_Champagne_Glasses-1.2.jpeg", }, { "dimensions": { @@ -88,7 +88,7 @@ describe(`with goldRimmedChampagneGlasses preset`, () => { "w": 6869, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Gold_Rimmed_Champagne_Glasses-1.4.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Gold_Rimmed_Champagne_Glasses-1.4.jpeg", }, { "dimensions": { @@ -96,7 +96,7 @@ describe(`with goldRimmedChampagneGlasses preset`, () => { "w": 8080, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Gold_Rimmed_Champagne_Glasses-1.3.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Gold_Rimmed_Champagne_Glasses-1.3.jpeg", }, ], "key": undefined, @@ -243,7 +243,7 @@ describe(`with goldRimmedChampagneGlasses preset`, () => { "width": 2192, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Gold_Rimmed_Champagne_Glasses-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Gold_Rimmed_Champagne_Glasses-1.1.jpeg", }, { "dimensions": { @@ -251,7 +251,7 @@ describe(`with goldRimmedChampagneGlasses preset`, () => { "width": 5143, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Gold_Rimmed_Champagne_Glasses-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Gold_Rimmed_Champagne_Glasses-1.2.jpeg", }, { "dimensions": { @@ -259,7 +259,7 @@ describe(`with goldRimmedChampagneGlasses preset`, () => { "width": 6869, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Gold_Rimmed_Champagne_Glasses-1.4.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Gold_Rimmed_Champagne_Glasses-1.4.jpeg", }, { "dimensions": { @@ -267,7 +267,7 @@ describe(`with goldRimmedChampagneGlasses preset`, () => { "width": 8080, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Gold_Rimmed_Champagne_Glasses-1.3.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Gold_Rimmed_Champagne_Glasses-1.3.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/gold-rimmed-champagne-glasses.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/gold-rimmed-champagne-glasses.ts similarity index 84% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/gold-rimmed-champagne-glasses.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/gold-rimmed-champagne-glasses.ts index f42aefa22..10a1bd9aa 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/gold-rimmed-champagne-glasses.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/gold-rimmed-champagne-glasses.ts @@ -18,24 +18,24 @@ import * as ProductVariantDraft from '../../../../product-variant/product-varian import * as ProductDraft from '../../../product-draft'; import type { TProductDraftBuilder } from '../../../types'; -const standardTaxCategory = TaxCategoryDraft.presets.sampleDataGoodStore +const standardTaxCategory = TaxCategoryDraft.presets.sampleDataB2CLifestyle .standardTaxCategory() .build(); const goldRimmedChampagneGlassesProductTypeDraft = - ProductTypeDraft.presets.sampleDataGoodStore + ProductTypeDraft.presets.sampleDataB2CLifestyle .furnitureAndDecor() .build(); -const kitchenDraft = CategoryDraft.presets.sampleDataGoodStore +const kitchenDraft = CategoryDraft.presets.sampleDataB2CLifestyle .kitchen() .build(); -const barAndGlasswareDraft = CategoryDraft.presets.sampleDataGoodStore +const barAndGlasswareDraft = CategoryDraft.presets.sampleDataB2CLifestyle .barAndGlassware() .build(); -const glasswareDraft = CategoryDraft.presets.sampleDataGoodStore +const glasswareDraft = CategoryDraft.presets.sampleDataB2CLifestyle .glassware() .build(); @@ -53,15 +53,15 @@ const goldRimmedChampagneGlasses = (): TProductDraftBuilder => .description( LocalizedStringDraft.presets .empty() - ['en-GB']( - "A set of gold rimmed champagne crystal glasses is a luxurious and elegant way to serve champagne or sparkling wine. These glasses are made of high-quality crystal, which gives them a clear and sparkling appearance that beautifully reflects the bubbles in the champagne. The glasses feature a delicate and slender stem, which allows the drinker to hold the glass without warming the contents inside. The gold rimmed detail adds an extra touch of luxury and sophistication to the design, giving the glasses a glamorous and opulent appearance. Overall, a set of gold rimmed champagne crystal glasses is a stunning and luxurious addition to any home bar or entertaining collection. Their elegant and timeless design, combined with their high-quality materials and intricate detailing, make them a perfect choice for celebrating life's special moments in style." - ) - ['en-US']( - "A set of gold rimmed champagne crystal glasses is a luxurious and elegant way to serve champagne or sparkling wine. These glasses are made of high-quality crystal, which gives them a clear and sparkling appearance that beautifully reflects the bubbles in the champagne. The glasses feature a delicate and slender stem, which allows the drinker to hold the glass without warming the contents inside. The gold rimmed detail adds an extra touch of luxury and sophistication to the design, giving the glasses a glamorous and opulent appearance. Overall, a set of gold rimmed champagne crystal glasses is a stunning and luxurious addition to any home bar or entertaining collection. Their elegant and timeless design, combined with their high-quality materials and intricate detailing, make them a perfect choice for celebrating life's special moments in style." - ) - ['de-DE']( - 'Mit einem Set aus Champagner-Kristallgläsern mit Goldrand lässt sich auf luxuriöse und elegante Art Champagner oder Sekt servieren. Diese Gläser sind aus hochwertigem Kristall gefertigt, was ihnen ein klares und funkelndes Aussehen verleiht, das die Blasen im Champagner wunderschön widerspiegelt. Die Gläser verfügen über einen zarten und schlanken Stiel, der es dem Trinker ermöglicht, das Glas zu halten, ohne den Inhalt darin zu erwärmen. Die goldene Umrandung ist ein Detail, das dem Design einen zusätzlichen Hauch von Luxus und Raffinesse und den Gläsern damit ein glamouröses und opulentes Aussehen verleiht. Insgesamt ist das Set aus Champagner-Kristallgläsern mit Goldrand eine atemberaubende und luxuriöse Ergänzung für jede Hausbar oder Unterhaltungssammlung. Das elegante und zeitlose Design, kombiniert mit hochwertigen Materialien und aufwendigen Details, macht es zur perfekten Wahl, um die besonderen Momente des Lebens stilvoll zu feiern.' - ) + [ + 'en-GB' + ]("A set of gold rimmed champagne crystal glasses is a luxurious and elegant way to serve champagne or sparkling wine. These glasses are made of high-quality crystal, which gives them a clear and sparkling appearance that beautifully reflects the bubbles in the champagne. The glasses feature a delicate and slender stem, which allows the drinker to hold the glass without warming the contents inside. The gold rimmed detail adds an extra touch of luxury and sophistication to the design, giving the glasses a glamorous and opulent appearance. Overall, a set of gold rimmed champagne crystal glasses is a stunning and luxurious addition to any home bar or entertaining collection. Their elegant and timeless design, combined with their high-quality materials and intricate detailing, make them a perfect choice for celebrating life's special moments in style.") + [ + 'en-US' + ]("A set of gold rimmed champagne crystal glasses is a luxurious and elegant way to serve champagne or sparkling wine. These glasses are made of high-quality crystal, which gives them a clear and sparkling appearance that beautifully reflects the bubbles in the champagne. The glasses feature a delicate and slender stem, which allows the drinker to hold the glass without warming the contents inside. The gold rimmed detail adds an extra touch of luxury and sophistication to the design, giving the glasses a glamorous and opulent appearance. Overall, a set of gold rimmed champagne crystal glasses is a stunning and luxurious addition to any home bar or entertaining collection. Their elegant and timeless design, combined with their high-quality materials and intricate detailing, make them a perfect choice for celebrating life's special moments in style.") + [ + 'de-DE' + ]('Mit einem Set aus Champagner-Kristallgläsern mit Goldrand lässt sich auf luxuriöse und elegante Art Champagner oder Sekt servieren. Diese Gläser sind aus hochwertigem Kristall gefertigt, was ihnen ein klares und funkelndes Aussehen verleiht, das die Blasen im Champagner wunderschön widerspiegelt. Die Gläser verfügen über einen zarten und schlanken Stiel, der es dem Trinker ermöglicht, das Glas zu halten, ohne den Inhalt darin zu erwärmen. Die goldene Umrandung ist ein Detail, das dem Design einen zusätzlichen Hauch von Luxus und Raffinesse und den Gläsern damit ein glamouröses und opulentes Aussehen verleiht. Insgesamt ist das Set aus Champagner-Kristallgläsern mit Goldrand eine atemberaubende und luxuriöse Ergänzung für jede Hausbar oder Unterhaltungssammlung. Das elegante und zeitlose Design, kombiniert mit hochwertigen Materialien und aufwendigen Details, macht es zur perfekten Wahl, um die besonderen Momente des Lebens stilvoll zu feiern.') ) .slug( LocalizedStringDraft.presets @@ -80,7 +80,7 @@ const goldRimmedChampagneGlasses = (): TProductDraftBuilder => KeyReferenceDraft.presets.taxCategory().key(standardTaxCategory.key!) ) .masterVariant( - ProductVariantDraft.presets.sampleDataGoodStore.goldRimmedChampagneGlasses01() + ProductVariantDraft.presets.sampleDataB2CLifestyle.goldRimmedChampagneGlasses01() ) .categories([ KeyReferenceDraft.presets.category().key(kitchenDraft.key!), diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/green-serving-plate.spec.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/green-serving-plate.spec.ts similarity index 98% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/green-serving-plate.spec.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/green-serving-plate.spec.ts index 33cc2a807..b44818f01 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/green-serving-plate.spec.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/green-serving-plate.spec.ts @@ -61,7 +61,7 @@ describe(`with greenServingPlate preset`, () => { "w": 4631, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Green_Serving_Plate-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Green_Serving_Plate-1.1.jpeg", }, { "dimensions": { @@ -69,7 +69,7 @@ describe(`with greenServingPlate preset`, () => { "w": 5705, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Green_Serving_Plate-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Green_Serving_Plate-1.2.jpeg", }, ], "key": undefined, @@ -216,7 +216,7 @@ describe(`with greenServingPlate preset`, () => { "width": 4631, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Green_Serving_Plate-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Green_Serving_Plate-1.1.jpeg", }, { "dimensions": { @@ -224,7 +224,7 @@ describe(`with greenServingPlate preset`, () => { "width": 5705, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Green_Serving_Plate-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Green_Serving_Plate-1.2.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/green-serving-plate.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/green-serving-plate.ts similarity index 84% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/green-serving-plate.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/green-serving-plate.ts index b6985f575..8dfee957c 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/green-serving-plate.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/green-serving-plate.ts @@ -18,28 +18,28 @@ import * as ProductVariantDraft from '../../../../product-variant/product-varian import * as ProductDraft from '../../../product-draft'; import type { TProductDraftBuilder } from '../../../types'; -const standardTaxCategory = TaxCategoryDraft.presets.sampleDataGoodStore +const standardTaxCategory = TaxCategoryDraft.presets.sampleDataB2CLifestyle .standardTaxCategory() .build(); const greenServingPlateProductTypeDraft = - ProductTypeDraft.presets.sampleDataGoodStore + ProductTypeDraft.presets.sampleDataB2CLifestyle .furnitureAndDecor() .build(); -const dinnerwareDraft = CategoryDraft.presets.sampleDataGoodStore +const dinnerwareDraft = CategoryDraft.presets.sampleDataB2CLifestyle .dinnerware() .build(); -const platesDraft = CategoryDraft.presets.sampleDataGoodStore +const platesDraft = CategoryDraft.presets.sampleDataB2CLifestyle .plates() .build(); -const kitchenDraft = CategoryDraft.presets.sampleDataGoodStore +const kitchenDraft = CategoryDraft.presets.sampleDataB2CLifestyle .kitchen() .build(); -const servingPlattersDraft = CategoryDraft.presets.sampleDataGoodStore +const servingPlattersDraft = CategoryDraft.presets.sampleDataB2CLifestyle .servingPlatters() .build(); @@ -57,15 +57,15 @@ const greenServingPlate = (): TProductDraftBuilder => .description( LocalizedStringDraft.presets .empty() - ['de-DE']( - 'Eine stilvolle grüne Servierplatte ist ein Teller, der entworfen wurde, um Speisen mit einem zusätzlichen Hauch von Eleganz und Raffinesse zu servieren. Die Platte ist in einem stilvollen Grünton gefärbt, der von einem sanften Pastellgrün bis zu einem lebhaften Limettengrün variieren kann. Die Farbe wird durch eine glänzende oder matte Oberfläche ergänzt, die der Servierplatte Tiefe und Textur verleiht. Die Form der Platte kann variieren. Einige gebogenen Kanten machen sie visuell zusätzlich interessant. Der Teller hat ein dekoratives Muster und eine Textur. Eine stilvolle grüne Servierplatte ist ideal zum Servieren einer Vielzahl von Speisen, einschließlich Vorspeisen, Hauptgerichten und Desserts. Insgesamt ist der Teller eine schöne und funktionale Wahl zum Servieren von Speisen. Sein einzigartiges Design und seine Farbe machen ihn zu einem Blickfang auf jedem Tisch, während seine Stabilität und Praktikabilität dafür sorgen, dass er sowohl für das tägliche Essen als auch für besondere Anlässe verwendet werden kann.' - ) - ['en-GB']( - 'A stylish green serving plate is a dish designed to serve food with an added touch of elegance and sophistication. The plate is colored in a stylish green shade, which can vary from a soft pastel green to a vibrant lime green. The color is complemented by a glossy or matte finish, adding depth and texture to the plate. The shape of the plate can vary, with some curved edges for added visual interest. The plate has a decorative pattern and texture. A stylish green serving plate is ideal for serving a variety of foods, including appetizers, entrees, and desserts. Overall, a stylish green serving plate is a beautiful and functional choice for serving food. Its unique design and color make it a statement piece on any table, while its durability and practicality ensure it can be used for everyday dining as well as special occasions.' - ) - ['en-US']( - 'A stylish green serving plate is a dish designed to serve food with an added touch of elegance and sophistication. The plate is colored in a stylish green shade, which can vary from a soft pastel green to a vibrant lime green. The color is complemented by a glossy or matte finish, adding depth and texture to the plate. The shape of the plate can vary, with some curved edges for added visual interest. The plate has a decorative pattern and texture. A stylish green serving plate is ideal for serving a variety of foods, including appetizers, entrees, and desserts. Overall, a stylish green serving plate is a beautiful and functional choice for serving food. Its unique design and color make it a statement piece on any table, while its durability and practicality ensure it can be used for everyday dining as well as special occasions.' - ) + [ + 'de-DE' + ]('Eine stilvolle grüne Servierplatte ist ein Teller, der entworfen wurde, um Speisen mit einem zusätzlichen Hauch von Eleganz und Raffinesse zu servieren. Die Platte ist in einem stilvollen Grünton gefärbt, der von einem sanften Pastellgrün bis zu einem lebhaften Limettengrün variieren kann. Die Farbe wird durch eine glänzende oder matte Oberfläche ergänzt, die der Servierplatte Tiefe und Textur verleiht. Die Form der Platte kann variieren. Einige gebogenen Kanten machen sie visuell zusätzlich interessant. Der Teller hat ein dekoratives Muster und eine Textur. Eine stilvolle grüne Servierplatte ist ideal zum Servieren einer Vielzahl von Speisen, einschließlich Vorspeisen, Hauptgerichten und Desserts. Insgesamt ist der Teller eine schöne und funktionale Wahl zum Servieren von Speisen. Sein einzigartiges Design und seine Farbe machen ihn zu einem Blickfang auf jedem Tisch, während seine Stabilität und Praktikabilität dafür sorgen, dass er sowohl für das tägliche Essen als auch für besondere Anlässe verwendet werden kann.') + [ + 'en-GB' + ]('A stylish green serving plate is a dish designed to serve food with an added touch of elegance and sophistication. The plate is colored in a stylish green shade, which can vary from a soft pastel green to a vibrant lime green. The color is complemented by a glossy or matte finish, adding depth and texture to the plate. The shape of the plate can vary, with some curved edges for added visual interest. The plate has a decorative pattern and texture. A stylish green serving plate is ideal for serving a variety of foods, including appetizers, entrees, and desserts. Overall, a stylish green serving plate is a beautiful and functional choice for serving food. Its unique design and color make it a statement piece on any table, while its durability and practicality ensure it can be used for everyday dining as well as special occasions.') + [ + 'en-US' + ]('A stylish green serving plate is a dish designed to serve food with an added touch of elegance and sophistication. The plate is colored in a stylish green shade, which can vary from a soft pastel green to a vibrant lime green. The color is complemented by a glossy or matte finish, adding depth and texture to the plate. The shape of the plate can vary, with some curved edges for added visual interest. The plate has a decorative pattern and texture. A stylish green serving plate is ideal for serving a variety of foods, including appetizers, entrees, and desserts. Overall, a stylish green serving plate is a beautiful and functional choice for serving food. Its unique design and color make it a statement piece on any table, while its durability and practicality ensure it can be used for everyday dining as well as special occasions.') ) .slug( LocalizedStringDraft.presets @@ -84,7 +84,7 @@ const greenServingPlate = (): TProductDraftBuilder => KeyReferenceDraft.presets.taxCategory().key(standardTaxCategory.key!) ) .masterVariant( - ProductVariantDraft.presets.sampleDataGoodStore.greenServingPlate01() + ProductVariantDraft.presets.sampleDataB2CLifestyle.greenServingPlate01() ) .categories([ KeyReferenceDraft.presets.category().key(dinnerwareDraft.key!), diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/harmony-drinking-glass.spec.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/harmony-drinking-glass.spec.ts similarity index 99% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/harmony-drinking-glass.spec.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/harmony-drinking-glass.spec.ts index b0cece78c..0cde82c3d 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/harmony-drinking-glass.spec.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/harmony-drinking-glass.spec.ts @@ -58,7 +58,7 @@ describe(`with harmonyDrinkingGlass preset`, () => { "w": 3000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Harmony_Drinking_Glass-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Harmony_Drinking_Glass-1.1.jpeg", }, ], "key": undefined, @@ -204,7 +204,7 @@ describe(`with harmonyDrinkingGlass preset`, () => { "width": 3000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Harmony_Drinking_Glass-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Harmony_Drinking_Glass-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/harmony-drinking-glass.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/harmony-drinking-glass.ts similarity index 84% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/harmony-drinking-glass.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/harmony-drinking-glass.ts index 5c2aded97..e3ce841c6 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/harmony-drinking-glass.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/harmony-drinking-glass.ts @@ -18,24 +18,24 @@ import * as ProductVariantDraft from '../../../../product-variant/product-varian import * as ProductDraft from '../../../product-draft'; import type { TProductDraftBuilder } from '../../../types'; -const standardTaxCategory = TaxCategoryDraft.presets.sampleDataGoodStore +const standardTaxCategory = TaxCategoryDraft.presets.sampleDataB2CLifestyle .standardTaxCategory() .build(); const harmonyDrinkingGlassProductTypeDraft = - ProductTypeDraft.presets.sampleDataGoodStore + ProductTypeDraft.presets.sampleDataB2CLifestyle .furnitureAndDecor() .build(); -const glasswareDraft = CategoryDraft.presets.sampleDataGoodStore +const glasswareDraft = CategoryDraft.presets.sampleDataB2CLifestyle .glassware() .build(); -const barAndGlasswareDraft = CategoryDraft.presets.sampleDataGoodStore +const barAndGlasswareDraft = CategoryDraft.presets.sampleDataB2CLifestyle .barAndGlassware() .build(); -const kitchenDraft = CategoryDraft.presets.sampleDataGoodStore +const kitchenDraft = CategoryDraft.presets.sampleDataB2CLifestyle .kitchen() .build(); @@ -53,15 +53,15 @@ const harmonyDrinkingGlass = (): TProductDraftBuilder => .description( LocalizedStringDraft.presets .empty() - ['en-GB']( - 'The Harmony Drinking Glass is designed to hold water or other beverages. It has a capacity of around 8 to 12 ounces. The design of the water glass is intended to make it easy and comfortable to hold and drink from. It has a straight, smooth-sided body with a thick, stable base that provides balance and stability. The rim of the glass is slightly curved or rounded, making it comfortable to drink from. The Harmony Drinking Glass can be used for a variety of beverages, including water, juice, iced tea, and other non-alcoholic drinks. The drinking glasses are generally easy to clean and maintain. They can be washed by hand or in a dishwasher, and should be dried thoroughly to prevent water spots or residue from forming. Overall, the Harmony Drinking Glass is a simple and functional type of drinking glass that is ideal for everyday use. Its basic design and versatility make it a popular choice for both casual and formal settings.' - ) - ['en-US']( - 'The Harmony Drinking Glass is designed to hold water or other beverages. It has a capacity of around 8 to 12 ounces. The design of the water glass is intended to make it easy and comfortable to hold and drink from. It has a straight, smooth-sided body with a thick, stable base that provides balance and stability. The rim of the glass is slightly curved or rounded, making it comfortable to drink from. The Harmony Drinking Glass can be used for a variety of beverages, including water, juice, iced tea, and other non-alcoholic drinks. The drinking glasses are generally easy to clean and maintain. They can be washed by hand or in a dishwasher, and should be dried thoroughly to prevent water spots or residue from forming. Overall, the Harmony Drinking Glass is a simple and functional type of drinking glass that is ideal for everyday use. Its basic design and versatility make it a popular choice for both casual and formal settings.' - ) - ['de-DE']( - 'Das Trinkglas Harmonie wurde entwickelt, um Wasser oder andere Getränke zu servieren. Es hat eine Kapazität von etwa 230 bis 350ml. Das Design des Wasserglases soll das Halten und Trinken einfach und bequem machen. Es hat einen geraden Körper mit glatten Seiten und einer dicken, stabilen Basis, die für Gleichgewicht und Stabilität sorgt. Der Rand des Glases ist leicht gewölbt oder abgerundet, was das Trinken angenehm macht. Das Trinkglas Harmonie kann für eine Vielzahl von Getränken verwendet werden, darunter Wasser, Saft, Eistee und andere alkoholfreie Getränke. Die Trinkgläser sind im Allgemeinen leicht zu reinigen und zu pflegen. Sie können von Hand oder in der Spülmaschine gewaschen werden und sollten gründlich getrocknet werden, um Wasserflecken oder Rückstände zu vermeiden. Insgesamt ist das Harmonie Trinkglas ein schlichter und funktionaler Trinkglastyp, der sich ideal für den täglichen Gebrauch eignet. Sein einfaches Design und seine Vielseitigkeit machen es zu einer beliebten Wahl für lässige und formelle Anlässe.' - ) + [ + 'en-GB' + ]('The Harmony Drinking Glass is designed to hold water or other beverages. It has a capacity of around 8 to 12 ounces. The design of the water glass is intended to make it easy and comfortable to hold and drink from. It has a straight, smooth-sided body with a thick, stable base that provides balance and stability. The rim of the glass is slightly curved or rounded, making it comfortable to drink from. The Harmony Drinking Glass can be used for a variety of beverages, including water, juice, iced tea, and other non-alcoholic drinks. The drinking glasses are generally easy to clean and maintain. They can be washed by hand or in a dishwasher, and should be dried thoroughly to prevent water spots or residue from forming. Overall, the Harmony Drinking Glass is a simple and functional type of drinking glass that is ideal for everyday use. Its basic design and versatility make it a popular choice for both casual and formal settings.') + [ + 'en-US' + ]('The Harmony Drinking Glass is designed to hold water or other beverages. It has a capacity of around 8 to 12 ounces. The design of the water glass is intended to make it easy and comfortable to hold and drink from. It has a straight, smooth-sided body with a thick, stable base that provides balance and stability. The rim of the glass is slightly curved or rounded, making it comfortable to drink from. The Harmony Drinking Glass can be used for a variety of beverages, including water, juice, iced tea, and other non-alcoholic drinks. The drinking glasses are generally easy to clean and maintain. They can be washed by hand or in a dishwasher, and should be dried thoroughly to prevent water spots or residue from forming. Overall, the Harmony Drinking Glass is a simple and functional type of drinking glass that is ideal for everyday use. Its basic design and versatility make it a popular choice for both casual and formal settings.') + [ + 'de-DE' + ]('Das Trinkglas Harmonie wurde entwickelt, um Wasser oder andere Getränke zu servieren. Es hat eine Kapazität von etwa 230 bis 350ml. Das Design des Wasserglases soll das Halten und Trinken einfach und bequem machen. Es hat einen geraden Körper mit glatten Seiten und einer dicken, stabilen Basis, die für Gleichgewicht und Stabilität sorgt. Der Rand des Glases ist leicht gewölbt oder abgerundet, was das Trinken angenehm macht. Das Trinkglas Harmonie kann für eine Vielzahl von Getränken verwendet werden, darunter Wasser, Saft, Eistee und andere alkoholfreie Getränke. Die Trinkgläser sind im Allgemeinen leicht zu reinigen und zu pflegen. Sie können von Hand oder in der Spülmaschine gewaschen werden und sollten gründlich getrocknet werden, um Wasserflecken oder Rückstände zu vermeiden. Insgesamt ist das Harmonie Trinkglas ein schlichter und funktionaler Trinkglastyp, der sich ideal für den täglichen Gebrauch eignet. Sein einfaches Design und seine Vielseitigkeit machen es zu einer beliebten Wahl für lässige und formelle Anlässe.') ) .slug( LocalizedStringDraft.presets @@ -80,7 +80,7 @@ const harmonyDrinkingGlass = (): TProductDraftBuilder => KeyReferenceDraft.presets.taxCategory().key(standardTaxCategory.key!) ) .masterVariant( - ProductVariantDraft.presets.sampleDataGoodStore.harmonyDrinkingGlass01() + ProductVariantDraft.presets.sampleDataB2CLifestyle.harmonyDrinkingGlass01() ) .categories([ KeyReferenceDraft.presets.category().key(glasswareDraft.key!), diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/harvest-plate.spec.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/harvest-plate.spec.ts similarity index 98% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/harvest-plate.spec.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/harvest-plate.spec.ts index 81c7c68ea..4c5ca0c34 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/harvest-plate.spec.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/harvest-plate.spec.ts @@ -65,7 +65,7 @@ describe(`with harvestPlate preset`, () => { "w": 4421, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Harvest_Plate-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Harvest_Plate-1.1.jpeg", }, ], "key": undefined, @@ -216,7 +216,7 @@ describe(`with harvestPlate preset`, () => { "width": 4421, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Harvest_Plate-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Harvest_Plate-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/harvest-plate.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/harvest-plate.ts similarity index 78% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/harvest-plate.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/harvest-plate.ts index e6cee40ab..c63a22bb4 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/harvest-plate.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/harvest-plate.ts @@ -18,32 +18,32 @@ import * as ProductVariantDraft from '../../../../product-variant/product-varian import * as ProductDraft from '../../../product-draft'; import type { TProductDraftBuilder } from '../../../types'; -const standardTaxCategory = TaxCategoryDraft.presets.sampleDataGoodStore +const standardTaxCategory = TaxCategoryDraft.presets.sampleDataB2CLifestyle .standardTaxCategory() .build(); const harvestPlateProductTypeDraft = - ProductTypeDraft.presets.sampleDataGoodStore + ProductTypeDraft.presets.sampleDataB2CLifestyle .furnitureAndDecor() .build(); -const platesDraft = CategoryDraft.presets.sampleDataGoodStore +const platesDraft = CategoryDraft.presets.sampleDataB2CLifestyle .plates() .build(); -const kitchenDraft = CategoryDraft.presets.sampleDataGoodStore +const kitchenDraft = CategoryDraft.presets.sampleDataB2CLifestyle .kitchen() .build(); -const servingPlattersDraft = CategoryDraft.presets.sampleDataGoodStore +const servingPlattersDraft = CategoryDraft.presets.sampleDataB2CLifestyle .servingPlatters() .build(); -const servewareDraft = CategoryDraft.presets.sampleDataGoodStore +const servewareDraft = CategoryDraft.presets.sampleDataB2CLifestyle .serveware() .build(); -const dinnerwareDraft = CategoryDraft.presets.sampleDataGoodStore +const dinnerwareDraft = CategoryDraft.presets.sampleDataB2CLifestyle .dinnerware() .build(); @@ -61,15 +61,15 @@ const harvestPlate = (): TProductDraftBuilder => .description( LocalizedStringDraft.presets .empty() - ['en-GB']( - 'This seashell-shaped serving plate is ideal for serving seafood, such as shrimp, oysters, or sushi rolls, but can also be used for other types of cuisine. It is a popular choice for beach-themed parties, coastal restaurants, or for those who enjoy decorating their home with nautical accents. Overall, a seashell shaped serving plate is a unique and stylish choice for serving food. Its natural appearance and beach-inspired design make it a fun and whimsical addition to any dining occasion.' - ) - ['en-US']( - 'This seashell-shaped serving plate is ideal for serving seafood, such as shrimp, oysters, or sushi rolls, but can also be used for other types of cuisine. It is a popular choice for beach-themed parties, coastal restaurants, or for those who enjoy decorating their home with nautical accents. Overall, a seashell shaped serving plate is a unique and stylish choice for serving food. Its natural appearance and beach-inspired design make it a fun and whimsical addition to any dining occasion.' - ) - ['de-DE']( - 'Diese muschelförmige Servierplatte ist ideal zum Servieren von Meeresfrüchten wie Garnelen, Austern oder Sushi-Rollen, kann aber auch für andere Gerichte verwendet werden. Es ist eine beliebte Wahl für Strandpartys, Küstenrestaurants oder für diejenigen, die ihr Zuhause gerne mit nautischen Akzenten dekorieren. Insgesamt ist ein muschelförmiger Servierteller eine einzigartige und stilvolle Wahl zum Servieren von Speisen. Sein natürliches Aussehen und das vom Strand inspirierte Design machen es zu einer lustigen und skurrilen Ergänzung für jeden Essensanlass.' - ) + [ + 'en-GB' + ]('This seashell-shaped serving plate is ideal for serving seafood, such as shrimp, oysters, or sushi rolls, but can also be used for other types of cuisine. It is a popular choice for beach-themed parties, coastal restaurants, or for those who enjoy decorating their home with nautical accents. Overall, a seashell shaped serving plate is a unique and stylish choice for serving food. Its natural appearance and beach-inspired design make it a fun and whimsical addition to any dining occasion.') + [ + 'en-US' + ]('This seashell-shaped serving plate is ideal for serving seafood, such as shrimp, oysters, or sushi rolls, but can also be used for other types of cuisine. It is a popular choice for beach-themed parties, coastal restaurants, or for those who enjoy decorating their home with nautical accents. Overall, a seashell shaped serving plate is a unique and stylish choice for serving food. Its natural appearance and beach-inspired design make it a fun and whimsical addition to any dining occasion.') + [ + 'de-DE' + ]('Diese muschelförmige Servierplatte ist ideal zum Servieren von Meeresfrüchten wie Garnelen, Austern oder Sushi-Rollen, kann aber auch für andere Gerichte verwendet werden. Es ist eine beliebte Wahl für Strandpartys, Küstenrestaurants oder für diejenigen, die ihr Zuhause gerne mit nautischen Akzenten dekorieren. Insgesamt ist ein muschelförmiger Servierteller eine einzigartige und stilvolle Wahl zum Servieren von Speisen. Sein natürliches Aussehen und das vom Strand inspirierte Design machen es zu einer lustigen und skurrilen Ergänzung für jeden Essensanlass.') ) .slug( LocalizedStringDraft.presets @@ -88,7 +88,7 @@ const harvestPlate = (): TProductDraftBuilder => KeyReferenceDraft.presets.taxCategory().key(standardTaxCategory.key!) ) .masterVariant( - ProductVariantDraft.presets.sampleDataGoodStore.harvestPlate01() + ProductVariantDraft.presets.sampleDataB2CLifestyle.harvestPlate01() ) .categories([ KeyReferenceDraft.presets.category().key(platesDraft.key!), diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/ice-bucket.spec.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/ice-bucket.spec.ts similarity index 98% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/ice-bucket.spec.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/ice-bucket.spec.ts index 7b98b0d6a..b9c0146fc 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/ice-bucket.spec.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/ice-bucket.spec.ts @@ -60,7 +60,7 @@ describe(`with iceBucket preset`, () => { "w": 5072, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Ice_Bucket-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Ice_Bucket-1.1.jpeg", }, ], "key": undefined, @@ -202,7 +202,7 @@ describe(`with iceBucket preset`, () => { "width": 5072, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Ice_Bucket-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Ice_Bucket-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/ice-bucket.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/ice-bucket.ts similarity index 75% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/ice-bucket.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/ice-bucket.ts index 1a249f71e..78dcd2f07 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/ice-bucket.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/ice-bucket.ts @@ -18,23 +18,24 @@ import * as ProductVariantDraft from '../../../../product-variant/product-varian import * as ProductDraft from '../../../product-draft'; import type { TProductDraftBuilder } from '../../../types'; -const standardTaxCategory = TaxCategoryDraft.presets.sampleDataGoodStore +const standardTaxCategory = TaxCategoryDraft.presets.sampleDataB2CLifestyle .standardTaxCategory() .build(); -const iceBucketProductTypeDraft = ProductTypeDraft.presets.sampleDataGoodStore - .furnitureAndDecor() - .build(); +const iceBucketProductTypeDraft = + ProductTypeDraft.presets.sampleDataB2CLifestyle + .furnitureAndDecor() + .build(); -const barAccessoriesDraft = CategoryDraft.presets.sampleDataGoodStore +const barAccessoriesDraft = CategoryDraft.presets.sampleDataB2CLifestyle .barAccessories() .build(); -const dinnerwareDraft = CategoryDraft.presets.sampleDataGoodStore +const dinnerwareDraft = CategoryDraft.presets.sampleDataB2CLifestyle .dinnerware() .build(); -const kitchenDraft = CategoryDraft.presets.sampleDataGoodStore +const kitchenDraft = CategoryDraft.presets.sampleDataB2CLifestyle .kitchen() .build(); @@ -52,15 +53,15 @@ const iceBucket = (): TProductDraftBuilder => .description( LocalizedStringDraft.presets .empty() - ['en-GB']( - 'A metal ice bucket is a container used for holding and serving ice. It is made of stainless steel and designed to keep the ice cold for an extended period of time. The exterior of the ice bucket is polished and has an extended lip for easy carrying. The interior is smooth and polished to prevent the ice from sticking to the walls of the bucket.' - ) - ['en-US']( - 'A metal ice bucket is a container used for holding and serving ice. It is made of stainless steel and designed to keep the ice cold for an extended period of time. The exterior of the ice bucket is polished and has an extended lip for easy carrying. The interior is smooth and polished to prevent the ice from sticking to the walls of the bucket.' - ) - ['de-DE']( - 'Ein Eiskübel aus Metall ist ein Behälter zum Aufbewahren und Servieren von Eis. Er besteht aus Edelstahl und ist so konzipiert, dass er das Eis über einen längeren Zeitraum kalt hält. Das Äußere des Eiskübels ist poliert und hat eine verlängerte Lippe zum einfachen Tragen. Die Innenseite ist glatt und poliert, damit das Eis nicht an den Wänden des Eimers kleben bleibt.' - ) + [ + 'en-GB' + ]('A metal ice bucket is a container used for holding and serving ice. It is made of stainless steel and designed to keep the ice cold for an extended period of time. The exterior of the ice bucket is polished and has an extended lip for easy carrying. The interior is smooth and polished to prevent the ice from sticking to the walls of the bucket.') + [ + 'en-US' + ]('A metal ice bucket is a container used for holding and serving ice. It is made of stainless steel and designed to keep the ice cold for an extended period of time. The exterior of the ice bucket is polished and has an extended lip for easy carrying. The interior is smooth and polished to prevent the ice from sticking to the walls of the bucket.') + [ + 'de-DE' + ]('Ein Eiskübel aus Metall ist ein Behälter zum Aufbewahren und Servieren von Eis. Er besteht aus Edelstahl und ist so konzipiert, dass er das Eis über einen längeren Zeitraum kalt hält. Das Äußere des Eiskübels ist poliert und hat eine verlängerte Lippe zum einfachen Tragen. Die Innenseite ist glatt und poliert, damit das Eis nicht an den Wänden des Eimers kleben bleibt.') ) .slug( LocalizedStringDraft.presets @@ -79,7 +80,7 @@ const iceBucket = (): TProductDraftBuilder => KeyReferenceDraft.presets.taxCategory().key(standardTaxCategory.key!) ) .masterVariant( - ProductVariantDraft.presets.sampleDataGoodStore.iceBucket01() + ProductVariantDraft.presets.sampleDataB2CLifestyle.iceBucket01() ) .categories([ KeyReferenceDraft.presets.category().key(barAccessoriesDraft.key!), diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/idun-pillow-cover.spec.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/idun-pillow-cover.spec.ts similarity index 99% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/idun-pillow-cover.spec.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/idun-pillow-cover.spec.ts index 3ac5a7aab..f157bdb3a 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/idun-pillow-cover.spec.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/idun-pillow-cover.spec.ts @@ -56,7 +56,7 @@ describe(`with idunPillowCover preset`, () => { "w": 5994, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Idun_Pillow_Cover-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Idun_Pillow_Cover-1.1.jpeg", }, ], "key": undefined, @@ -198,7 +198,7 @@ describe(`with idunPillowCover preset`, () => { "width": 5994, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Idun_Pillow_Cover-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Idun_Pillow_Cover-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/idun-pillow-cover.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/idun-pillow-cover.ts similarity index 88% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/idun-pillow-cover.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/idun-pillow-cover.ts index bd806c2a0..d3f8a3240 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/idun-pillow-cover.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/idun-pillow-cover.ts @@ -18,20 +18,20 @@ import * as ProductVariantDraft from '../../../../product-variant/product-varian import * as ProductDraft from '../../../product-draft'; import type { TProductDraftBuilder } from '../../../types'; -const standardTaxCategory = TaxCategoryDraft.presets.sampleDataGoodStore +const standardTaxCategory = TaxCategoryDraft.presets.sampleDataB2CLifestyle .standardTaxCategory() .build(); const idunPillowCoverProductTypeDraft = - ProductTypeDraft.presets.sampleDataGoodStore + ProductTypeDraft.presets.sampleDataB2CLifestyle .furnitureAndDecor() .build(); -const beddingDraft = CategoryDraft.presets.sampleDataGoodStore +const beddingDraft = CategoryDraft.presets.sampleDataB2CLifestyle .bedding() .build(); -const homeDecorDraft = CategoryDraft.presets.sampleDataGoodStore +const homeDecorDraft = CategoryDraft.presets.sampleDataB2CLifestyle .homeDecor() .build(); @@ -49,15 +49,15 @@ const idunPillowCover = (): TProductDraftBuilder => .description( LocalizedStringDraft.presets .empty() - ['en-GB']( - 'A brown velvet pillowcase is a type of textile covering for a decorative pillow that is typically used to add visual interest, texture, and a touch of luxury to a room. It is made from a soft and plush velvet fabric, which is known for its smooth surface, rich color, and lustrous sheen. The pillowcase is designed to fit over a standard size decorative pillow, usually around 18 inches square. It features a square shape and a warm brown color that can complement a variety of decor styles and color schemes. The velvet fabric has a silky and luxurious feel that adds a touch of sophistication and elegance to the pillow. The edges of the pillowcase are typically finished with a neat hem, which adds a polished look to the overall design. The pillowcase is often used to create a cozy and inviting atmosphere in a room, whether it is placed on a bed, a sofa, or an accent chair. It can be used on its own or paired with other decorative pillows in different textures and colors to create a layered and harmonious look. Overall, a brown velvet pillowcase is a beautiful and indulgent accent piece that can enhance the comfort and style of any room in the home.' - ) - ['en-US']( - 'A brown velvet pillowcase is a type of textile covering for a decorative pillow that is typically used to add visual interest, texture, and a touch of luxury to a room. It is made from a soft and plush velvet fabric, which is known for its smooth surface, rich color, and lustrous sheen. The pillowcase is designed to fit over a standard size decorative pillow, usually around 18 inches square. It features a square shape and a warm brown color that can complement a variety of decor styles and color schemes. The velvet fabric has a silky and luxurious feel that adds a touch of sophistication and elegance to the pillow. The edges of the pillowcase are typically finished with a neat hem, which adds a polished look to the overall design. The pillowcase is often used to create a cozy and inviting atmosphere in a room, whether it is placed on a bed, a sofa, or an accent chair. It can be used on its own or paired with other decorative pillows in different textures and colors to create a layered and harmonious look. Overall, a brown velvet pillowcase is a beautiful and indulgent accent piece that can enhance the comfort and style of any room in the home.' - ) - ['de-DE']( - 'Ein brauner Samt-Kissenbezug ist eine Art Textilbezug für ein dekoratives Kissen, das normalerweise verwendet wird, um einem Raum visuelles Interesse, Textur und einen Hauch von Luxus zu verleihen. Es besteht aus einem weichen und plüschigen Samtstoff, der für seine glatte Oberfläche, seine satte Farbe und seinen glänzenden Schimmer bekannt ist. Der Kissenbezug ist so konzipiert, dass er über ein dekoratives Kissen in Standardgröße passt, normalerweise etwa 18 Zoll im Quadrat. Er hat eine quadratische Form und eine warme braune Farbe, die eine Vielzahl von Einrichtungsstilen und Farbschemata ergänzen kann. Der Samtstoff fühlt sich seidig und luxuriös an und verleiht dem Kissen einen Hauch von Raffinesse und Eleganz. Die Kanten des Kissenbezugs sind in der Regel mit einem sauberen Saum versehen, der dem Gesamtdesign einen eleganten Look verleiht. Der Kissenbezug wird oft verwendet, um eine gemütliche und einladende Atmosphäre in einem Raum zu schaffen, egal ob er auf einem Bett, einem Sofa oder einem Akzentstuhl platziert wird. Er kann allein oder in Kombination mit anderen dekorativen Kissen in verschiedenen Texturen und Farben verwendet werden, um ein mehrschichtiges und harmonisches Aussehen zu schaffen. Insgesamt ist ein Kissenbezug aus braunem Samt ein wunderschönes und luxuriöses Accessoire, das den Komfort und den Stil eines jeden Raumes im Haus verbessern kann. ' - ) + [ + 'en-GB' + ]('A brown velvet pillowcase is a type of textile covering for a decorative pillow that is typically used to add visual interest, texture, and a touch of luxury to a room. It is made from a soft and plush velvet fabric, which is known for its smooth surface, rich color, and lustrous sheen. The pillowcase is designed to fit over a standard size decorative pillow, usually around 18 inches square. It features a square shape and a warm brown color that can complement a variety of decor styles and color schemes. The velvet fabric has a silky and luxurious feel that adds a touch of sophistication and elegance to the pillow. The edges of the pillowcase are typically finished with a neat hem, which adds a polished look to the overall design. The pillowcase is often used to create a cozy and inviting atmosphere in a room, whether it is placed on a bed, a sofa, or an accent chair. It can be used on its own or paired with other decorative pillows in different textures and colors to create a layered and harmonious look. Overall, a brown velvet pillowcase is a beautiful and indulgent accent piece that can enhance the comfort and style of any room in the home.') + [ + 'en-US' + ]('A brown velvet pillowcase is a type of textile covering for a decorative pillow that is typically used to add visual interest, texture, and a touch of luxury to a room. It is made from a soft and plush velvet fabric, which is known for its smooth surface, rich color, and lustrous sheen. The pillowcase is designed to fit over a standard size decorative pillow, usually around 18 inches square. It features a square shape and a warm brown color that can complement a variety of decor styles and color schemes. The velvet fabric has a silky and luxurious feel that adds a touch of sophistication and elegance to the pillow. The edges of the pillowcase are typically finished with a neat hem, which adds a polished look to the overall design. The pillowcase is often used to create a cozy and inviting atmosphere in a room, whether it is placed on a bed, a sofa, or an accent chair. It can be used on its own or paired with other decorative pillows in different textures and colors to create a layered and harmonious look. Overall, a brown velvet pillowcase is a beautiful and indulgent accent piece that can enhance the comfort and style of any room in the home.') + [ + 'de-DE' + ]('Ein brauner Samt-Kissenbezug ist eine Art Textilbezug für ein dekoratives Kissen, das normalerweise verwendet wird, um einem Raum visuelles Interesse, Textur und einen Hauch von Luxus zu verleihen. Es besteht aus einem weichen und plüschigen Samtstoff, der für seine glatte Oberfläche, seine satte Farbe und seinen glänzenden Schimmer bekannt ist. Der Kissenbezug ist so konzipiert, dass er über ein dekoratives Kissen in Standardgröße passt, normalerweise etwa 18 Zoll im Quadrat. Er hat eine quadratische Form und eine warme braune Farbe, die eine Vielzahl von Einrichtungsstilen und Farbschemata ergänzen kann. Der Samtstoff fühlt sich seidig und luxuriös an und verleiht dem Kissen einen Hauch von Raffinesse und Eleganz. Die Kanten des Kissenbezugs sind in der Regel mit einem sauberen Saum versehen, der dem Gesamtdesign einen eleganten Look verleiht. Der Kissenbezug wird oft verwendet, um eine gemütliche und einladende Atmosphäre in einem Raum zu schaffen, egal ob er auf einem Bett, einem Sofa oder einem Akzentstuhl platziert wird. Er kann allein oder in Kombination mit anderen dekorativen Kissen in verschiedenen Texturen und Farben verwendet werden, um ein mehrschichtiges und harmonisches Aussehen zu schaffen. Insgesamt ist ein Kissenbezug aus braunem Samt ein wunderschönes und luxuriöses Accessoire, das den Komfort und den Stil eines jeden Raumes im Haus verbessern kann. ') ) .slug( LocalizedStringDraft.presets @@ -76,7 +76,7 @@ const idunPillowCover = (): TProductDraftBuilder => KeyReferenceDraft.presets.taxCategory().key(standardTaxCategory.key!) ) .masterVariant( - ProductVariantDraft.presets.sampleDataGoodStore.idunPillowCover01() + ProductVariantDraft.presets.sampleDataB2CLifestyle.idunPillowCover01() ) .categories([ KeyReferenceDraft.presets.category().key(beddingDraft.key!), diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/index.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/index.ts similarity index 100% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/index.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/index.ts diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/indoor-jute-planter.spec.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/indoor-jute-planter.spec.ts similarity index 98% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/indoor-jute-planter.spec.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/indoor-jute-planter.spec.ts index 498de5ade..50f6ac204 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/indoor-jute-planter.spec.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/indoor-jute-planter.spec.ts @@ -55,7 +55,7 @@ describe(`with indoorJutePlanter preset`, () => { "w": 5000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Indoor_Jute_Planter-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Indoor_Jute_Planter-1.1.jpeg", }, ], "key": undefined, @@ -165,7 +165,7 @@ describe(`with indoorJutePlanter preset`, () => { "w": 5000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Indoor_Jute_Planter-2.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Indoor_Jute_Planter-2.1.jpeg", }, ], "key": undefined, @@ -277,7 +277,7 @@ describe(`with indoorJutePlanter preset`, () => { "width": 5000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Indoor_Jute_Planter-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Indoor_Jute_Planter-1.1.jpeg", }, ], "key": undefined, @@ -399,7 +399,7 @@ describe(`with indoorJutePlanter preset`, () => { "width": 5000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Indoor_Jute_Planter-2.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Indoor_Jute_Planter-2.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/indoor-jute-planter.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/indoor-jute-planter.ts similarity index 80% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/indoor-jute-planter.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/indoor-jute-planter.ts index 0ddf70aed..ad393d459 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/indoor-jute-planter.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/indoor-jute-planter.ts @@ -18,24 +18,24 @@ import * as ProductVariantDraft from '../../../../product-variant/product-varian import * as ProductDraft from '../../../product-draft'; import type { TProductDraftBuilder } from '../../../types'; -const standardTaxCategory = TaxCategoryDraft.presets.sampleDataGoodStore +const standardTaxCategory = TaxCategoryDraft.presets.sampleDataB2CLifestyle .standardTaxCategory() .build(); const indoorJutePlanterProductTypeDraft = - ProductTypeDraft.presets.sampleDataGoodStore + ProductTypeDraft.presets.sampleDataB2CLifestyle .furnitureAndDecor() .build(); -const roomDecorDraft = CategoryDraft.presets.sampleDataGoodStore +const roomDecorDraft = CategoryDraft.presets.sampleDataB2CLifestyle .roomDecor() .build(); -const homeAccentsDraft = CategoryDraft.presets.sampleDataGoodStore +const homeAccentsDraft = CategoryDraft.presets.sampleDataB2CLifestyle .homeAccents() .build(); -const homeDecorDraft = CategoryDraft.presets.sampleDataGoodStore +const homeDecorDraft = CategoryDraft.presets.sampleDataB2CLifestyle .homeDecor() .build(); @@ -53,15 +53,15 @@ const indoorJutePlanter = (): TProductDraftBuilder => .description( LocalizedStringDraft.presets .empty() - ['en-GB']( - 'An indoor jute planter for plants is a decorative and eco-friendly way to display greenery in your home. The planter is made from natural jute fibers, which are woven into a sturdy and breathable container for your plants. The neutral color of the jute fibers complements the natural color of plants, making them stand out beautifully. The jute fibers of the planter are absorbent, allowing for proper drainage and air circulation for the plant roots. This helps to prevent root rot and other soil-borne diseases, ensuring healthy plant growth. Overall, an indoor jute planter is a charming and practical way to bring a touch of nature into your home, while also being kind to the planet.' - ) - ['en-US']( - 'An indoor jute planter for plants is a decorative and eco-friendly way to display greenery in your home. The planter is made from natural jute fibers, which are woven into a sturdy and breathable container for your plants. The neutral color of the jute fibers complements the natural color of plants, making them stand out beautifully. The jute fibers of the planter are absorbent, allowing for proper drainage and air circulation for the plant roots. This helps to prevent root rot and other soil-borne diseases, ensuring healthy plant growth. Overall, an indoor jute planter is a charming and practical way to bring a touch of nature into your home, while also being kind to the planet.' - ) - ['de-DE']( - 'Ein Indoor-Blumentopf für Pflanzen ist eine dekorative und umweltfreundliche Möglichkeit, Pflanzen in Ihrem Zuhause zu präsentieren. Der Blumentopf besteht aus natürlichen Jutefasern, die zu einem robusten und atmungsaktiven Behälter für Ihre Pflanzen verwoben sind. Die neutrale Farbe der Jutefasern ergänzt die natürliche Farbe der Pflanzen und lässt sie schön zur Geltung kommen. Die Jutefasern des Blumentopfes sind saugfähig und ermöglichen eine ordnungsgemäße Entwässerung und Luftzirkulation für die Pflanzenwurzeln. Dies trägt dazu bei, Wurzelfäule und andere bodenbürtige Krankheiten zu verhindern und ein gesundes Pflanzenwachstum zu gewährleisten. Insgesamt ist ein Blumentopf aus Jute für den Innenbereich eine charmante und praktische Möglichkeit, einen Hauch von Natur in Ihr Zuhause zu bringen und gleichzeitig die Umwelt zu schonen.' - ) + [ + 'en-GB' + ]('An indoor jute planter for plants is a decorative and eco-friendly way to display greenery in your home. The planter is made from natural jute fibers, which are woven into a sturdy and breathable container for your plants. The neutral color of the jute fibers complements the natural color of plants, making them stand out beautifully. The jute fibers of the planter are absorbent, allowing for proper drainage and air circulation for the plant roots. This helps to prevent root rot and other soil-borne diseases, ensuring healthy plant growth. Overall, an indoor jute planter is a charming and practical way to bring a touch of nature into your home, while also being kind to the planet.') + [ + 'en-US' + ]('An indoor jute planter for plants is a decorative and eco-friendly way to display greenery in your home. The planter is made from natural jute fibers, which are woven into a sturdy and breathable container for your plants. The neutral color of the jute fibers complements the natural color of plants, making them stand out beautifully. The jute fibers of the planter are absorbent, allowing for proper drainage and air circulation for the plant roots. This helps to prevent root rot and other soil-borne diseases, ensuring healthy plant growth. Overall, an indoor jute planter is a charming and practical way to bring a touch of nature into your home, while also being kind to the planet.') + [ + 'de-DE' + ]('Ein Indoor-Blumentopf für Pflanzen ist eine dekorative und umweltfreundliche Möglichkeit, Pflanzen in Ihrem Zuhause zu präsentieren. Der Blumentopf besteht aus natürlichen Jutefasern, die zu einem robusten und atmungsaktiven Behälter für Ihre Pflanzen verwoben sind. Die neutrale Farbe der Jutefasern ergänzt die natürliche Farbe der Pflanzen und lässt sie schön zur Geltung kommen. Die Jutefasern des Blumentopfes sind saugfähig und ermöglichen eine ordnungsgemäße Entwässerung und Luftzirkulation für die Pflanzenwurzeln. Dies trägt dazu bei, Wurzelfäule und andere bodenbürtige Krankheiten zu verhindern und ein gesundes Pflanzenwachstum zu gewährleisten. Insgesamt ist ein Blumentopf aus Jute für den Innenbereich eine charmante und praktische Möglichkeit, einen Hauch von Natur in Ihr Zuhause zu bringen und gleichzeitig die Umwelt zu schonen.') ) .slug( LocalizedStringDraft.presets @@ -80,10 +80,10 @@ const indoorJutePlanter = (): TProductDraftBuilder => KeyReferenceDraft.presets.taxCategory().key(standardTaxCategory.key!) ) .masterVariant( - ProductVariantDraft.presets.sampleDataGoodStore.indoorJutePlanter01() + ProductVariantDraft.presets.sampleDataB2CLifestyle.indoorJutePlanter01() ) .variants([ - ProductVariantDraft.presets.sampleDataGoodStore.indoorJutePlanter02(), + ProductVariantDraft.presets.sampleDataB2CLifestyle.indoorJutePlanter02(), ]) .categories([ KeyReferenceDraft.presets.category().key(roomDecorDraft.key!), diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/ivory-lounge-chair.spec.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/ivory-lounge-chair.spec.ts similarity index 97% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/ivory-lounge-chair.spec.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/ivory-lounge-chair.spec.ts index c28ba511f..bbda531ae 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/ivory-lounge-chair.spec.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/ivory-lounge-chair.spec.ts @@ -64,7 +64,7 @@ describe(`with ivoryLoungeChair preset`, () => { "w": 5500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Ivory_Lounge_Chair-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Ivory_Lounge_Chair-1.1.jpeg", }, { "dimensions": { @@ -72,7 +72,7 @@ describe(`with ivoryLoungeChair preset`, () => { "w": 3375, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Ivory_Lounge_Chair-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Ivory_Lounge_Chair-1.2.jpeg", }, { "dimensions": { @@ -80,7 +80,7 @@ describe(`with ivoryLoungeChair preset`, () => { "w": 3750, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Ivory_Lounge_Chair-1.3.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Ivory_Lounge_Chair-1.3.jpeg", }, ], "key": undefined, @@ -227,7 +227,7 @@ describe(`with ivoryLoungeChair preset`, () => { "width": 5500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Ivory_Lounge_Chair-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Ivory_Lounge_Chair-1.1.jpeg", }, { "dimensions": { @@ -235,7 +235,7 @@ describe(`with ivoryLoungeChair preset`, () => { "width": 3375, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Ivory_Lounge_Chair-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Ivory_Lounge_Chair-1.2.jpeg", }, { "dimensions": { @@ -243,7 +243,7 @@ describe(`with ivoryLoungeChair preset`, () => { "width": 3750, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Ivory_Lounge_Chair-1.3.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Ivory_Lounge_Chair-1.3.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/ivory-lounge-chair.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/ivory-lounge-chair.ts similarity index 83% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/ivory-lounge-chair.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/ivory-lounge-chair.ts index 255f4eca8..091641658 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/ivory-lounge-chair.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/ivory-lounge-chair.ts @@ -18,28 +18,28 @@ import * as ProductVariantDraft from '../../../../product-variant/product-varian import * as ProductDraft from '../../../product-draft'; import type { TProductDraftBuilder } from '../../../types'; -const standardTaxCategory = TaxCategoryDraft.presets.sampleDataGoodStore +const standardTaxCategory = TaxCategoryDraft.presets.sampleDataB2CLifestyle .standardTaxCategory() .build(); const ivoryLoungeChairProductTypeDraft = - ProductTypeDraft.presets.sampleDataGoodStore + ProductTypeDraft.presets.sampleDataB2CLifestyle .furnitureAndDecor() .build(); -const newArrivalsDraft = CategoryDraft.presets.sampleDataGoodStore +const newArrivalsDraft = CategoryDraft.presets.sampleDataB2CLifestyle .newArrivals() .build(); -const livingRoomFurnitureDraft = CategoryDraft.presets.sampleDataGoodStore +const livingRoomFurnitureDraft = CategoryDraft.presets.sampleDataB2CLifestyle .livingRoomFurniture() .build(); -const furnitureDraft = CategoryDraft.presets.sampleDataGoodStore +const furnitureDraft = CategoryDraft.presets.sampleDataB2CLifestyle .furniture() .build(); -const armchairsDraft = CategoryDraft.presets.sampleDataGoodStore +const armchairsDraft = CategoryDraft.presets.sampleDataB2CLifestyle .armchairs() .build(); @@ -57,15 +57,15 @@ const ivoryLoungeChair = (): TProductDraftBuilder => .description( LocalizedStringDraft.presets .empty() - ['en-GB']( - "This arm chair is a bold and funky piece of furniture that takes its inspiration from the eclectic styles of the 1970s. The chair features a round, circular shape, with a low backrest and generously padded seat that provide comfortable seating for extended periods of time. The arms of the chair are wide and round, creating a comfortable and supportive space for you to rest your arms while lounging. Overall, a 70's inspired round arm chair is a playful and fun piece of furniture that can add a touch of retro flair to any room. Its round shape and generous padding, make it a comfortable and inviting spot for lounging and relaxation." - ) - ['en-US']( - "This arm chair is a bold and funky piece of furniture that takes its inspiration from the eclectic styles of the 1970s. The chair features a round, circular shape, with a low backrest and generously padded seat that provide comfortable seating for extended periods of time. The arms of the chair are wide and round, creating a comfortable and supportive space for you to rest your arms while lounging. Overall, a 70's inspired round arm chair is a playful and fun piece of furniture that can add a touch of retro flair to any room. Its round shape and generous padding, make it a comfortable and inviting spot for lounging and relaxation." - ) - ['de-DE']( - 'Dieser Sessel ist ein kühnes und flippiges Möbelstück, das seine Inspiration aus den eklektischen Stilen der 1970er Jahre bezieht. Der Stuhl hat eine runde, kreisförmige Form mit einer niedrigen Rückenlehne und einer großzügig gepolsterten Sitzfläche, die für längere Zeit bequemen Sitz bietet. Die Armlehnen des Stuhls sind breit und rund und schaffen einen bequemen und stützenden Platz, an dem Sie Ihre Arme beim Faulenzen ausruhen können. Insgesamt ist ein von den 70er Jahren inspirierter runder Sessel ein verspieltes und lustiges Möbelstück, das jedem Raum einen Hauch von Retro-Flair verleihen kann. Seine runde Form und die großzügige Polsterung machen ihn zu einem komfortablen und einladenden Ort zum Faulenzen und Entspannen.' - ) + [ + 'en-GB' + ]("This arm chair is a bold and funky piece of furniture that takes its inspiration from the eclectic styles of the 1970s. The chair features a round, circular shape, with a low backrest and generously padded seat that provide comfortable seating for extended periods of time. The arms of the chair are wide and round, creating a comfortable and supportive space for you to rest your arms while lounging. Overall, a 70's inspired round arm chair is a playful and fun piece of furniture that can add a touch of retro flair to any room. Its round shape and generous padding, make it a comfortable and inviting spot for lounging and relaxation.") + [ + 'en-US' + ]("This arm chair is a bold and funky piece of furniture that takes its inspiration from the eclectic styles of the 1970s. The chair features a round, circular shape, with a low backrest and generously padded seat that provide comfortable seating for extended periods of time. The arms of the chair are wide and round, creating a comfortable and supportive space for you to rest your arms while lounging. Overall, a 70's inspired round arm chair is a playful and fun piece of furniture that can add a touch of retro flair to any room. Its round shape and generous padding, make it a comfortable and inviting spot for lounging and relaxation.") + [ + 'de-DE' + ]('Dieser Sessel ist ein kühnes und flippiges Möbelstück, das seine Inspiration aus den eklektischen Stilen der 1970er Jahre bezieht. Der Stuhl hat eine runde, kreisförmige Form mit einer niedrigen Rückenlehne und einer großzügig gepolsterten Sitzfläche, die für längere Zeit bequemen Sitz bietet. Die Armlehnen des Stuhls sind breit und rund und schaffen einen bequemen und stützenden Platz, an dem Sie Ihre Arme beim Faulenzen ausruhen können. Insgesamt ist ein von den 70er Jahren inspirierter runder Sessel ein verspieltes und lustiges Möbelstück, das jedem Raum einen Hauch von Retro-Flair verleihen kann. Seine runde Form und die großzügige Polsterung machen ihn zu einem komfortablen und einladenden Ort zum Faulenzen und Entspannen.') ) .slug( LocalizedStringDraft.presets @@ -84,7 +84,7 @@ const ivoryLoungeChair = (): TProductDraftBuilder => KeyReferenceDraft.presets.taxCategory().key(standardTaxCategory.key!) ) .masterVariant( - ProductVariantDraft.presets.sampleDataGoodStore.ivoryLoungeChair01() + ProductVariantDraft.presets.sampleDataB2CLifestyle.ivoryLoungeChair01() ) .categories([ KeyReferenceDraft.presets.category().key(newArrivalsDraft.key!), diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/ivory-plate.spec.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/ivory-plate.spec.ts similarity index 99% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/ivory-plate.spec.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/ivory-plate.spec.ts index 7be693a20..c264e4287 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/ivory-plate.spec.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/ivory-plate.spec.ts @@ -69,7 +69,7 @@ describe(`with ivoryPlate preset`, () => { "w": 5088, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Ivory_Plate-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Ivory_Plate-1.1.jpeg", }, ], "key": undefined, @@ -223,7 +223,7 @@ describe(`with ivoryPlate preset`, () => { "width": 5088, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Ivory_Plate-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Ivory_Plate-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/ivory-plate.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/ivory-plate.ts similarity index 82% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/ivory-plate.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/ivory-plate.ts index b6d912d53..23564110c 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/ivory-plate.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/ivory-plate.ts @@ -18,35 +18,36 @@ import * as ProductVariantDraft from '../../../../product-variant/product-varian import * as ProductDraft from '../../../product-draft'; import type { TProductDraftBuilder } from '../../../types'; -const standardTaxCategory = TaxCategoryDraft.presets.sampleDataGoodStore +const standardTaxCategory = TaxCategoryDraft.presets.sampleDataB2CLifestyle .standardTaxCategory() .build(); -const ivoryPlateProductTypeDraft = ProductTypeDraft.presets.sampleDataGoodStore - .furnitureAndDecor() - .build(); +const ivoryPlateProductTypeDraft = + ProductTypeDraft.presets.sampleDataB2CLifestyle + .furnitureAndDecor() + .build(); -const platesDraft = CategoryDraft.presets.sampleDataGoodStore +const platesDraft = CategoryDraft.presets.sampleDataB2CLifestyle .plates() .build(); -const kitchenDraft = CategoryDraft.presets.sampleDataGoodStore +const kitchenDraft = CategoryDraft.presets.sampleDataB2CLifestyle .kitchen() .build(); -const servingPlattersDraft = CategoryDraft.presets.sampleDataGoodStore +const servingPlattersDraft = CategoryDraft.presets.sampleDataB2CLifestyle .servingPlatters() .build(); -const newArrivalsDraft = CategoryDraft.presets.sampleDataGoodStore +const newArrivalsDraft = CategoryDraft.presets.sampleDataB2CLifestyle .newArrivals() .build(); -const servewareDraft = CategoryDraft.presets.sampleDataGoodStore +const servewareDraft = CategoryDraft.presets.sampleDataB2CLifestyle .serveware() .build(); -const dinnerwareDraft = CategoryDraft.presets.sampleDataGoodStore +const dinnerwareDraft = CategoryDraft.presets.sampleDataB2CLifestyle .dinnerware() .build(); @@ -64,15 +65,15 @@ const ivoryPlate = (): TProductDraftBuilder => .description( LocalizedStringDraft.presets .empty() - ['en-GB']( - 'This ivory plate is a high-end dish designed for both functional and aesthetic purposes. It is made of high-quality porcelain and has a smooth surface that is both elegant and durable. The plate is circular in shape and has a flat surface with a slight curve at the edges. The ivory color is a creamy, off-white shade that is warm and inviting, adding a touch of sophistication to any dining setting. The design of the plate is what sets it apart, as it has been crafted by a skilled designer with an eye for detail. The plate is a standalone piece intended for special occasions or display. It is ideal for serving appetizers or desserts, and its size and shape make it easy to handle and pass around the table. Overall, a round designer plate made of ivory is a luxurious and stylish choice for fine dining or special occasions. Its unique design and high-quality construction make it a statement piece that is sure to impress guests and elevate any dining experience.' - ) - ['en-US']( - 'This ivory plate is a high-end dish designed for both functional and aesthetic purposes. It is made of high-quality porcelain and has a smooth surface that is both elegant and durable. The plate is circular in shape and has a flat surface with a slight curve at the edges. The ivory color is a creamy, off-white shade that is warm and inviting, adding a touch of sophistication to any dining setting. The design of the plate is what sets it apart, as it has been crafted by a skilled designer with an eye for detail. The plate is a standalone piece intended for special occasions or display. It is ideal for serving appetizers or desserts, and its size and shape make it easy to handle and pass around the table. Overall, a round designer plate made of ivory is a luxurious and stylish choice for fine dining or special occasions. Its unique design and high-quality construction make it a statement piece that is sure to impress guests and elevate any dining experience.' - ) - ['de-DE']( - 'Dieser Elfenbeinteller ist ein High-End-Geschirr, das sowohl für funktionale als auch für ästhetische Zwecke entworfen wurde. Es besteht aus hochwertigem Porzellan und hat eine glatte Oberfläche, die sowohl elegant als auch langlebig ist. Der Teller ist kreisförmig und hat eine flache Oberfläche mit einer leichten Rundung an den Rändern. Die Elfenbeinfarbe ist ein cremiger, cremefarbener Farbton, der warm und einladend ist und jedem Esszimmer einen Hauch von Raffinesse verleiht. Das Design des Tellers zeichnet ihn aus, da er von einem erfahrenen Designer mit viel Liebe zum Detail gefertigt wurde. Der Teller ist ein eigenständiges Stück, das für besondere Anlässe oder zur Präsentation bestimmt ist. Es ist ideal zum Servieren von Vorspeisen oder Desserts, und seine Größe und Form machen es einfach, es zu handhaben und auf dem Tisch herumzureichen. Insgesamt ist ein runder Designerteller aus Elfenbein eine luxuriöse und stilvolle Wahl für gehobene Speisen oder besondere Anlässe. Sein einzigartiges Design und seine hochwertige Konstruktion machen es zu einem Statement-Stück, das Gäste beeindrucken und jedes kulinarische Erlebnis aufwerten wird.' - ) + [ + 'en-GB' + ]('This ivory plate is a high-end dish designed for both functional and aesthetic purposes. It is made of high-quality porcelain and has a smooth surface that is both elegant and durable. The plate is circular in shape and has a flat surface with a slight curve at the edges. The ivory color is a creamy, off-white shade that is warm and inviting, adding a touch of sophistication to any dining setting. The design of the plate is what sets it apart, as it has been crafted by a skilled designer with an eye for detail. The plate is a standalone piece intended for special occasions or display. It is ideal for serving appetizers or desserts, and its size and shape make it easy to handle and pass around the table. Overall, a round designer plate made of ivory is a luxurious and stylish choice for fine dining or special occasions. Its unique design and high-quality construction make it a statement piece that is sure to impress guests and elevate any dining experience.') + [ + 'en-US' + ]('This ivory plate is a high-end dish designed for both functional and aesthetic purposes. It is made of high-quality porcelain and has a smooth surface that is both elegant and durable. The plate is circular in shape and has a flat surface with a slight curve at the edges. The ivory color is a creamy, off-white shade that is warm and inviting, adding a touch of sophistication to any dining setting. The design of the plate is what sets it apart, as it has been crafted by a skilled designer with an eye for detail. The plate is a standalone piece intended for special occasions or display. It is ideal for serving appetizers or desserts, and its size and shape make it easy to handle and pass around the table. Overall, a round designer plate made of ivory is a luxurious and stylish choice for fine dining or special occasions. Its unique design and high-quality construction make it a statement piece that is sure to impress guests and elevate any dining experience.') + [ + 'de-DE' + ]('Dieser Elfenbeinteller ist ein High-End-Geschirr, das sowohl für funktionale als auch für ästhetische Zwecke entworfen wurde. Es besteht aus hochwertigem Porzellan und hat eine glatte Oberfläche, die sowohl elegant als auch langlebig ist. Der Teller ist kreisförmig und hat eine flache Oberfläche mit einer leichten Rundung an den Rändern. Die Elfenbeinfarbe ist ein cremiger, cremefarbener Farbton, der warm und einladend ist und jedem Esszimmer einen Hauch von Raffinesse verleiht. Das Design des Tellers zeichnet ihn aus, da er von einem erfahrenen Designer mit viel Liebe zum Detail gefertigt wurde. Der Teller ist ein eigenständiges Stück, das für besondere Anlässe oder zur Präsentation bestimmt ist. Es ist ideal zum Servieren von Vorspeisen oder Desserts, und seine Größe und Form machen es einfach, es zu handhaben und auf dem Tisch herumzureichen. Insgesamt ist ein runder Designerteller aus Elfenbein eine luxuriöse und stilvolle Wahl für gehobene Speisen oder besondere Anlässe. Sein einzigartiges Design und seine hochwertige Konstruktion machen es zu einem Statement-Stück, das Gäste beeindrucken und jedes kulinarische Erlebnis aufwerten wird.') ) .slug( LocalizedStringDraft.presets @@ -91,7 +92,7 @@ const ivoryPlate = (): TProductDraftBuilder => KeyReferenceDraft.presets.taxCategory().key(standardTaxCategory.key!) ) .masterVariant( - ProductVariantDraft.presets.sampleDataGoodStore.ivoryPlate01() + ProductVariantDraft.presets.sampleDataB2CLifestyle.ivoryPlate01() ) .categories([ KeyReferenceDraft.presets.category().key(platesDraft.key!), diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/jute-rug.spec.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/jute-rug.spec.ts similarity index 97% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/jute-rug.spec.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/jute-rug.spec.ts index 42fc83753..e85cd627c 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/jute-rug.spec.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/jute-rug.spec.ts @@ -57,7 +57,7 @@ describe(`with juteRug preset`, () => { "w": 7600, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Jute_Rug-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Jute_Rug-1.1.jpeg", }, { "dimensions": { @@ -65,7 +65,7 @@ describe(`with juteRug preset`, () => { "w": 5760, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Jute_Rug-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Jute_Rug-1.2.jpeg", }, { "dimensions": { @@ -73,7 +73,7 @@ describe(`with juteRug preset`, () => { "w": 5760, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Jute_Rug-1.3.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Jute_Rug-1.3.jpeg", }, ], "key": undefined, @@ -218,7 +218,7 @@ describe(`with juteRug preset`, () => { "width": 7600, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Jute_Rug-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Jute_Rug-1.1.jpeg", }, { "dimensions": { @@ -226,7 +226,7 @@ describe(`with juteRug preset`, () => { "width": 5760, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Jute_Rug-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Jute_Rug-1.2.jpeg", }, { "dimensions": { @@ -234,7 +234,7 @@ describe(`with juteRug preset`, () => { "width": 5760, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Jute_Rug-1.3.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Jute_Rug-1.3.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/jute-rug.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/jute-rug.ts similarity index 85% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/jute-rug.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/jute-rug.ts index 299835101..38239999d 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/jute-rug.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/jute-rug.ts @@ -18,23 +18,23 @@ import * as ProductVariantDraft from '../../../../product-variant/product-varian import * as ProductDraft from '../../../product-draft'; import type { TProductDraftBuilder } from '../../../types'; -const standardTaxCategory = TaxCategoryDraft.presets.sampleDataGoodStore +const standardTaxCategory = TaxCategoryDraft.presets.sampleDataB2CLifestyle .standardTaxCategory() .build(); -const juteRugProductTypeDraft = ProductTypeDraft.presets.sampleDataGoodStore +const juteRugProductTypeDraft = ProductTypeDraft.presets.sampleDataB2CLifestyle .furnitureAndDecor() .build(); -const rugsDraft = CategoryDraft.presets.sampleDataGoodStore +const rugsDraft = CategoryDraft.presets.sampleDataB2CLifestyle .rugs() .build(); -const roomDecorDraft = CategoryDraft.presets.sampleDataGoodStore +const roomDecorDraft = CategoryDraft.presets.sampleDataB2CLifestyle .roomDecor() .build(); -const homeDecorDraft = CategoryDraft.presets.sampleDataGoodStore +const homeDecorDraft = CategoryDraft.presets.sampleDataB2CLifestyle .homeDecor() .build(); @@ -52,15 +52,15 @@ const juteRug = (): TProductDraftBuilder => .description( LocalizedStringDraft.presets .empty() - ['en-GB']( - 'A jute area rug is a type of rug made from natural fibers derived from the jute plant. Jute is a long, soft, and shiny vegetable fiber that is spun into strong threads and then woven into textiles. Jute rugs are known for their durability and natural appearance, making them a popular choice for those who want to bring a touch of the outdoors into their homes. Because jute is a natural fiber, it is eco-friendly and sustainable. However, it can be prone to staining and water damage, so jute area rugs should be used in low-traffic areas or rooms that do not see a lot of moisture. They are often used in living rooms, bedrooms, and other spaces where a natural, earthy look is desired. Overall, a jute area rug is a beautiful and eco-friendly addition to any home. Its natural fibers and earthy appearance make it a popular choice for those who want to create a warm and inviting atmosphere in their living space.' - ) - ['en-US']( - 'A jute area rug is a type of rug made from natural fibers derived from the jute plant. Jute is a long, soft, and shiny vegetable fiber that is spun into strong threads and then woven into textiles. Jute rugs are known for their durability and natural appearance, making them a popular choice for those who want to bring a touch of the outdoors into their homes. Because jute is a natural fiber, it is eco-friendly and sustainable. However, it can be prone to staining and water damage, so jute area rugs should be used in low-traffic areas or rooms that do not see a lot of moisture. They are often used in living rooms, bedrooms, and other spaces where a natural, earthy look is desired. Overall, a jute area rug is a beautiful and eco-friendly addition to any home. Its natural fibers and earthy appearance make it a popular choice for those who want to create a warm and inviting atmosphere in their living space.' - ) - ['de-DE']( - 'Ein Juteteppich ist eine Art Teppich aus Naturfasern, die aus der Jutepflanze gewonnen werden. Jute ist eine lange, weiche und glänzende Pflanzenfaser, die zu starken Fäden gesponnen und dann zu Textilien gewebt wird. Juteteppiche sind bekannt für ihre Langlebigkeit und ihr natürliches Aussehen, was sie zu einer beliebten Wahl für diejenigen macht, die einen Hauch von Natur in ihr Zuhause bringen möchten. Da Jute eine Naturfaser ist, ist sie umweltfreundlich und nachhaltig. Es kann jedoch anfällig für Flecken und Wasserschäden sein, daher sollten Juteteppiche in wenig frequentierten Bereichen oder Räumen verwendet werden, die nicht viel Feuchtigkeit ausgesetzt sind. Sie werden oft in Wohnzimmern, Schlafzimmern und anderen Räumen verwendet, in denen ein natürlicher, erdiger Look gewünscht wird. Insgesamt ist ein Juteteppich eine schöne und umweltfreundliche Ergänzung für jedes Zuhause. Seine natürlichen Fasern und sein erdiges Aussehen machen es zu einer beliebten Wahl für diejenigen, die eine warme und einladende Atmosphäre in ihrem Wohnraum schaffen möchten.' - ) + [ + 'en-GB' + ]('A jute area rug is a type of rug made from natural fibers derived from the jute plant. Jute is a long, soft, and shiny vegetable fiber that is spun into strong threads and then woven into textiles. Jute rugs are known for their durability and natural appearance, making them a popular choice for those who want to bring a touch of the outdoors into their homes. Because jute is a natural fiber, it is eco-friendly and sustainable. However, it can be prone to staining and water damage, so jute area rugs should be used in low-traffic areas or rooms that do not see a lot of moisture. They are often used in living rooms, bedrooms, and other spaces where a natural, earthy look is desired. Overall, a jute area rug is a beautiful and eco-friendly addition to any home. Its natural fibers and earthy appearance make it a popular choice for those who want to create a warm and inviting atmosphere in their living space.') + [ + 'en-US' + ]('A jute area rug is a type of rug made from natural fibers derived from the jute plant. Jute is a long, soft, and shiny vegetable fiber that is spun into strong threads and then woven into textiles. Jute rugs are known for their durability and natural appearance, making them a popular choice for those who want to bring a touch of the outdoors into their homes. Because jute is a natural fiber, it is eco-friendly and sustainable. However, it can be prone to staining and water damage, so jute area rugs should be used in low-traffic areas or rooms that do not see a lot of moisture. They are often used in living rooms, bedrooms, and other spaces where a natural, earthy look is desired. Overall, a jute area rug is a beautiful and eco-friendly addition to any home. Its natural fibers and earthy appearance make it a popular choice for those who want to create a warm and inviting atmosphere in their living space.') + [ + 'de-DE' + ]('Ein Juteteppich ist eine Art Teppich aus Naturfasern, die aus der Jutepflanze gewonnen werden. Jute ist eine lange, weiche und glänzende Pflanzenfaser, die zu starken Fäden gesponnen und dann zu Textilien gewebt wird. Juteteppiche sind bekannt für ihre Langlebigkeit und ihr natürliches Aussehen, was sie zu einer beliebten Wahl für diejenigen macht, die einen Hauch von Natur in ihr Zuhause bringen möchten. Da Jute eine Naturfaser ist, ist sie umweltfreundlich und nachhaltig. Es kann jedoch anfällig für Flecken und Wasserschäden sein, daher sollten Juteteppiche in wenig frequentierten Bereichen oder Räumen verwendet werden, die nicht viel Feuchtigkeit ausgesetzt sind. Sie werden oft in Wohnzimmern, Schlafzimmern und anderen Räumen verwendet, in denen ein natürlicher, erdiger Look gewünscht wird. Insgesamt ist ein Juteteppich eine schöne und umweltfreundliche Ergänzung für jedes Zuhause. Seine natürlichen Fasern und sein erdiges Aussehen machen es zu einer beliebten Wahl für diejenigen, die eine warme und einladende Atmosphäre in ihrem Wohnraum schaffen möchten.') ) .slug( LocalizedStringDraft.presets @@ -76,7 +76,9 @@ const juteRug = (): TProductDraftBuilder => .taxCategory( KeyReferenceDraft.presets.taxCategory().key(standardTaxCategory.key!) ) - .masterVariant(ProductVariantDraft.presets.sampleDataGoodStore.juteRug01()) + .masterVariant( + ProductVariantDraft.presets.sampleDataB2CLifestyle.juteRug01() + ) .categories([ KeyReferenceDraft.presets.category().key(rugsDraft.key!), KeyReferenceDraft.presets.category().key(roomDecorDraft.key!), diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/lana-pillow-cover.spec.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/lana-pillow-cover.spec.ts similarity index 99% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/lana-pillow-cover.spec.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/lana-pillow-cover.spec.ts index 9cf7cbca2..f7e28dac9 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/lana-pillow-cover.spec.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/lana-pillow-cover.spec.ts @@ -59,7 +59,7 @@ describe(`with lanaPillowCover preset`, () => { "w": 4350, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Lana_Pillow_Cover-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Lana_Pillow_Cover-1.1.jpeg", }, ], "key": undefined, @@ -198,7 +198,7 @@ describe(`with lanaPillowCover preset`, () => { "width": 4350, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Lana_Pillow_Cover-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Lana_Pillow_Cover-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/lana-pillow-cover.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/lana-pillow-cover.ts similarity index 89% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/lana-pillow-cover.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/lana-pillow-cover.ts index 06c7722a0..f8fe20e85 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/lana-pillow-cover.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/lana-pillow-cover.ts @@ -18,20 +18,20 @@ import * as ProductVariantDraft from '../../../../product-variant/product-varian import * as ProductDraft from '../../../product-draft'; import type { TProductDraftBuilder } from '../../../types'; -const standardTaxCategory = TaxCategoryDraft.presets.sampleDataGoodStore +const standardTaxCategory = TaxCategoryDraft.presets.sampleDataB2CLifestyle .standardTaxCategory() .build(); const lanaPillowCoverProductTypeDraft = - ProductTypeDraft.presets.sampleDataGoodStore + ProductTypeDraft.presets.sampleDataB2CLifestyle .furnitureAndDecor() .build(); -const beddingDraft = CategoryDraft.presets.sampleDataGoodStore +const beddingDraft = CategoryDraft.presets.sampleDataB2CLifestyle .bedding() .build(); -const homeDecorDraft = CategoryDraft.presets.sampleDataGoodStore +const homeDecorDraft = CategoryDraft.presets.sampleDataB2CLifestyle .homeDecor() .build(); @@ -49,15 +49,15 @@ const lanaPillowCover = (): TProductDraftBuilder => .description( LocalizedStringDraft.presets .empty() - ['en-GB']( - 'A microfiber pillow cover is a type of textile covering for a pillow that is made from synthetic fibers such as polyester or nylon. Microfiber is known for its softness, durability, and easy maintenance. The pillow cover is designed to fit over a standard size pillow, usually around 18 inches square. It features a square shape and can come in a variety of colors and patterns to suit different decor styles and preferences. The microfiber fabric has a smooth and silky feel that is gentle on the skin and provides a comfortable surface for sleeping. It is also breathable and moisture-wicking, which helps to regulate body temperature and prevent overheating during the night. The pillow cover is often used for its practical and functional features, such as its easy care and resistance to wrinkles, stains, and fading. It can be easily washed and dried in a machine, making it a convenient and low-maintenance option for busy households. Overall, a microfiber pillow cover is a versatile and practical accessory that can enhance the comfort and durability of a pillow. It can be used for everyday sleeping, as well as for decorative purposes in a variety of settings, such as bedrooms, guest rooms, and living rooms.' - ) - ['en-US']( - 'A microfiber pillow cover is a type of textile covering for a pillow that is made from synthetic fibers such as polyester or nylon. Microfiber is known for its softness, durability, and easy maintenance. The pillow cover is designed to fit over a standard size pillow, usually around 18 inches square. It features a square shape and can come in a variety of colors and patterns to suit different decor styles and preferences. The microfiber fabric has a smooth and silky feel that is gentle on the skin and provides a comfortable surface for sleeping. It is also breathable and moisture-wicking, which helps to regulate body temperature and prevent overheating during the night. The pillow cover is often used for its practical and functional features, such as its easy care and resistance to wrinkles, stains, and fading. It can be easily washed and dried in a machine, making it a convenient and low-maintenance option for busy households. Overall, a microfiber pillow cover is a versatile and practical accessory that can enhance the comfort and durability of a pillow. It can be used for everyday sleeping, as well as for decorative purposes in a variety of settings, such as bedrooms, guest rooms, and living rooms.' - ) - ['de-DE']( - 'Ein Mikrofaser-Kissenbezug ist eine Art Textilbezug für ein Kissen, der aus synthetischen Fasern wie Polyester oder Nylon hergestellt wird. Mikrofaser ist bekannt für ihre Weichheit, Haltbarkeit und einfache Pflege. Der Kissenbezug ist so konzipiert, dass er über ein Kissen in Standardgröße passt, normalerweise etwa 18 Zoll im Quadrat. Es hat eine quadratische Form und kann in einer Vielzahl von Farben und Mustern erhältlich sein, um verschiedenen Einrichtungsstilen und Vorlieben gerecht zu werden. Das Mikrofasergewebe fühlt sich glatt und seidig an, ist sanft zur Haut und bietet eine angenehme Schlafoberfläche. Es ist außerdem atmungsaktiv und feuchtigkeitstransportierend, was hilft, die Körpertemperatur zu regulieren und eine Überhitzung während der Nacht zu verhindern. Der Kissenbezug wird oft wegen seiner praktischen und funktionalen Eigenschaften verwendet, wie z. B. seiner Pflegeleichtigkeit und Beständigkeit gegen Falten, Flecken und Ausbleichen. Es kann einfach in einer Maschine gewaschen und getrocknet werden, was es zu einer praktischen und pflegeleichten Option für vielbeschäftigte Haushalte macht. Insgesamt ist ein Mikrofaser-Kissenbezug ein vielseitiges und praktisches Accessoire, das den Komfort und die Haltbarkeit eines Kissens verbessern kann. Es kann sowohl zum täglichen Schlafen als auch zu dekorativen Zwecken in einer Vielzahl von Umgebungen wie Schlaf-, Gästezimmern und Wohnzimmern verwendet werden.' - ) + [ + 'en-GB' + ]('A microfiber pillow cover is a type of textile covering for a pillow that is made from synthetic fibers such as polyester or nylon. Microfiber is known for its softness, durability, and easy maintenance. The pillow cover is designed to fit over a standard size pillow, usually around 18 inches square. It features a square shape and can come in a variety of colors and patterns to suit different decor styles and preferences. The microfiber fabric has a smooth and silky feel that is gentle on the skin and provides a comfortable surface for sleeping. It is also breathable and moisture-wicking, which helps to regulate body temperature and prevent overheating during the night. The pillow cover is often used for its practical and functional features, such as its easy care and resistance to wrinkles, stains, and fading. It can be easily washed and dried in a machine, making it a convenient and low-maintenance option for busy households. Overall, a microfiber pillow cover is a versatile and practical accessory that can enhance the comfort and durability of a pillow. It can be used for everyday sleeping, as well as for decorative purposes in a variety of settings, such as bedrooms, guest rooms, and living rooms.') + [ + 'en-US' + ]('A microfiber pillow cover is a type of textile covering for a pillow that is made from synthetic fibers such as polyester or nylon. Microfiber is known for its softness, durability, and easy maintenance. The pillow cover is designed to fit over a standard size pillow, usually around 18 inches square. It features a square shape and can come in a variety of colors and patterns to suit different decor styles and preferences. The microfiber fabric has a smooth and silky feel that is gentle on the skin and provides a comfortable surface for sleeping. It is also breathable and moisture-wicking, which helps to regulate body temperature and prevent overheating during the night. The pillow cover is often used for its practical and functional features, such as its easy care and resistance to wrinkles, stains, and fading. It can be easily washed and dried in a machine, making it a convenient and low-maintenance option for busy households. Overall, a microfiber pillow cover is a versatile and practical accessory that can enhance the comfort and durability of a pillow. It can be used for everyday sleeping, as well as for decorative purposes in a variety of settings, such as bedrooms, guest rooms, and living rooms.') + [ + 'de-DE' + ]('Ein Mikrofaser-Kissenbezug ist eine Art Textilbezug für ein Kissen, der aus synthetischen Fasern wie Polyester oder Nylon hergestellt wird. Mikrofaser ist bekannt für ihre Weichheit, Haltbarkeit und einfache Pflege. Der Kissenbezug ist so konzipiert, dass er über ein Kissen in Standardgröße passt, normalerweise etwa 18 Zoll im Quadrat. Es hat eine quadratische Form und kann in einer Vielzahl von Farben und Mustern erhältlich sein, um verschiedenen Einrichtungsstilen und Vorlieben gerecht zu werden. Das Mikrofasergewebe fühlt sich glatt und seidig an, ist sanft zur Haut und bietet eine angenehme Schlafoberfläche. Es ist außerdem atmungsaktiv und feuchtigkeitstransportierend, was hilft, die Körpertemperatur zu regulieren und eine Überhitzung während der Nacht zu verhindern. Der Kissenbezug wird oft wegen seiner praktischen und funktionalen Eigenschaften verwendet, wie z. B. seiner Pflegeleichtigkeit und Beständigkeit gegen Falten, Flecken und Ausbleichen. Es kann einfach in einer Maschine gewaschen und getrocknet werden, was es zu einer praktischen und pflegeleichten Option für vielbeschäftigte Haushalte macht. Insgesamt ist ein Mikrofaser-Kissenbezug ein vielseitiges und praktisches Accessoire, das den Komfort und die Haltbarkeit eines Kissens verbessern kann. Es kann sowohl zum täglichen Schlafen als auch zu dekorativen Zwecken in einer Vielzahl von Umgebungen wie Schlaf-, Gästezimmern und Wohnzimmern verwendet werden.') ) .slug( LocalizedStringDraft.presets @@ -76,7 +76,7 @@ const lanaPillowCover = (): TProductDraftBuilder => KeyReferenceDraft.presets.taxCategory().key(standardTaxCategory.key!) ) .masterVariant( - ProductVariantDraft.presets.sampleDataGoodStore.lanaPillowCover01() + ProductVariantDraft.presets.sampleDataB2CLifestyle.lanaPillowCover01() ) .categories([ KeyReferenceDraft.presets.category().key(beddingDraft.key!), diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/large-ceramic-plate.spec.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/large-ceramic-plate.spec.ts similarity index 97% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/large-ceramic-plate.spec.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/large-ceramic-plate.spec.ts index 54be5143e..be590bcb1 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/large-ceramic-plate.spec.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/large-ceramic-plate.spec.ts @@ -68,7 +68,7 @@ describe(`with largeCeramicPlate preset`, () => { "w": 3000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Large_Ceramic_Plate-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Large_Ceramic_Plate-1.1.jpeg", }, { "dimensions": { @@ -76,7 +76,7 @@ describe(`with largeCeramicPlate preset`, () => { "w": 3000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Large_Ceramic_Plate-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Large_Ceramic_Plate-1.2.jpeg", }, ], "key": undefined, @@ -195,7 +195,7 @@ describe(`with largeCeramicPlate preset`, () => { "w": 3000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Large_Ceramic_Plate-2.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Large_Ceramic_Plate-2.1.jpeg", }, { "dimensions": { @@ -203,7 +203,7 @@ describe(`with largeCeramicPlate preset`, () => { "w": 3000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Large_Ceramic_Plate-2.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Large_Ceramic_Plate-2.2.jpeg", }, ], "key": undefined, @@ -319,7 +319,7 @@ describe(`with largeCeramicPlate preset`, () => { "width": 3000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Large_Ceramic_Plate-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Large_Ceramic_Plate-1.1.jpeg", }, { "dimensions": { @@ -327,7 +327,7 @@ describe(`with largeCeramicPlate preset`, () => { "width": 3000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Large_Ceramic_Plate-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Large_Ceramic_Plate-1.2.jpeg", }, ], "key": undefined, @@ -449,7 +449,7 @@ describe(`with largeCeramicPlate preset`, () => { "width": 3000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Large_Ceramic_Plate-2.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Large_Ceramic_Plate-2.1.jpeg", }, { "dimensions": { @@ -457,7 +457,7 @@ describe(`with largeCeramicPlate preset`, () => { "width": 3000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Large_Ceramic_Plate-2.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Large_Ceramic_Plate-2.2.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/large-ceramic-plate.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/large-ceramic-plate.ts similarity index 86% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/large-ceramic-plate.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/large-ceramic-plate.ts index 847c9f350..c8f70439c 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/large-ceramic-plate.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/large-ceramic-plate.ts @@ -18,28 +18,28 @@ import * as ProductVariantDraft from '../../../../product-variant/product-varian import * as ProductDraft from '../../../product-draft'; import type { TProductDraftBuilder } from '../../../types'; -const standardTaxCategory = TaxCategoryDraft.presets.sampleDataGoodStore +const standardTaxCategory = TaxCategoryDraft.presets.sampleDataB2CLifestyle .standardTaxCategory() .build(); const largeCeramicPlateProductTypeDraft = - ProductTypeDraft.presets.sampleDataGoodStore + ProductTypeDraft.presets.sampleDataB2CLifestyle .furnitureAndDecor() .build(); -const kitchenDraft = CategoryDraft.presets.sampleDataGoodStore +const kitchenDraft = CategoryDraft.presets.sampleDataB2CLifestyle .kitchen() .build(); -const platesDraft = CategoryDraft.presets.sampleDataGoodStore +const platesDraft = CategoryDraft.presets.sampleDataB2CLifestyle .plates() .build(); -const dinnerwareDraft = CategoryDraft.presets.sampleDataGoodStore +const dinnerwareDraft = CategoryDraft.presets.sampleDataB2CLifestyle .dinnerware() .build(); -const newArrivalsDraft = CategoryDraft.presets.sampleDataGoodStore +const newArrivalsDraft = CategoryDraft.presets.sampleDataB2CLifestyle .newArrivals() .build(); @@ -57,15 +57,15 @@ const largeCeramicPlate = (): TProductDraftBuilder => .description( LocalizedStringDraft.presets .empty() - ['en-GB']( - 'A large ceramic round plate that comes in light olive and light gray colors is a beautiful and versatile piece of dinnerware that is perfect for serving a variety of meals. The plate is typically handcrafted from high-quality ceramic material, and features a glossy finish that gives it a polished and elegant appearance. The plate is large in size, typically measuring around 12-14 inches in diameter. This makes it ideal for serving large portions of food, such as a main course or a shared appetizer. The round shape of the plate provides ample space for arranging food, while the raised edge of the plate prevents sauces and juices from spilling over the sides. The plate comes in two beautiful and neutral colors - light olive and light gray. These colors are perfect for complementing a wide range of dining room decor styles and color schemes, from modern and minimalist to rustic and earthy. The plate features a simple and elegant design, with a smooth surface and a minimalist look. This makes it ideal for both casual and formal dining occasions, from everyday family meals to special occasions and dinner parties. Overall, a large ceramic round plate in light olive and light gray colors is a beautiful and practical addition to any dining room. Its simple and elegant design, combined with its versatile size and color options, make it a perfect choice for serving a variety of meals and creating a stylish and inviting dining experience.' - ) - ['en-US']( - 'A large ceramic round plate that comes in light olive and light gray colors is a beautiful and versatile piece of dinnerware that is perfect for serving a variety of meals. The plate is typically handcrafted from high-quality ceramic material, and features a glossy finish that gives it a polished and elegant appearance. The plate is large in size, typically measuring around 12-14 inches in diameter. This makes it ideal for serving large portions of food, such as a main course or a shared appetizer. The round shape of the plate provides ample space for arranging food, while the raised edge of the plate prevents sauces and juices from spilling over the sides. The plate comes in two beautiful and neutral colors - light olive and light gray. These colors are perfect for complementing a wide range of dining room decor styles and color schemes, from modern and minimalist to rustic and earthy. The plate features a simple and elegant design, with a smooth surface and a minimalist look. This makes it ideal for both casual and formal dining occasions, from everyday family meals to special occasions and dinner parties. Overall, a large ceramic round plate in light olive and light gray colors is a beautiful and practical addition to any dining room. Its simple and elegant design, combined with its versatile size and color options, make it a perfect choice for serving a variety of meals and creating a stylish and inviting dining experience.' - ) - ['de-DE']( - 'Ein großer runder Keramikteller in Helloliv und Hellgrau ist ein schönes und vielseitiges Geschirr, das sich perfekt zum Servieren einer Vielzahl von Mahlzeiten eignet. Der Teller wird in der Regel aus hochwertigem Keramikmaterial handgefertigt und verfügt über eine glänzende Oberfläche, die ihm ein poliertes und elegantes Aussehen verleiht. Die Platte ist groß und hat typischerweise einen Durchmesser von etwa 12 bis 14 Zoll. Dadurch eignet er sich ideal zum Servieren großer Speisenportionen, wie z. B. eines Hauptgerichts oder einer gemeinsamen Vorspeise. Die runde Form des Tellers bietet viel Platz zum Anrichten von Speisen, während der erhöhte Rand des Tellers verhindert, dass Saucen und Säfte über die Seiten schwappen. Der Teller ist in zwei schönen und neutralen Farben erhältlich - Helloliv und Hellgrau. Diese Farben sind perfekt, um eine breite Palette von Einrichtungsstilen und Farbschemata für Esszimmer zu ergänzen, von modern und minimalistisch bis rustikal und erdig. Der Teller zeichnet sich durch ein schlichtes und elegantes Design mit glatter Oberfläche und einem minimalistischen Look aus. Dies macht es ideal für zwanglose und formelle Anlässe, von alltäglichen Familienessen bis hin zu besonderen Anlässen und Dinnerpartys. Insgesamt ist ein großer runder Keramikteller in hellen Oliv- und Hellgrautönen eine schöne und praktische Ergänzung für jedes Esszimmer. Sein schlichtes und elegantes Design, kombiniert mit seinen vielseitigen Größen- und Farboptionen, machen ihn zur perfekten Wahl, um eine Vielzahl von Mahlzeiten zu servieren und ein stilvolles und einladendes Speiseerlebnis zu schaffen.' - ) + [ + 'en-GB' + ]('A large ceramic round plate that comes in light olive and light gray colors is a beautiful and versatile piece of dinnerware that is perfect for serving a variety of meals. The plate is typically handcrafted from high-quality ceramic material, and features a glossy finish that gives it a polished and elegant appearance. The plate is large in size, typically measuring around 12-14 inches in diameter. This makes it ideal for serving large portions of food, such as a main course or a shared appetizer. The round shape of the plate provides ample space for arranging food, while the raised edge of the plate prevents sauces and juices from spilling over the sides. The plate comes in two beautiful and neutral colors - light olive and light gray. These colors are perfect for complementing a wide range of dining room decor styles and color schemes, from modern and minimalist to rustic and earthy. The plate features a simple and elegant design, with a smooth surface and a minimalist look. This makes it ideal for both casual and formal dining occasions, from everyday family meals to special occasions and dinner parties. Overall, a large ceramic round plate in light olive and light gray colors is a beautiful and practical addition to any dining room. Its simple and elegant design, combined with its versatile size and color options, make it a perfect choice for serving a variety of meals and creating a stylish and inviting dining experience.') + [ + 'en-US' + ]('A large ceramic round plate that comes in light olive and light gray colors is a beautiful and versatile piece of dinnerware that is perfect for serving a variety of meals. The plate is typically handcrafted from high-quality ceramic material, and features a glossy finish that gives it a polished and elegant appearance. The plate is large in size, typically measuring around 12-14 inches in diameter. This makes it ideal for serving large portions of food, such as a main course or a shared appetizer. The round shape of the plate provides ample space for arranging food, while the raised edge of the plate prevents sauces and juices from spilling over the sides. The plate comes in two beautiful and neutral colors - light olive and light gray. These colors are perfect for complementing a wide range of dining room decor styles and color schemes, from modern and minimalist to rustic and earthy. The plate features a simple and elegant design, with a smooth surface and a minimalist look. This makes it ideal for both casual and formal dining occasions, from everyday family meals to special occasions and dinner parties. Overall, a large ceramic round plate in light olive and light gray colors is a beautiful and practical addition to any dining room. Its simple and elegant design, combined with its versatile size and color options, make it a perfect choice for serving a variety of meals and creating a stylish and inviting dining experience.') + [ + 'de-DE' + ]('Ein großer runder Keramikteller in Helloliv und Hellgrau ist ein schönes und vielseitiges Geschirr, das sich perfekt zum Servieren einer Vielzahl von Mahlzeiten eignet. Der Teller wird in der Regel aus hochwertigem Keramikmaterial handgefertigt und verfügt über eine glänzende Oberfläche, die ihm ein poliertes und elegantes Aussehen verleiht. Die Platte ist groß und hat typischerweise einen Durchmesser von etwa 12 bis 14 Zoll. Dadurch eignet er sich ideal zum Servieren großer Speisenportionen, wie z. B. eines Hauptgerichts oder einer gemeinsamen Vorspeise. Die runde Form des Tellers bietet viel Platz zum Anrichten von Speisen, während der erhöhte Rand des Tellers verhindert, dass Saucen und Säfte über die Seiten schwappen. Der Teller ist in zwei schönen und neutralen Farben erhältlich - Helloliv und Hellgrau. Diese Farben sind perfekt, um eine breite Palette von Einrichtungsstilen und Farbschemata für Esszimmer zu ergänzen, von modern und minimalistisch bis rustikal und erdig. Der Teller zeichnet sich durch ein schlichtes und elegantes Design mit glatter Oberfläche und einem minimalistischen Look aus. Dies macht es ideal für zwanglose und formelle Anlässe, von alltäglichen Familienessen bis hin zu besonderen Anlässen und Dinnerpartys. Insgesamt ist ein großer runder Keramikteller in hellen Oliv- und Hellgrautönen eine schöne und praktische Ergänzung für jedes Esszimmer. Sein schlichtes und elegantes Design, kombiniert mit seinen vielseitigen Größen- und Farboptionen, machen ihn zur perfekten Wahl, um eine Vielzahl von Mahlzeiten zu servieren und ein stilvolles und einladendes Speiseerlebnis zu schaffen.') ) .slug( LocalizedStringDraft.presets @@ -84,10 +84,10 @@ const largeCeramicPlate = (): TProductDraftBuilder => KeyReferenceDraft.presets.taxCategory().key(standardTaxCategory.key!) ) .masterVariant( - ProductVariantDraft.presets.sampleDataGoodStore.largeCeramicPlate01() + ProductVariantDraft.presets.sampleDataB2CLifestyle.largeCeramicPlate01() ) .variants([ - ProductVariantDraft.presets.sampleDataGoodStore.largeCeramicPlate02(), + ProductVariantDraft.presets.sampleDataB2CLifestyle.largeCeramicPlate02(), ]) .categories([ KeyReferenceDraft.presets.category().key(kitchenDraft.key!), diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/leah-armchair.spec.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/leah-armchair.spec.ts similarity index 98% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/leah-armchair.spec.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/leah-armchair.spec.ts index e8ff35048..fb7602002 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/leah-armchair.spec.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/leah-armchair.spec.ts @@ -65,7 +65,7 @@ describe(`with leahArmchair preset`, () => { "w": 2400, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Leah_Armchair-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Leah_Armchair-1.1.jpeg", }, ], "key": undefined, @@ -212,7 +212,7 @@ describe(`with leahArmchair preset`, () => { "width": 2400, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Leah_Armchair-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Leah_Armchair-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/leah-armchair.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/leah-armchair.ts similarity index 84% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/leah-armchair.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/leah-armchair.ts index 06f000a04..c90fd0a8c 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/leah-armchair.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/leah-armchair.ts @@ -18,24 +18,24 @@ import * as ProductVariantDraft from '../../../../product-variant/product-varian import * as ProductDraft from '../../../product-draft'; import type { TProductDraftBuilder } from '../../../types'; -const standardTaxCategory = TaxCategoryDraft.presets.sampleDataGoodStore +const standardTaxCategory = TaxCategoryDraft.presets.sampleDataB2CLifestyle .standardTaxCategory() .build(); const leahArmchairProductTypeDraft = - ProductTypeDraft.presets.sampleDataGoodStore + ProductTypeDraft.presets.sampleDataB2CLifestyle .furnitureAndDecor() .build(); -const furnitureDraft = CategoryDraft.presets.sampleDataGoodStore +const furnitureDraft = CategoryDraft.presets.sampleDataB2CLifestyle .furniture() .build(); -const armchairsDraft = CategoryDraft.presets.sampleDataGoodStore +const armchairsDraft = CategoryDraft.presets.sampleDataB2CLifestyle .armchairs() .build(); -const livingRoomFurnitureDraft = CategoryDraft.presets.sampleDataGoodStore +const livingRoomFurnitureDraft = CategoryDraft.presets.sampleDataB2CLifestyle .livingRoomFurniture() .build(); @@ -53,15 +53,15 @@ const leahArmchair = (): TProductDraftBuilder => .description( LocalizedStringDraft.presets .empty() - ['en-GB']( - 'A tufted armchair with brass legs is an elegant and luxurious piece of furniture. The chair typically features a deep seat and a high backrest, which are both padded and upholstered with soft and plush material. The tufted design creates a sophisticated and timeless look, while the brass legs add a touch of glamour and sophistication. The legs give the chair a sleek and modern appearance. The armrests are curved and plush, providing both comfort and support for the arms. Overall, a tufted armchair with brass legs is a stylish and comfortable addition to any living space or lounge area.' - ) - ['en-US']( - 'A tufted armchair with brass legs is an elegant and luxurious piece of furniture. The chair typically features a deep seat and a high backrest, which are both padded and upholstered with soft and plush material. The tufted design creates a sophisticated and timeless look, while the brass legs add a touch of glamour and sophistication. The legs give the chair a sleek and modern appearance. The armrests are curved and plush, providing both comfort and support for the arms. Overall, a tufted armchair with brass legs is a stylish and comfortable addition to any living space or lounge area.' - ) - ['de-DE']( - 'Ein getufteter Sessel mit Messingbeinen ist ein elegantes und luxuriöses Möbelstück. Der Stuhl verfügt typischerweise über einen tiefen Sitz und eine hohe Rückenlehne, die beide gepolstert und mit weichem und plüschigem Material bezogen sind. Das getuftete Design sorgt für einen raffinierten und zeitlosen Look, während die Messingbeine einen Hauch von Glamour und Raffinesse verleihen. Die Beine verleihen dem Stuhl ein elegantes und modernes Aussehen. Die Armlehnen sind gebogen und weich und bieten sowohl Komfort als auch Unterstützung für die Arme. Insgesamt ist ein getufteter Sessel mit Messingbeinen eine stilvolle und bequeme Ergänzung für jeden Wohn- oder Loungebereich.' - ) + [ + 'en-GB' + ]('A tufted armchair with brass legs is an elegant and luxurious piece of furniture. The chair typically features a deep seat and a high backrest, which are both padded and upholstered with soft and plush material. The tufted design creates a sophisticated and timeless look, while the brass legs add a touch of glamour and sophistication. The legs give the chair a sleek and modern appearance. The armrests are curved and plush, providing both comfort and support for the arms. Overall, a tufted armchair with brass legs is a stylish and comfortable addition to any living space or lounge area.') + [ + 'en-US' + ]('A tufted armchair with brass legs is an elegant and luxurious piece of furniture. The chair typically features a deep seat and a high backrest, which are both padded and upholstered with soft and plush material. The tufted design creates a sophisticated and timeless look, while the brass legs add a touch of glamour and sophistication. The legs give the chair a sleek and modern appearance. The armrests are curved and plush, providing both comfort and support for the arms. Overall, a tufted armchair with brass legs is a stylish and comfortable addition to any living space or lounge area.') + [ + 'de-DE' + ]('Ein getufteter Sessel mit Messingbeinen ist ein elegantes und luxuriöses Möbelstück. Der Stuhl verfügt typischerweise über einen tiefen Sitz und eine hohe Rückenlehne, die beide gepolstert und mit weichem und plüschigem Material bezogen sind. Das getuftete Design sorgt für einen raffinierten und zeitlosen Look, während die Messingbeine einen Hauch von Glamour und Raffinesse verleihen. Die Beine verleihen dem Stuhl ein elegantes und modernes Aussehen. Die Armlehnen sind gebogen und weich und bieten sowohl Komfort als auch Unterstützung für die Arme. Insgesamt ist ein getufteter Sessel mit Messingbeinen eine stilvolle und bequeme Ergänzung für jeden Wohn- oder Loungebereich.') ) .slug( LocalizedStringDraft.presets @@ -80,7 +80,7 @@ const leahArmchair = (): TProductDraftBuilder => KeyReferenceDraft.presets.taxCategory().key(standardTaxCategory.key!) ) .masterVariant( - ProductVariantDraft.presets.sampleDataGoodStore.leahArmchair01() + ProductVariantDraft.presets.sampleDataB2CLifestyle.leahArmchair01() ) .categories([ KeyReferenceDraft.presets.category().key(furnitureDraft.key!), diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/leather-coaster.spec.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/leather-coaster.spec.ts similarity index 98% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/leather-coaster.spec.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/leather-coaster.spec.ts index 7a74c68ea..9dc1df4f0 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/leather-coaster.spec.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/leather-coaster.spec.ts @@ -57,7 +57,7 @@ describe(`with leatherCoaster preset`, () => { "w": 2864, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Leather_Coaster-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Leather_Coaster-1.1.jpeg", }, ], "key": undefined, @@ -200,7 +200,7 @@ describe(`with leatherCoaster preset`, () => { "width": 2864, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Leather_Coaster-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Leather_Coaster-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/leather-coaster.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/leather-coaster.ts similarity index 78% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/leather-coaster.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/leather-coaster.ts index b57340afa..5a2c79ed1 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/leather-coaster.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/leather-coaster.ts @@ -18,24 +18,24 @@ import * as ProductVariantDraft from '../../../../product-variant/product-varian import * as ProductDraft from '../../../product-draft'; import type { TProductDraftBuilder } from '../../../types'; -const standardTaxCategory = TaxCategoryDraft.presets.sampleDataGoodStore +const standardTaxCategory = TaxCategoryDraft.presets.sampleDataB2CLifestyle .standardTaxCategory() .build(); const leatherCoasterProductTypeDraft = - ProductTypeDraft.presets.sampleDataGoodStore + ProductTypeDraft.presets.sampleDataB2CLifestyle .furnitureAndDecor() .build(); -const barAccessoriesDraft = CategoryDraft.presets.sampleDataGoodStore +const barAccessoriesDraft = CategoryDraft.presets.sampleDataB2CLifestyle .barAccessories() .build(); -const barAndGlasswareDraft = CategoryDraft.presets.sampleDataGoodStore +const barAndGlasswareDraft = CategoryDraft.presets.sampleDataB2CLifestyle .barAndGlassware() .build(); -const kitchenDraft = CategoryDraft.presets.sampleDataGoodStore +const kitchenDraft = CategoryDraft.presets.sampleDataB2CLifestyle .kitchen() .build(); @@ -53,15 +53,15 @@ const leatherCoaster = (): TProductDraftBuilder => .description( LocalizedStringDraft.presets .empty() - ['en-GB']( - 'A round leather coaster is designed to be placed underneath a drink to protect the surface beneath from moisture and heat. It measures around 4 inches in diameter and is made of high-quality leather material. The edges of the coaster is finished with brass. The underside of the coaster features a non-slip material to prevent it from sliding on smooth surfaces.' - ) - ['en-US']( - 'A round leather coaster is designed to be placed underneath a drink to protect the surface beneath from moisture and heat. It measures around 4 inches in diameter and is made of high-quality leather material. The edges of the coaster is finished with brass. The underside of the coaster features a non-slip material to prevent it from sliding on smooth surfaces.' - ) - ['de-DE']( - 'Ein runder Lederuntersetzer ist so konzipiert, dass er unter einem Getränk platziert werden kann, um die darunter liegende Oberfläche vor Feuchtigkeit und Hitze zu schützen. Es misst etwa 4 Zoll im Durchmesser und besteht aus hochwertigem Ledermaterial. Die Kanten des Untersetzers sind mit Messing veredelt. Die Unterseite des Untersetzers ist mit einem rutschfesten Material versehen, um ein Verrutschen auf glatten Oberflächen zu verhindern.' - ) + [ + 'en-GB' + ]('A round leather coaster is designed to be placed underneath a drink to protect the surface beneath from moisture and heat. It measures around 4 inches in diameter and is made of high-quality leather material. The edges of the coaster is finished with brass. The underside of the coaster features a non-slip material to prevent it from sliding on smooth surfaces.') + [ + 'en-US' + ]('A round leather coaster is designed to be placed underneath a drink to protect the surface beneath from moisture and heat. It measures around 4 inches in diameter and is made of high-quality leather material. The edges of the coaster is finished with brass. The underside of the coaster features a non-slip material to prevent it from sliding on smooth surfaces.') + [ + 'de-DE' + ]('Ein runder Lederuntersetzer ist so konzipiert, dass er unter einem Getränk platziert werden kann, um die darunter liegende Oberfläche vor Feuchtigkeit und Hitze zu schützen. Es misst etwa 4 Zoll im Durchmesser und besteht aus hochwertigem Ledermaterial. Die Kanten des Untersetzers sind mit Messing veredelt. Die Unterseite des Untersetzers ist mit einem rutschfesten Material versehen, um ein Verrutschen auf glatten Oberflächen zu verhindern.') ) .slug( LocalizedStringDraft.presets @@ -80,7 +80,7 @@ const leatherCoaster = (): TProductDraftBuilder => KeyReferenceDraft.presets.taxCategory().key(standardTaxCategory.key!) ) .masterVariant( - ProductVariantDraft.presets.sampleDataGoodStore.leatherCoaster01() + ProductVariantDraft.presets.sampleDataB2CLifestyle.leatherCoaster01() ) .categories([ KeyReferenceDraft.presets.category().key(barAccessoriesDraft.key!), diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/leather-weave-chair.spec.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/leather-weave-chair.spec.ts similarity index 98% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/leather-weave-chair.spec.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/leather-weave-chair.spec.ts index 98ae3ad91..23c8a4661 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/leather-weave-chair.spec.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/leather-weave-chair.spec.ts @@ -61,7 +61,7 @@ describe(`with leatherWeaveChair preset`, () => { "w": 5500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Leather_Weave_Chair-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Leather_Weave_Chair-1.1.jpeg", }, { "dimensions": { @@ -69,7 +69,7 @@ describe(`with leatherWeaveChair preset`, () => { "w": 3375, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Leather_Weave_Chair-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Leather_Weave_Chair-1.2.jpeg", }, ], "key": undefined, @@ -216,7 +216,7 @@ describe(`with leatherWeaveChair preset`, () => { "width": 5500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Leather_Weave_Chair-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Leather_Weave_Chair-1.1.jpeg", }, { "dimensions": { @@ -224,7 +224,7 @@ describe(`with leatherWeaveChair preset`, () => { "width": 3375, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Leather_Weave_Chair-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Leather_Weave_Chair-1.2.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/leather-weave-chair.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/leather-weave-chair.ts similarity index 87% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/leather-weave-chair.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/leather-weave-chair.ts index 00ecf0102..0243bff14 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/leather-weave-chair.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/leather-weave-chair.ts @@ -18,24 +18,24 @@ import * as ProductVariantDraft from '../../../../product-variant/product-varian import * as ProductDraft from '../../../product-draft'; import type { TProductDraftBuilder } from '../../../types'; -const standardTaxCategory = TaxCategoryDraft.presets.sampleDataGoodStore +const standardTaxCategory = TaxCategoryDraft.presets.sampleDataB2CLifestyle .standardTaxCategory() .build(); const leatherWeaveChairProductTypeDraft = - ProductTypeDraft.presets.sampleDataGoodStore + ProductTypeDraft.presets.sampleDataB2CLifestyle .furnitureAndDecor() .build(); -const newArrivalsDraft = CategoryDraft.presets.sampleDataGoodStore +const newArrivalsDraft = CategoryDraft.presets.sampleDataB2CLifestyle .newArrivals() .build(); -const livingRoomFurnitureDraft = CategoryDraft.presets.sampleDataGoodStore +const livingRoomFurnitureDraft = CategoryDraft.presets.sampleDataB2CLifestyle .livingRoomFurniture() .build(); -const armchairsDraft = CategoryDraft.presets.sampleDataGoodStore +const armchairsDraft = CategoryDraft.presets.sampleDataB2CLifestyle .armchairs() .build(); @@ -53,15 +53,15 @@ const leatherWeaveChair = (): TProductDraftBuilder => .description( LocalizedStringDraft.presets .empty() - ['en-GB']( - "A wooden chair with leather weave upholstery is a beautiful and functional piece of furniture that blends natural materials with a touch of luxury. The chair features a sturdy and durable wooden frame, crafted from high-quality hardwood, that provides a solid foundation for the seat and backrest. The seat and backrest of the chair are made from a tight weave of leather strips, creating a unique and eye-catching texture that adds to the chair's overall appeal. The chair has a simple and elegant design, with clean lines and a minimalist aesthetic that makes it easy to incorporate into a variety of interior design styles. The legs of the chair are angled slightly outward for stability. The bottom of the legs may be fitted with protective caps to prevent scratches or damage to your floors. Overall, a wooden chair with leather weave upholstery is a versatile and stylish piece of furniture that can add warmth, texture, and visual interest to any room. Its combination of natural materials and luxurious details makes it a popular choice for anyone looking to add a touch of sophistication and elegance to their home." - ) - ['en-US']( - "A wooden chair with leather weave upholstery is a beautiful and functional piece of furniture that blends natural materials with a touch of luxury. The chair features a sturdy and durable wooden frame, crafted from high-quality hardwood, that provides a solid foundation for the seat and backrest. The seat and backrest of the chair are made from a tight weave of leather strips, creating a unique and eye-catching texture that adds to the chair's overall appeal. The chair has a simple and elegant design, with clean lines and a minimalist aesthetic that makes it easy to incorporate into a variety of interior design styles. The legs of the chair are angled slightly outward for stability. The bottom of the legs may be fitted with protective caps to prevent scratches or damage to your floors. Overall, a wooden chair with leather weave upholstery is a versatile and stylish piece of furniture that can add warmth, texture, and visual interest to any room. Its combination of natural materials and luxurious details makes it a popular choice for anyone looking to add a touch of sophistication and elegance to their home." - ) - ['de-DE']( - 'Ein Holzstuhl mit Lederbezug ist ein schönes und funktionales Möbelstück, das natürliche Materialien mit einem Hauch von Luxus verbindet. Der Stuhl verfügt über einen robusten und langlebigen Holzrahmen aus hochwertigem Hartholz, der eine solide Grundlage für Sitz und Rückenlehne bietet. Der Sitz und die Rückenlehne des Stuhls bestehen aus einem engen Gewebe aus Lederstreifen, wodurch eine einzigartige und auffällige Textur entsteht, die den Gesamteindruck des Stuhls verstärkt. Der Stuhl hat ein einfaches und elegantes Design mit klaren Linien und einer minimalistischen Ästhetik, die sich leicht in eine Vielzahl von Einrichtungsstilen integrieren lässt. Die Beine des Stuhls sind aus Stabilitätsgründen leicht nach außen geneigt. Die Unterseite der Beine kann mit Schutzkappen versehen werden, um Kratzer oder Schäden an Ihren Böden zu vermeiden. Insgesamt ist ein Holzstuhl mit Lederbezug ein vielseitiges und stilvolles Möbelstück, das jedem Raum Wärme, Textur und visuelles Interesse verleiht. Seine Kombination aus natürlichen Materialien und luxuriösen Details macht es zu einer beliebten Wahl für alle, die ihrem Zuhause einen Hauch von Raffinesse und Eleganz verleihen möchten.' - ) + [ + 'en-GB' + ]("A wooden chair with leather weave upholstery is a beautiful and functional piece of furniture that blends natural materials with a touch of luxury. The chair features a sturdy and durable wooden frame, crafted from high-quality hardwood, that provides a solid foundation for the seat and backrest. The seat and backrest of the chair are made from a tight weave of leather strips, creating a unique and eye-catching texture that adds to the chair's overall appeal. The chair has a simple and elegant design, with clean lines and a minimalist aesthetic that makes it easy to incorporate into a variety of interior design styles. The legs of the chair are angled slightly outward for stability. The bottom of the legs may be fitted with protective caps to prevent scratches or damage to your floors. Overall, a wooden chair with leather weave upholstery is a versatile and stylish piece of furniture that can add warmth, texture, and visual interest to any room. Its combination of natural materials and luxurious details makes it a popular choice for anyone looking to add a touch of sophistication and elegance to their home.") + [ + 'en-US' + ]("A wooden chair with leather weave upholstery is a beautiful and functional piece of furniture that blends natural materials with a touch of luxury. The chair features a sturdy and durable wooden frame, crafted from high-quality hardwood, that provides a solid foundation for the seat and backrest. The seat and backrest of the chair are made from a tight weave of leather strips, creating a unique and eye-catching texture that adds to the chair's overall appeal. The chair has a simple and elegant design, with clean lines and a minimalist aesthetic that makes it easy to incorporate into a variety of interior design styles. The legs of the chair are angled slightly outward for stability. The bottom of the legs may be fitted with protective caps to prevent scratches or damage to your floors. Overall, a wooden chair with leather weave upholstery is a versatile and stylish piece of furniture that can add warmth, texture, and visual interest to any room. Its combination of natural materials and luxurious details makes it a popular choice for anyone looking to add a touch of sophistication and elegance to their home.") + [ + 'de-DE' + ]('Ein Holzstuhl mit Lederbezug ist ein schönes und funktionales Möbelstück, das natürliche Materialien mit einem Hauch von Luxus verbindet. Der Stuhl verfügt über einen robusten und langlebigen Holzrahmen aus hochwertigem Hartholz, der eine solide Grundlage für Sitz und Rückenlehne bietet. Der Sitz und die Rückenlehne des Stuhls bestehen aus einem engen Gewebe aus Lederstreifen, wodurch eine einzigartige und auffällige Textur entsteht, die den Gesamteindruck des Stuhls verstärkt. Der Stuhl hat ein einfaches und elegantes Design mit klaren Linien und einer minimalistischen Ästhetik, die sich leicht in eine Vielzahl von Einrichtungsstilen integrieren lässt. Die Beine des Stuhls sind aus Stabilitätsgründen leicht nach außen geneigt. Die Unterseite der Beine kann mit Schutzkappen versehen werden, um Kratzer oder Schäden an Ihren Böden zu vermeiden. Insgesamt ist ein Holzstuhl mit Lederbezug ein vielseitiges und stilvolles Möbelstück, das jedem Raum Wärme, Textur und visuelles Interesse verleiht. Seine Kombination aus natürlichen Materialien und luxuriösen Details macht es zu einer beliebten Wahl für alle, die ihrem Zuhause einen Hauch von Raffinesse und Eleganz verleihen möchten.') ) .slug( LocalizedStringDraft.presets @@ -80,7 +80,7 @@ const leatherWeaveChair = (): TProductDraftBuilder => KeyReferenceDraft.presets.taxCategory().key(standardTaxCategory.key!) ) .masterVariant( - ProductVariantDraft.presets.sampleDataGoodStore.leatherWeaveChair01() + ProductVariantDraft.presets.sampleDataB2CLifestyle.leatherWeaveChair01() ) .categories([ KeyReferenceDraft.presets.category().key(newArrivalsDraft.key!), diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/luxe-pillow-cover.spec.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/luxe-pillow-cover.spec.ts similarity index 99% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/luxe-pillow-cover.spec.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/luxe-pillow-cover.spec.ts index 0f7ce5be1..62e203a43 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/luxe-pillow-cover.spec.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/luxe-pillow-cover.spec.ts @@ -56,7 +56,7 @@ describe(`with luxePillowCover preset`, () => { "w": 6123, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Luxe_Pillow_Cover-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Luxe_Pillow_Cover-1.1.jpeg", }, ], "key": undefined, @@ -195,7 +195,7 @@ describe(`with luxePillowCover preset`, () => { "width": 6123, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Luxe_Pillow_Cover-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Luxe_Pillow_Cover-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/luxe-pillow-cover.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/luxe-pillow-cover.ts similarity index 88% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/luxe-pillow-cover.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/luxe-pillow-cover.ts index bbfee1feb..88a69e515 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/luxe-pillow-cover.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/luxe-pillow-cover.ts @@ -18,20 +18,20 @@ import * as ProductVariantDraft from '../../../../product-variant/product-varian import * as ProductDraft from '../../../product-draft'; import type { TProductDraftBuilder } from '../../../types'; -const standardTaxCategory = TaxCategoryDraft.presets.sampleDataGoodStore +const standardTaxCategory = TaxCategoryDraft.presets.sampleDataB2CLifestyle .standardTaxCategory() .build(); const luxePillowCoverProductTypeDraft = - ProductTypeDraft.presets.sampleDataGoodStore + ProductTypeDraft.presets.sampleDataB2CLifestyle .furnitureAndDecor() .build(); -const beddingDraft = CategoryDraft.presets.sampleDataGoodStore +const beddingDraft = CategoryDraft.presets.sampleDataB2CLifestyle .bedding() .build(); -const homeDecorDraft = CategoryDraft.presets.sampleDataGoodStore +const homeDecorDraft = CategoryDraft.presets.sampleDataB2CLifestyle .homeDecor() .build(); @@ -49,15 +49,15 @@ const luxePillowCover = (): TProductDraftBuilder => .description( LocalizedStringDraft.presets .empty() - ['de-DE']( - 'Dieser luxuriöse Kissenbezug ist aus schwarzem Lammfell gefertigt. Shearling ist bekannt für seine Weichheit, Wärme und isolierenden Eigenschaften. Der Kissenbezug ist so konzipiert, dass er über ein Kissen in Standardgröße passt, normalerweise etwa 18 Zoll im Quadrat. Es hat eine quadratische Form und eine tiefschwarze Farbe, die eine Vielzahl von Einrichtungsstilen und Farbschemata ergänzen kann. Der Shearling-Stoff hat eine plüschige und flauschige Textur, die sich unglaublich weich anfühlt. Es bietet eine gemütliche und warme Oberfläche zum Schlafen oder Faulenzen, was es zu einer beliebten Wahl für die kälteren Monate macht. Der Kissenbezug wird oft wegen seiner dekorativen und luxuriösen Eigenschaften sowie wegen seiner praktischen und funktionalen Vorteile verwendet. Es kann einem Bett, Sofa oder Akzentstuhl einen Hauch von Textur und visuellem Interesse verleihen und gleichzeitig eine bequeme und stützende Oberfläche für Kopf und Nacken bieten. Das Shearling-Gewebe ist von Natur aus wasser- und schmutzabweisend und lässt sich leicht mit einem feuchten Tuch oder Schwamm reinigen. Es sollte regelmäßig an der Luft getrocknet und aufgelockert werden, um seine Form und Textur zu erhalten. Insgesamt ist ein schwarzer Lammfell-Kissenbezug ein stilvolles und bequemes Accessoire, das den Komfort und Stil jedes Raums im Haus verbessern kann und gleichzeitig einen praktischen und funktionellen Nutzen bietet.' - ) - ['en-GB']( - 'This Luxe Pillow Cover is made of black shearling. Shearling is known for its softness, warmth, and insulating properties. The pillow cover is designed to fit over a standard size pillow, usually around 18 inches square. It features a square shape and a deep black color that can complement a variety of decor styles and color schemes. The shearling fabric has a plush and fluffy texture that is incredibly soft to the touch. It provides a cozy and warm surface for sleeping or lounging, making it a popular choice for colder months. The pillow cover is often used for its decorative and luxurious features, as well as for its practical and functional benefits. It can add a touch of texture and visual interest to a bed, sofa, or accent chair, while also providing a comfortable and supportive surface for the head and neck. The shearling fabric is naturally resistant to water and stains, and can be easily cleaned with a damp cloth or sponge. It should be air-dried and fluffed periodically to maintain its shape and texture. Overall, a black shearling pillow cover is a stylish and comfortable accessory that can enhance the comfort and style of any room in the home, while also providing a practical and functional benefit.' - ) - ['en-US']( - 'This Luxe Pillow Cover is made of black shearling. Shearling is known for its softness, warmth, and insulating properties. The pillow cover is designed to fit over a standard size pillow, usually around 18 inches square. It features a square shape and a deep black color that can complement a variety of decor styles and color schemes. The shearling fabric has a plush and fluffy texture that is incredibly soft to the touch. It provides a cozy and warm surface for sleeping or lounging, making it a popular choice for colder months. The pillow cover is often used for its decorative and luxurious features, as well as for its practical and functional benefits. It can add a touch of texture and visual interest to a bed, sofa, or accent chair, while also providing a comfortable and supportive surface for the head and neck. The shearling fabric is naturally resistant to water and stains, and can be easily cleaned with a damp cloth or sponge. It should be air-dried and fluffed periodically to maintain its shape and texture. Overall, a black shearling pillow cover is a stylish and comfortable accessory that can enhance the comfort and style of any room in the home, while also providing a practical and functional benefit.' - ) + [ + 'de-DE' + ]('Dieser luxuriöse Kissenbezug ist aus schwarzem Lammfell gefertigt. Shearling ist bekannt für seine Weichheit, Wärme und isolierenden Eigenschaften. Der Kissenbezug ist so konzipiert, dass er über ein Kissen in Standardgröße passt, normalerweise etwa 18 Zoll im Quadrat. Es hat eine quadratische Form und eine tiefschwarze Farbe, die eine Vielzahl von Einrichtungsstilen und Farbschemata ergänzen kann. Der Shearling-Stoff hat eine plüschige und flauschige Textur, die sich unglaublich weich anfühlt. Es bietet eine gemütliche und warme Oberfläche zum Schlafen oder Faulenzen, was es zu einer beliebten Wahl für die kälteren Monate macht. Der Kissenbezug wird oft wegen seiner dekorativen und luxuriösen Eigenschaften sowie wegen seiner praktischen und funktionalen Vorteile verwendet. Es kann einem Bett, Sofa oder Akzentstuhl einen Hauch von Textur und visuellem Interesse verleihen und gleichzeitig eine bequeme und stützende Oberfläche für Kopf und Nacken bieten. Das Shearling-Gewebe ist von Natur aus wasser- und schmutzabweisend und lässt sich leicht mit einem feuchten Tuch oder Schwamm reinigen. Es sollte regelmäßig an der Luft getrocknet und aufgelockert werden, um seine Form und Textur zu erhalten. Insgesamt ist ein schwarzer Lammfell-Kissenbezug ein stilvolles und bequemes Accessoire, das den Komfort und Stil jedes Raums im Haus verbessern kann und gleichzeitig einen praktischen und funktionellen Nutzen bietet.') + [ + 'en-GB' + ]('This Luxe Pillow Cover is made of black shearling. Shearling is known for its softness, warmth, and insulating properties. The pillow cover is designed to fit over a standard size pillow, usually around 18 inches square. It features a square shape and a deep black color that can complement a variety of decor styles and color schemes. The shearling fabric has a plush and fluffy texture that is incredibly soft to the touch. It provides a cozy and warm surface for sleeping or lounging, making it a popular choice for colder months. The pillow cover is often used for its decorative and luxurious features, as well as for its practical and functional benefits. It can add a touch of texture and visual interest to a bed, sofa, or accent chair, while also providing a comfortable and supportive surface for the head and neck. The shearling fabric is naturally resistant to water and stains, and can be easily cleaned with a damp cloth or sponge. It should be air-dried and fluffed periodically to maintain its shape and texture. Overall, a black shearling pillow cover is a stylish and comfortable accessory that can enhance the comfort and style of any room in the home, while also providing a practical and functional benefit.') + [ + 'en-US' + ]('This Luxe Pillow Cover is made of black shearling. Shearling is known for its softness, warmth, and insulating properties. The pillow cover is designed to fit over a standard size pillow, usually around 18 inches square. It features a square shape and a deep black color that can complement a variety of decor styles and color schemes. The shearling fabric has a plush and fluffy texture that is incredibly soft to the touch. It provides a cozy and warm surface for sleeping or lounging, making it a popular choice for colder months. The pillow cover is often used for its decorative and luxurious features, as well as for its practical and functional benefits. It can add a touch of texture and visual interest to a bed, sofa, or accent chair, while also providing a comfortable and supportive surface for the head and neck. The shearling fabric is naturally resistant to water and stains, and can be easily cleaned with a damp cloth or sponge. It should be air-dried and fluffed periodically to maintain its shape and texture. Overall, a black shearling pillow cover is a stylish and comfortable accessory that can enhance the comfort and style of any room in the home, while also providing a practical and functional benefit.') ) .slug( LocalizedStringDraft.presets @@ -76,7 +76,7 @@ const luxePillowCover = (): TProductDraftBuilder => KeyReferenceDraft.presets.taxCategory().key(standardTaxCategory.key!) ) .masterVariant( - ProductVariantDraft.presets.sampleDataGoodStore.luxePillowCover01() + ProductVariantDraft.presets.sampleDataB2CLifestyle.luxePillowCover01() ) .categories([ KeyReferenceDraft.presets.category().key(beddingDraft.key!), diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/marquis-tray.spec.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/marquis-tray.spec.ts similarity index 99% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/marquis-tray.spec.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/marquis-tray.spec.ts index 8133dd7dd..f821e2612 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/marquis-tray.spec.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/marquis-tray.spec.ts @@ -69,7 +69,7 @@ describe(`with marquisTray preset`, () => { "w": 5056, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Marquis_Tray-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Marquis_Tray-1.1.jpeg", }, ], "key": undefined, @@ -224,7 +224,7 @@ describe(`with marquisTray preset`, () => { "width": 5056, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Marquis_Tray-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Marquis_Tray-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/marquis-tray.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/marquis-tray.ts similarity index 80% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/marquis-tray.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/marquis-tray.ts index f744fd0cf..997348bfd 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/marquis-tray.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/marquis-tray.ts @@ -18,35 +18,36 @@ import * as ProductVariantDraft from '../../../../product-variant/product-varian import * as ProductDraft from '../../../product-draft'; import type { TProductDraftBuilder } from '../../../types'; -const standardTaxCategory = TaxCategoryDraft.presets.sampleDataGoodStore +const standardTaxCategory = TaxCategoryDraft.presets.sampleDataB2CLifestyle .standardTaxCategory() .build(); -const marquisTrayProductTypeDraft = ProductTypeDraft.presets.sampleDataGoodStore - .furnitureAndDecor() - .build(); +const marquisTrayProductTypeDraft = + ProductTypeDraft.presets.sampleDataB2CLifestyle + .furnitureAndDecor() + .build(); -const platesDraft = CategoryDraft.presets.sampleDataGoodStore +const platesDraft = CategoryDraft.presets.sampleDataB2CLifestyle .plates() .build(); -const kitchenDraft = CategoryDraft.presets.sampleDataGoodStore +const kitchenDraft = CategoryDraft.presets.sampleDataB2CLifestyle .kitchen() .build(); -const servingPlattersDraft = CategoryDraft.presets.sampleDataGoodStore +const servingPlattersDraft = CategoryDraft.presets.sampleDataB2CLifestyle .servingPlatters() .build(); -const servewareDraft = CategoryDraft.presets.sampleDataGoodStore +const servewareDraft = CategoryDraft.presets.sampleDataB2CLifestyle .serveware() .build(); -const dinnerwareDraft = CategoryDraft.presets.sampleDataGoodStore +const dinnerwareDraft = CategoryDraft.presets.sampleDataB2CLifestyle .dinnerware() .build(); -const cheeseTraysDraft = CategoryDraft.presets.sampleDataGoodStore +const cheeseTraysDraft = CategoryDraft.presets.sampleDataB2CLifestyle .cheeseTrays() .build(); @@ -64,15 +65,15 @@ const marquisTray = (): TProductDraftBuilder => .description( LocalizedStringDraft.presets .empty() - ['en-GB']( - 'This wooden serving tray is ideal for serving a variety of foods and drinks, including appetizers, entrees, cocktails, and coffee. It can be used in both casual and formal settings, and are a popular choice for outdoor dining, picnics, and barbecues. Wooden serving trays are durable and easy to clean, making them a practical choice for everyday use. They can be wiped clean with a damp cloth or washed with soap and water. Overall, a wooden serving tray is a functional and stylish choice for serving food and drinks. Its natural material and unique texture add warmth and character to any dining setting, while its versatility and practicality make it a staple in many kitchens and dining rooms.' - ) - ['en-US']( - 'This wooden serving tray is ideal for serving a variety of foods and drinks, including appetizers, entrees, cocktails, and coffee. It can be used in both casual and formal settings, and are a popular choice for outdoor dining, picnics, and barbecues. Wooden serving trays are durable and easy to clean, making them a practical choice for everyday use. They can be wiped clean with a damp cloth or washed with soap and water. Overall, a wooden serving tray is a functional and stylish choice for serving food and drinks. Its natural material and unique texture add warmth and character to any dining setting, while its versatility and practicality make it a staple in many kitchens and dining rooms.' - ) - ['de-DE']( - 'Dieses Serviertablett aus Holz ist ideal zum Servieren einer Vielzahl von Speisen und Getränken, einschließlich Vorspeisen, Hauptgerichten, Cocktails und Kaffee. Es kann sowohl in ungezwungener als auch in formeller Umgebung verwendet werden und ist eine beliebte Wahl für Mahlzeiten im Freien, Picknicks und Grillabende. Serviertabletts aus Holz sind langlebig und leicht zu reinigen, was sie zu einer praktischen Wahl für den täglichen Gebrauch macht. Sie können mit einem feuchten Tuch abgewischt oder mit Wasser und Seife gewaschen werden. Insgesamt ist ein Serviertablett aus Holz eine funktionale und stilvolle Wahl zum Servieren von Speisen und Getränken. Sein natürliches Material und seine einzigartige Textur verleihen jedem Essbereich Wärme und Charakter, während seine Vielseitigkeit und Praktikabilität es zu einem Grundnahrungsmittel in vielen Küchen und Esszimmern machen.' - ) + [ + 'en-GB' + ]('This wooden serving tray is ideal for serving a variety of foods and drinks, including appetizers, entrees, cocktails, and coffee. It can be used in both casual and formal settings, and are a popular choice for outdoor dining, picnics, and barbecues. Wooden serving trays are durable and easy to clean, making them a practical choice for everyday use. They can be wiped clean with a damp cloth or washed with soap and water. Overall, a wooden serving tray is a functional and stylish choice for serving food and drinks. Its natural material and unique texture add warmth and character to any dining setting, while its versatility and practicality make it a staple in many kitchens and dining rooms.') + [ + 'en-US' + ]('This wooden serving tray is ideal for serving a variety of foods and drinks, including appetizers, entrees, cocktails, and coffee. It can be used in both casual and formal settings, and are a popular choice for outdoor dining, picnics, and barbecues. Wooden serving trays are durable and easy to clean, making them a practical choice for everyday use. They can be wiped clean with a damp cloth or washed with soap and water. Overall, a wooden serving tray is a functional and stylish choice for serving food and drinks. Its natural material and unique texture add warmth and character to any dining setting, while its versatility and practicality make it a staple in many kitchens and dining rooms.') + [ + 'de-DE' + ]('Dieses Serviertablett aus Holz ist ideal zum Servieren einer Vielzahl von Speisen und Getränken, einschließlich Vorspeisen, Hauptgerichten, Cocktails und Kaffee. Es kann sowohl in ungezwungener als auch in formeller Umgebung verwendet werden und ist eine beliebte Wahl für Mahlzeiten im Freien, Picknicks und Grillabende. Serviertabletts aus Holz sind langlebig und leicht zu reinigen, was sie zu einer praktischen Wahl für den täglichen Gebrauch macht. Sie können mit einem feuchten Tuch abgewischt oder mit Wasser und Seife gewaschen werden. Insgesamt ist ein Serviertablett aus Holz eine funktionale und stilvolle Wahl zum Servieren von Speisen und Getränken. Sein natürliches Material und seine einzigartige Textur verleihen jedem Essbereich Wärme und Charakter, während seine Vielseitigkeit und Praktikabilität es zu einem Grundnahrungsmittel in vielen Küchen und Esszimmern machen.') ) .slug( LocalizedStringDraft.presets @@ -91,7 +92,7 @@ const marquisTray = (): TProductDraftBuilder => KeyReferenceDraft.presets.taxCategory().key(standardTaxCategory.key!) ) .masterVariant( - ProductVariantDraft.presets.sampleDataGoodStore.marquisTray01() + ProductVariantDraft.presets.sampleDataB2CLifestyle.marquisTray01() ) .categories([ KeyReferenceDraft.presets.category().key(platesDraft.key!), diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/maya-pillow-cover.spec.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/maya-pillow-cover.spec.ts similarity index 98% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/maya-pillow-cover.spec.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/maya-pillow-cover.spec.ts index 452d391d1..7eee84bf0 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/maya-pillow-cover.spec.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/maya-pillow-cover.spec.ts @@ -56,7 +56,7 @@ describe(`with mayaPillowCover preset`, () => { "w": 6240, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Maya_Pillow_Cover-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Maya_Pillow_Cover-1.1.jpeg", }, ], "key": undefined, @@ -171,7 +171,7 @@ describe(`with mayaPillowCover preset`, () => { "w": 6240, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Maya_Pillow_Cover-2.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Maya_Pillow_Cover-2.1.jpeg", }, ], "key": undefined, @@ -279,7 +279,7 @@ describe(`with mayaPillowCover preset`, () => { "width": 6240, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Maya_Pillow_Cover-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Maya_Pillow_Cover-1.1.jpeg", }, ], "key": undefined, @@ -401,7 +401,7 @@ describe(`with mayaPillowCover preset`, () => { "width": 6240, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Maya_Pillow_Cover-2.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Maya_Pillow_Cover-2.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/maya-pillow-cover.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/maya-pillow-cover.ts similarity index 84% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/maya-pillow-cover.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/maya-pillow-cover.ts index d1ad81e18..11ef5be52 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/maya-pillow-cover.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/maya-pillow-cover.ts @@ -18,20 +18,20 @@ import * as ProductVariantDraft from '../../../../product-variant/product-varian import * as ProductDraft from '../../../product-draft'; import type { TProductDraftBuilder } from '../../../types'; -const standardTaxCategory = TaxCategoryDraft.presets.sampleDataGoodStore +const standardTaxCategory = TaxCategoryDraft.presets.sampleDataB2CLifestyle .standardTaxCategory() .build(); const mayaPillowCoverProductTypeDraft = - ProductTypeDraft.presets.sampleDataGoodStore + ProductTypeDraft.presets.sampleDataB2CLifestyle .furnitureAndDecor() .build(); -const beddingDraft = CategoryDraft.presets.sampleDataGoodStore +const beddingDraft = CategoryDraft.presets.sampleDataB2CLifestyle .bedding() .build(); -const homeDecorDraft = CategoryDraft.presets.sampleDataGoodStore +const homeDecorDraft = CategoryDraft.presets.sampleDataB2CLifestyle .homeDecor() .build(); @@ -49,15 +49,15 @@ const mayaPillowCover = (): TProductDraftBuilder => .description( LocalizedStringDraft.presets .empty() - ['en-GB']( - "A microfiber brown pillowcase is a soft and comfortable pillow cover made from synthetic fibers. The microfiber material is designed to be soft and silky to the touch, providing a comfortable and cozy sleeping experience. The brown color of the pillowcase is typically warm and inviting, creating a cozy and relaxing atmosphere in a bedroom. It can also be a versatile color that matches well with a variety of other colors and decor styles. Microfiber pillowcases are known for their durability and easy care. They are typically resistant to wrinkles and shrinkage, making them ideal for busy households. They are also hypoallergenic, making them a great option for people with allergies or sensitivities. Overall, a microfiber brown pillowcase is a practical and comfortable choice for any bedroom. It is soft, durable, and easy to care for, providing a cozy and inviting sleeping environment for a restful night's sleep." - ) - ['en-US']( - "A microfiber brown pillowcase is a soft and comfortable pillow cover made from synthetic fibers. The microfiber material is designed to be soft and silky to the touch, providing a comfortable and cozy sleeping experience. The brown color of the pillowcase is typically warm and inviting, creating a cozy and relaxing atmosphere in a bedroom. It can also be a versatile color that matches well with a variety of other colors and decor styles. Microfiber pillowcases are known for their durability and easy care. They are typically resistant to wrinkles and shrinkage, making them ideal for busy households. They are also hypoallergenic, making them a great option for people with allergies or sensitivities. Overall, a microfiber brown pillowcase is a practical and comfortable choice for any bedroom. It is soft, durable, and easy to care for, providing a cozy and inviting sleeping environment for a restful night's sleep." - ) - ['de-DE']( - 'Ein brauner Mikrofaser-Kissenbezug ist ein weicher und bequemer Kissenbezug aus synthetischen Fasern. Das Mikrofasermaterial fühlt sich weich und seidig an und bietet ein komfortables und gemütliches Schlaferlebnis. Die braune Farbe des Kissenbezugs ist typisch warm und einladend und schafft eine gemütliche und entspannende Atmosphäre in einem Schlafzimmer. Es kann auch eine vielseitige Farbe sein, die gut zu einer Vielzahl anderer Farben und Dekorstile passt. Kissenbezüge aus Mikrofaser sind bekannt für ihre Strapazierfähigkeit und Pflegeleichtigkeit. Sie sind in der Regel knitter- und schrumpffrei und somit ideal für vielbeschäftigte Haushalte. Sie sind auch hypoallergen, was sie zu einer großartigen Option für Menschen mit Allergien oder Empfindlichkeiten macht. Insgesamt ist ein brauner Kissenbezug aus Mikrofaser eine praktische und bequeme Wahl für jedes Schlafzimmer. Es ist weich, strapazierfähig und pflegeleicht und bietet eine gemütliche und einladende Schlafumgebung für einen erholsamen Schlaf.' - ) + [ + 'en-GB' + ]("A microfiber brown pillowcase is a soft and comfortable pillow cover made from synthetic fibers. The microfiber material is designed to be soft and silky to the touch, providing a comfortable and cozy sleeping experience. The brown color of the pillowcase is typically warm and inviting, creating a cozy and relaxing atmosphere in a bedroom. It can also be a versatile color that matches well with a variety of other colors and decor styles. Microfiber pillowcases are known for their durability and easy care. They are typically resistant to wrinkles and shrinkage, making them ideal for busy households. They are also hypoallergenic, making them a great option for people with allergies or sensitivities. Overall, a microfiber brown pillowcase is a practical and comfortable choice for any bedroom. It is soft, durable, and easy to care for, providing a cozy and inviting sleeping environment for a restful night's sleep.") + [ + 'en-US' + ]("A microfiber brown pillowcase is a soft and comfortable pillow cover made from synthetic fibers. The microfiber material is designed to be soft and silky to the touch, providing a comfortable and cozy sleeping experience. The brown color of the pillowcase is typically warm and inviting, creating a cozy and relaxing atmosphere in a bedroom. It can also be a versatile color that matches well with a variety of other colors and decor styles. Microfiber pillowcases are known for their durability and easy care. They are typically resistant to wrinkles and shrinkage, making them ideal for busy households. They are also hypoallergenic, making them a great option for people with allergies or sensitivities. Overall, a microfiber brown pillowcase is a practical and comfortable choice for any bedroom. It is soft, durable, and easy to care for, providing a cozy and inviting sleeping environment for a restful night's sleep.") + [ + 'de-DE' + ]('Ein brauner Mikrofaser-Kissenbezug ist ein weicher und bequemer Kissenbezug aus synthetischen Fasern. Das Mikrofasermaterial fühlt sich weich und seidig an und bietet ein komfortables und gemütliches Schlaferlebnis. Die braune Farbe des Kissenbezugs ist typisch warm und einladend und schafft eine gemütliche und entspannende Atmosphäre in einem Schlafzimmer. Es kann auch eine vielseitige Farbe sein, die gut zu einer Vielzahl anderer Farben und Dekorstile passt. Kissenbezüge aus Mikrofaser sind bekannt für ihre Strapazierfähigkeit und Pflegeleichtigkeit. Sie sind in der Regel knitter- und schrumpffrei und somit ideal für vielbeschäftigte Haushalte. Sie sind auch hypoallergen, was sie zu einer großartigen Option für Menschen mit Allergien oder Empfindlichkeiten macht. Insgesamt ist ein brauner Kissenbezug aus Mikrofaser eine praktische und bequeme Wahl für jedes Schlafzimmer. Es ist weich, strapazierfähig und pflegeleicht und bietet eine gemütliche und einladende Schlafumgebung für einen erholsamen Schlaf.') ) .slug( LocalizedStringDraft.presets @@ -76,10 +76,10 @@ const mayaPillowCover = (): TProductDraftBuilder => KeyReferenceDraft.presets.taxCategory().key(standardTaxCategory.key!) ) .masterVariant( - ProductVariantDraft.presets.sampleDataGoodStore.mayaPillowCover01() + ProductVariantDraft.presets.sampleDataB2CLifestyle.mayaPillowCover01() ) .variants([ - ProductVariantDraft.presets.sampleDataGoodStore.mayaPillowCover02(), + ProductVariantDraft.presets.sampleDataB2CLifestyle.mayaPillowCover02(), ]) .categories([ KeyReferenceDraft.presets.category().key(beddingDraft.key!), diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/meadow-rug.spec.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/meadow-rug.spec.ts similarity index 98% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/meadow-rug.spec.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/meadow-rug.spec.ts index e5bdae048..b41ffa42d 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/meadow-rug.spec.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/meadow-rug.spec.ts @@ -57,7 +57,7 @@ describe(`with meadowRug preset`, () => { "w": 4500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Meadow_Rug-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Meadow_Rug-1.1.jpeg", }, ], "key": undefined, @@ -169,7 +169,7 @@ describe(`with meadowRug preset`, () => { "w": 4500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Meadow_Rug-2.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Meadow_Rug-2.1.jpeg", }, ], "key": undefined, @@ -249,7 +249,7 @@ describe(`with meadowRug preset`, () => { "w": 4500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Meadow_Rug-3.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Meadow_Rug-3.1.jpeg", }, ], "key": undefined, @@ -360,7 +360,7 @@ describe(`with meadowRug preset`, () => { "width": 4500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Meadow_Rug-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Meadow_Rug-1.1.jpeg", }, ], "key": undefined, @@ -482,7 +482,7 @@ describe(`with meadowRug preset`, () => { "width": 4500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Meadow_Rug-2.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Meadow_Rug-2.1.jpeg", }, ], "key": undefined, @@ -560,7 +560,7 @@ describe(`with meadowRug preset`, () => { "width": 4500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Meadow_Rug-3.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Meadow_Rug-3.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/meadow-rug.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/meadow-rug.ts similarity index 78% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/meadow-rug.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/meadow-rug.ts index fa7fd6de4..d920e96aa 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/meadow-rug.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/meadow-rug.ts @@ -18,23 +18,24 @@ import * as ProductVariantDraft from '../../../../product-variant/product-varian import * as ProductDraft from '../../../product-draft'; import type { TProductDraftBuilder } from '../../../types'; -const standardTaxCategory = TaxCategoryDraft.presets.sampleDataGoodStore +const standardTaxCategory = TaxCategoryDraft.presets.sampleDataB2CLifestyle .standardTaxCategory() .build(); -const meadowRugProductTypeDraft = ProductTypeDraft.presets.sampleDataGoodStore - .furnitureAndDecor() - .build(); +const meadowRugProductTypeDraft = + ProductTypeDraft.presets.sampleDataB2CLifestyle + .furnitureAndDecor() + .build(); -const roomDecorDraft = CategoryDraft.presets.sampleDataGoodStore +const roomDecorDraft = CategoryDraft.presets.sampleDataB2CLifestyle .roomDecor() .build(); -const rugsDraft = CategoryDraft.presets.sampleDataGoodStore +const rugsDraft = CategoryDraft.presets.sampleDataB2CLifestyle .rugs() .build(); -const homeDecorDraft = CategoryDraft.presets.sampleDataGoodStore +const homeDecorDraft = CategoryDraft.presets.sampleDataB2CLifestyle .homeDecor() .build(); @@ -52,15 +53,15 @@ const meadowRug = (): TProductDraftBuilder => .description( LocalizedStringDraft.presets .empty() - ['en-GB']( - "A plush area rug is a type of rug that is designed to be soft and comfortable underfoot. Plush rugs are characterized by their thick pile. The fibers are densely packed together, giving the rug a lush and luxurious feel. Because of their softness and comfort, plush area rugs are often used in bedrooms, living rooms, and other areas where people spend a lot of time sitting or lounging on the floor. They are also a popular choice for nurseries and children's rooms, as they provide a safe and comfortable play area for kids. Overall, a plush area rug is a cozy and inviting addition to any home. Its soft texture and luxurious feel make it a popular choice for those who want to create a warm and inviting atmosphere in their living space." - ) - ['de-DE']( - 'Ein Plüschteppich ist eine Art von Teppich, der weich und bequem unter den Füßen liegt. Plüschteppiche zeichnen sich durch ihren dichten Flor aus. Die Fasern sind dicht gepackt und verleihen dem Teppich ein üppiges und luxuriöses Gefühl. Aufgrund ihrer Weichheit und ihres Komforts werden Plüschteppiche häufig in Schlafzimmern, Wohnzimmern und anderen Bereichen verwendet, in denen die Menschen viel Zeit sitzend oder faulenzend auf dem Boden verbringen. Sie sind auch eine beliebte Wahl für Kindergärten und Kinderzimmer, da sie einen sicheren und bequemen Spielbereich für Kinder bieten. Insgesamt ist ein Plüschteppich eine gemütliche und einladende Ergänzung für jedes Zuhause. Seine weiche Textur und sein luxuriöses Gefühl machen ihn zu einer beliebten Wahl für alle, die eine warme und einladende Atmosphäre in ihrem Wohnraum schaffen wollen.' - ) - ['en-US']( - "A plush area rug is a type of rug that is designed to be soft and comfortable underfoot. Plush rugs are characterized by their thick pile. The fibers are densely packed together, giving the rug a lush and luxurious feel. Because of their softness and comfort, plush area rugs are often used in bedrooms, living rooms, and other areas where people spend a lot of time sitting or lounging on the floor. They are also a popular choice for nurseries and children's rooms, as they provide a safe and comfortable play area for kids. Overall, a plush area rug is a cozy and inviting addition to any home. Its soft texture and luxurious feel make it a popular choice for those who want to create a warm and inviting atmosphere in their living space." - ) + [ + 'en-GB' + ]("A plush area rug is a type of rug that is designed to be soft and comfortable underfoot. Plush rugs are characterized by their thick pile. The fibers are densely packed together, giving the rug a lush and luxurious feel. Because of their softness and comfort, plush area rugs are often used in bedrooms, living rooms, and other areas where people spend a lot of time sitting or lounging on the floor. They are also a popular choice for nurseries and children's rooms, as they provide a safe and comfortable play area for kids. Overall, a plush area rug is a cozy and inviting addition to any home. Its soft texture and luxurious feel make it a popular choice for those who want to create a warm and inviting atmosphere in their living space.") + [ + 'de-DE' + ]('Ein Plüschteppich ist eine Art von Teppich, der weich und bequem unter den Füßen liegt. Plüschteppiche zeichnen sich durch ihren dichten Flor aus. Die Fasern sind dicht gepackt und verleihen dem Teppich ein üppiges und luxuriöses Gefühl. Aufgrund ihrer Weichheit und ihres Komforts werden Plüschteppiche häufig in Schlafzimmern, Wohnzimmern und anderen Bereichen verwendet, in denen die Menschen viel Zeit sitzend oder faulenzend auf dem Boden verbringen. Sie sind auch eine beliebte Wahl für Kindergärten und Kinderzimmer, da sie einen sicheren und bequemen Spielbereich für Kinder bieten. Insgesamt ist ein Plüschteppich eine gemütliche und einladende Ergänzung für jedes Zuhause. Seine weiche Textur und sein luxuriöses Gefühl machen ihn zu einer beliebten Wahl für alle, die eine warme und einladende Atmosphäre in ihrem Wohnraum schaffen wollen.') + [ + 'en-US' + ]("A plush area rug is a type of rug that is designed to be soft and comfortable underfoot. Plush rugs are characterized by their thick pile. The fibers are densely packed together, giving the rug a lush and luxurious feel. Because of their softness and comfort, plush area rugs are often used in bedrooms, living rooms, and other areas where people spend a lot of time sitting or lounging on the floor. They are also a popular choice for nurseries and children's rooms, as they provide a safe and comfortable play area for kids. Overall, a plush area rug is a cozy and inviting addition to any home. Its soft texture and luxurious feel make it a popular choice for those who want to create a warm and inviting atmosphere in their living space.") ) .slug( LocalizedStringDraft.presets @@ -79,11 +80,11 @@ const meadowRug = (): TProductDraftBuilder => KeyReferenceDraft.presets.taxCategory().key(standardTaxCategory.key!) ) .masterVariant( - ProductVariantDraft.presets.sampleDataGoodStore.meadowRug01() + ProductVariantDraft.presets.sampleDataB2CLifestyle.meadowRug01() ) .variants([ - ProductVariantDraft.presets.sampleDataGoodStore.meadowRug02(), - ProductVariantDraft.presets.sampleDataGoodStore.meadowRug03(), + ProductVariantDraft.presets.sampleDataB2CLifestyle.meadowRug02(), + ProductVariantDraft.presets.sampleDataB2CLifestyle.meadowRug03(), ]) .categories([ KeyReferenceDraft.presets.category().key(roomDecorDraft.key!), diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/minimalist-cedar-nightstand.spec.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/minimalist-cedar-nightstand.spec.ts similarity index 96% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/minimalist-cedar-nightstand.spec.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/minimalist-cedar-nightstand.spec.ts index 6317737cd..b3eee8330 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/minimalist-cedar-nightstand.spec.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/minimalist-cedar-nightstand.spec.ts @@ -66,7 +66,7 @@ describe(`with minimalistCedarNightstand preset`, () => { "w": 4011, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Minimalist_Cedar_Nightstand-1.3.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Minimalist_Cedar_Nightstand-1.3.jpeg", }, { "dimensions": { @@ -74,7 +74,7 @@ describe(`with minimalistCedarNightstand preset`, () => { "w": 4011, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Minimalist_Cedar_Nightstand-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Minimalist_Cedar_Nightstand-1.1.jpeg", }, { "dimensions": { @@ -82,7 +82,7 @@ describe(`with minimalistCedarNightstand preset`, () => { "w": 4011, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Minimalist_Cedar_Nightstand-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Minimalist_Cedar_Nightstand-1.2.jpeg", }, ], "key": undefined, @@ -237,7 +237,7 @@ describe(`with minimalistCedarNightstand preset`, () => { "width": 4011, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Minimalist_Cedar_Nightstand-1.3.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Minimalist_Cedar_Nightstand-1.3.jpeg", }, { "dimensions": { @@ -245,7 +245,7 @@ describe(`with minimalistCedarNightstand preset`, () => { "width": 4011, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Minimalist_Cedar_Nightstand-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Minimalist_Cedar_Nightstand-1.1.jpeg", }, { "dimensions": { @@ -253,7 +253,7 @@ describe(`with minimalistCedarNightstand preset`, () => { "width": 4011, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Minimalist_Cedar_Nightstand-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Minimalist_Cedar_Nightstand-1.2.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/minimalist-cedar-nightstand.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/minimalist-cedar-nightstand.ts similarity index 82% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/minimalist-cedar-nightstand.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/minimalist-cedar-nightstand.ts index e7e29855d..19d29a292 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/minimalist-cedar-nightstand.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/minimalist-cedar-nightstand.ts @@ -18,40 +18,40 @@ import * as ProductVariantDraft from '../../../../product-variant/product-varian import * as ProductDraft from '../../../product-draft'; import type { TProductDraftBuilder } from '../../../types'; -const standardTaxCategory = TaxCategoryDraft.presets.sampleDataGoodStore +const standardTaxCategory = TaxCategoryDraft.presets.sampleDataB2CLifestyle .standardTaxCategory() .build(); const minimalistCedarNightstandProductTypeDraft = - ProductTypeDraft.presets.sampleDataGoodStore + ProductTypeDraft.presets.sampleDataB2CLifestyle .furnitureAndDecor() .build(); -const tablesDraft = CategoryDraft.presets.sampleDataGoodStore +const tablesDraft = CategoryDraft.presets.sampleDataB2CLifestyle .tables() .build(); -const livingRoomFurnitureDraft = CategoryDraft.presets.sampleDataGoodStore +const livingRoomFurnitureDraft = CategoryDraft.presets.sampleDataB2CLifestyle .livingRoomFurniture() .build(); -const furnitureDraft = CategoryDraft.presets.sampleDataGoodStore +const furnitureDraft = CategoryDraft.presets.sampleDataB2CLifestyle .furniture() .build(); -const collectionsDraft = CategoryDraft.presets.sampleDataGoodStore +const collectionsDraft = CategoryDraft.presets.sampleDataB2CLifestyle .collections() .build(); -const theMinimalistDraft = CategoryDraft.presets.sampleDataGoodStore +const theMinimalistDraft = CategoryDraft.presets.sampleDataB2CLifestyle .theMinimalist() .build(); -const storageTablesDraft = CategoryDraft.presets.sampleDataGoodStore +const storageTablesDraft = CategoryDraft.presets.sampleDataB2CLifestyle .dressers() .build(); -const bedroomFurnitureDraft = CategoryDraft.presets.sampleDataGoodStore +const bedroomFurnitureDraft = CategoryDraft.presets.sampleDataB2CLifestyle .bedroomFurniture() .build(); @@ -69,15 +69,15 @@ const minimalistCedarNightstand = (): TProductDraftBuilder => .description( LocalizedStringDraft.presets .empty() - ['en-GB']( - 'The minimalist cedar nightstand is designed to provide a simple and functional surface for placing items next to a bed. The nightstand features a clean and sleek design with minimal decorative elements, in keeping with the minimalist aesthetic. The nightstand is made from natural cedar wood, which is known for its durability, resistance to decay, and attractive grain patterns. The wood is finished with a light stain or clear coating to bring out the natural beauty of the wood. Overall, a minimalist cedar nightstand is a stylish and functional addition to any bedroom. Its clean and simple design complements a variety of decor styles, and the natural beauty of the cedar wood adds warmth and texture to the space.' - ) - ['de-DE']( - 'Der minimalistische Nachttisch aus Zedernholz bietet eine einfache und funktionelle Ablagefläche für Gegenstände neben dem Bett. Der Nachttisch zeichnet sich durch ein klares und schlichtes Design mit minimalen dekorativen Elementen aus, ganz im Sinne der minimalistischen Ästhetik. Der Nachttisch ist aus natürlichem Zedernholz gefertigt, das für seine Langlebigkeit, Fäulnisbeständigkeit und attraktive Maserung bekannt ist. Das Holz ist mit einer hellen Beize oder einem Klarlack behandelt, um die natürliche Schönheit des Holzes hervorzuheben. Insgesamt ist ein minimalistischer Nachttisch aus Zedernholz eine stilvolle und funktionelle Ergänzung für jedes Schlafzimmer. Sein klares und einfaches Design passt zu einer Vielzahl von Einrichtungsstilen, und die natürliche Schönheit des Zedernholzes verleiht dem Raum Wärme und Textur.' - ) - ['en-US']( - 'The minimalist cedar nightstand is designed to provide a simple and functional surface for placing items next to a bed. The nightstand features a clean and sleek design with minimal decorative elements, in keeping with the minimalist aesthetic. The nightstand is made from natural cedar wood, which is known for its durability, resistance to decay, and attractive grain patterns. The wood is finished with a light stain or clear coating to bring out the natural beauty of the wood. Overall, a minimalist cedar nightstand is a stylish and functional addition to any bedroom. Its clean and simple design complements a variety of decor styles, and the natural beauty of the cedar wood adds warmth and texture to the space.' - ) + [ + 'en-GB' + ]('The minimalist cedar nightstand is designed to provide a simple and functional surface for placing items next to a bed. The nightstand features a clean and sleek design with minimal decorative elements, in keeping with the minimalist aesthetic. The nightstand is made from natural cedar wood, which is known for its durability, resistance to decay, and attractive grain patterns. The wood is finished with a light stain or clear coating to bring out the natural beauty of the wood. Overall, a minimalist cedar nightstand is a stylish and functional addition to any bedroom. Its clean and simple design complements a variety of decor styles, and the natural beauty of the cedar wood adds warmth and texture to the space.') + [ + 'de-DE' + ]('Der minimalistische Nachttisch aus Zedernholz bietet eine einfache und funktionelle Ablagefläche für Gegenstände neben dem Bett. Der Nachttisch zeichnet sich durch ein klares und schlichtes Design mit minimalen dekorativen Elementen aus, ganz im Sinne der minimalistischen Ästhetik. Der Nachttisch ist aus natürlichem Zedernholz gefertigt, das für seine Langlebigkeit, Fäulnisbeständigkeit und attraktive Maserung bekannt ist. Das Holz ist mit einer hellen Beize oder einem Klarlack behandelt, um die natürliche Schönheit des Holzes hervorzuheben. Insgesamt ist ein minimalistischer Nachttisch aus Zedernholz eine stilvolle und funktionelle Ergänzung für jedes Schlafzimmer. Sein klares und einfaches Design passt zu einer Vielzahl von Einrichtungsstilen, und die natürliche Schönheit des Zedernholzes verleiht dem Raum Wärme und Textur.') + [ + 'en-US' + ]('The minimalist cedar nightstand is designed to provide a simple and functional surface for placing items next to a bed. The nightstand features a clean and sleek design with minimal decorative elements, in keeping with the minimalist aesthetic. The nightstand is made from natural cedar wood, which is known for its durability, resistance to decay, and attractive grain patterns. The wood is finished with a light stain or clear coating to bring out the natural beauty of the wood. Overall, a minimalist cedar nightstand is a stylish and functional addition to any bedroom. Its clean and simple design complements a variety of decor styles, and the natural beauty of the cedar wood adds warmth and texture to the space.') ) .slug( LocalizedStringDraft.presets @@ -96,7 +96,7 @@ const minimalistCedarNightstand = (): TProductDraftBuilder => KeyReferenceDraft.presets.taxCategory().key(standardTaxCategory.key!) ) .masterVariant( - ProductVariantDraft.presets.sampleDataGoodStore.minimalistCedarNightstand01() + ProductVariantDraft.presets.sampleDataB2CLifestyle.minimalistCedarNightstand01() ) .categories([ KeyReferenceDraft.presets.category().key(tablesDraft.key!), diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/minimalist-modern-side-table.spec.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/minimalist-modern-side-table.spec.ts similarity index 98% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/minimalist-modern-side-table.spec.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/minimalist-modern-side-table.spec.ts index d40152b8a..bbbbdcfc1 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/minimalist-modern-side-table.spec.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/minimalist-modern-side-table.spec.ts @@ -84,7 +84,7 @@ describe(`with minimalistModernSideTable preset`, () => { "w": 6000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Minimalist_Modern_Side_Table-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Minimalist_Modern_Side_Table-1.1.jpeg", }, ], "key": undefined, @@ -210,7 +210,7 @@ describe(`with minimalistModernSideTable preset`, () => { "w": 5883, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Minimalist_Modern_Side_Table-2.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Minimalist_Modern_Side_Table-2.1.jpeg", }, ], "key": undefined, @@ -338,7 +338,7 @@ describe(`with minimalistModernSideTable preset`, () => { "width": 6000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Minimalist_Modern_Side_Table-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Minimalist_Modern_Side_Table-1.1.jpeg", }, ], "key": undefined, @@ -464,7 +464,7 @@ describe(`with minimalistModernSideTable preset`, () => { "width": 5883, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Minimalist_Modern_Side_Table-2.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Minimalist_Modern_Side_Table-2.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/minimalist-modern-side-table.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/minimalist-modern-side-table.ts similarity index 86% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/minimalist-modern-side-table.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/minimalist-modern-side-table.ts index cea153b63..4713edb78 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/minimalist-modern-side-table.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/minimalist-modern-side-table.ts @@ -18,36 +18,36 @@ import * as ProductVariantDraft from '../../../../product-variant/product-varian import * as ProductDraft from '../../../product-draft'; import type { TProductDraftBuilder } from '../../../types'; -const standardTaxCategory = TaxCategoryDraft.presets.sampleDataGoodStore +const standardTaxCategory = TaxCategoryDraft.presets.sampleDataB2CLifestyle .standardTaxCategory() .build(); const minimalistModernSideTableProductTypeDraft = - ProductTypeDraft.presets.sampleDataGoodStore + ProductTypeDraft.presets.sampleDataB2CLifestyle .furnitureAndDecor() .build(); -const tablesDraft = CategoryDraft.presets.sampleDataGoodStore +const tablesDraft = CategoryDraft.presets.sampleDataB2CLifestyle .tables() .build(); -const livingRoomFurnitureDraft = CategoryDraft.presets.sampleDataGoodStore +const livingRoomFurnitureDraft = CategoryDraft.presets.sampleDataB2CLifestyle .livingRoomFurniture() .build(); -const furnitureDraft = CategoryDraft.presets.sampleDataGoodStore +const furnitureDraft = CategoryDraft.presets.sampleDataB2CLifestyle .furniture() .build(); -const newArrivalsDraft = CategoryDraft.presets.sampleDataGoodStore +const newArrivalsDraft = CategoryDraft.presets.sampleDataB2CLifestyle .newArrivals() .build(); -const collectionsDraft = CategoryDraft.presets.sampleDataGoodStore +const collectionsDraft = CategoryDraft.presets.sampleDataB2CLifestyle .collections() .build(); -const theMinimalistDraft = CategoryDraft.presets.sampleDataGoodStore +const theMinimalistDraft = CategoryDraft.presets.sampleDataB2CLifestyle .theMinimalist() .build(); @@ -65,15 +65,15 @@ const minimalistModernSideTable = (): TProductDraftBuilder => .description( LocalizedStringDraft.presets .empty() - ['en-GB']( - "A minimalist side table with a round top and 4 tapered legs at a slant is a simple and stylish piece of furniture that can add a touch of contemporary elegance to any living space. The table features a round or circular top that is made of wood. The top of the table is supported by four tapered legs that are set at a slight angle, giving the table a unique and modern look. The legs are made of wood. The minimalist design of the side table emphasizes simplicity and functionality, with a clean and uncluttered look that is both stylish and practical. The table's compact size makes it an ideal choice for small living spaces or as an accent piece in a larger room. The table can be used to display decorative items such as vases, picture frames, or sculptures, or as a functional surface for drinks, snacks, or books. Its simple and unobtrusive design allows it to blend seamlessly with a variety of interior design styles, from modern and contemporary to traditional and rustic. Overall, a minimalist side table with a round top and 4 tapered legs at a slant is a stylish and versatile piece of furniture that can add a touch of sophistication to any living space. Its sleek and simple design, combined with its functional features, make it a practical and stylish choice for any home." - ) - ['de-DE']( - 'Ein minimalistischer Beistelltisch mit runder Platte und 4 schräg gestellten, konischen Beinen ist ein einfaches und stilvolles Möbelstück, das jedem Wohnraum einen Hauch zeitgenössischer Eleganz verleihen kann. Der Tisch hat eine runde oder kreisförmige Platte aus Holz. Die Tischplatte wird von vier leicht schräg gestellten, konischen Beinen getragen, die dem Tisch einen einzigartigen und modernen Look verleihen. Die Beine sind aus Holz gefertigt. Das minimalistische Design des Beistelltischs unterstreicht die Schlichtheit und Funktionalität, mit einem klaren und übersichtlichen Look, der sowohl stilvoll als auch praktisch ist. Die kompakte Größe des Tisches macht ihn zu einer idealen Wahl für kleine Wohnräume oder als Akzent in einem größeren Raum. Der Tisch kann zur Präsentation von Dekorationsgegenständen wie Vasen, Bilderrahmen oder Skulpturen oder als funktionale Ablagefläche für Getränke, Snacks oder Bücher genutzt werden. Durch sein schlichtes und unaufdringliches Design fügt er sich nahtlos in eine Vielzahl von Einrichtungsstilen ein, von modern und zeitgenössisch bis hin zu traditionell und rustikal. Insgesamt ist der minimalistische Beistelltisch mit runder Platte und 4 schräg gestellten, konischen Beinen ein stilvolles und vielseitiges Möbelstück, das jedem Wohnraum einen Hauch von Raffinesse verleihen kann. Sein schlankes und einfaches Design in Kombination mit seinen funktionalen Eigenschaften machen ihn zu einer praktischen und stilvollen Wahl für jedes Zuhause.' - ) - ['en-US']( - "A minimalist side table with a round top and 4 tapered legs at a slant is a simple and stylish piece of furniture that can add a touch of contemporary elegance to any living space. The table features a round or circular top that is made of wood. The top of the table is supported by four tapered legs that are set at a slight angle, giving the table a unique and modern look. The legs are made of wood. The minimalist design of the side table emphasizes simplicity and functionality, with a clean and uncluttered look that is both stylish and practical. The table's compact size makes it an ideal choice for small living spaces or as an accent piece in a larger room. The table can be used to display decorative items such as vases, picture frames, or sculptures, or as a functional surface for drinks, snacks, or books. Its simple and unobtrusive design allows it to blend seamlessly with a variety of interior design styles, from modern and contemporary to traditional and rustic. Overall, a minimalist side table with a round top and 4 tapered legs at a slant is a stylish and versatile piece of furniture that can add a touch of sophistication to any living space. Its sleek and simple design, combined with its functional features, make it a practical and stylish choice for any home." - ) + [ + 'en-GB' + ]("A minimalist side table with a round top and 4 tapered legs at a slant is a simple and stylish piece of furniture that can add a touch of contemporary elegance to any living space. The table features a round or circular top that is made of wood. The top of the table is supported by four tapered legs that are set at a slight angle, giving the table a unique and modern look. The legs are made of wood. The minimalist design of the side table emphasizes simplicity and functionality, with a clean and uncluttered look that is both stylish and practical. The table's compact size makes it an ideal choice for small living spaces or as an accent piece in a larger room. The table can be used to display decorative items such as vases, picture frames, or sculptures, or as a functional surface for drinks, snacks, or books. Its simple and unobtrusive design allows it to blend seamlessly with a variety of interior design styles, from modern and contemporary to traditional and rustic. Overall, a minimalist side table with a round top and 4 tapered legs at a slant is a stylish and versatile piece of furniture that can add a touch of sophistication to any living space. Its sleek and simple design, combined with its functional features, make it a practical and stylish choice for any home.") + [ + 'de-DE' + ]('Ein minimalistischer Beistelltisch mit runder Platte und 4 schräg gestellten, konischen Beinen ist ein einfaches und stilvolles Möbelstück, das jedem Wohnraum einen Hauch zeitgenössischer Eleganz verleihen kann. Der Tisch hat eine runde oder kreisförmige Platte aus Holz. Die Tischplatte wird von vier leicht schräg gestellten, konischen Beinen getragen, die dem Tisch einen einzigartigen und modernen Look verleihen. Die Beine sind aus Holz gefertigt. Das minimalistische Design des Beistelltischs unterstreicht die Schlichtheit und Funktionalität, mit einem klaren und übersichtlichen Look, der sowohl stilvoll als auch praktisch ist. Die kompakte Größe des Tisches macht ihn zu einer idealen Wahl für kleine Wohnräume oder als Akzent in einem größeren Raum. Der Tisch kann zur Präsentation von Dekorationsgegenständen wie Vasen, Bilderrahmen oder Skulpturen oder als funktionale Ablagefläche für Getränke, Snacks oder Bücher genutzt werden. Durch sein schlichtes und unaufdringliches Design fügt er sich nahtlos in eine Vielzahl von Einrichtungsstilen ein, von modern und zeitgenössisch bis hin zu traditionell und rustikal. Insgesamt ist der minimalistische Beistelltisch mit runder Platte und 4 schräg gestellten, konischen Beinen ein stilvolles und vielseitiges Möbelstück, das jedem Wohnraum einen Hauch von Raffinesse verleihen kann. Sein schlankes und einfaches Design in Kombination mit seinen funktionalen Eigenschaften machen ihn zu einer praktischen und stilvollen Wahl für jedes Zuhause.') + [ + 'en-US' + ]("A minimalist side table with a round top and 4 tapered legs at a slant is a simple and stylish piece of furniture that can add a touch of contemporary elegance to any living space. The table features a round or circular top that is made of wood. The top of the table is supported by four tapered legs that are set at a slight angle, giving the table a unique and modern look. The legs are made of wood. The minimalist design of the side table emphasizes simplicity and functionality, with a clean and uncluttered look that is both stylish and practical. The table's compact size makes it an ideal choice for small living spaces or as an accent piece in a larger room. The table can be used to display decorative items such as vases, picture frames, or sculptures, or as a functional surface for drinks, snacks, or books. Its simple and unobtrusive design allows it to blend seamlessly with a variety of interior design styles, from modern and contemporary to traditional and rustic. Overall, a minimalist side table with a round top and 4 tapered legs at a slant is a stylish and versatile piece of furniture that can add a touch of sophistication to any living space. Its sleek and simple design, combined with its functional features, make it a practical and stylish choice for any home.") ) .slug( LocalizedStringDraft.presets @@ -92,10 +92,10 @@ const minimalistModernSideTable = (): TProductDraftBuilder => KeyReferenceDraft.presets.taxCategory().key(standardTaxCategory.key!) ) .masterVariant( - ProductVariantDraft.presets.sampleDataGoodStore.minimalistModernSideTable01() + ProductVariantDraft.presets.sampleDataB2CLifestyle.minimalistModernSideTable01() ) .variants([ - ProductVariantDraft.presets.sampleDataGoodStore.minimalistModernSideTable02(), + ProductVariantDraft.presets.sampleDataB2CLifestyle.minimalistModernSideTable02(), ]) .categories([ KeyReferenceDraft.presets.category().key(tablesDraft.key!), diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/modern-black-coaster.spec.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/modern-black-coaster.spec.ts similarity index 97% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/modern-black-coaster.spec.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/modern-black-coaster.spec.ts index 968c38866..317f5dd64 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/modern-black-coaster.spec.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/modern-black-coaster.spec.ts @@ -58,7 +58,7 @@ describe(`with modernBlackCoaster preset`, () => { "w": 2912, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Black_Coaster-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Black_Coaster-1.1.jpeg", }, { "dimensions": { @@ -66,7 +66,7 @@ describe(`with modernBlackCoaster preset`, () => { "w": 2912, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Black_Coaster-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Black_Coaster-1.2.jpeg", }, ], "key": undefined, @@ -209,7 +209,7 @@ describe(`with modernBlackCoaster preset`, () => { "width": 2912, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Black_Coaster-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Black_Coaster-1.1.jpeg", }, { "dimensions": { @@ -217,7 +217,7 @@ describe(`with modernBlackCoaster preset`, () => { "width": 2912, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Black_Coaster-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Black_Coaster-1.2.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/modern-black-coaster.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/modern-black-coaster.ts similarity index 83% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/modern-black-coaster.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/modern-black-coaster.ts index cde9c9b32..f66565411 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/modern-black-coaster.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/modern-black-coaster.ts @@ -18,24 +18,24 @@ import * as ProductVariantDraft from '../../../../product-variant/product-varian import * as ProductDraft from '../../../product-draft'; import type { TProductDraftBuilder } from '../../../types'; -const standardTaxCategory = TaxCategoryDraft.presets.sampleDataGoodStore +const standardTaxCategory = TaxCategoryDraft.presets.sampleDataB2CLifestyle .standardTaxCategory() .build(); const modernBlackCoasterProductTypeDraft = - ProductTypeDraft.presets.sampleDataGoodStore + ProductTypeDraft.presets.sampleDataB2CLifestyle .furnitureAndDecor() .build(); -const barAccessoriesDraft = CategoryDraft.presets.sampleDataGoodStore +const barAccessoriesDraft = CategoryDraft.presets.sampleDataB2CLifestyle .barAccessories() .build(); -const barAndGlasswareDraft = CategoryDraft.presets.sampleDataGoodStore +const barAndGlasswareDraft = CategoryDraft.presets.sampleDataB2CLifestyle .barAndGlassware() .build(); -const kitchenDraft = CategoryDraft.presets.sampleDataGoodStore +const kitchenDraft = CategoryDraft.presets.sampleDataB2CLifestyle .kitchen() .build(); @@ -53,15 +53,15 @@ const modernBlackCoaster = (): TProductDraftBuilder => .description( LocalizedStringDraft.presets .empty() - ['en-GB']( - "A round black coaster is a small, flat disc-shaped object, which is placed under a drinking glass or cup to protect the surface of a table or other furniture from water rings or spills. The coaster is circular in shape and has a solid black color, giving it a sleek and minimalist appearance. Its surface is smooth to provide a non-slip grip for the glass or cup. The edges include a stitching ornamentation, adding to the coaster's aesthetic appeal. Overall, a round black coaster is a functional and stylish accessory that is perfect for any home or office setting." - ) - ['de-DE']( - 'Ein runder schwarzer Untersetzer ist ein kleines, flaches, scheibenförmiges Objekt, das unter ein Trinkglas oder eine Tasse gestellt wird, um die Oberfläche eines Tisches oder anderer Möbel vor Wasserringen oder Verschüttungen zu schützen. Der Untersetzer hat eine runde Form und ist einfarbig schwarz, was ihm ein schlichtes und minimalistisches Aussehen verleiht. Seine Oberfläche ist glatt, damit das Glas oder die Tasse rutschfest steht. Die Ränder sind mit einer Nahtverzierung versehen, die die Ästhetik des Untersetzers unterstreicht. Insgesamt ist ein runder schwarzer Untersetzer ein funktionelles und stilvolles Accessoire, das sich perfekt für jedes Zuhause oder Büro eignet.' - ) - ['en-US']( - "A round black coaster is a small, flat disc-shaped object, which is placed under a drinking glass or cup to protect the surface of a table or other furniture from water rings or spills. The coaster is circular in shape and has a solid black color, giving it a sleek and minimalist appearance. Its surface is smooth to provide a non-slip grip for the glass or cup. The edges include a stitching ornamentation, adding to the coaster's aesthetic appeal. Overall, a round black coaster is a functional and stylish accessory that is perfect for any home or office setting." - ) + [ + 'en-GB' + ]("A round black coaster is a small, flat disc-shaped object, which is placed under a drinking glass or cup to protect the surface of a table or other furniture from water rings or spills. The coaster is circular in shape and has a solid black color, giving it a sleek and minimalist appearance. Its surface is smooth to provide a non-slip grip for the glass or cup. The edges include a stitching ornamentation, adding to the coaster's aesthetic appeal. Overall, a round black coaster is a functional and stylish accessory that is perfect for any home or office setting.") + [ + 'de-DE' + ]('Ein runder schwarzer Untersetzer ist ein kleines, flaches, scheibenförmiges Objekt, das unter ein Trinkglas oder eine Tasse gestellt wird, um die Oberfläche eines Tisches oder anderer Möbel vor Wasserringen oder Verschüttungen zu schützen. Der Untersetzer hat eine runde Form und ist einfarbig schwarz, was ihm ein schlichtes und minimalistisches Aussehen verleiht. Seine Oberfläche ist glatt, damit das Glas oder die Tasse rutschfest steht. Die Ränder sind mit einer Nahtverzierung versehen, die die Ästhetik des Untersetzers unterstreicht. Insgesamt ist ein runder schwarzer Untersetzer ein funktionelles und stilvolles Accessoire, das sich perfekt für jedes Zuhause oder Büro eignet.') + [ + 'en-US' + ]("A round black coaster is a small, flat disc-shaped object, which is placed under a drinking glass or cup to protect the surface of a table or other furniture from water rings or spills. The coaster is circular in shape and has a solid black color, giving it a sleek and minimalist appearance. Its surface is smooth to provide a non-slip grip for the glass or cup. The edges include a stitching ornamentation, adding to the coaster's aesthetic appeal. Overall, a round black coaster is a functional and stylish accessory that is perfect for any home or office setting.") ) .slug( LocalizedStringDraft.presets @@ -80,7 +80,7 @@ const modernBlackCoaster = (): TProductDraftBuilder => KeyReferenceDraft.presets.taxCategory().key(standardTaxCategory.key!) ) .masterVariant( - ProductVariantDraft.presets.sampleDataGoodStore.modernBlackCoaster01() + ProductVariantDraft.presets.sampleDataB2CLifestyle.modernBlackCoaster01() ) .categories([ KeyReferenceDraft.presets.category().key(barAccessoriesDraft.key!), diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/modern-bookcase.spec.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/modern-bookcase.spec.ts similarity index 98% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/modern-bookcase.spec.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/modern-bookcase.spec.ts index 575a1f8b9..bc3b0be10 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/modern-bookcase.spec.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/modern-bookcase.spec.ts @@ -69,7 +69,7 @@ describe(`with modernBookcase preset`, () => { "w": 2760, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Bookcase-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Bookcase-1.1.jpeg", }, ], "key": undefined, @@ -224,7 +224,7 @@ describe(`with modernBookcase preset`, () => { "width": 2760, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Bookcase-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Bookcase-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/modern-bookcase.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/modern-bookcase.ts similarity index 80% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/modern-bookcase.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/modern-bookcase.ts index b067eccb9..95ace2765 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/modern-bookcase.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/modern-bookcase.ts @@ -18,36 +18,36 @@ import * as ProductVariantDraft from '../../../../product-variant/product-varian import * as ProductDraft from '../../../product-draft'; import type { TProductDraftBuilder } from '../../../types'; -const standardTaxCategory = TaxCategoryDraft.presets.sampleDataGoodStore +const standardTaxCategory = TaxCategoryDraft.presets.sampleDataB2CLifestyle .standardTaxCategory() .build(); const modernBookcaseProductTypeDraft = - ProductTypeDraft.presets.sampleDataGoodStore + ProductTypeDraft.presets.sampleDataB2CLifestyle .furnitureAndDecor() .build(); -const livingRoomFurnitureDraft = CategoryDraft.presets.sampleDataGoodStore +const livingRoomFurnitureDraft = CategoryDraft.presets.sampleDataB2CLifestyle .livingRoomFurniture() .build(); -const newArrivalsDraft = CategoryDraft.presets.sampleDataGoodStore +const newArrivalsDraft = CategoryDraft.presets.sampleDataB2CLifestyle .newArrivals() .build(); -const collectionsDraft = CategoryDraft.presets.sampleDataGoodStore +const collectionsDraft = CategoryDraft.presets.sampleDataB2CLifestyle .collections() .build(); -const theModernistDraft = CategoryDraft.presets.sampleDataGoodStore +const theModernistDraft = CategoryDraft.presets.sampleDataB2CLifestyle .theModernist() .build(); -const storageTablesDraft = CategoryDraft.presets.sampleDataGoodStore +const storageTablesDraft = CategoryDraft.presets.sampleDataB2CLifestyle .dressers() .build(); -const bedroomFurnitureDraft = CategoryDraft.presets.sampleDataGoodStore +const bedroomFurnitureDraft = CategoryDraft.presets.sampleDataB2CLifestyle .bedroomFurniture() .build(); @@ -65,15 +65,15 @@ const modernBookcase = (): TProductDraftBuilder => .description( LocalizedStringDraft.presets .empty() - ['en-GB']( - 'This Modern bookcase is designed with a simple and sleek look that blends well with modern decor. It has clean lines. The bookcase is made of wood and has a mahogany finish. The shelves are open and spacious, providing ample space to store and display books, decorative objects, and other items. In addition to its functional purpose, a minimalist bookcase also serves as a decorative piece of furniture. It is designed to blend seamlessly with its surroundings, without drawing too much attention to itself. As such, it is an excellent choice for those who want a stylish yet unobtrusive storage solution.' - ) - ['de-DE']( - 'Dieses moderne Bücherregal hat ein einfaches und elegantes Design, das sich gut in die moderne Einrichtung einfügt. Es hat klare Linien. Das Bücherregal ist aus Holz gefertigt und mahagonifarben lackiert. Die offenen und geräumigen Regalböden bieten reichlich Platz zum Aufbewahren und Ausstellen von Büchern, Dekorationsobjekten und anderen Gegenständen. Ein minimalistisches Bücherregal erfüllt nicht nur einen funktionalen Zweck, sondern dient auch als dekoratives Möbelstück. Es ist so konzipiert, dass es sich nahtlos in seine Umgebung einfügt, ohne zu viel Aufmerksamkeit auf sich zu ziehen. Daher ist es eine ausgezeichnete Wahl für alle, die eine stilvolle, aber unauffällige Aufbewahrungslösung suchen.' - ) - ['en-US']( - 'This Modern bookcase is designed with a simple and sleek look that blends well with modern decor. It has clean lines. The bookcase is made of wood and has a mahogany finish. The shelves are open and spacious, providing ample space to store and display books, decorative objects, and other items. In addition to its functional purpose, a minimalist bookcase also serves as a decorative piece of furniture. It is designed to blend seamlessly with its surroundings, without drawing too much attention to itself. As such, it is an excellent choice for those who want a stylish yet unobtrusive storage solution.' - ) + [ + 'en-GB' + ]('This Modern bookcase is designed with a simple and sleek look that blends well with modern decor. It has clean lines. The bookcase is made of wood and has a mahogany finish. The shelves are open and spacious, providing ample space to store and display books, decorative objects, and other items. In addition to its functional purpose, a minimalist bookcase also serves as a decorative piece of furniture. It is designed to blend seamlessly with its surroundings, without drawing too much attention to itself. As such, it is an excellent choice for those who want a stylish yet unobtrusive storage solution.') + [ + 'de-DE' + ]('Dieses moderne Bücherregal hat ein einfaches und elegantes Design, das sich gut in die moderne Einrichtung einfügt. Es hat klare Linien. Das Bücherregal ist aus Holz gefertigt und mahagonifarben lackiert. Die offenen und geräumigen Regalböden bieten reichlich Platz zum Aufbewahren und Ausstellen von Büchern, Dekorationsobjekten und anderen Gegenständen. Ein minimalistisches Bücherregal erfüllt nicht nur einen funktionalen Zweck, sondern dient auch als dekoratives Möbelstück. Es ist so konzipiert, dass es sich nahtlos in seine Umgebung einfügt, ohne zu viel Aufmerksamkeit auf sich zu ziehen. Daher ist es eine ausgezeichnete Wahl für alle, die eine stilvolle, aber unauffällige Aufbewahrungslösung suchen.') + [ + 'en-US' + ]('This Modern bookcase is designed with a simple and sleek look that blends well with modern decor. It has clean lines. The bookcase is made of wood and has a mahogany finish. The shelves are open and spacious, providing ample space to store and display books, decorative objects, and other items. In addition to its functional purpose, a minimalist bookcase also serves as a decorative piece of furniture. It is designed to blend seamlessly with its surroundings, without drawing too much attention to itself. As such, it is an excellent choice for those who want a stylish yet unobtrusive storage solution.') ) .slug( LocalizedStringDraft.presets @@ -92,7 +92,7 @@ const modernBookcase = (): TProductDraftBuilder => KeyReferenceDraft.presets.taxCategory().key(standardTaxCategory.key!) ) .masterVariant( - ProductVariantDraft.presets.sampleDataGoodStore.modernBookcase01() + ProductVariantDraft.presets.sampleDataB2CLifestyle.modernBookcase01() ) .categories([ KeyReferenceDraft.presets.category().key(livingRoomFurnitureDraft.key!), diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/modern-ceramic-plate.spec.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/modern-ceramic-plate.spec.ts similarity index 99% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/modern-ceramic-plate.spec.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/modern-ceramic-plate.spec.ts index 32114efc5..9659258d9 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/modern-ceramic-plate.spec.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/modern-ceramic-plate.spec.ts @@ -70,7 +70,7 @@ describe(`with modernCeramicPlate preset`, () => { "w": 5088, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Ceramic_Plate-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Ceramic_Plate-1.1.jpeg", }, ], "key": undefined, @@ -225,7 +225,7 @@ describe(`with modernCeramicPlate preset`, () => { "width": 5088, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Ceramic_Plate-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Ceramic_Plate-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/modern-ceramic-plate.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/modern-ceramic-plate.ts similarity index 82% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/modern-ceramic-plate.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/modern-ceramic-plate.ts index 6413ee54b..429ca2b2b 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/modern-ceramic-plate.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/modern-ceramic-plate.ts @@ -18,36 +18,36 @@ import * as ProductVariantDraft from '../../../../product-variant/product-varian import * as ProductDraft from '../../../product-draft'; import type { TProductDraftBuilder } from '../../../types'; -const standardTaxCategory = TaxCategoryDraft.presets.sampleDataGoodStore +const standardTaxCategory = TaxCategoryDraft.presets.sampleDataB2CLifestyle .standardTaxCategory() .build(); const modernCeramicPlateProductTypeDraft = - ProductTypeDraft.presets.sampleDataGoodStore + ProductTypeDraft.presets.sampleDataB2CLifestyle .furnitureAndDecor() .build(); -const platesDraft = CategoryDraft.presets.sampleDataGoodStore +const platesDraft = CategoryDraft.presets.sampleDataB2CLifestyle .plates() .build(); -const kitchenDraft = CategoryDraft.presets.sampleDataGoodStore +const kitchenDraft = CategoryDraft.presets.sampleDataB2CLifestyle .kitchen() .build(); -const servingPlattersDraft = CategoryDraft.presets.sampleDataGoodStore +const servingPlattersDraft = CategoryDraft.presets.sampleDataB2CLifestyle .servingPlatters() .build(); -const servewareDraft = CategoryDraft.presets.sampleDataGoodStore +const servewareDraft = CategoryDraft.presets.sampleDataB2CLifestyle .serveware() .build(); -const dinnerwareDraft = CategoryDraft.presets.sampleDataGoodStore +const dinnerwareDraft = CategoryDraft.presets.sampleDataB2CLifestyle .dinnerware() .build(); -const cheeseTraysDraft = CategoryDraft.presets.sampleDataGoodStore +const cheeseTraysDraft = CategoryDraft.presets.sampleDataB2CLifestyle .cheeseTrays() .build(); @@ -65,15 +65,15 @@ const modernCeramicPlate = (): TProductDraftBuilder => .description( LocalizedStringDraft.presets .empty() - ['en-GB']( - 'A ceramic dinner plate is a classic and versatile dish that is used to serve a variety of meals. The plate has a flat, circular surface with a slightly raised lip around the edges to prevent food from spilling over. Ceramic dinner plates are ideal for serving a variety of dishes, including entrees, sides, salads, and desserts. They can be used in both casual and formal settings, and are a popular choice in restaurants and homes alike. Ceramic dinner plates are durable and easy to clean, making them a practical choice for everyday use. They can be washed in a dishwasher or hand washed with soap and water. Overall, a ceramic dinner plate is a classic and functional choice for serving food. Its simplicity and durability make it a staple in many kitchens and dining rooms, and its versatility makes it suitable for a range of dining occasions.' - ) - ['de-DE']( - 'Ein Keramikteller ist ein klassischer und vielseitiger Teller, der zum Servieren einer Vielzahl von Speisen verwendet wird. Der Teller hat eine flache, runde Oberfläche mit einer leicht erhöhten Lippe an den Rändern, um ein Überschwappen der Speisen zu verhindern. Keramische Essteller eignen sich ideal zum Servieren einer Vielzahl von Gerichten, darunter Vorspeisen, Beilagen, Salate und Desserts. Sie können sowohl in zwanglosem als auch in formellem Rahmen verwendet werden und sind sowohl in Restaurants als auch in Privathaushalten eine beliebte Wahl. Keramische Essteller sind langlebig und leicht zu reinigen, was sie zu einer praktischen Wahl für den täglichen Gebrauch macht. Sie können in der Spülmaschine oder von Hand mit Wasser und Seife gereinigt werden. Insgesamt ist ein Keramikteller eine klassische und funktionelle Wahl für das Servieren von Speisen. Seine Schlichtheit und Langlebigkeit machen ihn zu einem Grundnahrungsmittel in vielen Küchen und Esszimmern, und seine Vielseitigkeit macht ihn für eine Reihe von Essanlässen geeignet.' - ) - ['en-US']( - 'A ceramic dinner plate is a classic and versatile dish that is used to serve a variety of meals. The plate has a flat, circular surface with a slightly raised lip around the edges to prevent food from spilling over. Ceramic dinner plates are ideal for serving a variety of dishes, including entrees, sides, salads, and desserts. They can be used in both casual and formal settings, and are a popular choice in restaurants and homes alike. Ceramic dinner plates are durable and easy to clean, making them a practical choice for everyday use. They can be washed in a dishwasher or hand washed with soap and water. Overall, a ceramic dinner plate is a classic and functional choice for serving food. Its simplicity and durability make it a staple in many kitchens and dining rooms, and its versatility makes it suitable for a range of dining occasions.' - ) + [ + 'en-GB' + ]('A ceramic dinner plate is a classic and versatile dish that is used to serve a variety of meals. The plate has a flat, circular surface with a slightly raised lip around the edges to prevent food from spilling over. Ceramic dinner plates are ideal for serving a variety of dishes, including entrees, sides, salads, and desserts. They can be used in both casual and formal settings, and are a popular choice in restaurants and homes alike. Ceramic dinner plates are durable and easy to clean, making them a practical choice for everyday use. They can be washed in a dishwasher or hand washed with soap and water. Overall, a ceramic dinner plate is a classic and functional choice for serving food. Its simplicity and durability make it a staple in many kitchens and dining rooms, and its versatility makes it suitable for a range of dining occasions.') + [ + 'de-DE' + ]('Ein Keramikteller ist ein klassischer und vielseitiger Teller, der zum Servieren einer Vielzahl von Speisen verwendet wird. Der Teller hat eine flache, runde Oberfläche mit einer leicht erhöhten Lippe an den Rändern, um ein Überschwappen der Speisen zu verhindern. Keramische Essteller eignen sich ideal zum Servieren einer Vielzahl von Gerichten, darunter Vorspeisen, Beilagen, Salate und Desserts. Sie können sowohl in zwanglosem als auch in formellem Rahmen verwendet werden und sind sowohl in Restaurants als auch in Privathaushalten eine beliebte Wahl. Keramische Essteller sind langlebig und leicht zu reinigen, was sie zu einer praktischen Wahl für den täglichen Gebrauch macht. Sie können in der Spülmaschine oder von Hand mit Wasser und Seife gereinigt werden. Insgesamt ist ein Keramikteller eine klassische und funktionelle Wahl für das Servieren von Speisen. Seine Schlichtheit und Langlebigkeit machen ihn zu einem Grundnahrungsmittel in vielen Küchen und Esszimmern, und seine Vielseitigkeit macht ihn für eine Reihe von Essanlässen geeignet.') + [ + 'en-US' + ]('A ceramic dinner plate is a classic and versatile dish that is used to serve a variety of meals. The plate has a flat, circular surface with a slightly raised lip around the edges to prevent food from spilling over. Ceramic dinner plates are ideal for serving a variety of dishes, including entrees, sides, salads, and desserts. They can be used in both casual and formal settings, and are a popular choice in restaurants and homes alike. Ceramic dinner plates are durable and easy to clean, making them a practical choice for everyday use. They can be washed in a dishwasher or hand washed with soap and water. Overall, a ceramic dinner plate is a classic and functional choice for serving food. Its simplicity and durability make it a staple in many kitchens and dining rooms, and its versatility makes it suitable for a range of dining occasions.') ) .slug( LocalizedStringDraft.presets @@ -92,7 +92,7 @@ const modernCeramicPlate = (): TProductDraftBuilder => KeyReferenceDraft.presets.taxCategory().key(standardTaxCategory.key!) ) .masterVariant( - ProductVariantDraft.presets.sampleDataGoodStore.modernCeramicPlate01() + ProductVariantDraft.presets.sampleDataB2CLifestyle.modernCeramicPlate01() ) .categories([ KeyReferenceDraft.presets.category().key(platesDraft.key!), diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/modern-glam-dresser.spec.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/modern-glam-dresser.spec.ts similarity index 97% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/modern-glam-dresser.spec.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/modern-glam-dresser.spec.ts index 76ccf0bb4..45ca3e645 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/modern-glam-dresser.spec.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/modern-glam-dresser.spec.ts @@ -71,7 +71,7 @@ describe(`with modernGlamDresser preset`, () => { "w": 2500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Glam_Dresser-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Glam_Dresser-1.1.jpeg", }, { "dimensions": { @@ -79,7 +79,7 @@ describe(`with modernGlamDresser preset`, () => { "w": 2500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Glam_Dresser-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Glam_Dresser-1.2.jpeg", }, { "dimensions": { @@ -87,7 +87,7 @@ describe(`with modernGlamDresser preset`, () => { "w": 5760, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Glam_Dresser-1.3.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Glam_Dresser-1.3.jpeg", }, ], "key": undefined, @@ -238,7 +238,7 @@ describe(`with modernGlamDresser preset`, () => { "width": 2500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Glam_Dresser-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Glam_Dresser-1.1.jpeg", }, { "dimensions": { @@ -246,7 +246,7 @@ describe(`with modernGlamDresser preset`, () => { "width": 2500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Glam_Dresser-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Glam_Dresser-1.2.jpeg", }, { "dimensions": { @@ -254,7 +254,7 @@ describe(`with modernGlamDresser preset`, () => { "width": 5760, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Glam_Dresser-1.3.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Glam_Dresser-1.3.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/modern-glam-dresser.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/modern-glam-dresser.ts similarity index 83% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/modern-glam-dresser.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/modern-glam-dresser.ts index 60037f07b..8ef22f6af 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/modern-glam-dresser.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/modern-glam-dresser.ts @@ -18,32 +18,32 @@ import * as ProductVariantDraft from '../../../../product-variant/product-varian import * as ProductDraft from '../../../product-draft'; import type { TProductDraftBuilder } from '../../../types'; -const standardTaxCategory = TaxCategoryDraft.presets.sampleDataGoodStore +const standardTaxCategory = TaxCategoryDraft.presets.sampleDataB2CLifestyle .standardTaxCategory() .build(); const modernGlamDresserProductTypeDraft = - ProductTypeDraft.presets.sampleDataGoodStore + ProductTypeDraft.presets.sampleDataB2CLifestyle .furnitureAndDecor() .build(); -const furnitureDraft = CategoryDraft.presets.sampleDataGoodStore +const furnitureDraft = CategoryDraft.presets.sampleDataB2CLifestyle .furniture() .build(); -const collectionsDraft = CategoryDraft.presets.sampleDataGoodStore +const collectionsDraft = CategoryDraft.presets.sampleDataB2CLifestyle .collections() .build(); -const theModernistDraft = CategoryDraft.presets.sampleDataGoodStore +const theModernistDraft = CategoryDraft.presets.sampleDataB2CLifestyle .theModernist() .build(); -const storageTablesDraft = CategoryDraft.presets.sampleDataGoodStore +const storageTablesDraft = CategoryDraft.presets.sampleDataB2CLifestyle .dressers() .build(); -const bedroomFurnitureDraft = CategoryDraft.presets.sampleDataGoodStore +const bedroomFurnitureDraft = CategoryDraft.presets.sampleDataB2CLifestyle .bedroomFurniture() .build(); @@ -61,15 +61,15 @@ const modernGlamDresser = (): TProductDraftBuilder => .description( LocalizedStringDraft.presets .empty() - ['en-GB']( - 'A modern glam dresser is a stylish and elegant piece of furniture that combines modern design with glamorous accents. It features clean lines, sleek surfaces, and metallic finishes, creating a chic and sophisticated look that adds a touch of luxury to any bedroom. The dresser is made of high-quality materials. The drawers are spacious and easy to open and close, providing ample storage space for clothing, accessories, and other items. The dresser also features glamorous metal accents handles, adding a touch of elegance and sophistication to the piece. The overall design of the dresser is sleek and minimalist, with an emphasis on clean lines and simple shapes. A modern glam dresser can be a beautiful addition to any bedroom, adding a touch of luxury and sophistication to the space. Its clean lines, metallic finishes, and glamorous accents create a modern and elegant look that can complement a variety of decor styles.' - ) - ['de-DE']( - 'Eine moderne glamouröse Kommode ist ein stilvolles und elegantes Möbelstück, das modernes Design mit glamourösen Akzenten verbindet. Sie zeichnet sich durch klare Linien, glatte Oberflächen und Metallic-Finish aus, wodurch ein schickes und anspruchsvolles Aussehen entsteht, das jedem Schlafzimmer einen Hauch von Luxus verleiht. Die Kommode ist aus hochwertigen Materialien gefertigt. Die Schubladen sind geräumig und lassen sich leicht öffnen und schließen und bieten reichlich Stauraum für Kleidung, Accessoires und andere Gegenstände. Die Kommode verfügt außerdem über glamouröse Metallgriffe, die dem Möbelstück einen Hauch von Eleganz und Raffinesse verleihen. Das Gesamtdesign der Kommode ist schlank und minimalistisch, mit einem Schwerpunkt auf klaren Linien und einfachen Formen. Eine moderne, glamouröse Kommode ist eine schöne Ergänzung für jedes Schlafzimmer und verleiht dem Raum einen Hauch von Luxus und Raffinesse. Die klaren Linien, die metallischen Oberflächen und die glamourösen Akzente sorgen für einen modernen und eleganten Look, der eine Vielzahl von Einrichtungsstilen ergänzen kann.' - ) - ['en-US']( - 'A modern glam dresser is a stylish and elegant piece of furniture that combines modern design with glamorous accents. It features clean lines, sleek surfaces, and metallic finishes, creating a chic and sophisticated look that adds a touch of luxury to any bedroom. The dresser is made of high-quality materials. The drawers are spacious and easy to open and close, providing ample storage space for clothing, accessories, and other items. The dresser also features glamorous metal accents handles, adding a touch of elegance and sophistication to the piece. The overall design of the dresser is sleek and minimalist, with an emphasis on clean lines and simple shapes. A modern glam dresser can be a beautiful addition to any bedroom, adding a touch of luxury and sophistication to the space. Its clean lines, metallic finishes, and glamorous accents create a modern and elegant look that can complement a variety of decor styles.' - ) + [ + 'en-GB' + ]('A modern glam dresser is a stylish and elegant piece of furniture that combines modern design with glamorous accents. It features clean lines, sleek surfaces, and metallic finishes, creating a chic and sophisticated look that adds a touch of luxury to any bedroom. The dresser is made of high-quality materials. The drawers are spacious and easy to open and close, providing ample storage space for clothing, accessories, and other items. The dresser also features glamorous metal accents handles, adding a touch of elegance and sophistication to the piece. The overall design of the dresser is sleek and minimalist, with an emphasis on clean lines and simple shapes. A modern glam dresser can be a beautiful addition to any bedroom, adding a touch of luxury and sophistication to the space. Its clean lines, metallic finishes, and glamorous accents create a modern and elegant look that can complement a variety of decor styles.') + [ + 'de-DE' + ]('Eine moderne glamouröse Kommode ist ein stilvolles und elegantes Möbelstück, das modernes Design mit glamourösen Akzenten verbindet. Sie zeichnet sich durch klare Linien, glatte Oberflächen und Metallic-Finish aus, wodurch ein schickes und anspruchsvolles Aussehen entsteht, das jedem Schlafzimmer einen Hauch von Luxus verleiht. Die Kommode ist aus hochwertigen Materialien gefertigt. Die Schubladen sind geräumig und lassen sich leicht öffnen und schließen und bieten reichlich Stauraum für Kleidung, Accessoires und andere Gegenstände. Die Kommode verfügt außerdem über glamouröse Metallgriffe, die dem Möbelstück einen Hauch von Eleganz und Raffinesse verleihen. Das Gesamtdesign der Kommode ist schlank und minimalistisch, mit einem Schwerpunkt auf klaren Linien und einfachen Formen. Eine moderne, glamouröse Kommode ist eine schöne Ergänzung für jedes Schlafzimmer und verleiht dem Raum einen Hauch von Luxus und Raffinesse. Die klaren Linien, die metallischen Oberflächen und die glamourösen Akzente sorgen für einen modernen und eleganten Look, der eine Vielzahl von Einrichtungsstilen ergänzen kann.') + [ + 'en-US' + ]('A modern glam dresser is a stylish and elegant piece of furniture that combines modern design with glamorous accents. It features clean lines, sleek surfaces, and metallic finishes, creating a chic and sophisticated look that adds a touch of luxury to any bedroom. The dresser is made of high-quality materials. The drawers are spacious and easy to open and close, providing ample storage space for clothing, accessories, and other items. The dresser also features glamorous metal accents handles, adding a touch of elegance and sophistication to the piece. The overall design of the dresser is sleek and minimalist, with an emphasis on clean lines and simple shapes. A modern glam dresser can be a beautiful addition to any bedroom, adding a touch of luxury and sophistication to the space. Its clean lines, metallic finishes, and glamorous accents create a modern and elegant look that can complement a variety of decor styles.') ) .slug( LocalizedStringDraft.presets @@ -88,7 +88,7 @@ const modernGlamDresser = (): TProductDraftBuilder => KeyReferenceDraft.presets.taxCategory().key(standardTaxCategory.key!) ) .masterVariant( - ProductVariantDraft.presets.sampleDataGoodStore.modernGlamDresser01() + ProductVariantDraft.presets.sampleDataB2CLifestyle.modernGlamDresser01() ) .categories([ KeyReferenceDraft.presets.category().key(furnitureDraft.key!), diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/modern-gold-coffee-table.spec.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/modern-gold-coffee-table.spec.ts similarity index 97% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/modern-gold-coffee-table.spec.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/modern-gold-coffee-table.spec.ts index c63f38658..b9054d885 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/modern-gold-coffee-table.spec.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/modern-gold-coffee-table.spec.ts @@ -89,7 +89,7 @@ describe(`with modernGoldCoffeeTable preset`, () => { "w": 2500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Gold_Coffee_Table-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Gold_Coffee_Table-1.2.jpeg", }, { "dimensions": { @@ -97,7 +97,7 @@ describe(`with modernGoldCoffeeTable preset`, () => { "w": 2500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Gold_Coffee_Table-1.3.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Gold_Coffee_Table-1.3.jpeg", }, { "dimensions": { @@ -105,7 +105,7 @@ describe(`with modernGoldCoffeeTable preset`, () => { "w": 2500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Gold_Coffee_Table-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Gold_Coffee_Table-1.1.jpeg", }, { "dimensions": { @@ -113,7 +113,7 @@ describe(`with modernGoldCoffeeTable preset`, () => { "w": 2500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Gold_Coffee_Table-1.4.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Gold_Coffee_Table-1.4.jpeg", }, ], "key": undefined, @@ -268,7 +268,7 @@ describe(`with modernGoldCoffeeTable preset`, () => { "width": 2500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Gold_Coffee_Table-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Gold_Coffee_Table-1.2.jpeg", }, { "dimensions": { @@ -276,7 +276,7 @@ describe(`with modernGoldCoffeeTable preset`, () => { "width": 2500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Gold_Coffee_Table-1.3.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Gold_Coffee_Table-1.3.jpeg", }, { "dimensions": { @@ -284,7 +284,7 @@ describe(`with modernGoldCoffeeTable preset`, () => { "width": 2500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Gold_Coffee_Table-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Gold_Coffee_Table-1.1.jpeg", }, { "dimensions": { @@ -292,7 +292,7 @@ describe(`with modernGoldCoffeeTable preset`, () => { "width": 2500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Gold_Coffee_Table-1.4.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Gold_Coffee_Table-1.4.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/modern-gold-coffee-table.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/modern-gold-coffee-table.ts similarity index 88% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/modern-gold-coffee-table.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/modern-gold-coffee-table.ts index c152b6daf..5affdcfc7 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/modern-gold-coffee-table.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/modern-gold-coffee-table.ts @@ -18,32 +18,32 @@ import * as ProductVariantDraft from '../../../../product-variant/product-varian import * as ProductDraft from '../../../product-draft'; import type { TProductDraftBuilder } from '../../../types'; -const standardTaxCategory = TaxCategoryDraft.presets.sampleDataGoodStore +const standardTaxCategory = TaxCategoryDraft.presets.sampleDataB2CLifestyle .standardTaxCategory() .build(); const modernGoldCoffeeTableProductTypeDraft = - ProductTypeDraft.presets.sampleDataGoodStore + ProductTypeDraft.presets.sampleDataB2CLifestyle .furnitureAndDecor() .build(); -const tablesDraft = CategoryDraft.presets.sampleDataGoodStore +const tablesDraft = CategoryDraft.presets.sampleDataB2CLifestyle .tables() .build(); -const livingRoomFurnitureDraft = CategoryDraft.presets.sampleDataGoodStore +const livingRoomFurnitureDraft = CategoryDraft.presets.sampleDataB2CLifestyle .livingRoomFurniture() .build(); -const furnitureDraft = CategoryDraft.presets.sampleDataGoodStore +const furnitureDraft = CategoryDraft.presets.sampleDataB2CLifestyle .furniture() .build(); -const collectionsDraft = CategoryDraft.presets.sampleDataGoodStore +const collectionsDraft = CategoryDraft.presets.sampleDataB2CLifestyle .collections() .build(); -const theModernistDraft = CategoryDraft.presets.sampleDataGoodStore +const theModernistDraft = CategoryDraft.presets.sampleDataB2CLifestyle .theModernist() .build(); @@ -61,15 +61,15 @@ const modernGoldCoffeeTable = (): TProductDraftBuilder => .description( LocalizedStringDraft.presets .empty() - ['en-GB']( - 'A modern gold coffee table with 2 tiers of quartz table tops is a stunning and stylish piece of furniture that can elevate the look of any living room or sitting area. The table is characterized by a sleek and streamlined design, with clean lines and minimalistic details. The coffee table features a sturdy metal frame that is finished in a luxurious gold color, providing a touch of sophistication and glamour. The frame is designed to support two tiers of table tops, both made of high-quality quartz material. The quartz table tops are cut in a rectangular shape, with a smooth and glossy surface that adds a touch of elegance to the table. The two tiers of table tops provide ample storage and display space, allowing you to showcase decorative items such as books, candles, or vases, while still providing plenty of room for drinks and snacks. The two-tier design also adds visual interest and dimension to the table, creating a unique and eye-catching look. The modern gold coffee table is a versatile piece of furniture that can complement a range of interior design styles, from contemporary and minimalist to more traditional and eclectic. It can be paired with a variety of seating options, from sofas and chairs to benches and stools, to create a cohesive and stylish living space. Overall, a modern gold coffee table is a chic and elegant piece of furniture that can add a touch of luxury and sophistication to any living room or sitting area. Its sleek design, high-quality materials, and practical features make it a functional and stylish choice for any home.' - ) - ['de-DE']( - 'Der moderne goldene Couchtisch mit 2 Ebenen aus Quarzplatten ist ein atemberaubendes und stilvolles Möbelstück, das jedes Wohnzimmer oder jeden Sitzbereich aufwerten kann. Der Tisch zeichnet sich durch ein schlankes und stromlinienförmiges Design aus, mit klaren Linien und minimalistischen Details. Der Couchtisch verfügt über ein robustes Metallgestell, das in einer luxuriösen Goldfarbe ausgeführt ist und einen Hauch von Raffinesse und Glamour vermittelt. Das Gestell ist so konzipiert, dass es zwei Ebenen von Tischplatten trägt, die beide aus hochwertigem Quarzmaterial bestehen. Die Quarz-Tischplatten sind rechteckig geschnitten und haben eine glatte und glänzende Oberfläche, die dem Tisch einen Hauch von Eleganz verleiht. Die zwei Ebenen der Tischplatten bieten reichlich Ablage- und Ausstellungsfläche, so dass Sie dekorative Gegenstände wie Bücher, Kerzen oder Vasen präsentieren können, während Sie gleichzeitig genügend Platz für Getränke und Snacks haben. Das zweistufige Design verleiht dem Tisch auch visuelles Interesse und Dimensionen und schafft einen einzigartigen und auffälligen Look. Der moderne Couchtisch in Gold ist ein vielseitiges Möbelstück, das zu einer Reihe von Einrichtungsstilen passt, von modern und minimalistisch bis hin zu traditionell und eklektisch. Er kann mit einer Vielzahl von Sitzgelegenheiten kombiniert werden, von Sofas und Stühlen bis hin zu Bänken und Hockern, um einen zusammenhängenden und stilvollen Wohnbereich zu schaffen. Insgesamt ist ein moderner goldener Couchtisch ein schickes und elegantes Möbelstück, das jedem Wohnzimmer oder jeder Sitzecke einen Hauch von Luxus und Raffinesse verleihen kann. Sein schlankes Design, die hochwertigen Materialien und die praktischen Funktionen machen ihn zu einer funktionalen und stilvollen Wahl für jedes Zuhause.' - ) - ['en-US']( - 'A modern gold coffee table with 2 tiers of quartz table tops is a stunning and stylish piece of furniture that can elevate the look of any living room or sitting area. The table is characterized by a sleek and streamlined design, with clean lines and minimalistic details. The coffee table features a sturdy metal frame that is finished in a luxurious gold color, providing a touch of sophistication and glamour. The frame is designed to support two tiers of table tops, both made of high-quality quartz material. The quartz table tops are cut in a rectangular shape, with a smooth and glossy surface that adds a touch of elegance to the table. The two tiers of table tops provide ample storage and display space, allowing you to showcase decorative items such as books, candles, or vases, while still providing plenty of room for drinks and snacks. The two-tier design also adds visual interest and dimension to the table, creating a unique and eye-catching look. The modern gold coffee table is a versatile piece of furniture that can complement a range of interior design styles, from contemporary and minimalist to more traditional and eclectic. It can be paired with a variety of seating options, from sofas and chairs to benches and stools, to create a cohesive and stylish living space. Overall, a modern gold coffee table is a chic and elegant piece of furniture that can add a touch of luxury and sophistication to any living room or sitting area. Its sleek design, high-quality materials, and practical features make it a functional and stylish choice for any home.' - ) + [ + 'en-GB' + ]('A modern gold coffee table with 2 tiers of quartz table tops is a stunning and stylish piece of furniture that can elevate the look of any living room or sitting area. The table is characterized by a sleek and streamlined design, with clean lines and minimalistic details. The coffee table features a sturdy metal frame that is finished in a luxurious gold color, providing a touch of sophistication and glamour. The frame is designed to support two tiers of table tops, both made of high-quality quartz material. The quartz table tops are cut in a rectangular shape, with a smooth and glossy surface that adds a touch of elegance to the table. The two tiers of table tops provide ample storage and display space, allowing you to showcase decorative items such as books, candles, or vases, while still providing plenty of room for drinks and snacks. The two-tier design also adds visual interest and dimension to the table, creating a unique and eye-catching look. The modern gold coffee table is a versatile piece of furniture that can complement a range of interior design styles, from contemporary and minimalist to more traditional and eclectic. It can be paired with a variety of seating options, from sofas and chairs to benches and stools, to create a cohesive and stylish living space. Overall, a modern gold coffee table is a chic and elegant piece of furniture that can add a touch of luxury and sophistication to any living room or sitting area. Its sleek design, high-quality materials, and practical features make it a functional and stylish choice for any home.') + [ + 'de-DE' + ]('Der moderne goldene Couchtisch mit 2 Ebenen aus Quarzplatten ist ein atemberaubendes und stilvolles Möbelstück, das jedes Wohnzimmer oder jeden Sitzbereich aufwerten kann. Der Tisch zeichnet sich durch ein schlankes und stromlinienförmiges Design aus, mit klaren Linien und minimalistischen Details. Der Couchtisch verfügt über ein robustes Metallgestell, das in einer luxuriösen Goldfarbe ausgeführt ist und einen Hauch von Raffinesse und Glamour vermittelt. Das Gestell ist so konzipiert, dass es zwei Ebenen von Tischplatten trägt, die beide aus hochwertigem Quarzmaterial bestehen. Die Quarz-Tischplatten sind rechteckig geschnitten und haben eine glatte und glänzende Oberfläche, die dem Tisch einen Hauch von Eleganz verleiht. Die zwei Ebenen der Tischplatten bieten reichlich Ablage- und Ausstellungsfläche, so dass Sie dekorative Gegenstände wie Bücher, Kerzen oder Vasen präsentieren können, während Sie gleichzeitig genügend Platz für Getränke und Snacks haben. Das zweistufige Design verleiht dem Tisch auch visuelles Interesse und Dimensionen und schafft einen einzigartigen und auffälligen Look. Der moderne Couchtisch in Gold ist ein vielseitiges Möbelstück, das zu einer Reihe von Einrichtungsstilen passt, von modern und minimalistisch bis hin zu traditionell und eklektisch. Er kann mit einer Vielzahl von Sitzgelegenheiten kombiniert werden, von Sofas und Stühlen bis hin zu Bänken und Hockern, um einen zusammenhängenden und stilvollen Wohnbereich zu schaffen. Insgesamt ist ein moderner goldener Couchtisch ein schickes und elegantes Möbelstück, das jedem Wohnzimmer oder jeder Sitzecke einen Hauch von Luxus und Raffinesse verleihen kann. Sein schlankes Design, die hochwertigen Materialien und die praktischen Funktionen machen ihn zu einer funktionalen und stilvollen Wahl für jedes Zuhause.') + [ + 'en-US' + ]('A modern gold coffee table with 2 tiers of quartz table tops is a stunning and stylish piece of furniture that can elevate the look of any living room or sitting area. The table is characterized by a sleek and streamlined design, with clean lines and minimalistic details. The coffee table features a sturdy metal frame that is finished in a luxurious gold color, providing a touch of sophistication and glamour. The frame is designed to support two tiers of table tops, both made of high-quality quartz material. The quartz table tops are cut in a rectangular shape, with a smooth and glossy surface that adds a touch of elegance to the table. The two tiers of table tops provide ample storage and display space, allowing you to showcase decorative items such as books, candles, or vases, while still providing plenty of room for drinks and snacks. The two-tier design also adds visual interest and dimension to the table, creating a unique and eye-catching look. The modern gold coffee table is a versatile piece of furniture that can complement a range of interior design styles, from contemporary and minimalist to more traditional and eclectic. It can be paired with a variety of seating options, from sofas and chairs to benches and stools, to create a cohesive and stylish living space. Overall, a modern gold coffee table is a chic and elegant piece of furniture that can add a touch of luxury and sophistication to any living room or sitting area. Its sleek design, high-quality materials, and practical features make it a functional and stylish choice for any home.') ) .slug( LocalizedStringDraft.presets @@ -88,7 +88,7 @@ const modernGoldCoffeeTable = (): TProductDraftBuilder => KeyReferenceDraft.presets.taxCategory().key(standardTaxCategory.key!) ) .masterVariant( - ProductVariantDraft.presets.sampleDataGoodStore.modernGoldCoffeeTable01() + ProductVariantDraft.presets.sampleDataB2CLifestyle.modernGoldCoffeeTable01() ) .categories([ KeyReferenceDraft.presets.category().key(tablesDraft.key!), diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/modern-landscape-painting.spec.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/modern-landscape-painting.spec.ts similarity index 99% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/modern-landscape-painting.spec.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/modern-landscape-painting.spec.ts index 4fa3b1c7e..a6578944e 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/modern-landscape-painting.spec.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/modern-landscape-painting.spec.ts @@ -64,7 +64,7 @@ describe(`with modernLandscapePainting preset`, () => { "w": 5313, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Landscape_Painting-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Landscape_Painting-1.1.jpeg", }, ], "key": undefined, @@ -207,7 +207,7 @@ describe(`with modernLandscapePainting preset`, () => { "width": 5313, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Landscape_Painting-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Landscape_Painting-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/modern-landscape-painting.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/modern-landscape-painting.ts similarity index 88% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/modern-landscape-painting.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/modern-landscape-painting.ts index c9000d233..81bfbda06 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/modern-landscape-painting.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/modern-landscape-painting.ts @@ -18,24 +18,24 @@ import * as ProductVariantDraft from '../../../../product-variant/product-varian import * as ProductDraft from '../../../product-draft'; import type { TProductDraftBuilder } from '../../../types'; -const standardTaxCategory = TaxCategoryDraft.presets.sampleDataGoodStore +const standardTaxCategory = TaxCategoryDraft.presets.sampleDataB2CLifestyle .standardTaxCategory() .build(); const modernLandscapePaintingProductTypeDraft = - ProductTypeDraft.presets.sampleDataGoodStore + ProductTypeDraft.presets.sampleDataB2CLifestyle .furnitureAndDecor() .build(); -const homeAccentsDraft = CategoryDraft.presets.sampleDataGoodStore +const homeAccentsDraft = CategoryDraft.presets.sampleDataB2CLifestyle .homeAccents() .build(); -const roomDecorDraft = CategoryDraft.presets.sampleDataGoodStore +const roomDecorDraft = CategoryDraft.presets.sampleDataB2CLifestyle .roomDecor() .build(); -const homeDecorDraft = CategoryDraft.presets.sampleDataGoodStore +const homeDecorDraft = CategoryDraft.presets.sampleDataB2CLifestyle .homeDecor() .build(); @@ -53,15 +53,15 @@ const modernLandscapePainting = (): TProductDraftBuilder => .description( LocalizedStringDraft.presets .empty() - ['en-GB']( - 'A modern cubist landscape painting is a striking and dynamic work of art that combines elements of traditional landscape painting with the fractured and abstract style of cubism. The painting is created with oil paints on canvas, and features a range of bold colors and geometric shapes. The composition of the painting is a landscape scene, depicting a natural setting. However, the scene is fragmented and abstracted, with overlapping planes of color and geometric shapes that distort and fracture the landscape. The use of color in the painting is vibrant and bold, with strong contrasts between light and dark areas. The artist may have used a variety of techniques, such as layering, blending, or stippling, to create a dynamic and visually interesting piece. The modern and abstract nature of the painting makes it a perfect addition to contemporary interior design schemes. Overall, a modern cubist landscape painting is a bold and innovative work of art that can add a sense of energy and dynamism to any space. Its fragmented and abstracted composition invites viewers to interpret and connect with the painting in their own way, while the use of bold colors and geometric shapes creates a sense of drama and excitement.' - ) - ['de-DE']( - 'Ein modernes kubistisches Landschaftsgemälde ist ein eindrucksvolles und dynamisches Kunstwerk, das Elemente der traditionellen Landschaftsmalerei mit dem gebrochenen und abstrakten Stil des Kubismus verbindet. Das Gemälde wurde mit Ölfarben auf Leinwand gemalt und weist eine Reihe kräftiger Farben und geometrischer Formen auf. Die Komposition des Gemäldes ist eine Landschaftsszene, die eine natürliche Umgebung darstellt. Die Szene ist jedoch fragmentiert und abstrahiert, mit sich überlagernden Farbflächen und geometrischen Formen, die die Landschaft verzerren und zerbrechen. Die Farbgebung des Gemäldes ist lebhaft und kräftig, mit starken Kontrasten zwischen hellen und dunklen Bereichen. Der Künstler hat möglicherweise eine Reihe von Techniken angewandt, wie z. B. Schichtung, Überblendung oder Tupfen, um ein dynamisches und visuell interessantes Werk zu schaffen. Der moderne und abstrakte Charakter des Gemäldes macht es zu einer perfekten Ergänzung für zeitgenössische Innenarchitekturen. Insgesamt ist ein modernes kubistisches Landschaftsgemälde ein kühnes und innovatives Kunstwerk, das jedem Raum ein Gefühl von Energie und Dynamik verleihen kann. Die fragmentierte und abstrahierte Komposition lädt den Betrachter dazu ein, das Gemälde auf seine eigene Weise zu interpretieren und mit ihm in Verbindung zu treten, während die Verwendung kräftiger Farben und geometrischer Formen ein Gefühl von Dramatik und Aufregung erzeugt.' - ) - ['en-US']( - 'A modern cubist landscape painting is a striking and dynamic work of art that combines elements of traditional landscape painting with the fractured and abstract style of cubism. The painting is created with oil paints on canvas, and features a range of bold colors and geometric shapes. The composition of the painting is a landscape scene, depicting a natural setting. However, the scene is fragmented and abstracted, with overlapping planes of color and geometric shapes that distort and fracture the landscape. The use of color in the painting is vibrant and bold, with strong contrasts between light and dark areas. The artist may have used a variety of techniques, such as layering, blending, or stippling, to create a dynamic and visually interesting piece. The modern and abstract nature of the painting makes it a perfect addition to contemporary interior design schemes. Overall, a modern cubist landscape painting is a bold and innovative work of art that can add a sense of energy and dynamism to any space. Its fragmented and abstracted composition invites viewers to interpret and connect with the painting in their own way, while the use of bold colors and geometric shapes creates a sense of drama and excitement.' - ) + [ + 'en-GB' + ]('A modern cubist landscape painting is a striking and dynamic work of art that combines elements of traditional landscape painting with the fractured and abstract style of cubism. The painting is created with oil paints on canvas, and features a range of bold colors and geometric shapes. The composition of the painting is a landscape scene, depicting a natural setting. However, the scene is fragmented and abstracted, with overlapping planes of color and geometric shapes that distort and fracture the landscape. The use of color in the painting is vibrant and bold, with strong contrasts between light and dark areas. The artist may have used a variety of techniques, such as layering, blending, or stippling, to create a dynamic and visually interesting piece. The modern and abstract nature of the painting makes it a perfect addition to contemporary interior design schemes. Overall, a modern cubist landscape painting is a bold and innovative work of art that can add a sense of energy and dynamism to any space. Its fragmented and abstracted composition invites viewers to interpret and connect with the painting in their own way, while the use of bold colors and geometric shapes creates a sense of drama and excitement.') + [ + 'de-DE' + ]('Ein modernes kubistisches Landschaftsgemälde ist ein eindrucksvolles und dynamisches Kunstwerk, das Elemente der traditionellen Landschaftsmalerei mit dem gebrochenen und abstrakten Stil des Kubismus verbindet. Das Gemälde wurde mit Ölfarben auf Leinwand gemalt und weist eine Reihe kräftiger Farben und geometrischer Formen auf. Die Komposition des Gemäldes ist eine Landschaftsszene, die eine natürliche Umgebung darstellt. Die Szene ist jedoch fragmentiert und abstrahiert, mit sich überlagernden Farbflächen und geometrischen Formen, die die Landschaft verzerren und zerbrechen. Die Farbgebung des Gemäldes ist lebhaft und kräftig, mit starken Kontrasten zwischen hellen und dunklen Bereichen. Der Künstler hat möglicherweise eine Reihe von Techniken angewandt, wie z. B. Schichtung, Überblendung oder Tupfen, um ein dynamisches und visuell interessantes Werk zu schaffen. Der moderne und abstrakte Charakter des Gemäldes macht es zu einer perfekten Ergänzung für zeitgenössische Innenarchitekturen. Insgesamt ist ein modernes kubistisches Landschaftsgemälde ein kühnes und innovatives Kunstwerk, das jedem Raum ein Gefühl von Energie und Dynamik verleihen kann. Die fragmentierte und abstrahierte Komposition lädt den Betrachter dazu ein, das Gemälde auf seine eigene Weise zu interpretieren und mit ihm in Verbindung zu treten, während die Verwendung kräftiger Farben und geometrischer Formen ein Gefühl von Dramatik und Aufregung erzeugt.') + [ + 'en-US' + ]('A modern cubist landscape painting is a striking and dynamic work of art that combines elements of traditional landscape painting with the fractured and abstract style of cubism. The painting is created with oil paints on canvas, and features a range of bold colors and geometric shapes. The composition of the painting is a landscape scene, depicting a natural setting. However, the scene is fragmented and abstracted, with overlapping planes of color and geometric shapes that distort and fracture the landscape. The use of color in the painting is vibrant and bold, with strong contrasts between light and dark areas. The artist may have used a variety of techniques, such as layering, blending, or stippling, to create a dynamic and visually interesting piece. The modern and abstract nature of the painting makes it a perfect addition to contemporary interior design schemes. Overall, a modern cubist landscape painting is a bold and innovative work of art that can add a sense of energy and dynamism to any space. Its fragmented and abstracted composition invites viewers to interpret and connect with the painting in their own way, while the use of bold colors and geometric shapes creates a sense of drama and excitement.') ) .slug( LocalizedStringDraft.presets @@ -80,7 +80,7 @@ const modernLandscapePainting = (): TProductDraftBuilder => KeyReferenceDraft.presets.taxCategory().key(standardTaxCategory.key!) ) .masterVariant( - ProductVariantDraft.presets.sampleDataGoodStore.modernLandscapePainting01() + ProductVariantDraft.presets.sampleDataB2CLifestyle.modernLandscapePainting01() ) .categories([ KeyReferenceDraft.presets.category().key(homeAccentsDraft.key!), diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/modern-three-seater-sofa.spec.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/modern-three-seater-sofa.spec.ts similarity index 97% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/modern-three-seater-sofa.spec.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/modern-three-seater-sofa.spec.ts index 213760c49..5f6ecf03f 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/modern-three-seater-sofa.spec.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/modern-three-seater-sofa.spec.ts @@ -80,7 +80,7 @@ describe(`with modernThreeSeaterSofa preset`, () => { "w": 2500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Three_Seater_Sofa-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Three_Seater_Sofa-1.2.jpeg", }, { "dimensions": { @@ -88,7 +88,7 @@ describe(`with modernThreeSeaterSofa preset`, () => { "w": 2500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Three_Seater_Sofa-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Three_Seater_Sofa-1.1.jpeg", }, { "dimensions": { @@ -96,7 +96,7 @@ describe(`with modernThreeSeaterSofa preset`, () => { "w": 2500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Three_Seater_Sofa-1.4.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Three_Seater_Sofa-1.4.jpeg", }, { "dimensions": { @@ -104,7 +104,7 @@ describe(`with modernThreeSeaterSofa preset`, () => { "w": 5760, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Three_Seater_Sofa-1.3.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Three_Seater_Sofa-1.3.jpeg", }, ], "key": undefined, @@ -259,7 +259,7 @@ describe(`with modernThreeSeaterSofa preset`, () => { "width": 2500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Three_Seater_Sofa-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Three_Seater_Sofa-1.2.jpeg", }, { "dimensions": { @@ -267,7 +267,7 @@ describe(`with modernThreeSeaterSofa preset`, () => { "width": 2500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Three_Seater_Sofa-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Three_Seater_Sofa-1.1.jpeg", }, { "dimensions": { @@ -275,7 +275,7 @@ describe(`with modernThreeSeaterSofa preset`, () => { "width": 2500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Three_Seater_Sofa-1.4.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Three_Seater_Sofa-1.4.jpeg", }, { "dimensions": { @@ -283,7 +283,7 @@ describe(`with modernThreeSeaterSofa preset`, () => { "width": 5760, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Three_Seater_Sofa-1.3.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Three_Seater_Sofa-1.3.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/modern-three-seater-sofa.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/modern-three-seater-sofa.ts similarity index 89% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/modern-three-seater-sofa.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/modern-three-seater-sofa.ts index 681edb252..b1920c31f 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/modern-three-seater-sofa.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/modern-three-seater-sofa.ts @@ -18,32 +18,32 @@ import * as ProductVariantDraft from '../../../../product-variant/product-varian import * as ProductDraft from '../../../product-draft'; import type { TProductDraftBuilder } from '../../../types'; -const standardTaxCategory = TaxCategoryDraft.presets.sampleDataGoodStore +const standardTaxCategory = TaxCategoryDraft.presets.sampleDataB2CLifestyle .standardTaxCategory() .build(); const modernThreeSeaterSofaProductTypeDraft = - ProductTypeDraft.presets.sampleDataGoodStore + ProductTypeDraft.presets.sampleDataB2CLifestyle .furnitureAndDecor() .build(); -const livingRoomFurnitureDraft = CategoryDraft.presets.sampleDataGoodStore +const livingRoomFurnitureDraft = CategoryDraft.presets.sampleDataB2CLifestyle .livingRoomFurniture() .build(); -const sofasDraft = CategoryDraft.presets.sampleDataGoodStore +const sofasDraft = CategoryDraft.presets.sampleDataB2CLifestyle .sofas() .build(); -const furnitureDraft = CategoryDraft.presets.sampleDataGoodStore +const furnitureDraft = CategoryDraft.presets.sampleDataB2CLifestyle .furniture() .build(); -const collectionsDraft = CategoryDraft.presets.sampleDataGoodStore +const collectionsDraft = CategoryDraft.presets.sampleDataB2CLifestyle .collections() .build(); -const theModernistDraft = CategoryDraft.presets.sampleDataGoodStore +const theModernistDraft = CategoryDraft.presets.sampleDataB2CLifestyle .theModernist() .build(); @@ -61,15 +61,15 @@ const modernThreeSeaterSofa = (): TProductDraftBuilder => .description( LocalizedStringDraft.presets .empty() - ['en-GB']( - "A three seater sofa in modern style with bolster cushions is a sleek and stylish piece of furniture that can add a touch of contemporary sophistication to any living space. The sofa features a wooden frame that is covered in soft and durable upholstery. The sofa's design is characterized by clean lines and simple shapes, with a low profile that creates a modern and minimalist look. The backrest and seat cushions are attached to the frame, with a seamless and streamlined appearance that enhances the sofa's sleek aesthetic. The sofa is often equipped with bolster cushions, which are long, cylindrical cushions that can be used as armrests or to support the lower back while seated. The bolster cushions are covered in the same upholstery fabric as the rest of the sofa, creating a cohesive and coordinated look. The four legs of the sofa are made of wood, with a simple and unadorned design that complements the sofa's modern aesthetic. The three-seater size of the sofa provides ample seating space for three people, making it an ideal choice for a small to medium-sized living room or family room. The sofa can be paired with a range of accent chairs, coffee tables, and other furniture pieces to create a cohesive and stylish living space. Overall, a three seater sofa in modern style is a sleek and sophisticated piece of furniture that can add a touch of contemporary style to any living space. Its clean lines, simple shapes, and minimalistic design make it a versatile and stylish choice for any modern home." - ) - ['de-DE']( - 'Das Dreisitzer-Sofa im modernen Stil mit Nackenkissen ist ein elegantes und stilvolles Möbelstück, das jedem Wohnraum einen Hauch von zeitgenössischer Raffinesse verleihen kann. Das Sofa besteht aus einem Holzrahmen, der mit einer weichen und strapazierfähigen Polsterung überzogen ist. Das Design des Sofas zeichnet sich durch klare Linien und einfache Formen aus, mit einem niedrigen Profil, das einen modernen und minimalistischen Look erzeugt. Die Rückenlehne und die Sitzkissen sind mit dem Rahmen verbunden, so dass ein nahtloses und stromlinienförmiges Erscheinungsbild entsteht, das die schlichte Ästhetik des Sofas unterstreicht. Das Sofa ist häufig mit Nackenkissen ausgestattet. Das sind lange, zylindrische Kissen, die als Armlehnen oder zur Unterstützung des unteren Rückens beim Sitzen verwendet werden können. Die Nackenkissen sind mit dem gleichen Bezugsstoff wie der Rest des Sofas bezogen, wodurch ein einheitliches und abgestimmtes Aussehen entsteht. Die vier Beine des Sofas sind aus Holz und haben ein einfaches und schnörkelloses Design, das die moderne Ästhetik des Sofas ergänzt. Die Größe des Sofas als Dreisitzer bietet ausreichend Platz für drei Personen und ist damit die ideale Wahl für ein kleines bis mittelgroßes Wohnzimmer oder ein Familienzimmer. Das Sofa kann mit einer Reihe von Akzentstühlen, Couchtischen und anderen Möbelstücken kombiniert werden, um einen zusammenhängenden und stilvollen Wohnraum zu schaffen. Insgesamt ist ein Dreisitzer-Sofa im modernen Stil ein elegantes und anspruchsvolles Möbelstück, das jedem Wohnraum einen Hauch von zeitgenössischem Stil verleihen kann. Seine klaren Linien, einfachen Formen und sein minimalistisches Design machen es zu einer vielseitigen und stilvollen Wahl für jedes moderne Zuhause.' - ) - ['en-US']( - "A three seater sofa in modern style with bolster cushions is a sleek and stylish piece of furniture that can add a touch of contemporary sophistication to any living space. The sofa features a wooden frame that is covered in soft and durable upholstery. The sofa's design is characterized by clean lines and simple shapes, with a low profile that creates a modern and minimalist look. The backrest and seat cushions are attached to the frame, with a seamless and streamlined appearance that enhances the sofa's sleek aesthetic. The sofa is often equipped with bolster cushions, which are long, cylindrical cushions that can be used as armrests or to support the lower back while seated. The bolster cushions are covered in the same upholstery fabric as the rest of the sofa, creating a cohesive and coordinated look. The four legs of the sofa are made of wood, with a simple and unadorned design that complements the sofa's modern aesthetic. The three-seater size of the sofa provides ample seating space for three people, making it an ideal choice for a small to medium-sized living room or family room. The sofa can be paired with a range of accent chairs, coffee tables, and other furniture pieces to create a cohesive and stylish living space. Overall, a three seater sofa in modern style is a sleek and sophisticated piece of furniture that can add a touch of contemporary style to any living space. Its clean lines, simple shapes, and minimalistic design make it a versatile and stylish choice for any modern home." - ) + [ + 'en-GB' + ]("A three seater sofa in modern style with bolster cushions is a sleek and stylish piece of furniture that can add a touch of contemporary sophistication to any living space. The sofa features a wooden frame that is covered in soft and durable upholstery. The sofa's design is characterized by clean lines and simple shapes, with a low profile that creates a modern and minimalist look. The backrest and seat cushions are attached to the frame, with a seamless and streamlined appearance that enhances the sofa's sleek aesthetic. The sofa is often equipped with bolster cushions, which are long, cylindrical cushions that can be used as armrests or to support the lower back while seated. The bolster cushions are covered in the same upholstery fabric as the rest of the sofa, creating a cohesive and coordinated look. The four legs of the sofa are made of wood, with a simple and unadorned design that complements the sofa's modern aesthetic. The three-seater size of the sofa provides ample seating space for three people, making it an ideal choice for a small to medium-sized living room or family room. The sofa can be paired with a range of accent chairs, coffee tables, and other furniture pieces to create a cohesive and stylish living space. Overall, a three seater sofa in modern style is a sleek and sophisticated piece of furniture that can add a touch of contemporary style to any living space. Its clean lines, simple shapes, and minimalistic design make it a versatile and stylish choice for any modern home.") + [ + 'de-DE' + ]('Das Dreisitzer-Sofa im modernen Stil mit Nackenkissen ist ein elegantes und stilvolles Möbelstück, das jedem Wohnraum einen Hauch von zeitgenössischer Raffinesse verleihen kann. Das Sofa besteht aus einem Holzrahmen, der mit einer weichen und strapazierfähigen Polsterung überzogen ist. Das Design des Sofas zeichnet sich durch klare Linien und einfache Formen aus, mit einem niedrigen Profil, das einen modernen und minimalistischen Look erzeugt. Die Rückenlehne und die Sitzkissen sind mit dem Rahmen verbunden, so dass ein nahtloses und stromlinienförmiges Erscheinungsbild entsteht, das die schlichte Ästhetik des Sofas unterstreicht. Das Sofa ist häufig mit Nackenkissen ausgestattet. Das sind lange, zylindrische Kissen, die als Armlehnen oder zur Unterstützung des unteren Rückens beim Sitzen verwendet werden können. Die Nackenkissen sind mit dem gleichen Bezugsstoff wie der Rest des Sofas bezogen, wodurch ein einheitliches und abgestimmtes Aussehen entsteht. Die vier Beine des Sofas sind aus Holz und haben ein einfaches und schnörkelloses Design, das die moderne Ästhetik des Sofas ergänzt. Die Größe des Sofas als Dreisitzer bietet ausreichend Platz für drei Personen und ist damit die ideale Wahl für ein kleines bis mittelgroßes Wohnzimmer oder ein Familienzimmer. Das Sofa kann mit einer Reihe von Akzentstühlen, Couchtischen und anderen Möbelstücken kombiniert werden, um einen zusammenhängenden und stilvollen Wohnraum zu schaffen. Insgesamt ist ein Dreisitzer-Sofa im modernen Stil ein elegantes und anspruchsvolles Möbelstück, das jedem Wohnraum einen Hauch von zeitgenössischem Stil verleihen kann. Seine klaren Linien, einfachen Formen und sein minimalistisches Design machen es zu einer vielseitigen und stilvollen Wahl für jedes moderne Zuhause.') + [ + 'en-US' + ]("A three seater sofa in modern style with bolster cushions is a sleek and stylish piece of furniture that can add a touch of contemporary sophistication to any living space. The sofa features a wooden frame that is covered in soft and durable upholstery. The sofa's design is characterized by clean lines and simple shapes, with a low profile that creates a modern and minimalist look. The backrest and seat cushions are attached to the frame, with a seamless and streamlined appearance that enhances the sofa's sleek aesthetic. The sofa is often equipped with bolster cushions, which are long, cylindrical cushions that can be used as armrests or to support the lower back while seated. The bolster cushions are covered in the same upholstery fabric as the rest of the sofa, creating a cohesive and coordinated look. The four legs of the sofa are made of wood, with a simple and unadorned design that complements the sofa's modern aesthetic. The three-seater size of the sofa provides ample seating space for three people, making it an ideal choice for a small to medium-sized living room or family room. The sofa can be paired with a range of accent chairs, coffee tables, and other furniture pieces to create a cohesive and stylish living space. Overall, a three seater sofa in modern style is a sleek and sophisticated piece of furniture that can add a touch of contemporary style to any living space. Its clean lines, simple shapes, and minimalistic design make it a versatile and stylish choice for any modern home.") ) .slug( LocalizedStringDraft.presets @@ -88,7 +88,7 @@ const modernThreeSeaterSofa = (): TProductDraftBuilder => KeyReferenceDraft.presets.taxCategory().key(standardTaxCategory.key!) ) .masterVariant( - ProductVariantDraft.presets.sampleDataGoodStore.modernThreeSeaterSofa01() + ProductVariantDraft.presets.sampleDataB2CLifestyle.modernThreeSeaterSofa01() ) .categories([ KeyReferenceDraft.presets.category().key(livingRoomFurnitureDraft.key!), diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/modern-upholstered-queen-bed.spec.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/modern-upholstered-queen-bed.spec.ts similarity index 99% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/modern-upholstered-queen-bed.spec.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/modern-upholstered-queen-bed.spec.ts index 6eec610ad..2df82cb5c 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/modern-upholstered-queen-bed.spec.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/modern-upholstered-queen-bed.spec.ts @@ -80,7 +80,7 @@ describe(`with modernUpholsteredQueenBed preset`, () => { "w": 6000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Upholstered_Queen_Bed-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Upholstered_Queen_Bed-1.1.jpeg", }, ], "key": undefined, @@ -235,7 +235,7 @@ describe(`with modernUpholsteredQueenBed preset`, () => { "width": 6000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Upholstered_Queen_Bed-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Upholstered_Queen_Bed-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/modern-upholstered-queen-bed.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/modern-upholstered-queen-bed.ts similarity index 86% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/modern-upholstered-queen-bed.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/modern-upholstered-queen-bed.ts index 197af35f9..2bc47dbde 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/modern-upholstered-queen-bed.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/modern-upholstered-queen-bed.ts @@ -18,32 +18,32 @@ import * as ProductVariantDraft from '../../../../product-variant/product-varian import * as ProductDraft from '../../../product-draft'; import type { TProductDraftBuilder } from '../../../types'; -const standardTaxCategory = TaxCategoryDraft.presets.sampleDataGoodStore +const standardTaxCategory = TaxCategoryDraft.presets.sampleDataB2CLifestyle .standardTaxCategory() .build(); const modernUpholsteredQueenBedProductTypeDraft = - ProductTypeDraft.presets.sampleDataGoodStore + ProductTypeDraft.presets.sampleDataB2CLifestyle .furnitureAndDecor() .build(); -const furnitureDraft = CategoryDraft.presets.sampleDataGoodStore +const furnitureDraft = CategoryDraft.presets.sampleDataB2CLifestyle .furniture() .build(); -const collectionsDraft = CategoryDraft.presets.sampleDataGoodStore +const collectionsDraft = CategoryDraft.presets.sampleDataB2CLifestyle .collections() .build(); -const bedsDraft = CategoryDraft.presets.sampleDataGoodStore +const bedsDraft = CategoryDraft.presets.sampleDataB2CLifestyle .beds() .build(); -const bedroomFurnitureDraft = CategoryDraft.presets.sampleDataGoodStore +const bedroomFurnitureDraft = CategoryDraft.presets.sampleDataB2CLifestyle .bedroomFurniture() .build(); -const theModernistDraft = CategoryDraft.presets.sampleDataGoodStore +const theModernistDraft = CategoryDraft.presets.sampleDataB2CLifestyle .theModernist() .build(); @@ -61,15 +61,15 @@ const modernUpholsteredQueenBed = (): TProductDraftBuilder => .description( LocalizedStringDraft.presets .empty() - ['en-GB']( - "A queen bed upholstered with velvet fabric and brass nails and tufting is a luxurious and elegant piece of furniture that can add a touch of glamour and sophistication to any bedroom. The bed features a wooden frame that is covered with soft and plush velvet upholstery. The headboard of the bed is the focal point of the design, featuring a tufted or quilted pattern that creates a plush and inviting surface to lean against. The tufting is accentuated with brass nailhead trim, which adds a touch of metallic shine and texture to the design. The footboard and side rails of the bed are also upholstered in the same velvet fabric and trimmed with brass nailheads, creating a cohesive and stylish look. The legs of the bed are wood. The queen size of the bed provides ample space for a comfortable night's sleep, while the luxurious velvet upholstery and brass accents add an element of glamour and sophistication to the room. The bed can be paired with a range of bedding and accessories, such as plush pillows and soft blankets, to create a cozy and inviting atmosphere. Overall, a queen bed upholstered with velvet fabric and brass nails and tufting is a stunning and stylish piece of furniture that can transform any bedroom into a luxurious and elegant space. Its plush upholstery, intricate tufting, and metallic accents make it a standout piece that is sure to impress and delight." - ) - ['de-DE']( - 'Ein mit Samtstoff gepolstertes Bett mit Messingnägeln und Tufting ist ein luxuriöses und elegantes Möbelstück, das jedem Schlafzimmer einen Hauch von Glamour und Raffinesse verleihen kann. Das Bett besteht aus einem Holzrahmen, der mit einem weichen und plüschigen Samtbezug überzogen ist. Das Kopfteil des Bettes ist der Mittelpunkt des Designs und weist ein getuftetes oder gestepptes Muster auf, das eine weiche und einladende Oberfläche zum Anlehnen bietet. Die Tuftings sind mit Messingnägeln akzentuiert, die dem Design einen Hauch von metallischem Glanz und Textur verleihen. Das Fußteil und die Seitengitter des Bettes sind ebenfalls mit demselben Samtstoff bezogen und mit Messingnagelköpfen verziert, wodurch ein einheitliches und stilvolles Erscheinungsbild entsteht. Die Beine des Bettes sind aus Holz. Die Größe des Bettes bietet reichlich Platz für eine komfortable Nachtruhe, während die luxuriöse Samtpolsterung und die Messingakzente dem Raum einen Hauch von Glamour und Raffinesse verleihen. Das Bett kann mit einer Reihe von Bettwaren und Accessoires, wie z. B. Plüschkissen und weichen Decken, kombiniert werden, um eine gemütliche und einladende Atmosphäre zu schaffen. Insgesamt ist ein mit Samtstoff gepolstertes Bett mit Messingnägeln und Tufting ein atemberaubendes und stilvolles Möbelstück, das jedes Schlafzimmer in einen luxuriösen und eleganten Raum verwandeln kann. Die plüschige Polsterung, die raffinierten Tuftings und die metallischen Akzente machen es zu einem herausragenden Möbelstück, das Sie sicher beeindrucken und begeistern wird.' - ) - ['en-US']( - "A queen bed upholstered with velvet fabric and brass nails and tufting is a luxurious and elegant piece of furniture that can add a touch of glamour and sophistication to any bedroom. The bed features a wooden frame that is covered with soft and plush velvet upholstery. The headboard of the bed is the focal point of the design, featuring a tufted or quilted pattern that creates a plush and inviting surface to lean against. The tufting is accentuated with brass nailhead trim, which adds a touch of metallic shine and texture to the design. The footboard and side rails of the bed are also upholstered in the same velvet fabric and trimmed with brass nailheads, creating a cohesive and stylish look. The legs of the bed are wood. The queen size of the bed provides ample space for a comfortable night's sleep, while the luxurious velvet upholstery and brass accents add an element of glamour and sophistication to the room. The bed can be paired with a range of bedding and accessories, such as plush pillows and soft blankets, to create a cozy and inviting atmosphere. Overall, a queen bed upholstered with velvet fabric and brass nails and tufting is a stunning and stylish piece of furniture that can transform any bedroom into a luxurious and elegant space. Its plush upholstery, intricate tufting, and metallic accents make it a standout piece that is sure to impress and delight." - ) + [ + 'en-GB' + ]("A queen bed upholstered with velvet fabric and brass nails and tufting is a luxurious and elegant piece of furniture that can add a touch of glamour and sophistication to any bedroom. The bed features a wooden frame that is covered with soft and plush velvet upholstery. The headboard of the bed is the focal point of the design, featuring a tufted or quilted pattern that creates a plush and inviting surface to lean against. The tufting is accentuated with brass nailhead trim, which adds a touch of metallic shine and texture to the design. The footboard and side rails of the bed are also upholstered in the same velvet fabric and trimmed with brass nailheads, creating a cohesive and stylish look. The legs of the bed are wood. The queen size of the bed provides ample space for a comfortable night's sleep, while the luxurious velvet upholstery and brass accents add an element of glamour and sophistication to the room. The bed can be paired with a range of bedding and accessories, such as plush pillows and soft blankets, to create a cozy and inviting atmosphere. Overall, a queen bed upholstered with velvet fabric and brass nails and tufting is a stunning and stylish piece of furniture that can transform any bedroom into a luxurious and elegant space. Its plush upholstery, intricate tufting, and metallic accents make it a standout piece that is sure to impress and delight.") + [ + 'de-DE' + ]('Ein mit Samtstoff gepolstertes Bett mit Messingnägeln und Tufting ist ein luxuriöses und elegantes Möbelstück, das jedem Schlafzimmer einen Hauch von Glamour und Raffinesse verleihen kann. Das Bett besteht aus einem Holzrahmen, der mit einem weichen und plüschigen Samtbezug überzogen ist. Das Kopfteil des Bettes ist der Mittelpunkt des Designs und weist ein getuftetes oder gestepptes Muster auf, das eine weiche und einladende Oberfläche zum Anlehnen bietet. Die Tuftings sind mit Messingnägeln akzentuiert, die dem Design einen Hauch von metallischem Glanz und Textur verleihen. Das Fußteil und die Seitengitter des Bettes sind ebenfalls mit demselben Samtstoff bezogen und mit Messingnagelköpfen verziert, wodurch ein einheitliches und stilvolles Erscheinungsbild entsteht. Die Beine des Bettes sind aus Holz. Die Größe des Bettes bietet reichlich Platz für eine komfortable Nachtruhe, während die luxuriöse Samtpolsterung und die Messingakzente dem Raum einen Hauch von Glamour und Raffinesse verleihen. Das Bett kann mit einer Reihe von Bettwaren und Accessoires, wie z. B. Plüschkissen und weichen Decken, kombiniert werden, um eine gemütliche und einladende Atmosphäre zu schaffen. Insgesamt ist ein mit Samtstoff gepolstertes Bett mit Messingnägeln und Tufting ein atemberaubendes und stilvolles Möbelstück, das jedes Schlafzimmer in einen luxuriösen und eleganten Raum verwandeln kann. Die plüschige Polsterung, die raffinierten Tuftings und die metallischen Akzente machen es zu einem herausragenden Möbelstück, das Sie sicher beeindrucken und begeistern wird.') + [ + 'en-US' + ]("A queen bed upholstered with velvet fabric and brass nails and tufting is a luxurious and elegant piece of furniture that can add a touch of glamour and sophistication to any bedroom. The bed features a wooden frame that is covered with soft and plush velvet upholstery. The headboard of the bed is the focal point of the design, featuring a tufted or quilted pattern that creates a plush and inviting surface to lean against. The tufting is accentuated with brass nailhead trim, which adds a touch of metallic shine and texture to the design. The footboard and side rails of the bed are also upholstered in the same velvet fabric and trimmed with brass nailheads, creating a cohesive and stylish look. The legs of the bed are wood. The queen size of the bed provides ample space for a comfortable night's sleep, while the luxurious velvet upholstery and brass accents add an element of glamour and sophistication to the room. The bed can be paired with a range of bedding and accessories, such as plush pillows and soft blankets, to create a cozy and inviting atmosphere. Overall, a queen bed upholstered with velvet fabric and brass nails and tufting is a stunning and stylish piece of furniture that can transform any bedroom into a luxurious and elegant space. Its plush upholstery, intricate tufting, and metallic accents make it a standout piece that is sure to impress and delight.") ) .slug( LocalizedStringDraft.presets @@ -88,7 +88,7 @@ const modernUpholsteredQueenBed = (): TProductDraftBuilder => KeyReferenceDraft.presets.taxCategory().key(standardTaxCategory.key!) ) .masterVariant( - ProductVariantDraft.presets.sampleDataGoodStore.modernUpholsteredQueenBed01() + ProductVariantDraft.presets.sampleDataB2CLifestyle.modernUpholsteredQueenBed01() ) .categories([ KeyReferenceDraft.presets.category().key(furnitureDraft.key!), diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/modern-upholstered-twin-bed.spec.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/modern-upholstered-twin-bed.spec.ts similarity index 95% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/modern-upholstered-twin-bed.spec.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/modern-upholstered-twin-bed.spec.ts index fe7e01f47..1ce22140c 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/modern-upholstered-twin-bed.spec.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/modern-upholstered-twin-bed.spec.ts @@ -83,7 +83,7 @@ describe(`with modernUpholsteredTwinBed preset`, () => { "w": 3000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Upholstered_Twin_Bed-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Upholstered_Twin_Bed-1.1.jpeg", }, { "dimensions": { @@ -91,7 +91,7 @@ describe(`with modernUpholsteredTwinBed preset`, () => { "w": 3000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Upholstered_Twin_Bed-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Upholstered_Twin_Bed-1.2.jpeg", }, { "dimensions": { @@ -99,7 +99,7 @@ describe(`with modernUpholsteredTwinBed preset`, () => { "w": 3000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Upholstered_Twin_Bed-1.3.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Upholstered_Twin_Bed-1.3.jpeg", }, ], "key": undefined, @@ -228,7 +228,7 @@ describe(`with modernUpholsteredTwinBed preset`, () => { "w": 3000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Upholstered_Twin_Bed-2.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Upholstered_Twin_Bed-2.2.jpeg", }, { "dimensions": { @@ -236,7 +236,7 @@ describe(`with modernUpholsteredTwinBed preset`, () => { "w": 3000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Upholstered_Twin_Bed-2.3.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Upholstered_Twin_Bed-2.3.jpeg", }, { "dimensions": { @@ -244,7 +244,7 @@ describe(`with modernUpholsteredTwinBed preset`, () => { "w": 3000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Upholstered_Twin_Bed-2.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Upholstered_Twin_Bed-2.1.jpeg", }, ], "key": undefined, @@ -349,7 +349,7 @@ describe(`with modernUpholsteredTwinBed preset`, () => { "w": 4000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Upholstered_Twin_Bed-3.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Upholstered_Twin_Bed-3.2.jpeg", }, { "dimensions": { @@ -357,7 +357,7 @@ describe(`with modernUpholsteredTwinBed preset`, () => { "w": 4000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Upholstered_Twin_Bed-3.3.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Upholstered_Twin_Bed-3.3.jpeg", }, { "dimensions": { @@ -365,7 +365,7 @@ describe(`with modernUpholsteredTwinBed preset`, () => { "w": 4000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Upholstered_Twin_Bed-3.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Upholstered_Twin_Bed-3.1.jpeg", }, ], "key": undefined, @@ -462,7 +462,7 @@ describe(`with modernUpholsteredTwinBed preset`, () => { "w": 3000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Upholstered_Twin_Bed-4.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Upholstered_Twin_Bed-4.2.jpeg", }, { "dimensions": { @@ -470,7 +470,7 @@ describe(`with modernUpholsteredTwinBed preset`, () => { "w": 3000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Upholstered_Twin_Bed-4.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Upholstered_Twin_Bed-4.1.jpeg", }, { "dimensions": { @@ -478,7 +478,7 @@ describe(`with modernUpholsteredTwinBed preset`, () => { "w": 3000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Upholstered_Twin_Bed-4.3.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Upholstered_Twin_Bed-4.3.jpeg", }, ], "key": undefined, @@ -602,7 +602,7 @@ describe(`with modernUpholsteredTwinBed preset`, () => { "width": 3000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Upholstered_Twin_Bed-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Upholstered_Twin_Bed-1.1.jpeg", }, { "dimensions": { @@ -610,7 +610,7 @@ describe(`with modernUpholsteredTwinBed preset`, () => { "width": 3000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Upholstered_Twin_Bed-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Upholstered_Twin_Bed-1.2.jpeg", }, { "dimensions": { @@ -618,7 +618,7 @@ describe(`with modernUpholsteredTwinBed preset`, () => { "width": 3000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Upholstered_Twin_Bed-1.3.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Upholstered_Twin_Bed-1.3.jpeg", }, ], "key": undefined, @@ -744,7 +744,7 @@ describe(`with modernUpholsteredTwinBed preset`, () => { "width": 3000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Upholstered_Twin_Bed-2.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Upholstered_Twin_Bed-2.2.jpeg", }, { "dimensions": { @@ -752,7 +752,7 @@ describe(`with modernUpholsteredTwinBed preset`, () => { "width": 3000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Upholstered_Twin_Bed-2.3.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Upholstered_Twin_Bed-2.3.jpeg", }, { "dimensions": { @@ -760,7 +760,7 @@ describe(`with modernUpholsteredTwinBed preset`, () => { "width": 3000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Upholstered_Twin_Bed-2.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Upholstered_Twin_Bed-2.1.jpeg", }, ], "key": undefined, @@ -846,7 +846,7 @@ describe(`with modernUpholsteredTwinBed preset`, () => { "width": 4000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Upholstered_Twin_Bed-3.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Upholstered_Twin_Bed-3.2.jpeg", }, { "dimensions": { @@ -854,7 +854,7 @@ describe(`with modernUpholsteredTwinBed preset`, () => { "width": 4000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Upholstered_Twin_Bed-3.3.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Upholstered_Twin_Bed-3.3.jpeg", }, { "dimensions": { @@ -862,7 +862,7 @@ describe(`with modernUpholsteredTwinBed preset`, () => { "width": 4000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Upholstered_Twin_Bed-3.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Upholstered_Twin_Bed-3.1.jpeg", }, ], "key": undefined, @@ -944,7 +944,7 @@ describe(`with modernUpholsteredTwinBed preset`, () => { "width": 3000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Upholstered_Twin_Bed-4.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Upholstered_Twin_Bed-4.2.jpeg", }, { "dimensions": { @@ -952,7 +952,7 @@ describe(`with modernUpholsteredTwinBed preset`, () => { "width": 3000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Upholstered_Twin_Bed-4.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Upholstered_Twin_Bed-4.1.jpeg", }, { "dimensions": { @@ -960,7 +960,7 @@ describe(`with modernUpholsteredTwinBed preset`, () => { "width": 3000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Modern_Upholstered_Twin_Bed-4.3.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Modern_Upholstered_Twin_Bed-4.3.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/modern-upholstered-twin-bed.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/modern-upholstered-twin-bed.ts similarity index 83% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/modern-upholstered-twin-bed.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/modern-upholstered-twin-bed.ts index 8f0a10300..b2279ca5b 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/modern-upholstered-twin-bed.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/modern-upholstered-twin-bed.ts @@ -18,32 +18,32 @@ import * as ProductVariantDraft from '../../../../product-variant/product-varian import * as ProductDraft from '../../../product-draft'; import type { TProductDraftBuilder } from '../../../types'; -const standardTaxCategory = TaxCategoryDraft.presets.sampleDataGoodStore +const standardTaxCategory = TaxCategoryDraft.presets.sampleDataB2CLifestyle .standardTaxCategory() .build(); const modernUpholsteredTwinBedProductTypeDraft = - ProductTypeDraft.presets.sampleDataGoodStore + ProductTypeDraft.presets.sampleDataB2CLifestyle .furnitureAndDecor() .build(); -const furnitureDraft = CategoryDraft.presets.sampleDataGoodStore +const furnitureDraft = CategoryDraft.presets.sampleDataB2CLifestyle .furniture() .build(); -const collectionsDraft = CategoryDraft.presets.sampleDataGoodStore +const collectionsDraft = CategoryDraft.presets.sampleDataB2CLifestyle .collections() .build(); -const bedsDraft = CategoryDraft.presets.sampleDataGoodStore +const bedsDraft = CategoryDraft.presets.sampleDataB2CLifestyle .beds() .build(); -const bedroomFurnitureDraft = CategoryDraft.presets.sampleDataGoodStore +const bedroomFurnitureDraft = CategoryDraft.presets.sampleDataB2CLifestyle .bedroomFurniture() .build(); -const theModernistDraft = CategoryDraft.presets.sampleDataGoodStore +const theModernistDraft = CategoryDraft.presets.sampleDataB2CLifestyle .theModernist() .build(); @@ -61,15 +61,15 @@ const modernUpholsteredTwinBed = (): TProductDraftBuilder => .description( LocalizedStringDraft.presets .empty() - ['en-GB']( - 'A twin size bed with fabric upholstery in a modern style is a sleek and stylish piece of furniture that can add a touch of sophistication to any bedroom. The bed typically features a simple and minimalistic design, with clean lines and geometric shapes that are characteristic of modern style. The frame of the bed is made from wood, with a low profile that creates a sleek and contemporary look. The fabric upholstery covers the headboard, footboard, and side rails of the bed, providing a soft and comfortable surface to lean against or rest on. The size of the bed is twin, which makes it an ideal choice for smaller bedrooms or guest rooms. It can be paired with a range of bedding and accessories to create a cohesive and stylish look that reflects your personal style. Overall, a twin size bed with fabric upholstery in a modern style is a sleek and sophisticated piece of furniture that can elevate the look and feel of any bedroom. Its simple yet stylish design, combined with its comfortable and soft upholstery, make it a perfect place to rest and relax in style.' - ) - ['de-DE']( - 'Ein Doppelbett mit Stoffbezug im modernen Stil ist ein elegantes und stilvolles Möbelstück, das jedem Schlafzimmer einen Hauch von Raffinesse verleihen kann. Das Bett zeichnet sich durch ein einfaches und minimalistisches Design aus, mit klaren Linien und geometrischen Formen, die für den modernen Stil charakteristisch sind. Der Rahmen des Bettes ist aus Holz gefertigt und hat ein niedriges Profil, das einen schlanken und modernen Look erzeugt. Das Kopfteil, das Fußteil und die Seitengitter des Bettes sind mit Stoff bezogen und bieten eine weiche und bequeme Oberfläche zum Anlehnen und Ausruhen. Das Bett hat eine Größe von zwei Einzelbetten und ist daher ideal für kleinere Schlafzimmer oder Gästezimmer. Es kann mit einer Reihe von Bettwaren und Accessoires kombiniert werden, um einen zusammenhängenden und stilvollen Look zu schaffen, der Ihren persönlichen Stil widerspiegelt. Insgesamt ist ein Doppelbett mit Stoffbezug im modernen Stil ein elegantes und raffiniertes Möbelstück, das jedes Schlafzimmer aufwerten kann. Das schlichte, aber stilvolle Design in Kombination mit der bequemen und weichen Polsterung machen es zu einem perfekten Ort, um sich stilvoll auszuruhen und zu entspannen.' - ) - ['en-US']( - 'A twin size bed with fabric upholstery in a modern style is a sleek and stylish piece of furniture that can add a touch of sophistication to any bedroom. The bed typically features a simple and minimalistic design, with clean lines and geometric shapes that are characteristic of modern style. The frame of the bed is made from wood, with a low profile that creates a sleek and contemporary look. The fabric upholstery covers the headboard, footboard, and side rails of the bed, providing a soft and comfortable surface to lean against or rest on. The size of the bed is twin, which makes it an ideal choice for smaller bedrooms or guest rooms. It can be paired with a range of bedding and accessories to create a cohesive and stylish look that reflects your personal style. Overall, a twin size bed with fabric upholstery in a modern style is a sleek and sophisticated piece of furniture that can elevate the look and feel of any bedroom. Its simple yet stylish design, combined with its comfortable and soft upholstery, make it a perfect place to rest and relax in style.' - ) + [ + 'en-GB' + ]('A twin size bed with fabric upholstery in a modern style is a sleek and stylish piece of furniture that can add a touch of sophistication to any bedroom. The bed typically features a simple and minimalistic design, with clean lines and geometric shapes that are characteristic of modern style. The frame of the bed is made from wood, with a low profile that creates a sleek and contemporary look. The fabric upholstery covers the headboard, footboard, and side rails of the bed, providing a soft and comfortable surface to lean against or rest on. The size of the bed is twin, which makes it an ideal choice for smaller bedrooms or guest rooms. It can be paired with a range of bedding and accessories to create a cohesive and stylish look that reflects your personal style. Overall, a twin size bed with fabric upholstery in a modern style is a sleek and sophisticated piece of furniture that can elevate the look and feel of any bedroom. Its simple yet stylish design, combined with its comfortable and soft upholstery, make it a perfect place to rest and relax in style.') + [ + 'de-DE' + ]('Ein Doppelbett mit Stoffbezug im modernen Stil ist ein elegantes und stilvolles Möbelstück, das jedem Schlafzimmer einen Hauch von Raffinesse verleihen kann. Das Bett zeichnet sich durch ein einfaches und minimalistisches Design aus, mit klaren Linien und geometrischen Formen, die für den modernen Stil charakteristisch sind. Der Rahmen des Bettes ist aus Holz gefertigt und hat ein niedriges Profil, das einen schlanken und modernen Look erzeugt. Das Kopfteil, das Fußteil und die Seitengitter des Bettes sind mit Stoff bezogen und bieten eine weiche und bequeme Oberfläche zum Anlehnen und Ausruhen. Das Bett hat eine Größe von zwei Einzelbetten und ist daher ideal für kleinere Schlafzimmer oder Gästezimmer. Es kann mit einer Reihe von Bettwaren und Accessoires kombiniert werden, um einen zusammenhängenden und stilvollen Look zu schaffen, der Ihren persönlichen Stil widerspiegelt. Insgesamt ist ein Doppelbett mit Stoffbezug im modernen Stil ein elegantes und raffiniertes Möbelstück, das jedes Schlafzimmer aufwerten kann. Das schlichte, aber stilvolle Design in Kombination mit der bequemen und weichen Polsterung machen es zu einem perfekten Ort, um sich stilvoll auszuruhen und zu entspannen.') + [ + 'en-US' + ]('A twin size bed with fabric upholstery in a modern style is a sleek and stylish piece of furniture that can add a touch of sophistication to any bedroom. The bed typically features a simple and minimalistic design, with clean lines and geometric shapes that are characteristic of modern style. The frame of the bed is made from wood, with a low profile that creates a sleek and contemporary look. The fabric upholstery covers the headboard, footboard, and side rails of the bed, providing a soft and comfortable surface to lean against or rest on. The size of the bed is twin, which makes it an ideal choice for smaller bedrooms or guest rooms. It can be paired with a range of bedding and accessories to create a cohesive and stylish look that reflects your personal style. Overall, a twin size bed with fabric upholstery in a modern style is a sleek and sophisticated piece of furniture that can elevate the look and feel of any bedroom. Its simple yet stylish design, combined with its comfortable and soft upholstery, make it a perfect place to rest and relax in style.') ) .slug( LocalizedStringDraft.presets @@ -88,12 +88,12 @@ const modernUpholsteredTwinBed = (): TProductDraftBuilder => KeyReferenceDraft.presets.taxCategory().key(standardTaxCategory.key!) ) .masterVariant( - ProductVariantDraft.presets.sampleDataGoodStore.modernUpholsteredTwinBed01() + ProductVariantDraft.presets.sampleDataB2CLifestyle.modernUpholsteredTwinBed01() ) .variants([ - ProductVariantDraft.presets.sampleDataGoodStore.modernUpholsteredTwinBed02(), - ProductVariantDraft.presets.sampleDataGoodStore.modernUpholsteredTwinBed03(), - ProductVariantDraft.presets.sampleDataGoodStore.modernUpholsteredTwinBed04(), + ProductVariantDraft.presets.sampleDataB2CLifestyle.modernUpholsteredTwinBed02(), + ProductVariantDraft.presets.sampleDataB2CLifestyle.modernUpholsteredTwinBed03(), + ProductVariantDraft.presets.sampleDataB2CLifestyle.modernUpholsteredTwinBed04(), ]) .categories([ KeyReferenceDraft.presets.category().key(furnitureDraft.key!), diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/nala-two-seater-sofa.spec.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/nala-two-seater-sofa.spec.ts similarity index 96% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/nala-two-seater-sofa.spec.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/nala-two-seater-sofa.spec.ts index 6e5823cdf..72d6ed3f0 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/nala-two-seater-sofa.spec.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/nala-two-seater-sofa.spec.ts @@ -84,7 +84,7 @@ describe(`with nalaTwoSeaterSofa preset`, () => { "w": 6000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Nala_Two_Seater_Sofa-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Nala_Two_Seater_Sofa-1.2.jpeg", }, { "dimensions": { @@ -92,7 +92,7 @@ describe(`with nalaTwoSeaterSofa preset`, () => { "w": 6000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Nala_Two_Seater_Sofa-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Nala_Two_Seater_Sofa-1.1.jpeg", }, ], "key": undefined, @@ -219,7 +219,7 @@ describe(`with nalaTwoSeaterSofa preset`, () => { "w": 6000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Nala_Two_Seater_Sofa-2.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Nala_Two_Seater_Sofa-2.1.jpeg", }, { "dimensions": { @@ -227,7 +227,7 @@ describe(`with nalaTwoSeaterSofa preset`, () => { "w": 6000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Nala_Two_Seater_Sofa-2.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Nala_Two_Seater_Sofa-2.2.jpeg", }, ], "key": undefined, @@ -322,7 +322,7 @@ describe(`with nalaTwoSeaterSofa preset`, () => { "w": 6000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Nala_Two_Seater_Sofa-3.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Nala_Two_Seater_Sofa-3.1.jpeg", }, { "dimensions": { @@ -330,7 +330,7 @@ describe(`with nalaTwoSeaterSofa preset`, () => { "w": 6000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Nala_Two_Seater_Sofa-3.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Nala_Two_Seater_Sofa-3.2.jpeg", }, ], "key": undefined, @@ -425,7 +425,7 @@ describe(`with nalaTwoSeaterSofa preset`, () => { "w": 6000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Nala_Two_Seater_Sofa-4.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Nala_Two_Seater_Sofa-4.1.jpeg", }, ], "key": undefined, @@ -520,7 +520,7 @@ describe(`with nalaTwoSeaterSofa preset`, () => { "w": 6000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Nala_Two_Seater_Sofa-5.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Nala_Two_Seater_Sofa-5.1.jpeg", }, { "dimensions": { @@ -528,7 +528,7 @@ describe(`with nalaTwoSeaterSofa preset`, () => { "w": 6000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Nala_Two_Seater_Sofa-5.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Nala_Two_Seater_Sofa-5.2.jpeg", }, ], "key": undefined, @@ -623,7 +623,7 @@ describe(`with nalaTwoSeaterSofa preset`, () => { "w": 6000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Nala_Two_Seater_Sofa-6.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Nala_Two_Seater_Sofa-6.1.jpeg", }, ], "key": undefined, @@ -718,7 +718,7 @@ describe(`with nalaTwoSeaterSofa preset`, () => { "w": 6000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Nala_Two_Seater_Sofa-7.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Nala_Two_Seater_Sofa-7.1.jpeg", }, ], "key": undefined, @@ -850,7 +850,7 @@ describe(`with nalaTwoSeaterSofa preset`, () => { "width": 6000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Nala_Two_Seater_Sofa-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Nala_Two_Seater_Sofa-1.2.jpeg", }, { "dimensions": { @@ -858,7 +858,7 @@ describe(`with nalaTwoSeaterSofa preset`, () => { "width": 6000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Nala_Two_Seater_Sofa-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Nala_Two_Seater_Sofa-1.1.jpeg", }, ], "key": undefined, @@ -988,7 +988,7 @@ describe(`with nalaTwoSeaterSofa preset`, () => { "width": 6000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Nala_Two_Seater_Sofa-2.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Nala_Two_Seater_Sofa-2.1.jpeg", }, { "dimensions": { @@ -996,7 +996,7 @@ describe(`with nalaTwoSeaterSofa preset`, () => { "width": 6000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Nala_Two_Seater_Sofa-2.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Nala_Two_Seater_Sofa-2.2.jpeg", }, ], "key": undefined, @@ -1082,7 +1082,7 @@ describe(`with nalaTwoSeaterSofa preset`, () => { "width": 6000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Nala_Two_Seater_Sofa-3.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Nala_Two_Seater_Sofa-3.1.jpeg", }, { "dimensions": { @@ -1090,7 +1090,7 @@ describe(`with nalaTwoSeaterSofa preset`, () => { "width": 6000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Nala_Two_Seater_Sofa-3.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Nala_Two_Seater_Sofa-3.2.jpeg", }, ], "key": undefined, @@ -1176,7 +1176,7 @@ describe(`with nalaTwoSeaterSofa preset`, () => { "width": 6000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Nala_Two_Seater_Sofa-4.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Nala_Two_Seater_Sofa-4.1.jpeg", }, ], "key": undefined, @@ -1262,7 +1262,7 @@ describe(`with nalaTwoSeaterSofa preset`, () => { "width": 6000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Nala_Two_Seater_Sofa-5.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Nala_Two_Seater_Sofa-5.1.jpeg", }, { "dimensions": { @@ -1270,7 +1270,7 @@ describe(`with nalaTwoSeaterSofa preset`, () => { "width": 6000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Nala_Two_Seater_Sofa-5.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Nala_Two_Seater_Sofa-5.2.jpeg", }, ], "key": undefined, @@ -1356,7 +1356,7 @@ describe(`with nalaTwoSeaterSofa preset`, () => { "width": 6000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Nala_Two_Seater_Sofa-6.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Nala_Two_Seater_Sofa-6.1.jpeg", }, ], "key": undefined, @@ -1442,7 +1442,7 @@ describe(`with nalaTwoSeaterSofa preset`, () => { "width": 6000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Nala_Two_Seater_Sofa-7.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Nala_Two_Seater_Sofa-7.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/nala-two-seater-sofa.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/nala-two-seater-sofa.ts similarity index 77% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/nala-two-seater-sofa.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/nala-two-seater-sofa.ts index 7ef9aeaeb..05eb78ae9 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/nala-two-seater-sofa.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/nala-two-seater-sofa.ts @@ -18,36 +18,36 @@ import * as ProductVariantDraft from '../../../../product-variant/product-varian import * as ProductDraft from '../../../product-draft'; import type { TProductDraftBuilder } from '../../../types'; -const standardTaxCategory = TaxCategoryDraft.presets.sampleDataGoodStore +const standardTaxCategory = TaxCategoryDraft.presets.sampleDataB2CLifestyle .standardTaxCategory() .build(); const nalaTwoSeaterSofaProductTypeDraft = - ProductTypeDraft.presets.sampleDataGoodStore + ProductTypeDraft.presets.sampleDataB2CLifestyle .furnitureAndDecor() .build(); -const livingRoomFurnitureDraft = CategoryDraft.presets.sampleDataGoodStore +const livingRoomFurnitureDraft = CategoryDraft.presets.sampleDataB2CLifestyle .livingRoomFurniture() .build(); -const sofasDraft = CategoryDraft.presets.sampleDataGoodStore +const sofasDraft = CategoryDraft.presets.sampleDataB2CLifestyle .sofas() .build(); -const furnitureDraft = CategoryDraft.presets.sampleDataGoodStore +const furnitureDraft = CategoryDraft.presets.sampleDataB2CLifestyle .furniture() .build(); -const newArrivalsDraft = CategoryDraft.presets.sampleDataGoodStore +const newArrivalsDraft = CategoryDraft.presets.sampleDataB2CLifestyle .newArrivals() .build(); -const theTraditionalistDraft = CategoryDraft.presets.sampleDataGoodStore +const theTraditionalistDraft = CategoryDraft.presets.sampleDataB2CLifestyle .theTraditionalist() .build(); -const collectionsDraft = CategoryDraft.presets.sampleDataGoodStore +const collectionsDraft = CategoryDraft.presets.sampleDataB2CLifestyle .collections() .build(); @@ -65,15 +65,15 @@ const nalaTwoSeaterSofa = (): TProductDraftBuilder => .description( LocalizedStringDraft.presets .empty() - ['en-GB']( - "This modern 2-seater sofa is a stylish and comfortable addition to any living space. The sofa features a sleek and minimalistic design, with clean lines and a contemporary aesthetic. It is upholstered in high-quality cotton fabric, which is soft to the touch and easy to clean. The two seat cushions are plush and supportive, offering a comfortable place to sit and relax. The backrest is well-padded, providing ample back support, while the armrests are gently curved for a comfortable and relaxed feel. The sofa's frame is made from sturdy wood, ensuring it will last for years to come. With a modern and minimalist style, this sofa can fit in seamlessly with any modern decor, while the comfortable and high-quality upholstery makes it a great place to relax and unwind." - ) - ['de-DE']( - 'Dieses moderne 2-Sitzer-Sofa ist eine stilvolle und komfortable Ergänzung für jeden Wohnbereich. Das Sofa hat ein schlichtes und minimalistisches Design mit klaren Linien und einer zeitgenössischen Ästhetik. Es ist mit einem hochwertigen Baumwollstoff gepolstert, der sich weich anfühlt und leicht zu reinigen ist. Die beiden Sitzkissen sind weich und stützend und bieten einen bequemen Platz zum Sitzen und Entspannen. Die Rückenlehne ist gut gepolstert und stützt den Rücken, während die Armlehnen sanft geschwungen sind, um ein bequemes und entspanntes Gefühl zu vermitteln. Das Gestell des Sofas ist aus robustem Holz oder Metall gefertigt, so dass es viele Jahre halten wird. Mit seinem modernen und minimalistischen Stil fügt sich dieses Sofa nahtlos in jede moderne Einrichtung ein, während die bequeme und hochwertige Polsterung es zu einem großartigen Ort zum Entspannen und Relaxen macht.' - ) - ['en-US']( - "This modern 2-seater sofa is a stylish and comfortable addition to any living space. The sofa features a sleek and minimalistic design, with clean lines and a contemporary aesthetic. It is upholstered in high-quality cotton fabric, which is soft to the touch and easy to clean. The two seat cushions are plush and supportive, offering a comfortable place to sit and relax. The backrest is well-padded, providing ample back support, while the armrests are gently curved for a comfortable and relaxed feel. The sofa's frame is made from sturdy wood, ensuring it will last for years to come. With a modern and minimalist style, this sofa can fit in seamlessly with any modern decor, while the comfortable and high-quality upholstery makes it a great place to relax and unwind." - ) + [ + 'en-GB' + ]("This modern 2-seater sofa is a stylish and comfortable addition to any living space. The sofa features a sleek and minimalistic design, with clean lines and a contemporary aesthetic. It is upholstered in high-quality cotton fabric, which is soft to the touch and easy to clean. The two seat cushions are plush and supportive, offering a comfortable place to sit and relax. The backrest is well-padded, providing ample back support, while the armrests are gently curved for a comfortable and relaxed feel. The sofa's frame is made from sturdy wood, ensuring it will last for years to come. With a modern and minimalist style, this sofa can fit in seamlessly with any modern decor, while the comfortable and high-quality upholstery makes it a great place to relax and unwind.") + [ + 'de-DE' + ]('Dieses moderne 2-Sitzer-Sofa ist eine stilvolle und komfortable Ergänzung für jeden Wohnbereich. Das Sofa hat ein schlichtes und minimalistisches Design mit klaren Linien und einer zeitgenössischen Ästhetik. Es ist mit einem hochwertigen Baumwollstoff gepolstert, der sich weich anfühlt und leicht zu reinigen ist. Die beiden Sitzkissen sind weich und stützend und bieten einen bequemen Platz zum Sitzen und Entspannen. Die Rückenlehne ist gut gepolstert und stützt den Rücken, während die Armlehnen sanft geschwungen sind, um ein bequemes und entspanntes Gefühl zu vermitteln. Das Gestell des Sofas ist aus robustem Holz oder Metall gefertigt, so dass es viele Jahre halten wird. Mit seinem modernen und minimalistischen Stil fügt sich dieses Sofa nahtlos in jede moderne Einrichtung ein, während die bequeme und hochwertige Polsterung es zu einem großartigen Ort zum Entspannen und Relaxen macht.') + [ + 'en-US' + ]("This modern 2-seater sofa is a stylish and comfortable addition to any living space. The sofa features a sleek and minimalistic design, with clean lines and a contemporary aesthetic. It is upholstered in high-quality cotton fabric, which is soft to the touch and easy to clean. The two seat cushions are plush and supportive, offering a comfortable place to sit and relax. The backrest is well-padded, providing ample back support, while the armrests are gently curved for a comfortable and relaxed feel. The sofa's frame is made from sturdy wood, ensuring it will last for years to come. With a modern and minimalist style, this sofa can fit in seamlessly with any modern decor, while the comfortable and high-quality upholstery makes it a great place to relax and unwind.") ) .slug( LocalizedStringDraft.presets @@ -92,15 +92,15 @@ const nalaTwoSeaterSofa = (): TProductDraftBuilder => KeyReferenceDraft.presets.taxCategory().key(standardTaxCategory.key!) ) .masterVariant( - ProductVariantDraft.presets.sampleDataGoodStore.nalaTwoSeaterSofa01() + ProductVariantDraft.presets.sampleDataB2CLifestyle.nalaTwoSeaterSofa01() ) .variants([ - ProductVariantDraft.presets.sampleDataGoodStore.nalaTwoSeaterSofa02(), - ProductVariantDraft.presets.sampleDataGoodStore.nalaTwoSeaterSofa03(), - ProductVariantDraft.presets.sampleDataGoodStore.nalaTwoSeaterSofa04(), - ProductVariantDraft.presets.sampleDataGoodStore.nalaTwoSeaterSofa05(), - ProductVariantDraft.presets.sampleDataGoodStore.nalaTwoSeaterSofa06(), - ProductVariantDraft.presets.sampleDataGoodStore.nalaTwoSeaterSofa07(), + ProductVariantDraft.presets.sampleDataB2CLifestyle.nalaTwoSeaterSofa02(), + ProductVariantDraft.presets.sampleDataB2CLifestyle.nalaTwoSeaterSofa03(), + ProductVariantDraft.presets.sampleDataB2CLifestyle.nalaTwoSeaterSofa04(), + ProductVariantDraft.presets.sampleDataB2CLifestyle.nalaTwoSeaterSofa05(), + ProductVariantDraft.presets.sampleDataB2CLifestyle.nalaTwoSeaterSofa06(), + ProductVariantDraft.presets.sampleDataB2CLifestyle.nalaTwoSeaterSofa07(), ]) .categories([ KeyReferenceDraft.presets.category().key(livingRoomFurnitureDraft.key!), diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/natura-rug.spec.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/natura-rug.spec.ts similarity index 99% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/natura-rug.spec.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/natura-rug.spec.ts index e3b985c4b..cca816f69 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/natura-rug.spec.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/natura-rug.spec.ts @@ -57,7 +57,7 @@ describe(`with naturaRug preset`, () => { "w": 8000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Natura_Rug-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Natura_Rug-1.1.jpeg", }, ], "key": undefined, @@ -202,7 +202,7 @@ describe(`with naturaRug preset`, () => { "width": 8000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Natura_Rug-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Natura_Rug-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/natura-rug.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/natura-rug.ts similarity index 87% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/natura-rug.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/natura-rug.ts index 0e78b01a5..6ef6bd08c 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/natura-rug.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/natura-rug.ts @@ -18,23 +18,24 @@ import * as ProductVariantDraft from '../../../../product-variant/product-varian import * as ProductDraft from '../../../product-draft'; import type { TProductDraftBuilder } from '../../../types'; -const standardTaxCategory = TaxCategoryDraft.presets.sampleDataGoodStore +const standardTaxCategory = TaxCategoryDraft.presets.sampleDataB2CLifestyle .standardTaxCategory() .build(); -const naturaRugProductTypeDraft = ProductTypeDraft.presets.sampleDataGoodStore - .furnitureAndDecor() - .build(); +const naturaRugProductTypeDraft = + ProductTypeDraft.presets.sampleDataB2CLifestyle + .furnitureAndDecor() + .build(); -const rugsDraft = CategoryDraft.presets.sampleDataGoodStore +const rugsDraft = CategoryDraft.presets.sampleDataB2CLifestyle .rugs() .build(); -const roomDecorDraft = CategoryDraft.presets.sampleDataGoodStore +const roomDecorDraft = CategoryDraft.presets.sampleDataB2CLifestyle .roomDecor() .build(); -const homeDecorDraft = CategoryDraft.presets.sampleDataGoodStore +const homeDecorDraft = CategoryDraft.presets.sampleDataB2CLifestyle .homeDecor() .build(); @@ -52,15 +53,15 @@ const naturaRug = (): TProductDraftBuilder => .description( LocalizedStringDraft.presets .empty() - ['en-GB']( - 'A round area rug made of natural fibers is a type of rug that is circular in shape and made from materials that are found in nature. Natural fibers commonly used for this type of rug include jute, sisal, seagrass, and bamboo. These rugs have a rustic and organic feel due to the use of natural materials, which can add warmth and texture to a space. The neutral tones of these fibers also make them versatile and able to complement a range of decor styles, from bohemian to coastal to farmhouse. The texture and thickness of a round area rug made of natural fibers can vary depending on the material used. For example, jute and sisal have a rougher texture and thinner pile, while seagrass and bamboo have a smoother texture and thicker pile. The construction of these rugs is often done by hand, which adds to their unique and one-of-a-kind quality. The weaving or braiding technique used to create the rug can also add visual interest to the design, such as with a herringbone or chevron pattern. A round area rug made of natural fibers can be used in a variety of spaces, from living rooms to bedrooms to dining areas. They are especially popular in bohemian and coastal decor styles, where they can add a relaxed and laid-back vibe to the space. Overall, a round area rug made of natural fibers is a stylish and eco-friendly choice for anyone looking to add texture and warmth to their home decor.' - ) - ['de-DE']( - 'Ein runder Teppich aus Naturfasern ist ein kreisförmiger Teppich, der aus Materialien hergestellt wird, die in der Natur vorkommen. Zu den Naturfasern, die üblicherweise für diese Art von Teppichen verwendet werden, gehören Jute, Sisal, Seegras und Bambus. Durch die Verwendung natürlicher Materialien haben diese Teppiche einen rustikalen und organischen Charakter, der einem Raum Wärme und Struktur verleihen kann. Die neutralen Farbtöne dieser Fasern machen sie außerdem vielseitig einsetzbar und passen zu einer Reihe von Einrichtungsstilen, von Bohème über Küsten- bis hin zu Landhausstil. Die Textur und Dicke eines runden Teppichs aus Naturfasern kann je nach verwendetem Material variieren. Jute und Sisal haben beispielsweise eine rauere Struktur und einen dünneren Flor, während Seegras und Bambus eine glattere Textur und einen dickeren Flor haben. Die Herstellung dieser Teppiche erfolgt häufig in Handarbeit, was zu ihrer Einzigartigkeit beiträgt. Auch die Web- oder Flechttechnik, mit der der Teppich hergestellt wird, kann das Design optisch aufwerten, z. B. durch ein Fischgräten- oder Chevron-Muster. Ein runder Teppich aus Naturfasern kann in einer Vielzahl von Räumen verwendet werden, vom Wohnzimmer über das Schlafzimmer bis zum Essbereich. Besonders beliebt sind sie im Bohème- und Küsten-Stil, wo sie dem Raum eine entspannte und lockere Atmosphäre verleihen können. Insgesamt ist ein runder Teppich aus Naturfasern eine stilvolle und umweltfreundliche Wahl für alle, die ihrer Einrichtung Textur und Wärme verleihen möchten.' - ) - ['en-US']( - 'A round area rug made of natural fibers is a type of rug that is circular in shape and made from materials that are found in nature. Natural fibers commonly used for this type of rug include jute, sisal, seagrass, and bamboo. These rugs have a rustic and organic feel due to the use of natural materials, which can add warmth and texture to a space. The neutral tones of these fibers also make them versatile and able to complement a range of decor styles, from bohemian to coastal to farmhouse. The texture and thickness of a round area rug made of natural fibers can vary depending on the material used. For example, jute and sisal have a rougher texture and thinner pile, while seagrass and bamboo have a smoother texture and thicker pile. The construction of these rugs is often done by hand, which adds to their unique and one-of-a-kind quality. The weaving or braiding technique used to create the rug can also add visual interest to the design, such as with a herringbone or chevron pattern. A round area rug made of natural fibers can be used in a variety of spaces, from living rooms to bedrooms to dining areas. They are especially popular in bohemian and coastal decor styles, where they can add a relaxed and laid-back vibe to the space. Overall, a round area rug made of natural fibers is a stylish and eco-friendly choice for anyone looking to add texture and warmth to their home decor.' - ) + [ + 'en-GB' + ]('A round area rug made of natural fibers is a type of rug that is circular in shape and made from materials that are found in nature. Natural fibers commonly used for this type of rug include jute, sisal, seagrass, and bamboo. These rugs have a rustic and organic feel due to the use of natural materials, which can add warmth and texture to a space. The neutral tones of these fibers also make them versatile and able to complement a range of decor styles, from bohemian to coastal to farmhouse. The texture and thickness of a round area rug made of natural fibers can vary depending on the material used. For example, jute and sisal have a rougher texture and thinner pile, while seagrass and bamboo have a smoother texture and thicker pile. The construction of these rugs is often done by hand, which adds to their unique and one-of-a-kind quality. The weaving or braiding technique used to create the rug can also add visual interest to the design, such as with a herringbone or chevron pattern. A round area rug made of natural fibers can be used in a variety of spaces, from living rooms to bedrooms to dining areas. They are especially popular in bohemian and coastal decor styles, where they can add a relaxed and laid-back vibe to the space. Overall, a round area rug made of natural fibers is a stylish and eco-friendly choice for anyone looking to add texture and warmth to their home decor.') + [ + 'de-DE' + ]('Ein runder Teppich aus Naturfasern ist ein kreisförmiger Teppich, der aus Materialien hergestellt wird, die in der Natur vorkommen. Zu den Naturfasern, die üblicherweise für diese Art von Teppichen verwendet werden, gehören Jute, Sisal, Seegras und Bambus. Durch die Verwendung natürlicher Materialien haben diese Teppiche einen rustikalen und organischen Charakter, der einem Raum Wärme und Struktur verleihen kann. Die neutralen Farbtöne dieser Fasern machen sie außerdem vielseitig einsetzbar und passen zu einer Reihe von Einrichtungsstilen, von Bohème über Küsten- bis hin zu Landhausstil. Die Textur und Dicke eines runden Teppichs aus Naturfasern kann je nach verwendetem Material variieren. Jute und Sisal haben beispielsweise eine rauere Struktur und einen dünneren Flor, während Seegras und Bambus eine glattere Textur und einen dickeren Flor haben. Die Herstellung dieser Teppiche erfolgt häufig in Handarbeit, was zu ihrer Einzigartigkeit beiträgt. Auch die Web- oder Flechttechnik, mit der der Teppich hergestellt wird, kann das Design optisch aufwerten, z. B. durch ein Fischgräten- oder Chevron-Muster. Ein runder Teppich aus Naturfasern kann in einer Vielzahl von Räumen verwendet werden, vom Wohnzimmer über das Schlafzimmer bis zum Essbereich. Besonders beliebt sind sie im Bohème- und Küsten-Stil, wo sie dem Raum eine entspannte und lockere Atmosphäre verleihen können. Insgesamt ist ein runder Teppich aus Naturfasern eine stilvolle und umweltfreundliche Wahl für alle, die ihrer Einrichtung Textur und Wärme verleihen möchten.') + [ + 'en-US' + ]('A round area rug made of natural fibers is a type of rug that is circular in shape and made from materials that are found in nature. Natural fibers commonly used for this type of rug include jute, sisal, seagrass, and bamboo. These rugs have a rustic and organic feel due to the use of natural materials, which can add warmth and texture to a space. The neutral tones of these fibers also make them versatile and able to complement a range of decor styles, from bohemian to coastal to farmhouse. The texture and thickness of a round area rug made of natural fibers can vary depending on the material used. For example, jute and sisal have a rougher texture and thinner pile, while seagrass and bamboo have a smoother texture and thicker pile. The construction of these rugs is often done by hand, which adds to their unique and one-of-a-kind quality. The weaving or braiding technique used to create the rug can also add visual interest to the design, such as with a herringbone or chevron pattern. A round area rug made of natural fibers can be used in a variety of spaces, from living rooms to bedrooms to dining areas. They are especially popular in bohemian and coastal decor styles, where they can add a relaxed and laid-back vibe to the space. Overall, a round area rug made of natural fibers is a stylish and eco-friendly choice for anyone looking to add texture and warmth to their home decor.') ) .slug( LocalizedStringDraft.presets @@ -79,7 +80,7 @@ const naturaRug = (): TProductDraftBuilder => KeyReferenceDraft.presets.taxCategory().key(standardTaxCategory.key!) ) .masterVariant( - ProductVariantDraft.presets.sampleDataGoodStore.naturaRug01() + ProductVariantDraft.presets.sampleDataB2CLifestyle.naturaRug01() ) .categories([ KeyReferenceDraft.presets.category().key(rugsDraft.key!), diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/opal-king-bed.spec.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/opal-king-bed.spec.ts similarity index 99% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/opal-king-bed.spec.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/opal-king-bed.spec.ts index bfcc54031..748ba449d 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/opal-king-bed.spec.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/opal-king-bed.spec.ts @@ -57,7 +57,7 @@ describe(`with opalKingBed preset`, () => { "w": 2000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Opal_King_Bed-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Opal_King_Bed-1.1.jpeg", }, ], "key": undefined, @@ -200,7 +200,7 @@ describe(`with opalKingBed preset`, () => { "width": 2000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Opal_King_Bed-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Opal_King_Bed-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/opal-king-bed.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/opal-king-bed.ts similarity index 83% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/opal-king-bed.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/opal-king-bed.ts index 756405e4c..58e5c8ca9 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/opal-king-bed.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/opal-king-bed.ts @@ -18,23 +18,24 @@ import * as ProductVariantDraft from '../../../../product-variant/product-varian import * as ProductDraft from '../../../product-draft'; import type { TProductDraftBuilder } from '../../../types'; -const standardTaxCategory = TaxCategoryDraft.presets.sampleDataGoodStore +const standardTaxCategory = TaxCategoryDraft.presets.sampleDataB2CLifestyle .standardTaxCategory() .build(); -const opalKingBedProductTypeDraft = ProductTypeDraft.presets.sampleDataGoodStore - .furnitureAndDecor() - .build(); +const opalKingBedProductTypeDraft = + ProductTypeDraft.presets.sampleDataB2CLifestyle + .furnitureAndDecor() + .build(); -const bedroomFurnitureDraft = CategoryDraft.presets.sampleDataGoodStore +const bedroomFurnitureDraft = CategoryDraft.presets.sampleDataB2CLifestyle .bedroomFurniture() .build(); -const furnitureDraft = CategoryDraft.presets.sampleDataGoodStore +const furnitureDraft = CategoryDraft.presets.sampleDataB2CLifestyle .furniture() .build(); -const bedsDraft = CategoryDraft.presets.sampleDataGoodStore +const bedsDraft = CategoryDraft.presets.sampleDataB2CLifestyle .beds() .build(); @@ -52,15 +53,15 @@ const opalKingBed = (): TProductDraftBuilder => .description( LocalizedStringDraft.presets .empty() - ['en-GB']( - 'A modern king bed with a tufted headboard is a stylish and elegant piece of furniture that can bring a touch of luxury and sophistication to any bedroom. The mattress platform is large enough to accommodate a king-size mattress, and the entire bed is designed with clean, sleek lines that give it a modern look. The tufted headboard is the centerpiece of the bed and is often the most eye-catching feature. It is made of soft, durable fabric that is tufted in a square pattern. The tufted design gives the headboard a plush, cushioned appearance, making it comfortable for sitting up in bed to read or watch TV. The overall design of the bed is modern, emphasizing the beauty of the tufted headboard. Overall, a modern king bed with a tufted headboard is a statement piece that can add both style and comfort to any bedroom.' - ) - ['de-DE']( - 'Ein modernes Kingsize-Bett mit getuftetem Kopfteil ist ein stilvolles und elegantes Möbelstück, das einen Hauch von Luxus und Raffinesse in jedes Schlafzimmer bringen kann. Die Matratzenplattform ist groß genug, um eine Kingsize-Matratze aufzunehmen, und das gesamte Bett ist mit klaren, schlanken Linien gestaltet, die ihm einen modernen Look verleihen. Das getuftete Kopfteil ist das Herzstück des Bettes und oft der Blickfang schlechthin. Es ist aus weichem, strapazierfähigem Stoff gefertigt, der in einem quadratischen Muster getuftet ist. Das getuftete Design verleiht dem Kopfteil ein plüschiges, gepolstertes Aussehen und macht es bequem, wenn man im Bett sitzt, um zu lesen oder fernzusehen. Das Gesamtdesign des Bettes ist modern und unterstreicht die Schönheit des getufteten Kopfteils. Insgesamt ist ein modernes Doppelbett mit getuftetem Kopfteil ein Highlight, das jedes Schlafzimmer mit Stil und Komfort bereichert.' - ) - ['en-US']( - 'A modern king bed with a tufted headboard is a stylish and elegant piece of furniture that can bring a touch of luxury and sophistication to any bedroom. The mattress platform is large enough to accommodate a king-size mattress, and the entire bed is designed with clean, sleek lines that give it a modern look. The tufted headboard is the centerpiece of the bed and is often the most eye-catching feature. It is made of soft, durable fabric that is tufted in a square pattern. The tufted design gives the headboard a plush, cushioned appearance, making it comfortable for sitting up in bed to read or watch TV. The overall design of the bed is modern, emphasizing the beauty of the tufted headboard. Overall, a modern king bed with a tufted headboard is a statement piece that can add both style and comfort to any bedroom.' - ) + [ + 'en-GB' + ]('A modern king bed with a tufted headboard is a stylish and elegant piece of furniture that can bring a touch of luxury and sophistication to any bedroom. The mattress platform is large enough to accommodate a king-size mattress, and the entire bed is designed with clean, sleek lines that give it a modern look. The tufted headboard is the centerpiece of the bed and is often the most eye-catching feature. It is made of soft, durable fabric that is tufted in a square pattern. The tufted design gives the headboard a plush, cushioned appearance, making it comfortable for sitting up in bed to read or watch TV. The overall design of the bed is modern, emphasizing the beauty of the tufted headboard. Overall, a modern king bed with a tufted headboard is a statement piece that can add both style and comfort to any bedroom.') + [ + 'de-DE' + ]('Ein modernes Kingsize-Bett mit getuftetem Kopfteil ist ein stilvolles und elegantes Möbelstück, das einen Hauch von Luxus und Raffinesse in jedes Schlafzimmer bringen kann. Die Matratzenplattform ist groß genug, um eine Kingsize-Matratze aufzunehmen, und das gesamte Bett ist mit klaren, schlanken Linien gestaltet, die ihm einen modernen Look verleihen. Das getuftete Kopfteil ist das Herzstück des Bettes und oft der Blickfang schlechthin. Es ist aus weichem, strapazierfähigem Stoff gefertigt, der in einem quadratischen Muster getuftet ist. Das getuftete Design verleiht dem Kopfteil ein plüschiges, gepolstertes Aussehen und macht es bequem, wenn man im Bett sitzt, um zu lesen oder fernzusehen. Das Gesamtdesign des Bettes ist modern und unterstreicht die Schönheit des getufteten Kopfteils. Insgesamt ist ein modernes Doppelbett mit getuftetem Kopfteil ein Highlight, das jedes Schlafzimmer mit Stil und Komfort bereichert.') + [ + 'en-US' + ]('A modern king bed with a tufted headboard is a stylish and elegant piece of furniture that can bring a touch of luxury and sophistication to any bedroom. The mattress platform is large enough to accommodate a king-size mattress, and the entire bed is designed with clean, sleek lines that give it a modern look. The tufted headboard is the centerpiece of the bed and is often the most eye-catching feature. It is made of soft, durable fabric that is tufted in a square pattern. The tufted design gives the headboard a plush, cushioned appearance, making it comfortable for sitting up in bed to read or watch TV. The overall design of the bed is modern, emphasizing the beauty of the tufted headboard. Overall, a modern king bed with a tufted headboard is a statement piece that can add both style and comfort to any bedroom.') ) .slug( LocalizedStringDraft.presets @@ -79,7 +80,7 @@ const opalKingBed = (): TProductDraftBuilder => KeyReferenceDraft.presets.taxCategory().key(standardTaxCategory.key!) ) .masterVariant( - ProductVariantDraft.presets.sampleDataGoodStore.opalKingBed01() + ProductVariantDraft.presets.sampleDataB2CLifestyle.opalKingBed01() ) .categories([ KeyReferenceDraft.presets.category().key(bedroomFurnitureDraft.key!), diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/orion-double-bed.spec.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/orion-double-bed.spec.ts similarity index 98% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/orion-double-bed.spec.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/orion-double-bed.spec.ts index fedd8d98c..57710f29a 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/orion-double-bed.spec.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/orion-double-bed.spec.ts @@ -68,7 +68,7 @@ describe(`with orionDoubleBed preset`, () => { "w": 5000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Orion_Double_Bed-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Orion_Double_Bed-1.1.jpeg", }, ], "key": undefined, @@ -215,7 +215,7 @@ describe(`with orionDoubleBed preset`, () => { "width": 5000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Orion_Double_Bed-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Orion_Double_Bed-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/orion-double-bed.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/orion-double-bed.ts similarity index 82% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/orion-double-bed.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/orion-double-bed.ts index bb37c5003..8547e572f 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/orion-double-bed.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/orion-double-bed.ts @@ -18,24 +18,24 @@ import * as ProductVariantDraft from '../../../../product-variant/product-varian import * as ProductDraft from '../../../product-draft'; import type { TProductDraftBuilder } from '../../../types'; -const standardTaxCategory = TaxCategoryDraft.presets.sampleDataGoodStore +const standardTaxCategory = TaxCategoryDraft.presets.sampleDataB2CLifestyle .standardTaxCategory() .build(); const orionDoubleBedProductTypeDraft = - ProductTypeDraft.presets.sampleDataGoodStore + ProductTypeDraft.presets.sampleDataB2CLifestyle .furnitureAndDecor() .build(); -const bedroomFurnitureDraft = CategoryDraft.presets.sampleDataGoodStore +const bedroomFurnitureDraft = CategoryDraft.presets.sampleDataB2CLifestyle .bedroomFurniture() .build(); -const furnitureDraft = CategoryDraft.presets.sampleDataGoodStore +const furnitureDraft = CategoryDraft.presets.sampleDataB2CLifestyle .furniture() .build(); -const bedsDraft = CategoryDraft.presets.sampleDataGoodStore +const bedsDraft = CategoryDraft.presets.sampleDataB2CLifestyle .beds() .build(); @@ -53,15 +53,15 @@ const orionDoubleBed = (): TProductDraftBuilder => .description( LocalizedStringDraft.presets .empty() - ['en-GB']( - 'A queen bed with a tufted headboard and platform and steel legs is a modern and stylish piece of furniture. The headboard is tall and wide, featuring a tufted design. The fabric used for the headboard is soft and luxurious, providing a comfortable place to lean against when sitting up in bed. The bed is raised off the ground on a platform, which is supported by sleek and sturdy steel legs. The platform provides a solid and stable foundation for the mattress, while also giving the bed a clean and minimalist look. Overall, this queen bed is a beautiful and functional piece that would be perfect for a modern bedroom with a minimalist or industrial aesthetic.' - ) - ['de-DE']( - 'Ein Queensize-Bett mit getuftetem Kopfteil und Podest und Stahlfüßen ist ein modernes und stilvolles Möbelstück. Das Kopfteil ist hoch und breit und verfügt über ein getuftetes Design. Der für das Kopfteil verwendete Stoff ist weich und luxuriös und bietet einen bequemen Platz zum Anlehnen, wenn man sich im Bett aufrichtet. Das Bett steht auf einem Podest, das von schlanken und stabilen Stahlbeinen getragen wird. Das Podest bietet eine solide und stabile Grundlage für die Matratze und verleiht dem Bett gleichzeitig einen klaren und minimalistischen Look. Insgesamt ist dieses Bett ein schönes und funktionales Möbelstück, das sich perfekt für ein modernes Schlafzimmer mit minimalistischer oder industrieller Ästhetik eignet.' - ) - ['en-US']( - 'A queen bed with a tufted headboard and platform and steel legs is a modern and stylish piece of furniture. The headboard is tall and wide, featuring a tufted design. The fabric used for the headboard is soft and luxurious, providing a comfortable place to lean against when sitting up in bed. The bed is raised off the ground on a platform, which is supported by sleek and sturdy steel legs. The platform provides a solid and stable foundation for the mattress, while also giving the bed a clean and minimalist look. Overall, this queen bed is a beautiful and functional piece that would be perfect for a modern bedroom with a minimalist or industrial aesthetic.' - ) + [ + 'en-GB' + ]('A queen bed with a tufted headboard and platform and steel legs is a modern and stylish piece of furniture. The headboard is tall and wide, featuring a tufted design. The fabric used for the headboard is soft and luxurious, providing a comfortable place to lean against when sitting up in bed. The bed is raised off the ground on a platform, which is supported by sleek and sturdy steel legs. The platform provides a solid and stable foundation for the mattress, while also giving the bed a clean and minimalist look. Overall, this queen bed is a beautiful and functional piece that would be perfect for a modern bedroom with a minimalist or industrial aesthetic.') + [ + 'de-DE' + ]('Ein Queensize-Bett mit getuftetem Kopfteil und Podest und Stahlfüßen ist ein modernes und stilvolles Möbelstück. Das Kopfteil ist hoch und breit und verfügt über ein getuftetes Design. Der für das Kopfteil verwendete Stoff ist weich und luxuriös und bietet einen bequemen Platz zum Anlehnen, wenn man sich im Bett aufrichtet. Das Bett steht auf einem Podest, das von schlanken und stabilen Stahlbeinen getragen wird. Das Podest bietet eine solide und stabile Grundlage für die Matratze und verleiht dem Bett gleichzeitig einen klaren und minimalistischen Look. Insgesamt ist dieses Bett ein schönes und funktionales Möbelstück, das sich perfekt für ein modernes Schlafzimmer mit minimalistischer oder industrieller Ästhetik eignet.') + [ + 'en-US' + ]('A queen bed with a tufted headboard and platform and steel legs is a modern and stylish piece of furniture. The headboard is tall and wide, featuring a tufted design. The fabric used for the headboard is soft and luxurious, providing a comfortable place to lean against when sitting up in bed. The bed is raised off the ground on a platform, which is supported by sleek and sturdy steel legs. The platform provides a solid and stable foundation for the mattress, while also giving the bed a clean and minimalist look. Overall, this queen bed is a beautiful and functional piece that would be perfect for a modern bedroom with a minimalist or industrial aesthetic.') ) .slug( LocalizedStringDraft.presets @@ -80,7 +80,7 @@ const orionDoubleBed = (): TProductDraftBuilder => KeyReferenceDraft.presets.taxCategory().key(standardTaxCategory.key!) ) .masterVariant( - ProductVariantDraft.presets.sampleDataGoodStore.orionDoubleBed01() + ProductVariantDraft.presets.sampleDataB2CLifestyle.orionDoubleBed01() ) .categories([ KeyReferenceDraft.presets.category().key(bedroomFurnitureDraft.key!), diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/patterned-pillow-cover.spec.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/patterned-pillow-cover.spec.ts similarity index 98% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/patterned-pillow-cover.spec.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/patterned-pillow-cover.spec.ts index 13b32df77..da0e05140 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/patterned-pillow-cover.spec.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/patterned-pillow-cover.spec.ts @@ -57,7 +57,7 @@ describe(`with patternedPillowCover preset`, () => { "w": 6240, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Patterned_Pillow_Cover-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Patterned_Pillow_Cover-1.1.jpeg", }, ], "key": undefined, @@ -176,7 +176,7 @@ describe(`with patternedPillowCover preset`, () => { "w": 6047, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Patterned_Pillow_Cover-2.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Patterned_Pillow_Cover-2.1.jpeg", }, ], "key": undefined, @@ -284,7 +284,7 @@ describe(`with patternedPillowCover preset`, () => { "width": 6240, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Patterned_Pillow_Cover-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Patterned_Pillow_Cover-1.1.jpeg", }, ], "key": undefined, @@ -410,7 +410,7 @@ describe(`with patternedPillowCover preset`, () => { "width": 6047, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Patterned_Pillow_Cover-2.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Patterned_Pillow_Cover-2.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/patterned-pillow-cover.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/patterned-pillow-cover.ts similarity index 86% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/patterned-pillow-cover.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/patterned-pillow-cover.ts index 2b1a344dc..d261c213e 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/patterned-pillow-cover.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/patterned-pillow-cover.ts @@ -18,20 +18,20 @@ import * as ProductVariantDraft from '../../../../product-variant/product-varian import * as ProductDraft from '../../../product-draft'; import type { TProductDraftBuilder } from '../../../types'; -const standardTaxCategory = TaxCategoryDraft.presets.sampleDataGoodStore +const standardTaxCategory = TaxCategoryDraft.presets.sampleDataB2CLifestyle .standardTaxCategory() .build(); const patternedPillowCoverProductTypeDraft = - ProductTypeDraft.presets.sampleDataGoodStore + ProductTypeDraft.presets.sampleDataB2CLifestyle .furnitureAndDecor() .build(); -const beddingDraft = CategoryDraft.presets.sampleDataGoodStore +const beddingDraft = CategoryDraft.presets.sampleDataB2CLifestyle .bedding() .build(); -const homeDecorDraft = CategoryDraft.presets.sampleDataGoodStore +const homeDecorDraft = CategoryDraft.presets.sampleDataB2CLifestyle .homeDecor() .build(); @@ -49,15 +49,15 @@ const patternedPillowCover = (): TProductDraftBuilder => .description( LocalizedStringDraft.presets .empty() - ['en-GB']( - 'An art deco velvet pillow cover with geometric design is a luxurious and stylish accessory for any room in the home. It is made from soft, plush velvet fabric that feels soft and smooth to the touch. The velvet has a rich, lustrous sheen that adds an elegant and sophisticated touch to the pillow cover. The pillow cover features a geometric design that is inspired by the art deco style of the early 20th century. The design includes bold and angular shapes. The pillow cover is often used as a decorative accent for a bed, sofa, or accent chair, and can add a touch of glamour and sophistication to any room in the home. It can be paired with other art deco-inspired accessories, such as lamps, vases, and wall art, to create a cohesive and stylish look. The velvet fabric is durable and easy to clean, and can be spot cleaned with a damp cloth or sponge. It should be air-dried and fluffed periodically to maintain its shape and texture. Overall, an art deco velvet pillow cover with geometric design is a luxurious and stylish accessory that can enhance the beauty and comfort of any room in the home.' - ) - ['de-DE']( - 'Ein Art-Deco-Samtkissenbezug mit geometrischem Muster ist ein luxuriöses und stilvolles Accessoire für jeden Raum in Ihrem Zuhause. Er ist aus weichem, plüschigem Samtstoff gefertigt, der sich weich und glatt anfühlt. Der Samt hat einen reichen, schimmernden Glanz, der dem Kissenbezug eine elegante und anspruchsvolle Note verleiht. Der Kissenbezug weist ein geometrisches Design auf, das vom Art-déco-Stil des frühen 20. Jahrhunderts inspiriert ist. Jahrhunderts inspiriert ist. Das Design umfasst kühne und eckige Formen. Der Kissenbezug wird oft als dekorativer Akzent für ein Bett, ein Sofa oder einen Sessel verwendet und kann jedem Raum im Haus einen Hauch von Glamour und Raffinesse verleihen. Er lässt sich mit anderen vom Art déco inspirierten Accessoires wie Lampen, Vasen und Wandbildern kombinieren, um ein stimmiges und stilvolles Gesamtbild zu schaffen. Der Samtstoff ist strapazierfähig und pflegeleicht und kann mit einem feuchten Tuch oder Schwamm abgewischt werden. Er sollte regelmäßig an der Luft getrocknet und aufgefächert werden, damit er seine Form und Struktur behält. Insgesamt ist ein Art-Déco-Samtkissenbezug mit geometrischem Muster ein luxuriöses und stilvolles Accessoire, das die Schönheit und den Komfort eines jeden Raums im Haus verbessern kann.' - ) - ['en-US']( - 'An art deco velvet pillow cover with geometric design is a luxurious and stylish accessory for any room in the home. It is made from soft, plush velvet fabric that feels soft and smooth to the touch. The velvet has a rich, lustrous sheen that adds an elegant and sophisticated touch to the pillow cover. The pillow cover features a geometric design that is inspired by the art deco style of the early 20th century. The design includes bold and angular shapes. The pillow cover is often used as a decorative accent for a bed, sofa, or accent chair, and can add a touch of glamour and sophistication to any room in the home. It can be paired with other art deco-inspired accessories, such as lamps, vases, and wall art, to create a cohesive and stylish look. The velvet fabric is durable and easy to clean, and can be spot cleaned with a damp cloth or sponge. It should be air-dried and fluffed periodically to maintain its shape and texture. Overall, an art deco velvet pillow cover with geometric design is a luxurious and stylish accessory that can enhance the beauty and comfort of any room in the home.' - ) + [ + 'en-GB' + ]('An art deco velvet pillow cover with geometric design is a luxurious and stylish accessory for any room in the home. It is made from soft, plush velvet fabric that feels soft and smooth to the touch. The velvet has a rich, lustrous sheen that adds an elegant and sophisticated touch to the pillow cover. The pillow cover features a geometric design that is inspired by the art deco style of the early 20th century. The design includes bold and angular shapes. The pillow cover is often used as a decorative accent for a bed, sofa, or accent chair, and can add a touch of glamour and sophistication to any room in the home. It can be paired with other art deco-inspired accessories, such as lamps, vases, and wall art, to create a cohesive and stylish look. The velvet fabric is durable and easy to clean, and can be spot cleaned with a damp cloth or sponge. It should be air-dried and fluffed periodically to maintain its shape and texture. Overall, an art deco velvet pillow cover with geometric design is a luxurious and stylish accessory that can enhance the beauty and comfort of any room in the home.') + [ + 'de-DE' + ]('Ein Art-Deco-Samtkissenbezug mit geometrischem Muster ist ein luxuriöses und stilvolles Accessoire für jeden Raum in Ihrem Zuhause. Er ist aus weichem, plüschigem Samtstoff gefertigt, der sich weich und glatt anfühlt. Der Samt hat einen reichen, schimmernden Glanz, der dem Kissenbezug eine elegante und anspruchsvolle Note verleiht. Der Kissenbezug weist ein geometrisches Design auf, das vom Art-déco-Stil des frühen 20. Jahrhunderts inspiriert ist. Jahrhunderts inspiriert ist. Das Design umfasst kühne und eckige Formen. Der Kissenbezug wird oft als dekorativer Akzent für ein Bett, ein Sofa oder einen Sessel verwendet und kann jedem Raum im Haus einen Hauch von Glamour und Raffinesse verleihen. Er lässt sich mit anderen vom Art déco inspirierten Accessoires wie Lampen, Vasen und Wandbildern kombinieren, um ein stimmiges und stilvolles Gesamtbild zu schaffen. Der Samtstoff ist strapazierfähig und pflegeleicht und kann mit einem feuchten Tuch oder Schwamm abgewischt werden. Er sollte regelmäßig an der Luft getrocknet und aufgefächert werden, damit er seine Form und Struktur behält. Insgesamt ist ein Art-Déco-Samtkissenbezug mit geometrischem Muster ein luxuriöses und stilvolles Accessoire, das die Schönheit und den Komfort eines jeden Raums im Haus verbessern kann.') + [ + 'en-US' + ]('An art deco velvet pillow cover with geometric design is a luxurious and stylish accessory for any room in the home. It is made from soft, plush velvet fabric that feels soft and smooth to the touch. The velvet has a rich, lustrous sheen that adds an elegant and sophisticated touch to the pillow cover. The pillow cover features a geometric design that is inspired by the art deco style of the early 20th century. The design includes bold and angular shapes. The pillow cover is often used as a decorative accent for a bed, sofa, or accent chair, and can add a touch of glamour and sophistication to any room in the home. It can be paired with other art deco-inspired accessories, such as lamps, vases, and wall art, to create a cohesive and stylish look. The velvet fabric is durable and easy to clean, and can be spot cleaned with a damp cloth or sponge. It should be air-dried and fluffed periodically to maintain its shape and texture. Overall, an art deco velvet pillow cover with geometric design is a luxurious and stylish accessory that can enhance the beauty and comfort of any room in the home.') ) .slug( LocalizedStringDraft.presets @@ -76,10 +76,10 @@ const patternedPillowCover = (): TProductDraftBuilder => KeyReferenceDraft.presets.taxCategory().key(standardTaxCategory.key!) ) .masterVariant( - ProductVariantDraft.presets.sampleDataGoodStore.patternedPillowCover01() + ProductVariantDraft.presets.sampleDataB2CLifestyle.patternedPillowCover01() ) .variants([ - ProductVariantDraft.presets.sampleDataGoodStore.patternedPillowCover02(), + ProductVariantDraft.presets.sampleDataB2CLifestyle.patternedPillowCover02(), ]) .categories([ KeyReferenceDraft.presets.category().key(beddingDraft.key!), diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/pink-abstract-painting.spec.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/pink-abstract-painting.spec.ts similarity index 98% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/pink-abstract-painting.spec.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/pink-abstract-painting.spec.ts index f41aef614..1d3f63a17 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/pink-abstract-painting.spec.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/pink-abstract-painting.spec.ts @@ -61,7 +61,7 @@ describe(`with pinkAbstractPainting preset`, () => { "w": 3873, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Pink_Abstract_Painting-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Pink_Abstract_Painting-1.1.jpeg", }, ], "key": undefined, @@ -204,7 +204,7 @@ describe(`with pinkAbstractPainting preset`, () => { "width": 3873, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Pink_Abstract_Painting-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Pink_Abstract_Painting-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/pink-abstract-painting.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/pink-abstract-painting.ts similarity index 85% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/pink-abstract-painting.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/pink-abstract-painting.ts index e44fa5c22..e48029e16 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/pink-abstract-painting.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/pink-abstract-painting.ts @@ -18,24 +18,24 @@ import * as ProductVariantDraft from '../../../../product-variant/product-varian import * as ProductDraft from '../../../product-draft'; import type { TProductDraftBuilder } from '../../../types'; -const standardTaxCategory = TaxCategoryDraft.presets.sampleDataGoodStore +const standardTaxCategory = TaxCategoryDraft.presets.sampleDataB2CLifestyle .standardTaxCategory() .build(); const pinkAbstractPaintingProductTypeDraft = - ProductTypeDraft.presets.sampleDataGoodStore + ProductTypeDraft.presets.sampleDataB2CLifestyle .furnitureAndDecor() .build(); -const homeAccentsDraft = CategoryDraft.presets.sampleDataGoodStore +const homeAccentsDraft = CategoryDraft.presets.sampleDataB2CLifestyle .homeAccents() .build(); -const roomDecorDraft = CategoryDraft.presets.sampleDataGoodStore +const roomDecorDraft = CategoryDraft.presets.sampleDataB2CLifestyle .roomDecor() .build(); -const homeDecorDraft = CategoryDraft.presets.sampleDataGoodStore +const homeDecorDraft = CategoryDraft.presets.sampleDataB2CLifestyle .homeDecor() .build(); @@ -53,15 +53,15 @@ const pinkAbstractPainting = (): TProductDraftBuilder => .description( LocalizedStringDraft.presets .empty() - ['en-GB']( - 'A pink abstract painting is a vibrant and eye-catching work of art that can evoke a range of emotions and interpretations. The painting is created with acrylic paints on canvas. The composition of the painting is abstract, with no recognizable objects or figures. The use of pink in the painting may be symbolic, representing love, femininity, or energy. The painting can be hung on a wall as part of a gallery grouping or as a statement piece that dominates the room. The pink color scheme of the painting can create a powerful focal point, drawing the eye towards it and creating a sense of energy. Overall, a pink abstract painting is a bold and expressive work of art that can add a sense of vitality and excitement to any space. Its vibrant color scheme and abstract composition can create a sense of mystery and intrigue, inviting viewers to interpret and connect with the painting in their own way.' - ) - ['de-DE']( - 'Ein rosafarbenes abstraktes Gemälde ist ein lebhaftes und auffälliges Kunstwerk, das eine Reihe von Emotionen und Interpretationen hervorrufen kann. Das Gemälde wurde mit Acrylfarben auf Leinwand gemalt. Die Komposition des Gemäldes ist abstrakt und enthält keine erkennbaren Objekte oder Figuren. Die Verwendung von Rosa auf dem Gemälde kann symbolisch sein und Liebe, Weiblichkeit oder Energie darstellen. Das Gemälde kann als Teil einer Galeriegruppe oder als raumbeherrschendes Einzelstück an die Wand gehängt werden. Das Rosa des Gemäldes kann einen starken Fokuspunkt bilden, der das Auge auf das Bild lenkt und ein Gefühl von Energie erzeugt. Insgesamt ist ein rosafarbenes abstraktes Gemälde ein kühnes und ausdrucksstarkes Kunstwerk, das jedem Raum ein Gefühl von Vitalität und Aufregung verleihen kann. Die lebendige Farbgebung und die abstrakte Komposition können ein geheimnisvolles Gefühl und Faszination erzeugen und den Betrachter dazu einladen, das Gemälde auf seine eigene Weise zu interpretieren und sich mit ihm zu verbinden.' - ) - ['en-US']( - 'A pink abstract painting is a vibrant and eye-catching work of art that can evoke a range of emotions and interpretations. The painting is created with acrylic paints on canvas. The composition of the painting is abstract, with no recognizable objects or figures. The use of pink in the painting may be symbolic, representing love, femininity, or energy. The painting can be hung on a wall as part of a gallery grouping or as a statement piece that dominates the room. The pink color scheme of the painting can create a powerful focal point, drawing the eye towards it and creating a sense of energy. Overall, a pink abstract painting is a bold and expressive work of art that can add a sense of vitality and excitement to any space. Its vibrant color scheme and abstract composition can create a sense of mystery and intrigue, inviting viewers to interpret and connect with the painting in their own way.' - ) + [ + 'en-GB' + ]('A pink abstract painting is a vibrant and eye-catching work of art that can evoke a range of emotions and interpretations. The painting is created with acrylic paints on canvas. The composition of the painting is abstract, with no recognizable objects or figures. The use of pink in the painting may be symbolic, representing love, femininity, or energy. The painting can be hung on a wall as part of a gallery grouping or as a statement piece that dominates the room. The pink color scheme of the painting can create a powerful focal point, drawing the eye towards it and creating a sense of energy. Overall, a pink abstract painting is a bold and expressive work of art that can add a sense of vitality and excitement to any space. Its vibrant color scheme and abstract composition can create a sense of mystery and intrigue, inviting viewers to interpret and connect with the painting in their own way.') + [ + 'de-DE' + ]('Ein rosafarbenes abstraktes Gemälde ist ein lebhaftes und auffälliges Kunstwerk, das eine Reihe von Emotionen und Interpretationen hervorrufen kann. Das Gemälde wurde mit Acrylfarben auf Leinwand gemalt. Die Komposition des Gemäldes ist abstrakt und enthält keine erkennbaren Objekte oder Figuren. Die Verwendung von Rosa auf dem Gemälde kann symbolisch sein und Liebe, Weiblichkeit oder Energie darstellen. Das Gemälde kann als Teil einer Galeriegruppe oder als raumbeherrschendes Einzelstück an die Wand gehängt werden. Das Rosa des Gemäldes kann einen starken Fokuspunkt bilden, der das Auge auf das Bild lenkt und ein Gefühl von Energie erzeugt. Insgesamt ist ein rosafarbenes abstraktes Gemälde ein kühnes und ausdrucksstarkes Kunstwerk, das jedem Raum ein Gefühl von Vitalität und Aufregung verleihen kann. Die lebendige Farbgebung und die abstrakte Komposition können ein geheimnisvolles Gefühl und Faszination erzeugen und den Betrachter dazu einladen, das Gemälde auf seine eigene Weise zu interpretieren und sich mit ihm zu verbinden.') + [ + 'en-US' + ]('A pink abstract painting is a vibrant and eye-catching work of art that can evoke a range of emotions and interpretations. The painting is created with acrylic paints on canvas. The composition of the painting is abstract, with no recognizable objects or figures. The use of pink in the painting may be symbolic, representing love, femininity, or energy. The painting can be hung on a wall as part of a gallery grouping or as a statement piece that dominates the room. The pink color scheme of the painting can create a powerful focal point, drawing the eye towards it and creating a sense of energy. Overall, a pink abstract painting is a bold and expressive work of art that can add a sense of vitality and excitement to any space. Its vibrant color scheme and abstract composition can create a sense of mystery and intrigue, inviting viewers to interpret and connect with the painting in their own way.') ) .slug( LocalizedStringDraft.presets @@ -80,7 +80,7 @@ const pinkAbstractPainting = (): TProductDraftBuilder => KeyReferenceDraft.presets.taxCategory().key(standardTaxCategory.key!) ) .masterVariant( - ProductVariantDraft.presets.sampleDataGoodStore.pinkAbstractPainting01() + ProductVariantDraft.presets.sampleDataB2CLifestyle.pinkAbstractPainting01() ) .categories([ KeyReferenceDraft.presets.category().key(homeAccentsDraft.key!), diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/purple-landscape-painting.spec.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/purple-landscape-painting.spec.ts similarity index 99% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/purple-landscape-painting.spec.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/purple-landscape-painting.spec.ts index ef79c4d80..10e477bc0 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/purple-landscape-painting.spec.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/purple-landscape-painting.spec.ts @@ -64,7 +64,7 @@ describe(`with purpleLandscapePainting preset`, () => { "w": 3755, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Purple_Landscape_Painting-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Purple_Landscape_Painting-1.1.jpeg", }, ], "key": undefined, @@ -207,7 +207,7 @@ describe(`with purpleLandscapePainting preset`, () => { "width": 3755, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Purple_Landscape_Painting-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Purple_Landscape_Painting-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/purple-landscape-painting.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/purple-landscape-painting.ts similarity index 86% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/purple-landscape-painting.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/purple-landscape-painting.ts index 1f4f526d1..bc3faf829 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/purple-landscape-painting.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/purple-landscape-painting.ts @@ -18,24 +18,24 @@ import * as ProductVariantDraft from '../../../../product-variant/product-varian import * as ProductDraft from '../../../product-draft'; import type { TProductDraftBuilder } from '../../../types'; -const standardTaxCategory = TaxCategoryDraft.presets.sampleDataGoodStore +const standardTaxCategory = TaxCategoryDraft.presets.sampleDataB2CLifestyle .standardTaxCategory() .build(); const purpleLandscapePaintingProductTypeDraft = - ProductTypeDraft.presets.sampleDataGoodStore + ProductTypeDraft.presets.sampleDataB2CLifestyle .furnitureAndDecor() .build(); -const homeAccentsDraft = CategoryDraft.presets.sampleDataGoodStore +const homeAccentsDraft = CategoryDraft.presets.sampleDataB2CLifestyle .homeAccents() .build(); -const roomDecorDraft = CategoryDraft.presets.sampleDataGoodStore +const roomDecorDraft = CategoryDraft.presets.sampleDataB2CLifestyle .roomDecor() .build(); -const homeDecorDraft = CategoryDraft.presets.sampleDataGoodStore +const homeDecorDraft = CategoryDraft.presets.sampleDataB2CLifestyle .homeDecor() .build(); @@ -53,15 +53,15 @@ const purpleLandscapePainting = (): TProductDraftBuilder => .description( LocalizedStringDraft.presets .empty() - ['en-GB']( - 'A purple landscape painting on canvas is a visually stunning work of art that can evoke a range of emotions and feelings. The painting is created with oil paints on a stretched canvas, and features a range of shades of purple, from deep indigo to light lavender. The composition of the painting is a landscape scene, depicting a natural setting such as a forest, mountain range, or field. The use of purple in the painting may be symbolic, representing creativity, spirituality, or mystery. The artist may have used a variety of techniques, such as layering, blending, or stippling, to create a dynamic and visually interesting piece. The texture of the painting may also be emphasized, with visible brushstrokes or thick impasto areas. The painting can be hung on a wall as part of a gallery grouping or as a statement piece that dominates the room. The purple color scheme of the painting can create a powerful focal point, drawing the eye towards it and creating a sense of drama. Overall, a purple landscape painting on canvas is a captivating and expressive work of art that can add a sense of wonder and enchantment to any space.' - ) - ['de-DE']( - 'Ein violettes Landschaftsgemälde auf Leinwand ist ein visuell beeindruckendes Kunstwerk, das eine Reihe von Emotionen und Gefühlen hervorrufen kann. Das Gemälde wurde mit Ölfarben auf einer aufgespannten Leinwand gemalt und zeigt eine Reihe von Lila-Tönen, von tiefem Indigo bis zu hellem Lavendel. Die Komposition des Gemäldes ist eine Landschaftsszene, die eine natürliche Umgebung wie einen Wald, eine Bergkette oder ein Feld darstellt. Die Verwendung von Violett auf dem Gemälde kann symbolisch sein und für Kreativität, Spiritualität oder Geheimnisse stehen. Der Künstler schafft durch eine Vielzahl von Techniken, wie z. B. Schichtung, Überblendung oder Tupfen, ein dynamisches und visuell interessantes Werk. Die Textur des Gemäldes wird durch sichtbare Pinselstriche und dicke Impasto-Bereiche hervorgehoben. Das Gemälde kann als Teil einer Galeriegruppe oder als raumbeherrschendes Kunstwerk an die Wand gehängt werden. Das violette Farbschema des Gemäldes kann einen starken Fokuspunkt bilden, der den Blick auf das Bild lenkt und ein Gefühl der Dramatik erzeugt. Insgesamt ist ein lilafarbenes Landschaftsgemälde auf Leinwand ein fesselndes und ausdrucksstarkes Kunstwerk, das jedem Raum ein Gefühl der Verwunderung und Verzauberung verleihen kann.' - ) - ['en-US']( - 'A purple landscape painting on canvas is a visually stunning work of art that can evoke a range of emotions and feelings. The painting is created with oil paints on a stretched canvas, and features a range of shades of purple, from deep indigo to light lavender. The composition of the painting is a landscape scene, depicting a natural setting such as a forest, mountain range, or field. The use of purple in the painting may be symbolic, representing creativity, spirituality, or mystery. The artist may have used a variety of techniques, such as layering, blending, or stippling, to create a dynamic and visually interesting piece. The texture of the painting may also be emphasized, with visible brushstrokes or thick impasto areas. The painting can be hung on a wall as part of a gallery grouping or as a statement piece that dominates the room. The purple color scheme of the painting can create a powerful focal point, drawing the eye towards it and creating a sense of drama. Overall, a purple landscape painting on canvas is a captivating and expressive work of art that can add a sense of wonder and enchantment to any space.' - ) + [ + 'en-GB' + ]('A purple landscape painting on canvas is a visually stunning work of art that can evoke a range of emotions and feelings. The painting is created with oil paints on a stretched canvas, and features a range of shades of purple, from deep indigo to light lavender. The composition of the painting is a landscape scene, depicting a natural setting such as a forest, mountain range, or field. The use of purple in the painting may be symbolic, representing creativity, spirituality, or mystery. The artist may have used a variety of techniques, such as layering, blending, or stippling, to create a dynamic and visually interesting piece. The texture of the painting may also be emphasized, with visible brushstrokes or thick impasto areas. The painting can be hung on a wall as part of a gallery grouping or as a statement piece that dominates the room. The purple color scheme of the painting can create a powerful focal point, drawing the eye towards it and creating a sense of drama. Overall, a purple landscape painting on canvas is a captivating and expressive work of art that can add a sense of wonder and enchantment to any space.') + [ + 'de-DE' + ]('Ein violettes Landschaftsgemälde auf Leinwand ist ein visuell beeindruckendes Kunstwerk, das eine Reihe von Emotionen und Gefühlen hervorrufen kann. Das Gemälde wurde mit Ölfarben auf einer aufgespannten Leinwand gemalt und zeigt eine Reihe von Lila-Tönen, von tiefem Indigo bis zu hellem Lavendel. Die Komposition des Gemäldes ist eine Landschaftsszene, die eine natürliche Umgebung wie einen Wald, eine Bergkette oder ein Feld darstellt. Die Verwendung von Violett auf dem Gemälde kann symbolisch sein und für Kreativität, Spiritualität oder Geheimnisse stehen. Der Künstler schafft durch eine Vielzahl von Techniken, wie z. B. Schichtung, Überblendung oder Tupfen, ein dynamisches und visuell interessantes Werk. Die Textur des Gemäldes wird durch sichtbare Pinselstriche und dicke Impasto-Bereiche hervorgehoben. Das Gemälde kann als Teil einer Galeriegruppe oder als raumbeherrschendes Kunstwerk an die Wand gehängt werden. Das violette Farbschema des Gemäldes kann einen starken Fokuspunkt bilden, der den Blick auf das Bild lenkt und ein Gefühl der Dramatik erzeugt. Insgesamt ist ein lilafarbenes Landschaftsgemälde auf Leinwand ein fesselndes und ausdrucksstarkes Kunstwerk, das jedem Raum ein Gefühl der Verwunderung und Verzauberung verleihen kann.') + [ + 'en-US' + ]('A purple landscape painting on canvas is a visually stunning work of art that can evoke a range of emotions and feelings. The painting is created with oil paints on a stretched canvas, and features a range of shades of purple, from deep indigo to light lavender. The composition of the painting is a landscape scene, depicting a natural setting such as a forest, mountain range, or field. The use of purple in the painting may be symbolic, representing creativity, spirituality, or mystery. The artist may have used a variety of techniques, such as layering, blending, or stippling, to create a dynamic and visually interesting piece. The texture of the painting may also be emphasized, with visible brushstrokes or thick impasto areas. The painting can be hung on a wall as part of a gallery grouping or as a statement piece that dominates the room. The purple color scheme of the painting can create a powerful focal point, drawing the eye towards it and creating a sense of drama. Overall, a purple landscape painting on canvas is a captivating and expressive work of art that can add a sense of wonder and enchantment to any space.') ) .slug( LocalizedStringDraft.presets @@ -80,7 +80,7 @@ const purpleLandscapePainting = (): TProductDraftBuilder => KeyReferenceDraft.presets.taxCategory().key(standardTaxCategory.key!) ) .masterVariant( - ProductVariantDraft.presets.sampleDataGoodStore.purpleLandscapePainting01() + ProductVariantDraft.presets.sampleDataB2CLifestyle.purpleLandscapePainting01() ) .categories([ KeyReferenceDraft.presets.category().key(homeAccentsDraft.key!), diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/purple-minimalist-abstract-painting.spec.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/purple-minimalist-abstract-painting.spec.ts similarity index 98% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/purple-minimalist-abstract-painting.spec.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/purple-minimalist-abstract-painting.spec.ts index 3055a4898..4be55b51a 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/purple-minimalist-abstract-painting.spec.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/purple-minimalist-abstract-painting.spec.ts @@ -61,7 +61,7 @@ describe(`with purpleMinimalistAbstractPainting preset`, () => { "w": 3148, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Purple_Minimalist_Abstract_Painting-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Purple_Minimalist_Abstract_Painting-1.1.jpeg", }, ], "key": undefined, @@ -208,7 +208,7 @@ describe(`with purpleMinimalistAbstractPainting preset`, () => { "width": 3148, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Purple_Minimalist_Abstract_Painting-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Purple_Minimalist_Abstract_Painting-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/purple-minimalist-abstract-painting.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/purple-minimalist-abstract-painting.ts similarity index 86% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/purple-minimalist-abstract-painting.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/purple-minimalist-abstract-painting.ts index d04cd330b..a39f01d56 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/purple-minimalist-abstract-painting.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/purple-minimalist-abstract-painting.ts @@ -18,24 +18,24 @@ import * as ProductVariantDraft from '../../../../product-variant/product-varian import * as ProductDraft from '../../../product-draft'; import type { TProductDraftBuilder } from '../../../types'; -const standardTaxCategory = TaxCategoryDraft.presets.sampleDataGoodStore +const standardTaxCategory = TaxCategoryDraft.presets.sampleDataB2CLifestyle .standardTaxCategory() .build(); const purpleMinimalistAbstractPaintingProductTypeDraft = - ProductTypeDraft.presets.sampleDataGoodStore + ProductTypeDraft.presets.sampleDataB2CLifestyle .furnitureAndDecor() .build(); -const homeAccentsDraft = CategoryDraft.presets.sampleDataGoodStore +const homeAccentsDraft = CategoryDraft.presets.sampleDataB2CLifestyle .homeAccents() .build(); -const roomDecorDraft = CategoryDraft.presets.sampleDataGoodStore +const roomDecorDraft = CategoryDraft.presets.sampleDataB2CLifestyle .roomDecor() .build(); -const homeDecorDraft = CategoryDraft.presets.sampleDataGoodStore +const homeDecorDraft = CategoryDraft.presets.sampleDataB2CLifestyle .homeDecor() .build(); @@ -53,15 +53,15 @@ const purpleMinimalistAbstractPainting = (): TProductDraftBuilder => .description( LocalizedStringDraft.presets .empty() - ['en-GB']( - 'A purple minimalist abstract painting is a simple and elegant work of art that relies on the use of minimal elements and a limited color palette to create a striking visual impact. The painting is created with acrylic paints on canvas. The color scheme of the painting is predominantly purple, with little or no use of other colors. The use of purple in the painting may be symbolic, representing creativity, spirituality, or mystery. The painting can be hung on a wall as part of a gallery grouping. The minimalist nature of the painting allows it to blend seamlessly with a variety of interior design styles and color schemes. Overall, a purple minimalist abstract painting is a sophisticated and understated work of art that can add a sense of serenity and harmony to any space. Its simple composition and limited color palette can create a calming and meditative atmosphere, while the use of purple adds a sense of mystery and depth to the painting.' - ) - ['de-DE']( - 'Ein lilafarbenes minimalistisches abstraktes Gemälde ist ein einfaches und elegantes Kunstwerk, das durch die Verwendung minimaler Elemente und einer begrenzten Farbpalette eine beeindruckende visuelle Wirkung erzielt. Das Gemälde wurde mit Acrylfarben auf Leinwand gemalt. Das Farbschema des Gemäldes ist überwiegend violett, mit wenig bis gar keiner Verwendung anderer Farben. Die Verwendung von Violett in dem Gemälde kann symbolisch sein und Kreativität, Spiritualität oder Geheimnisse darstellen. Das Gemälde kann als Teil einer Galeriegruppe an die Wand gehängt werden. Der minimalistische Charakter des Gemäldes erlaubt es, es nahtlos mit einer Vielzahl von Einrichtungsstilen und Farbschemata zu kombinieren. Insgesamt ist ein lilafarbenes, minimalistisches, abstraktes Gemälde ein raffiniertes und unaufdringliches Kunstwerk, das jedem Raum ein Gefühl von Gelassenheit und Harmonie verleihen kann. Die einfache Komposition und die begrenzte Farbpalette können eine beruhigende und meditative Atmosphäre schaffen, während die Verwendung von Lila dem Gemälde ein Gefühl von Geheimnis und Tiefe verleiht.' - ) - ['en-US']( - 'A purple minimalist abstract painting is a simple and elegant work of art that relies on the use of minimal elements and a limited color palette to create a striking visual impact. The painting is created with acrylic paints on canvas. The color scheme of the painting is predominantly purple, with little or no use of other colors. The use of purple in the painting may be symbolic, representing creativity, spirituality, or mystery. The painting can be hung on a wall as part of a gallery grouping. The minimalist nature of the painting allows it to blend seamlessly with a variety of interior design styles and color schemes. Overall, a purple minimalist abstract painting is a sophisticated and understated work of art that can add a sense of serenity and harmony to any space. Its simple composition and limited color palette can create a calming and meditative atmosphere, while the use of purple adds a sense of mystery and depth to the painting.' - ) + [ + 'en-GB' + ]('A purple minimalist abstract painting is a simple and elegant work of art that relies on the use of minimal elements and a limited color palette to create a striking visual impact. The painting is created with acrylic paints on canvas. The color scheme of the painting is predominantly purple, with little or no use of other colors. The use of purple in the painting may be symbolic, representing creativity, spirituality, or mystery. The painting can be hung on a wall as part of a gallery grouping. The minimalist nature of the painting allows it to blend seamlessly with a variety of interior design styles and color schemes. Overall, a purple minimalist abstract painting is a sophisticated and understated work of art that can add a sense of serenity and harmony to any space. Its simple composition and limited color palette can create a calming and meditative atmosphere, while the use of purple adds a sense of mystery and depth to the painting.') + [ + 'de-DE' + ]('Ein lilafarbenes minimalistisches abstraktes Gemälde ist ein einfaches und elegantes Kunstwerk, das durch die Verwendung minimaler Elemente und einer begrenzten Farbpalette eine beeindruckende visuelle Wirkung erzielt. Das Gemälde wurde mit Acrylfarben auf Leinwand gemalt. Das Farbschema des Gemäldes ist überwiegend violett, mit wenig bis gar keiner Verwendung anderer Farben. Die Verwendung von Violett in dem Gemälde kann symbolisch sein und Kreativität, Spiritualität oder Geheimnisse darstellen. Das Gemälde kann als Teil einer Galeriegruppe an die Wand gehängt werden. Der minimalistische Charakter des Gemäldes erlaubt es, es nahtlos mit einer Vielzahl von Einrichtungsstilen und Farbschemata zu kombinieren. Insgesamt ist ein lilafarbenes, minimalistisches, abstraktes Gemälde ein raffiniertes und unaufdringliches Kunstwerk, das jedem Raum ein Gefühl von Gelassenheit und Harmonie verleihen kann. Die einfache Komposition und die begrenzte Farbpalette können eine beruhigende und meditative Atmosphäre schaffen, während die Verwendung von Lila dem Gemälde ein Gefühl von Geheimnis und Tiefe verleiht.') + [ + 'en-US' + ]('A purple minimalist abstract painting is a simple and elegant work of art that relies on the use of minimal elements and a limited color palette to create a striking visual impact. The painting is created with acrylic paints on canvas. The color scheme of the painting is predominantly purple, with little or no use of other colors. The use of purple in the painting may be symbolic, representing creativity, spirituality, or mystery. The painting can be hung on a wall as part of a gallery grouping. The minimalist nature of the painting allows it to blend seamlessly with a variety of interior design styles and color schemes. Overall, a purple minimalist abstract painting is a sophisticated and understated work of art that can add a sense of serenity and harmony to any space. Its simple composition and limited color palette can create a calming and meditative atmosphere, while the use of purple adds a sense of mystery and depth to the painting.') ) .slug( LocalizedStringDraft.presets @@ -80,7 +80,7 @@ const purpleMinimalistAbstractPainting = (): TProductDraftBuilder => KeyReferenceDraft.presets.taxCategory().key(standardTaxCategory.key!) ) .masterVariant( - ProductVariantDraft.presets.sampleDataGoodStore.purpleMinimalistAbstractPainting01() + ProductVariantDraft.presets.sampleDataB2CLifestyle.purpleMinimalistAbstractPainting01() ) .categories([ KeyReferenceDraft.presets.category().key(homeAccentsDraft.key!), diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/rattan-lounge-chair.spec.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/rattan-lounge-chair.spec.ts similarity index 98% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/rattan-lounge-chair.spec.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/rattan-lounge-chair.spec.ts index 8422cce35..47ccdd690 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/rattan-lounge-chair.spec.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/rattan-lounge-chair.spec.ts @@ -65,7 +65,7 @@ describe(`with rattanLoungeChair preset`, () => { "w": 5000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Rattan_Lounge_Chair-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Rattan_Lounge_Chair-1.1.jpeg", }, { "dimensions": { @@ -73,7 +73,7 @@ describe(`with rattanLoungeChair preset`, () => { "w": 3375, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Rattan_Lounge_Chair-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Rattan_Lounge_Chair-1.2.jpeg", }, ], "key": undefined, @@ -220,7 +220,7 @@ describe(`with rattanLoungeChair preset`, () => { "width": 5000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Rattan_Lounge_Chair-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Rattan_Lounge_Chair-1.1.jpeg", }, { "dimensions": { @@ -228,7 +228,7 @@ describe(`with rattanLoungeChair preset`, () => { "width": 3375, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Rattan_Lounge_Chair-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Rattan_Lounge_Chair-1.2.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/rattan-lounge-chair.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/rattan-lounge-chair.ts similarity index 86% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/rattan-lounge-chair.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/rattan-lounge-chair.ts index e9e1f082f..3a221f5e8 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/rattan-lounge-chair.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/rattan-lounge-chair.ts @@ -18,24 +18,24 @@ import * as ProductVariantDraft from '../../../../product-variant/product-varian import * as ProductDraft from '../../../product-draft'; import type { TProductDraftBuilder } from '../../../types'; -const standardTaxCategory = TaxCategoryDraft.presets.sampleDataGoodStore +const standardTaxCategory = TaxCategoryDraft.presets.sampleDataB2CLifestyle .standardTaxCategory() .build(); const rattanLoungeChairProductTypeDraft = - ProductTypeDraft.presets.sampleDataGoodStore + ProductTypeDraft.presets.sampleDataB2CLifestyle .furnitureAndDecor() .build(); -const armchairsDraft = CategoryDraft.presets.sampleDataGoodStore +const armchairsDraft = CategoryDraft.presets.sampleDataB2CLifestyle .armchairs() .build(); -const furnitureDraft = CategoryDraft.presets.sampleDataGoodStore +const furnitureDraft = CategoryDraft.presets.sampleDataB2CLifestyle .furniture() .build(); -const livingRoomFurnitureDraft = CategoryDraft.presets.sampleDataGoodStore +const livingRoomFurnitureDraft = CategoryDraft.presets.sampleDataB2CLifestyle .livingRoomFurniture() .build(); @@ -53,15 +53,15 @@ const rattanLoungeChair = (): TProductDraftBuilder => .description( LocalizedStringDraft.presets .empty() - ['en-GB']( - 'The Rattan Lounge Chair is designed to provide comfortable seating for relaxing and lounging. The chair features a sturdy frame made of rattan, with a woven pattern of rattan fibers forming the seat and backrest. The chair comes with additional cushioning for extra comfort, made from soft cotton fabric. The cushions are removable, allowing for easy cleaning or replacement. The design of the rattan lounge chair is inspired by tropical or bohemian styles, with a natural and earthy look. The chair features intricate woven patterns or geometric shapes, creating a visually interesting texture. The rattan material used in the construction of the chair is known for its durability and resistance to wear and tear. It is also lightweight, making it easy to move the chair around the room. Overall, a rattan lounge chair is a stylish and comfortable addition to any living room or outdoor space. Its natural materials and unique design create a relaxed and inviting atmosphere, making it the perfect place to unwind and enjoy some peace and quiet.' - ) - ['en-US']( - 'The Rattan Lounge Chair is designed to provide comfortable seating for relaxing and lounging. The chair features a sturdy frame made of rattan, with a woven pattern of rattan fibers forming the seat and backrest. The chair comes with additional cushioning for extra comfort, made from soft cotton fabric. The cushions are removable, allowing for easy cleaning or replacement. The design of the rattan lounge chair is inspired by tropical or bohemian styles, with a natural and earthy look. The chair features intricate woven patterns or geometric shapes, creating a visually interesting texture. The rattan material used in the construction of the chair is known for its durability and resistance to wear and tear. It is also lightweight, making it easy to move the chair around the room. Overall, a rattan lounge chair is a stylish and comfortable addition to any living room or outdoor space. Its natural materials and unique design create a relaxed and inviting atmosphere, making it the perfect place to unwind and enjoy some peace and quiet.' - ) - ['de-DE']( - 'Der Loungesessel aus Rattan bietet eine bequeme Sitzgelegenheit zum Entspannen. Das Webmuster aus Rattanfasern bildet die Sitzfläche und Rückenlehne, die von einem stabilen Rattangestell gehalten werden. Die Polsterung aus weichem Baumwollstoff sorgt für zusätzlichen Sitzkomfort. Die Kissen sind abnehmbar, was die Reinigung oder einen Austausch erleichtert. Das Design des Rattan-Loungesessels ist vom tropischen Ambiente des Bohemian-Looks inspiriert und zeigt sich in erdigen Tönen. Das komplexe Webmuster mit seinen geometrischen Formen bildet ein optisches Highlight. Das für die Konstruktion des Sitzmöbels verwendete Rattanmaterial ist langlebig, verschleißfest und leicht. Der Sessel kann somit flexibel in jeden Innen- oder Außenbereich integriert werden. Seine natürlichen Materialien und sein einzigartiges Design schaffen eine entspannte und einladende Atmosphäre zum Relaxen.' - ) + [ + 'en-GB' + ]('The Rattan Lounge Chair is designed to provide comfortable seating for relaxing and lounging. The chair features a sturdy frame made of rattan, with a woven pattern of rattan fibers forming the seat and backrest. The chair comes with additional cushioning for extra comfort, made from soft cotton fabric. The cushions are removable, allowing for easy cleaning or replacement. The design of the rattan lounge chair is inspired by tropical or bohemian styles, with a natural and earthy look. The chair features intricate woven patterns or geometric shapes, creating a visually interesting texture. The rattan material used in the construction of the chair is known for its durability and resistance to wear and tear. It is also lightweight, making it easy to move the chair around the room. Overall, a rattan lounge chair is a stylish and comfortable addition to any living room or outdoor space. Its natural materials and unique design create a relaxed and inviting atmosphere, making it the perfect place to unwind and enjoy some peace and quiet.') + [ + 'en-US' + ]('The Rattan Lounge Chair is designed to provide comfortable seating for relaxing and lounging. The chair features a sturdy frame made of rattan, with a woven pattern of rattan fibers forming the seat and backrest. The chair comes with additional cushioning for extra comfort, made from soft cotton fabric. The cushions are removable, allowing for easy cleaning or replacement. The design of the rattan lounge chair is inspired by tropical or bohemian styles, with a natural and earthy look. The chair features intricate woven patterns or geometric shapes, creating a visually interesting texture. The rattan material used in the construction of the chair is known for its durability and resistance to wear and tear. It is also lightweight, making it easy to move the chair around the room. Overall, a rattan lounge chair is a stylish and comfortable addition to any living room or outdoor space. Its natural materials and unique design create a relaxed and inviting atmosphere, making it the perfect place to unwind and enjoy some peace and quiet.') + [ + 'de-DE' + ]('Der Loungesessel aus Rattan bietet eine bequeme Sitzgelegenheit zum Entspannen. Das Webmuster aus Rattanfasern bildet die Sitzfläche und Rückenlehne, die von einem stabilen Rattangestell gehalten werden. Die Polsterung aus weichem Baumwollstoff sorgt für zusätzlichen Sitzkomfort. Die Kissen sind abnehmbar, was die Reinigung oder einen Austausch erleichtert. Das Design des Rattan-Loungesessels ist vom tropischen Ambiente des Bohemian-Looks inspiriert und zeigt sich in erdigen Tönen. Das komplexe Webmuster mit seinen geometrischen Formen bildet ein optisches Highlight. Das für die Konstruktion des Sitzmöbels verwendete Rattanmaterial ist langlebig, verschleißfest und leicht. Der Sessel kann somit flexibel in jeden Innen- oder Außenbereich integriert werden. Seine natürlichen Materialien und sein einzigartiges Design schaffen eine entspannte und einladende Atmosphäre zum Relaxen.') ) .slug( LocalizedStringDraft.presets @@ -80,7 +80,7 @@ const rattanLoungeChair = (): TProductDraftBuilder => KeyReferenceDraft.presets.taxCategory().key(standardTaxCategory.key!) ) .masterVariant( - ProductVariantDraft.presets.sampleDataGoodStore.rattanLoungeChair01() + ProductVariantDraft.presets.sampleDataB2CLifestyle.rattanLoungeChair01() ) .categories([ KeyReferenceDraft.presets.category().key(armchairsDraft.key!), diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/raven-bowl.spec.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/raven-bowl.spec.ts similarity index 98% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/raven-bowl.spec.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/raven-bowl.spec.ts index a0275bae0..5781205ed 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/raven-bowl.spec.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/raven-bowl.spec.ts @@ -61,7 +61,7 @@ describe(`with ravenBowl preset`, () => { "w": 4232, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Raven_Bowl-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Raven_Bowl-1.1.jpeg", }, ], "key": undefined, @@ -207,7 +207,7 @@ describe(`with ravenBowl preset`, () => { "width": 4232, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Raven_Bowl-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Raven_Bowl-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/raven-bowl.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/raven-bowl.ts similarity index 74% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/raven-bowl.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/raven-bowl.ts index 5c51453a8..d6eef3ea1 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/raven-bowl.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/raven-bowl.ts @@ -18,27 +18,28 @@ import * as ProductVariantDraft from '../../../../product-variant/product-varian import * as ProductDraft from '../../../product-draft'; import type { TProductDraftBuilder } from '../../../types'; -const standardTaxCategory = TaxCategoryDraft.presets.sampleDataGoodStore +const standardTaxCategory = TaxCategoryDraft.presets.sampleDataB2CLifestyle .standardTaxCategory() .build(); -const ravenBowlProductTypeDraft = ProductTypeDraft.presets.sampleDataGoodStore - .furnitureAndDecor() - .build(); +const ravenBowlProductTypeDraft = + ProductTypeDraft.presets.sampleDataB2CLifestyle + .furnitureAndDecor() + .build(); -const bowlsDraft = CategoryDraft.presets.sampleDataGoodStore +const bowlsDraft = CategoryDraft.presets.sampleDataB2CLifestyle .bowls() .build(); -const dinnerwareDraft = CategoryDraft.presets.sampleDataGoodStore +const dinnerwareDraft = CategoryDraft.presets.sampleDataB2CLifestyle .dinnerware() .build(); -const kitchenDraft = CategoryDraft.presets.sampleDataGoodStore +const kitchenDraft = CategoryDraft.presets.sampleDataB2CLifestyle .kitchen() .build(); -const newArrivalsDraft = CategoryDraft.presets.sampleDataGoodStore +const newArrivalsDraft = CategoryDraft.presets.sampleDataB2CLifestyle .newArrivals() .build(); @@ -56,15 +57,15 @@ const ravenBowl = (): TProductDraftBuilder => .description( LocalizedStringDraft.presets .empty() - ['en-GB']( - 'This bowl is a dish designed to serve soup and other liquid-based foods. It is a square-shaped bowl with four straight sides and a flat bottom, creating a modern and contemporary look for dining. Overall, a square soup bowl is a functional and stylish choice for serving soup and other liquid-based foods. Its unique shape and contemporary design make it a popular choice for those who appreciate modern aesthetics and practicality.' - ) - ['en-US']( - 'This bowl is a dish designed to serve soup and other liquid-based foods. It is a square-shaped bowl with four straight sides and a flat bottom, creating a modern and contemporary look for dining. Overall, a square soup bowl is a functional and stylish choice for serving soup and other liquid-based foods. Its unique shape and contemporary design make it a popular choice for those who appreciate modern aesthetics and practicality.' - ) - ['de-DE']( - 'Die Schüssel >Raven< wurde zum Servieren von Suppen und anderer Flüssigspeisen designt. Die quadratische Form aus vier geraden Seiten und einem flachen Boden verleiht dem Suppentellerl einen modernen und zeitgemäßen Look. Durch die einzigartige Form und das zeitgemäße Design ist >Raven< eine beliebte Wahl für all diejenigen, die Ästhetik und Praktikabilität auf ihrem Esstisch schätzen.' - ) + [ + 'en-GB' + ]('This bowl is a dish designed to serve soup and other liquid-based foods. It is a square-shaped bowl with four straight sides and a flat bottom, creating a modern and contemporary look for dining. Overall, a square soup bowl is a functional and stylish choice for serving soup and other liquid-based foods. Its unique shape and contemporary design make it a popular choice for those who appreciate modern aesthetics and practicality.') + [ + 'en-US' + ]('This bowl is a dish designed to serve soup and other liquid-based foods. It is a square-shaped bowl with four straight sides and a flat bottom, creating a modern and contemporary look for dining. Overall, a square soup bowl is a functional and stylish choice for serving soup and other liquid-based foods. Its unique shape and contemporary design make it a popular choice for those who appreciate modern aesthetics and practicality.') + [ + 'de-DE' + ]('Die Schüssel >Raven< wurde zum Servieren von Suppen und anderer Flüssigspeisen designt. Die quadratische Form aus vier geraden Seiten und einem flachen Boden verleiht dem Suppentellerl einen modernen und zeitgemäßen Look. Durch die einzigartige Form und das zeitgemäße Design ist >Raven< eine beliebte Wahl für all diejenigen, die Ästhetik und Praktikabilität auf ihrem Esstisch schätzen.') ) .slug( LocalizedStringDraft.presets @@ -83,7 +84,7 @@ const ravenBowl = (): TProductDraftBuilder => KeyReferenceDraft.presets.taxCategory().key(standardTaxCategory.key!) ) .masterVariant( - ProductVariantDraft.presets.sampleDataGoodStore.ravenBowl01() + ProductVariantDraft.presets.sampleDataB2CLifestyle.ravenBowl01() ) .categories([ KeyReferenceDraft.presets.category().key(bowlsDraft.key!), diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/rectangle-serving-tray.spec.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/rectangle-serving-tray.spec.ts similarity index 98% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/rectangle-serving-tray.spec.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/rectangle-serving-tray.spec.ts index 77813bfcb..754354de8 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/rectangle-serving-tray.spec.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/rectangle-serving-tray.spec.ts @@ -65,7 +65,7 @@ describe(`with rectangleServingTray preset`, () => { "w": 6048, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Rectangle_Serving_Tray-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Rectangle_Serving_Tray-1.1.jpeg", }, ], "key": undefined, @@ -212,7 +212,7 @@ describe(`with rectangleServingTray preset`, () => { "width": 6048, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Rectangle_Serving_Tray-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Rectangle_Serving_Tray-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/rectangle-serving-tray.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/rectangle-serving-tray.ts similarity index 82% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/rectangle-serving-tray.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/rectangle-serving-tray.ts index 061c128ed..42e02831e 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/rectangle-serving-tray.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/rectangle-serving-tray.ts @@ -18,28 +18,28 @@ import * as ProductVariantDraft from '../../../../product-variant/product-varian import * as ProductDraft from '../../../product-draft'; import type { TProductDraftBuilder } from '../../../types'; -const standardTaxCategory = TaxCategoryDraft.presets.sampleDataGoodStore +const standardTaxCategory = TaxCategoryDraft.presets.sampleDataB2CLifestyle .standardTaxCategory() .build(); const rectangleServingTrayProductTypeDraft = - ProductTypeDraft.presets.sampleDataGoodStore + ProductTypeDraft.presets.sampleDataB2CLifestyle .furnitureAndDecor() .build(); -const servingPlattersDraft = CategoryDraft.presets.sampleDataGoodStore +const servingPlattersDraft = CategoryDraft.presets.sampleDataB2CLifestyle .servingPlatters() .build(); -const servewareDraft = CategoryDraft.presets.sampleDataGoodStore +const servewareDraft = CategoryDraft.presets.sampleDataB2CLifestyle .serveware() .build(); -const dinnerwareDraft = CategoryDraft.presets.sampleDataGoodStore +const dinnerwareDraft = CategoryDraft.presets.sampleDataB2CLifestyle .dinnerware() .build(); -const kitchenDraft = CategoryDraft.presets.sampleDataGoodStore +const kitchenDraft = CategoryDraft.presets.sampleDataB2CLifestyle .kitchen() .build(); @@ -57,15 +57,15 @@ const rectangleServingTray = (): TProductDraftBuilder => .description( LocalizedStringDraft.presets .empty() - ['en-GB']( - 'This wooden serving tray is a versatile and functional item that can be used in a variety of settings. The wooden material used in the tray provides a warm and natural aesthetic, adding a touch of rustic charm to any setting. Wooden serving trays are easy to clean and maintain. They can be wiped down with a damp cloth and mild detergent, and should be dried thoroughly after use to prevent any moisture from being trapped inside. Overall, a wooden serving tray is a practical and attractive item that adds a touch of natural elegance to any setting. Its durability, versatility, and range of designs make it a popular choice for serving and displaying food, drinks, and other items.' - ) - ['en-US']( - 'This wooden serving tray is a versatile and functional item that can be used in a variety of settings. The wooden material used in the tray provides a warm and natural aesthetic, adding a touch of rustic charm to any setting. Wooden serving trays are easy to clean and maintain. They can be wiped down with a damp cloth and mild detergent, and should be dried thoroughly after use to prevent any moisture from being trapped inside. Overall, a wooden serving tray is a practical and attractive item that adds a touch of natural elegance to any setting. Its durability, versatility, and range of designs make it a popular choice for serving and displaying food, drinks, and other items.' - ) - ['de-DE']( - 'Das Serviertablett aus Holz ist ein vielseitiger und funktionaler Gegenstand, der in einer Vielzahl von Gelegenheiten zum Einsatz kommt. Das für das Tablett verwendete Holz mit seiner warmen und natürlichen Ästhetik sorgt für den rustikalen Charme. Holztabletts sind leicht zu reinigen und zu pflegen. Sie können mit einem feuchten Tuch und einem milden Reinigungsmittel abgewischt werden. Nach dem Gebrauch sollten sie gründlich getrocknet werden, damit keine Feuchtigkeit im Inneren eingeschlossen wird. Ein Serviertablett aus Holz ist ein praktisches und zugleich attraktives Designelement, das jedes Ambiente mit seiner natürlichen Eleganz komplementiert. Es ist langlebig und vielseitig einsetzbar zum Servieren und Präsentieren von Speisen und Getränken, oder aber als Designelement zum Hervorheben einzelner Gegenstände.' - ) + [ + 'en-GB' + ]('This wooden serving tray is a versatile and functional item that can be used in a variety of settings. The wooden material used in the tray provides a warm and natural aesthetic, adding a touch of rustic charm to any setting. Wooden serving trays are easy to clean and maintain. They can be wiped down with a damp cloth and mild detergent, and should be dried thoroughly after use to prevent any moisture from being trapped inside. Overall, a wooden serving tray is a practical and attractive item that adds a touch of natural elegance to any setting. Its durability, versatility, and range of designs make it a popular choice for serving and displaying food, drinks, and other items.') + [ + 'en-US' + ]('This wooden serving tray is a versatile and functional item that can be used in a variety of settings. The wooden material used in the tray provides a warm and natural aesthetic, adding a touch of rustic charm to any setting. Wooden serving trays are easy to clean and maintain. They can be wiped down with a damp cloth and mild detergent, and should be dried thoroughly after use to prevent any moisture from being trapped inside. Overall, a wooden serving tray is a practical and attractive item that adds a touch of natural elegance to any setting. Its durability, versatility, and range of designs make it a popular choice for serving and displaying food, drinks, and other items.') + [ + 'de-DE' + ]('Das Serviertablett aus Holz ist ein vielseitiger und funktionaler Gegenstand, der in einer Vielzahl von Gelegenheiten zum Einsatz kommt. Das für das Tablett verwendete Holz mit seiner warmen und natürlichen Ästhetik sorgt für den rustikalen Charme. Holztabletts sind leicht zu reinigen und zu pflegen. Sie können mit einem feuchten Tuch und einem milden Reinigungsmittel abgewischt werden. Nach dem Gebrauch sollten sie gründlich getrocknet werden, damit keine Feuchtigkeit im Inneren eingeschlossen wird. Ein Serviertablett aus Holz ist ein praktisches und zugleich attraktives Designelement, das jedes Ambiente mit seiner natürlichen Eleganz komplementiert. Es ist langlebig und vielseitig einsetzbar zum Servieren und Präsentieren von Speisen und Getränken, oder aber als Designelement zum Hervorheben einzelner Gegenstände.') ) .slug( LocalizedStringDraft.presets @@ -84,7 +84,7 @@ const rectangleServingTray = (): TProductDraftBuilder => KeyReferenceDraft.presets.taxCategory().key(standardTaxCategory.key!) ) .masterVariant( - ProductVariantDraft.presets.sampleDataGoodStore.rectangleServingTray01() + ProductVariantDraft.presets.sampleDataB2CLifestyle.rectangleServingTray01() ) .categories([ KeyReferenceDraft.presets.category().key(servingPlattersDraft.key!), diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/red-modern-painting.spec.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/red-modern-painting.spec.ts similarity index 98% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/red-modern-painting.spec.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/red-modern-painting.spec.ts index bf3d2be14..1072e9778 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/red-modern-painting.spec.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/red-modern-painting.spec.ts @@ -60,7 +60,7 @@ describe(`with redModernPainting preset`, () => { "w": 3893, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Red_Modern_Painting-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Red_Modern_Painting-1.1.jpeg", }, ], "key": undefined, @@ -203,7 +203,7 @@ describe(`with redModernPainting preset`, () => { "width": 3893, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Red_Modern_Painting-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Red_Modern_Painting-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/red-modern-painting.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/red-modern-painting.ts similarity index 83% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/red-modern-painting.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/red-modern-painting.ts index 1f8d2f807..b9b32d67a 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/red-modern-painting.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/red-modern-painting.ts @@ -18,24 +18,24 @@ import * as ProductVariantDraft from '../../../../product-variant/product-varian import * as ProductDraft from '../../../product-draft'; import type { TProductDraftBuilder } from '../../../types'; -const standardTaxCategory = TaxCategoryDraft.presets.sampleDataGoodStore +const standardTaxCategory = TaxCategoryDraft.presets.sampleDataB2CLifestyle .standardTaxCategory() .build(); const redModernPaintingProductTypeDraft = - ProductTypeDraft.presets.sampleDataGoodStore + ProductTypeDraft.presets.sampleDataB2CLifestyle .furnitureAndDecor() .build(); -const homeAccentsDraft = CategoryDraft.presets.sampleDataGoodStore +const homeAccentsDraft = CategoryDraft.presets.sampleDataB2CLifestyle .homeAccents() .build(); -const roomDecorDraft = CategoryDraft.presets.sampleDataGoodStore +const roomDecorDraft = CategoryDraft.presets.sampleDataB2CLifestyle .roomDecor() .build(); -const homeDecorDraft = CategoryDraft.presets.sampleDataGoodStore +const homeDecorDraft = CategoryDraft.presets.sampleDataB2CLifestyle .homeDecor() .build(); @@ -53,15 +53,15 @@ const redModernPainting = (): TProductDraftBuilder => .description( LocalizedStringDraft.presets .empty() - ['en-GB']( - "A red modern painting on canvas is a bold and striking piece of art that can add a contemporary flair to any room. The painting is created with acrylic paints on a stretched canvas, and features a range of shades of red. The size of the painting can vary, from a small piece that can be hung on a wall as part of a gallery grouping, to a large statement piece that dominates the room. The red color scheme of the painting can create a powerful focal point, drawing the eye towards it and creating a sense of drama. The style of the painting is contemporary, with a focus on expressing emotions and ideas through color and form. The red color may be symbolic, representing passion, strength, or energy, depending on the artist's intentions. Overall, a red modern painting on canvas is a vibrant and expressive work of art that can add a sense of drama and excitement to any space." - ) - ['en-US']( - "A red modern painting on canvas is a bold and striking piece of art that can add a contemporary flair to any room. The painting is created with acrylic paints on a stretched canvas, and features a range of shades of red. The size of the painting can vary, from a small piece that can be hung on a wall as part of a gallery grouping, to a large statement piece that dominates the room. The red color scheme of the painting can create a powerful focal point, drawing the eye towards it and creating a sense of drama. The style of the painting is contemporary, with a focus on expressing emotions and ideas through color and form. The red color may be symbolic, representing passion, strength, or energy, depending on the artist's intentions. Overall, a red modern painting on canvas is a vibrant and expressive work of art that can add a sense of drama and excitement to any space." - ) - ['de-DE']( - 'Das rote moderne Gemälde aus Acrylfarben auf Leinwand ist ein kühnes und markantes Kunst-Statement, das jedem Raum ein zeitgenössisches Flair verleiht. Die Größenwirkung des Gemäldes kann variiert werden, indem es entweder mit mehreren Kunstwerken zusammen oder aber als eigenständiges Statement Piece aufgehängt wird. Das rote Farbschema des Gemäldes kann eine optische Spannung schaffen und ein Gefühl von Dramatik erzeugen. Der zeitgenössische Stil des Gemäldes legt seinen Schwerpunkt darauf, Emotionen und Ideen durch Farbe und Form auszudrücken. Die rote Farbe kann symbolisch gedeutet und als Leidenschaft, Stärke oder Energie ausgelegt werden. Die rote moderne Malerei auf Leinwand ist insgesamt ein lebendiges und ausdrucksstarkes Kunstwerk, das jedem Raum ein Gefühl von Dramatik und Aufregung verleiht.' - ) + [ + 'en-GB' + ]("A red modern painting on canvas is a bold and striking piece of art that can add a contemporary flair to any room. The painting is created with acrylic paints on a stretched canvas, and features a range of shades of red. The size of the painting can vary, from a small piece that can be hung on a wall as part of a gallery grouping, to a large statement piece that dominates the room. The red color scheme of the painting can create a powerful focal point, drawing the eye towards it and creating a sense of drama. The style of the painting is contemporary, with a focus on expressing emotions and ideas through color and form. The red color may be symbolic, representing passion, strength, or energy, depending on the artist's intentions. Overall, a red modern painting on canvas is a vibrant and expressive work of art that can add a sense of drama and excitement to any space.") + [ + 'en-US' + ]("A red modern painting on canvas is a bold and striking piece of art that can add a contemporary flair to any room. The painting is created with acrylic paints on a stretched canvas, and features a range of shades of red. The size of the painting can vary, from a small piece that can be hung on a wall as part of a gallery grouping, to a large statement piece that dominates the room. The red color scheme of the painting can create a powerful focal point, drawing the eye towards it and creating a sense of drama. The style of the painting is contemporary, with a focus on expressing emotions and ideas through color and form. The red color may be symbolic, representing passion, strength, or energy, depending on the artist's intentions. Overall, a red modern painting on canvas is a vibrant and expressive work of art that can add a sense of drama and excitement to any space.") + [ + 'de-DE' + ]('Das rote moderne Gemälde aus Acrylfarben auf Leinwand ist ein kühnes und markantes Kunst-Statement, das jedem Raum ein zeitgenössisches Flair verleiht. Die Größenwirkung des Gemäldes kann variiert werden, indem es entweder mit mehreren Kunstwerken zusammen oder aber als eigenständiges Statement Piece aufgehängt wird. Das rote Farbschema des Gemäldes kann eine optische Spannung schaffen und ein Gefühl von Dramatik erzeugen. Der zeitgenössische Stil des Gemäldes legt seinen Schwerpunkt darauf, Emotionen und Ideen durch Farbe und Form auszudrücken. Die rote Farbe kann symbolisch gedeutet und als Leidenschaft, Stärke oder Energie ausgelegt werden. Die rote moderne Malerei auf Leinwand ist insgesamt ein lebendiges und ausdrucksstarkes Kunstwerk, das jedem Raum ein Gefühl von Dramatik und Aufregung verleiht.') ) .slug( LocalizedStringDraft.presets @@ -80,7 +80,7 @@ const redModernPainting = (): TProductDraftBuilder => KeyReferenceDraft.presets.taxCategory().key(standardTaxCategory.key!) ) .masterVariant( - ProductVariantDraft.presets.sampleDataGoodStore.redModernPainting01() + ProductVariantDraft.presets.sampleDataB2CLifestyle.redModernPainting01() ) .categories([ KeyReferenceDraft.presets.category().key(homeAccentsDraft.key!), diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/round-serving-tray.spec.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/round-serving-tray.spec.ts similarity index 97% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/round-serving-tray.spec.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/round-serving-tray.spec.ts index c6d72caca..a92990409 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/round-serving-tray.spec.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/round-serving-tray.spec.ts @@ -65,7 +65,7 @@ describe(`with roundServingTray preset`, () => { "w": 3537, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Round_Serving_Tray-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Round_Serving_Tray-1.1.jpeg", }, { "dimensions": { @@ -73,7 +73,7 @@ describe(`with roundServingTray preset`, () => { "w": 3283, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Round_Serving_Tray-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Round_Serving_Tray-1.2.jpeg", }, ], "key": undefined, @@ -224,7 +224,7 @@ describe(`with roundServingTray preset`, () => { "width": 3537, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Round_Serving_Tray-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Round_Serving_Tray-1.1.jpeg", }, { "dimensions": { @@ -232,7 +232,7 @@ describe(`with roundServingTray preset`, () => { "width": 3283, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Round_Serving_Tray-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Round_Serving_Tray-1.2.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/round-serving-tray.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/round-serving-tray.ts similarity index 83% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/round-serving-tray.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/round-serving-tray.ts index 37e367acc..c2f5fab58 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/round-serving-tray.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/round-serving-tray.ts @@ -18,32 +18,32 @@ import * as ProductVariantDraft from '../../../../product-variant/product-varian import * as ProductDraft from '../../../product-draft'; import type { TProductDraftBuilder } from '../../../types'; -const standardTaxCategory = TaxCategoryDraft.presets.sampleDataGoodStore +const standardTaxCategory = TaxCategoryDraft.presets.sampleDataB2CLifestyle .standardTaxCategory() .build(); const roundServingTrayProductTypeDraft = - ProductTypeDraft.presets.sampleDataGoodStore + ProductTypeDraft.presets.sampleDataB2CLifestyle .furnitureAndDecor() .build(); -const platesDraft = CategoryDraft.presets.sampleDataGoodStore +const platesDraft = CategoryDraft.presets.sampleDataB2CLifestyle .plates() .build(); -const kitchenDraft = CategoryDraft.presets.sampleDataGoodStore +const kitchenDraft = CategoryDraft.presets.sampleDataB2CLifestyle .kitchen() .build(); -const servingPlattersDraft = CategoryDraft.presets.sampleDataGoodStore +const servingPlattersDraft = CategoryDraft.presets.sampleDataB2CLifestyle .servingPlatters() .build(); -const servewareDraft = CategoryDraft.presets.sampleDataGoodStore +const servewareDraft = CategoryDraft.presets.sampleDataB2CLifestyle .serveware() .build(); -const cheeseTraysDraft = CategoryDraft.presets.sampleDataGoodStore +const cheeseTraysDraft = CategoryDraft.presets.sampleDataB2CLifestyle .cheeseTrays() .build(); @@ -61,15 +61,15 @@ const roundServingTray = (): TProductDraftBuilder => .description( LocalizedStringDraft.presets .empty() - ['en-GB']( - 'This Round Serving Tray is a versatile and durable item that can be used in a variety of settings. The wooden material used in the tray provides a warm and natural aesthetic, adding a touch of rustic charm to any setting. Round wooden serving trays are easy to clean and maintain. They can be wiped down with a damp cloth and mild detergent, and should be dried thoroughly after use to prevent any moisture from being trapped inside. Overall, a round wooden serving tray is a practical and attractive item that adds a touch of natural elegance to any setting. Its durability, versatility, and range of designs make it a popular choice for serving and displaying food, drinks, and other items.' - ) - ['en-US']( - 'This Round Serving Tray is a versatile and durable item that can be used in a variety of settings. The wooden material used in the tray provides a warm and natural aesthetic, adding a touch of rustic charm to any setting. Round wooden serving trays are easy to clean and maintain. They can be wiped down with a damp cloth and mild detergent, and should be dried thoroughly after use to prevent any moisture from being trapped inside. Overall, a round wooden serving tray is a practical and attractive item that adds a touch of natural elegance to any setting. Its durability, versatility, and range of designs make it a popular choice for serving and displaying food, drinks, and other items.' - ) - ['de-DE']( - 'Das runde Serviertablett aus Holz ist ein vielseitiger und langlebiger Gegenstand, der in einer Vielzahl von Gelegenheiten zum Einsatz kommt. Das für das Tablett verwendete Holz mit seiner warmen und natürlichen Ästhetik sorgt für den rustikalen Charme. Runde Holztabletts sind leicht zu reinigen und zu pflegen. Sie können mit einem feuchten Tuch und einem milden Reinigungsmittel abgewischt werden. Nach dem Gebrauch sollten sie gründlich getrocknet werden, damit keine Feuchtigkeit im Inneren eingeschlossen wird. Ein rundes Serviertablett aus Holz ist ein praktisches und zugleich attraktives Designelement, das jedes Ambiente mit seiner natürlichen Eleganz komplementiert. Es ist langlebig und vielseitig einsetzbar zum Servieren und Präsentieren von Speisen und Getränken, oder aber als Designelement zum Hervorheben einzelner Gegenstände.' - ) + [ + 'en-GB' + ]('This Round Serving Tray is a versatile and durable item that can be used in a variety of settings. The wooden material used in the tray provides a warm and natural aesthetic, adding a touch of rustic charm to any setting. Round wooden serving trays are easy to clean and maintain. They can be wiped down with a damp cloth and mild detergent, and should be dried thoroughly after use to prevent any moisture from being trapped inside. Overall, a round wooden serving tray is a practical and attractive item that adds a touch of natural elegance to any setting. Its durability, versatility, and range of designs make it a popular choice for serving and displaying food, drinks, and other items.') + [ + 'en-US' + ]('This Round Serving Tray is a versatile and durable item that can be used in a variety of settings. The wooden material used in the tray provides a warm and natural aesthetic, adding a touch of rustic charm to any setting. Round wooden serving trays are easy to clean and maintain. They can be wiped down with a damp cloth and mild detergent, and should be dried thoroughly after use to prevent any moisture from being trapped inside. Overall, a round wooden serving tray is a practical and attractive item that adds a touch of natural elegance to any setting. Its durability, versatility, and range of designs make it a popular choice for serving and displaying food, drinks, and other items.') + [ + 'de-DE' + ]('Das runde Serviertablett aus Holz ist ein vielseitiger und langlebiger Gegenstand, der in einer Vielzahl von Gelegenheiten zum Einsatz kommt. Das für das Tablett verwendete Holz mit seiner warmen und natürlichen Ästhetik sorgt für den rustikalen Charme. Runde Holztabletts sind leicht zu reinigen und zu pflegen. Sie können mit einem feuchten Tuch und einem milden Reinigungsmittel abgewischt werden. Nach dem Gebrauch sollten sie gründlich getrocknet werden, damit keine Feuchtigkeit im Inneren eingeschlossen wird. Ein rundes Serviertablett aus Holz ist ein praktisches und zugleich attraktives Designelement, das jedes Ambiente mit seiner natürlichen Eleganz komplementiert. Es ist langlebig und vielseitig einsetzbar zum Servieren und Präsentieren von Speisen und Getränken, oder aber als Designelement zum Hervorheben einzelner Gegenstände.') ) .slug( LocalizedStringDraft.presets @@ -88,7 +88,7 @@ const roundServingTray = (): TProductDraftBuilder => KeyReferenceDraft.presets.taxCategory().key(standardTaxCategory.key!) ) .masterVariant( - ProductVariantDraft.presets.sampleDataGoodStore.roundServingTray01() + ProductVariantDraft.presets.sampleDataB2CLifestyle.roundServingTray01() ) .categories([ KeyReferenceDraft.presets.category().key(platesDraft.key!), diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/rumi-chair.spec.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/rumi-chair.spec.ts similarity index 99% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/rumi-chair.spec.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/rumi-chair.spec.ts index c62215d47..4064552c7 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/rumi-chair.spec.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/rumi-chair.spec.ts @@ -76,7 +76,7 @@ describe(`with rumiChair preset`, () => { "w": 2400, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Rumi_Chair-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Rumi_Chair-1.1.jpeg", }, ], "key": undefined, @@ -226,7 +226,7 @@ describe(`with rumiChair preset`, () => { "width": 2400, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Rumi_Chair-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Rumi_Chair-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/rumi-chair.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/rumi-chair.ts similarity index 83% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/rumi-chair.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/rumi-chair.ts index 706c0e2f9..73ee0ab78 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/rumi-chair.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/rumi-chair.ts @@ -18,23 +18,24 @@ import * as ProductVariantDraft from '../../../../product-variant/product-varian import * as ProductDraft from '../../../product-draft'; import type { TProductDraftBuilder } from '../../../types'; -const standardTaxCategory = TaxCategoryDraft.presets.sampleDataGoodStore +const standardTaxCategory = TaxCategoryDraft.presets.sampleDataB2CLifestyle .standardTaxCategory() .build(); -const rumiChairProductTypeDraft = ProductTypeDraft.presets.sampleDataGoodStore - .furnitureAndDecor() - .build(); +const rumiChairProductTypeDraft = + ProductTypeDraft.presets.sampleDataB2CLifestyle + .furnitureAndDecor() + .build(); -const armchairsDraft = CategoryDraft.presets.sampleDataGoodStore +const armchairsDraft = CategoryDraft.presets.sampleDataB2CLifestyle .armchairs() .build(); -const furnitureDraft = CategoryDraft.presets.sampleDataGoodStore +const furnitureDraft = CategoryDraft.presets.sampleDataB2CLifestyle .furniture() .build(); -const livingRoomFurnitureDraft = CategoryDraft.presets.sampleDataGoodStore +const livingRoomFurnitureDraft = CategoryDraft.presets.sampleDataB2CLifestyle .livingRoomFurniture() .build(); @@ -52,15 +53,15 @@ const rumiChair = (): TProductDraftBuilder => .description( LocalizedStringDraft.presets .empty() - ['en-GB']( - 'A lilac velvet chair with a brass frame is an elegant and luxurious piece of furniture. The soft, plush velvet material of the chair provides a comfortable and cozy seating experience. The lilac color of the velvet fabric is soft and delicate, adding a touch of femininity to the overall look of the chair. The brass frame of the chair is sturdy and durable, providing a solid foundation for the seating area. The brass color of the frame adds a touch of warmth and sophistication to the overall look of the chair. The combination of the lilac velvet and brass frame creates a striking contrast, making this chair a statement piece in any room. The chair features a high backrest with a curved design, providing support for the back and shoulders. The chair is designed for both style and comfort, making it a great addition to any living room, bedroom, or office space.' - ) - ['en-US']( - 'A lilac velvet chair with a brass frame is an elegant and luxurious piece of furniture. The soft, plush velvet material of the chair provides a comfortable and cozy seating experience. The lilac color of the velvet fabric is soft and delicate, adding a touch of femininity to the overall look of the chair. The brass frame of the chair is sturdy and durable, providing a solid foundation for the seating area. The brass color of the frame adds a touch of warmth and sophistication to the overall look of the chair. The combination of the lilac velvet and brass frame creates a striking contrast, making this chair a statement piece in any room. The chair features a high backrest with a curved design, providing support for the back and shoulders. The chair is designed for both style and comfort, making it a great addition to any living room, bedroom, or office space.' - ) - ['de-DE']( - 'Ein malvenfarbener Samtstuhl mit Messingrahmen ist ein elegantes und luxuriöses Möbelstück. Das weiche, plüschige Samtmaterial des Stuhls sorgt für ein bequemes und gemütliches Sitzerlebnis. Die lila Farbe des Samtstoffs ist sanft und zart und verleiht dem Gesamtbild des Stuhls einen Hauch von Weiblichkeit. Der Messingrahmen des Stuhls ist robust und langlebig und bietet eine solide Grundlage für den Sitzbereich. Die Messingfarbe des Gestells verleiht dem Gesamtbild des Stuhls einen Hauch von Wärme und Raffinesse. Die Kombination aus fliederfarbenem Samt und Messingrahmen schafft einen auffälligen Kontrast und macht diesen Stuhl zu einem Statement Piece in jedem Raum. Die Rückenlehne des Stuhls ist hoch und geschwungen im Design, sodass sie Rücken und Schultern zu stützt. Der Stuhl ist sowohl auf Stil als auch auf Komfort ausgelegt, was ihn zu einer großartigen Ergänzung für jedes Wohnzimmer, Schlafzimmer oder Büro macht.' - ) + [ + 'en-GB' + ]('A lilac velvet chair with a brass frame is an elegant and luxurious piece of furniture. The soft, plush velvet material of the chair provides a comfortable and cozy seating experience. The lilac color of the velvet fabric is soft and delicate, adding a touch of femininity to the overall look of the chair. The brass frame of the chair is sturdy and durable, providing a solid foundation for the seating area. The brass color of the frame adds a touch of warmth and sophistication to the overall look of the chair. The combination of the lilac velvet and brass frame creates a striking contrast, making this chair a statement piece in any room. The chair features a high backrest with a curved design, providing support for the back and shoulders. The chair is designed for both style and comfort, making it a great addition to any living room, bedroom, or office space.') + [ + 'en-US' + ]('A lilac velvet chair with a brass frame is an elegant and luxurious piece of furniture. The soft, plush velvet material of the chair provides a comfortable and cozy seating experience. The lilac color of the velvet fabric is soft and delicate, adding a touch of femininity to the overall look of the chair. The brass frame of the chair is sturdy and durable, providing a solid foundation for the seating area. The brass color of the frame adds a touch of warmth and sophistication to the overall look of the chair. The combination of the lilac velvet and brass frame creates a striking contrast, making this chair a statement piece in any room. The chair features a high backrest with a curved design, providing support for the back and shoulders. The chair is designed for both style and comfort, making it a great addition to any living room, bedroom, or office space.') + [ + 'de-DE' + ]('Ein malvenfarbener Samtstuhl mit Messingrahmen ist ein elegantes und luxuriöses Möbelstück. Das weiche, plüschige Samtmaterial des Stuhls sorgt für ein bequemes und gemütliches Sitzerlebnis. Die lila Farbe des Samtstoffs ist sanft und zart und verleiht dem Gesamtbild des Stuhls einen Hauch von Weiblichkeit. Der Messingrahmen des Stuhls ist robust und langlebig und bietet eine solide Grundlage für den Sitzbereich. Die Messingfarbe des Gestells verleiht dem Gesamtbild des Stuhls einen Hauch von Wärme und Raffinesse. Die Kombination aus fliederfarbenem Samt und Messingrahmen schafft einen auffälligen Kontrast und macht diesen Stuhl zu einem Statement Piece in jedem Raum. Die Rückenlehne des Stuhls ist hoch und geschwungen im Design, sodass sie Rücken und Schultern zu stützt. Der Stuhl ist sowohl auf Stil als auch auf Komfort ausgelegt, was ihn zu einer großartigen Ergänzung für jedes Wohnzimmer, Schlafzimmer oder Büro macht.') ) .slug( LocalizedStringDraft.presets @@ -79,7 +80,7 @@ const rumiChair = (): TProductDraftBuilder => KeyReferenceDraft.presets.taxCategory().key(standardTaxCategory.key!) ) .masterVariant( - ProductVariantDraft.presets.sampleDataGoodStore.rumiChair01() + ProductVariantDraft.presets.sampleDataB2CLifestyle.rumiChair01() ) .categories([ KeyReferenceDraft.presets.category().key(armchairsDraft.key!), diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/rustic-bowl.spec.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/rustic-bowl.spec.ts similarity index 98% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/rustic-bowl.spec.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/rustic-bowl.spec.ts index c3580240f..f59294b79 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/rustic-bowl.spec.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/rustic-bowl.spec.ts @@ -44,7 +44,7 @@ describe(`with rusticBowl preset`, () => { "w": 5105, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Rustic_Bowl-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Rustic_Bowl-1.1.jpeg", }, ], "key": undefined, @@ -173,7 +173,7 @@ describe(`with rusticBowl preset`, () => { "width": 5105, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Rustic_Bowl-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Rustic_Bowl-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/rustic-bowl.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/rustic-bowl.ts similarity index 80% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/rustic-bowl.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/rustic-bowl.ts index 74bc4db49..0eeca575d 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/rustic-bowl.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/rustic-bowl.ts @@ -14,13 +14,14 @@ import * as ProductVariantDraft from '../../../../product-variant/product-varian import * as ProductDraft from '../../../product-draft'; import type { TProductDraftBuilder } from '../../../types'; -const standardTaxCategory = TaxCategoryDraft.presets.sampleDataGoodStore +const standardTaxCategory = TaxCategoryDraft.presets.sampleDataB2CLifestyle .standardTaxCategory() .build(); -const rusticBowlProductTypeDraft = ProductTypeDraft.presets.sampleDataGoodStore - .furnitureAndDecor() - .build(); +const rusticBowlProductTypeDraft = + ProductTypeDraft.presets.sampleDataB2CLifestyle + .furnitureAndDecor() + .build(); const rusticBowl = (): TProductDraftBuilder => ProductDraft.presets @@ -36,15 +37,15 @@ const rusticBowl = (): TProductDraftBuilder => .description( LocalizedStringDraft.presets .empty() - ['en-GB']( - 'This square wooden bowl is versatile and can be used for a variety of purposes, from serving salads and snacks to holding fruits and vegetables. It is ideal for casual or rustic dining settings and can add a touch of warmth and natural beauty to any table. The square wooden bowl is a practical and stylish choice for serving and holding food. Its natural beauty and durability make it a popular choice for many different types of cuisine and dining occasions.' - ) - ['en-US']( - 'This square wooden bowl is versatile and can be used for a variety of purposes, from serving salads and snacks to holding fruits and vegetables. It is ideal for casual or rustic dining settings and can add a touch of warmth and natural beauty to any table. The square wooden bowl is a practical and stylish choice for serving and holding food. Its natural beauty and durability make it a popular choice for many different types of cuisine and dining occasions.' - ) - ['de-DE']( - 'Diese quadratische Holzschale bietet vielfältige Einsatzmöglichkeiten - vom Servieren von Salaten und Snacks bis hin zum Aufbewahren von Obst und Gemüse. Sie fügt sich ideal in jede ungezwungene oder rustikale Speiseumgebungen ein und verleiht jedem Tisch einen Hauch von Wärme und natürlicher Schönheit. Die quadratische Holzschale ist eine praktische und stilvolle Wahl zum Servieren und Aufbewahren von Speisen. Ihre natürliche Schönheit und Langlebigkeit bietet verschiedene Einsatzmöglichkeiten in der Küche und als Servierobjekt bei unterschiedlichen Anlässen.' - ) + [ + 'en-GB' + ]('This square wooden bowl is versatile and can be used for a variety of purposes, from serving salads and snacks to holding fruits and vegetables. It is ideal for casual or rustic dining settings and can add a touch of warmth and natural beauty to any table. The square wooden bowl is a practical and stylish choice for serving and holding food. Its natural beauty and durability make it a popular choice for many different types of cuisine and dining occasions.') + [ + 'en-US' + ]('This square wooden bowl is versatile and can be used for a variety of purposes, from serving salads and snacks to holding fruits and vegetables. It is ideal for casual or rustic dining settings and can add a touch of warmth and natural beauty to any table. The square wooden bowl is a practical and stylish choice for serving and holding food. Its natural beauty and durability make it a popular choice for many different types of cuisine and dining occasions.') + [ + 'de-DE' + ]('Diese quadratische Holzschale bietet vielfältige Einsatzmöglichkeiten - vom Servieren von Salaten und Snacks bis hin zum Aufbewahren von Obst und Gemüse. Sie fügt sich ideal in jede ungezwungene oder rustikale Speiseumgebungen ein und verleiht jedem Tisch einen Hauch von Wärme und natürlicher Schönheit. Die quadratische Holzschale ist eine praktische und stilvolle Wahl zum Servieren und Aufbewahren von Speisen. Ihre natürliche Schönheit und Langlebigkeit bietet verschiedene Einsatzmöglichkeiten in der Küche und als Servierobjekt bei unterschiedlichen Anlässen.') ) .slug( LocalizedStringDraft.presets @@ -63,7 +64,7 @@ const rusticBowl = (): TProductDraftBuilder => KeyReferenceDraft.presets.taxCategory().key(standardTaxCategory.key!) ) .masterVariant( - ProductVariantDraft.presets.sampleDataGoodStore.rusticBowl01() + ProductVariantDraft.presets.sampleDataB2CLifestyle.rusticBowl01() ) .categories([]); diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/rustic-country-dresser.spec.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/rustic-country-dresser.spec.ts similarity index 96% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/rustic-country-dresser.spec.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/rustic-country-dresser.spec.ts index f12b8899c..c450a6c38 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/rustic-country-dresser.spec.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/rustic-country-dresser.spec.ts @@ -64,7 +64,7 @@ describe(`with rusticCountryDresser preset`, () => { "w": 2500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Rustic_Country_Dresser-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Rustic_Country_Dresser-1.2.jpeg", }, { "dimensions": { @@ -72,7 +72,7 @@ describe(`with rusticCountryDresser preset`, () => { "w": 2500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Rustic_Country_Dresser-1.3.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Rustic_Country_Dresser-1.3.jpeg", }, { "dimensions": { @@ -80,7 +80,7 @@ describe(`with rusticCountryDresser preset`, () => { "w": 2500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Rustic_Country_Dresser-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Rustic_Country_Dresser-1.1.jpeg", }, { "dimensions": { @@ -88,7 +88,7 @@ describe(`with rusticCountryDresser preset`, () => { "w": 5760, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Rustic_Country_Dresser-1.4.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Rustic_Country_Dresser-1.4.jpeg", }, ], "key": undefined, @@ -231,7 +231,7 @@ describe(`with rusticCountryDresser preset`, () => { "width": 2500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Rustic_Country_Dresser-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Rustic_Country_Dresser-1.2.jpeg", }, { "dimensions": { @@ -239,7 +239,7 @@ describe(`with rusticCountryDresser preset`, () => { "width": 2500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Rustic_Country_Dresser-1.3.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Rustic_Country_Dresser-1.3.jpeg", }, { "dimensions": { @@ -247,7 +247,7 @@ describe(`with rusticCountryDresser preset`, () => { "width": 2500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Rustic_Country_Dresser-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Rustic_Country_Dresser-1.1.jpeg", }, { "dimensions": { @@ -255,7 +255,7 @@ describe(`with rusticCountryDresser preset`, () => { "width": 5760, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Rustic_Country_Dresser-1.4.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Rustic_Country_Dresser-1.4.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/rustic-country-dresser.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/rustic-country-dresser.ts similarity index 87% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/rustic-country-dresser.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/rustic-country-dresser.ts index beeac2c80..bb9357a98 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/rustic-country-dresser.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/rustic-country-dresser.ts @@ -18,24 +18,24 @@ import * as ProductVariantDraft from '../../../../product-variant/product-varian import * as ProductDraft from '../../../product-draft'; import type { TProductDraftBuilder } from '../../../types'; -const standardTaxCategory = TaxCategoryDraft.presets.sampleDataGoodStore +const standardTaxCategory = TaxCategoryDraft.presets.sampleDataB2CLifestyle .standardTaxCategory() .build(); const rusticCountryDresserProductTypeDraft = - ProductTypeDraft.presets.sampleDataGoodStore + ProductTypeDraft.presets.sampleDataB2CLifestyle .furnitureAndDecor() .build(); -const bedroomFurnitureDraft = CategoryDraft.presets.sampleDataGoodStore +const bedroomFurnitureDraft = CategoryDraft.presets.sampleDataB2CLifestyle .bedroomFurniture() .build(); -const storageTablesDraft = CategoryDraft.presets.sampleDataGoodStore +const storageTablesDraft = CategoryDraft.presets.sampleDataB2CLifestyle .dressers() .build(); -const furnitureDraft = CategoryDraft.presets.sampleDataGoodStore +const furnitureDraft = CategoryDraft.presets.sampleDataB2CLifestyle .furniture() .build(); @@ -53,15 +53,15 @@ const rusticCountryDresser = (): TProductDraftBuilder => .description( LocalizedStringDraft.presets .empty() - ['en-GB']( - 'A rustic country dresser with ample storage is a charming and practical piece of furniture that can add warmth and character to any bedroom or living space. The dresser features a sturdy wooden frame and a vintage look that is both rustic and inviting. The dresser is equipped with a range of drawers in various sizes, providing ample storage space for clothing, linens, and other items. The drawers are constructed with dovetail joints and gliding hardware, ensuring that they are durable and easy to use. The drawer fronts are adorned with rustic metal pulls, adding to the charm and character of the piece. The top of the dresser provides additional storage space, allowing you to display decorative items, such as vases, candles, or picture frames. Overall, a rustic country dresser with ample storage is a practical and stylish piece of furniture that can add warmth and character to any bedroom or living space. Its sturdy construction, ample storage space, and charming design make it a functional and beautiful addition to any home with a rustic or country decor style.' - ) - ['en-US']( - 'A rustic country dresser with ample storage is a charming and practical piece of furniture that can add warmth and character to any bedroom or living space. The dresser features a sturdy wooden frame and a vintage look that is both rustic and inviting. The dresser is equipped with a range of drawers in various sizes, providing ample storage space for clothing, linens, and other items. The drawers are constructed with dovetail joints and gliding hardware, ensuring that they are durable and easy to use. The drawer fronts are adorned with rustic metal pulls, adding to the charm and character of the piece. The top of the dresser provides additional storage space, allowing you to display decorative items, such as vases, candles, or picture frames. Overall, a rustic country dresser with ample storage is a practical and stylish piece of furniture that can add warmth and character to any bedroom or living space. Its sturdy construction, ample storage space, and charming design make it a functional and beautiful addition to any home with a rustic or country decor style.' - ) - ['de-DE']( - 'Die rustikale Landhauskommode mit viel Stauraum ist ein charmantes und praktisches Möbelstück, das jedem Schlafzimmer oder Wohnzimmer Wärme und Charakter verleiht. Die stabile Kommode mit Holzrahmen ist im Vintage-Look gehalten und wirkt sowohl rustikal als auch einladend. Die Kommode ist mit einer Reihe von Schubladen in verschiedenen Größen ausgestattet, die ausreichend Stauraum für Kleidung, Bettwäsche und andere Gegenstände bieten. Die Schubladen sind mit Schwalbenschwanzverbindungen und Gleitbeschlägen konstruiert, um sicherzustellen, dass sie langlebig und einfach zu bedienen sind. Die Schubladenfronten sind mit rustikalen Metallgriffen geschmückt, die den Charme und Charakter des Möbelstücks noch verstärken. Die Platte der Kommode bietet zusätzlichen Stauraum für dekorative Gegenstände wie Vasen, Kerzen oder Bilderrahmen. Eine rustikale Landhauskommode schafft auf praktische und stilvolle Weise Stauraum für und verleiht jedem Schlaf- oder Wohnraum gleichzeitig Wärme und Charme. Die robuste Konstruktion und das schlichte Design machen sie zu einer funktionalen und schönen Ergänzung für jedes Zuhause mit rustikalem oder ländlichem Einrichtungsstil.' - ) + [ + 'en-GB' + ]('A rustic country dresser with ample storage is a charming and practical piece of furniture that can add warmth and character to any bedroom or living space. The dresser features a sturdy wooden frame and a vintage look that is both rustic and inviting. The dresser is equipped with a range of drawers in various sizes, providing ample storage space for clothing, linens, and other items. The drawers are constructed with dovetail joints and gliding hardware, ensuring that they are durable and easy to use. The drawer fronts are adorned with rustic metal pulls, adding to the charm and character of the piece. The top of the dresser provides additional storage space, allowing you to display decorative items, such as vases, candles, or picture frames. Overall, a rustic country dresser with ample storage is a practical and stylish piece of furniture that can add warmth and character to any bedroom or living space. Its sturdy construction, ample storage space, and charming design make it a functional and beautiful addition to any home with a rustic or country decor style.') + [ + 'en-US' + ]('A rustic country dresser with ample storage is a charming and practical piece of furniture that can add warmth and character to any bedroom or living space. The dresser features a sturdy wooden frame and a vintage look that is both rustic and inviting. The dresser is equipped with a range of drawers in various sizes, providing ample storage space for clothing, linens, and other items. The drawers are constructed with dovetail joints and gliding hardware, ensuring that they are durable and easy to use. The drawer fronts are adorned with rustic metal pulls, adding to the charm and character of the piece. The top of the dresser provides additional storage space, allowing you to display decorative items, such as vases, candles, or picture frames. Overall, a rustic country dresser with ample storage is a practical and stylish piece of furniture that can add warmth and character to any bedroom or living space. Its sturdy construction, ample storage space, and charming design make it a functional and beautiful addition to any home with a rustic or country decor style.') + [ + 'de-DE' + ]('Die rustikale Landhauskommode mit viel Stauraum ist ein charmantes und praktisches Möbelstück, das jedem Schlafzimmer oder Wohnzimmer Wärme und Charakter verleiht. Die stabile Kommode mit Holzrahmen ist im Vintage-Look gehalten und wirkt sowohl rustikal als auch einladend. Die Kommode ist mit einer Reihe von Schubladen in verschiedenen Größen ausgestattet, die ausreichend Stauraum für Kleidung, Bettwäsche und andere Gegenstände bieten. Die Schubladen sind mit Schwalbenschwanzverbindungen und Gleitbeschlägen konstruiert, um sicherzustellen, dass sie langlebig und einfach zu bedienen sind. Die Schubladenfronten sind mit rustikalen Metallgriffen geschmückt, die den Charme und Charakter des Möbelstücks noch verstärken. Die Platte der Kommode bietet zusätzlichen Stauraum für dekorative Gegenstände wie Vasen, Kerzen oder Bilderrahmen. Eine rustikale Landhauskommode schafft auf praktische und stilvolle Weise Stauraum für und verleiht jedem Schlaf- oder Wohnraum gleichzeitig Wärme und Charme. Die robuste Konstruktion und das schlichte Design machen sie zu einer funktionalen und schönen Ergänzung für jedes Zuhause mit rustikalem oder ländlichem Einrichtungsstil.') ) .slug( LocalizedStringDraft.presets @@ -80,7 +80,7 @@ const rusticCountryDresser = (): TProductDraftBuilder => KeyReferenceDraft.presets.taxCategory().key(standardTaxCategory.key!) ) .masterVariant( - ProductVariantDraft.presets.sampleDataGoodStore.rusticCountryDresser01() + ProductVariantDraft.presets.sampleDataB2CLifestyle.rusticCountryDresser01() ) .categories([ KeyReferenceDraft.presets.category().key(bedroomFurnitureDraft.key!), diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/rustic-country-queen-bed.spec.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/rustic-country-queen-bed.spec.ts similarity index 99% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/rustic-country-queen-bed.spec.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/rustic-country-queen-bed.spec.ts index 3f903e068..2ef5e72c0 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/rustic-country-queen-bed.spec.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/rustic-country-queen-bed.spec.ts @@ -76,7 +76,7 @@ describe(`with rusticCountryQueenBed preset`, () => { "w": 5000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Rustic_Country_Queen_Bed-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Rustic_Country_Queen_Bed-1.1.jpeg", }, ], "key": undefined, @@ -227,7 +227,7 @@ describe(`with rusticCountryQueenBed preset`, () => { "width": 5000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Rustic_Country_Queen_Bed-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Rustic_Country_Queen_Bed-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/rustic-country-queen-bed.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/rustic-country-queen-bed.ts similarity index 87% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/rustic-country-queen-bed.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/rustic-country-queen-bed.ts index ea462eb09..7436a403b 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/rustic-country-queen-bed.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/rustic-country-queen-bed.ts @@ -18,28 +18,28 @@ import * as ProductVariantDraft from '../../../../product-variant/product-varian import * as ProductDraft from '../../../product-draft'; import type { TProductDraftBuilder } from '../../../types'; -const standardTaxCategory = TaxCategoryDraft.presets.sampleDataGoodStore +const standardTaxCategory = TaxCategoryDraft.presets.sampleDataB2CLifestyle .standardTaxCategory() .build(); const rusticCountryQueenBedProductTypeDraft = - ProductTypeDraft.presets.sampleDataGoodStore + ProductTypeDraft.presets.sampleDataB2CLifestyle .furnitureAndDecor() .build(); -const bedroomFurnitureDraft = CategoryDraft.presets.sampleDataGoodStore +const bedroomFurnitureDraft = CategoryDraft.presets.sampleDataB2CLifestyle .bedroomFurniture() .build(); -const bedsDraft = CategoryDraft.presets.sampleDataGoodStore +const bedsDraft = CategoryDraft.presets.sampleDataB2CLifestyle .beds() .build(); -const furnitureDraft = CategoryDraft.presets.sampleDataGoodStore +const furnitureDraft = CategoryDraft.presets.sampleDataB2CLifestyle .furniture() .build(); -const newArrivalsDraft = CategoryDraft.presets.sampleDataGoodStore +const newArrivalsDraft = CategoryDraft.presets.sampleDataB2CLifestyle .newArrivals() .build(); @@ -57,15 +57,15 @@ const rusticCountryQueenBed = (): TProductDraftBuilder => .description( LocalizedStringDraft.presets .empty() - ['en-GB']( - "A rustic queen bed with a suede headboard is a beautiful and comfortable piece of furniture that can add warmth and texture to any bedroom. The bed features a sturdy wooden frame and a vintage look that is both rustic and inviting. The headboard of the bed is upholstered in soft suede fabric, providing a comfortable and stylish backrest for reading or relaxing in bed. The suede material also adds a tactile and luxurious feel to the bed, creating a cozy and inviting atmosphere in the bedroom. The bed comes with a sturdy wooden slat system that provides excellent support for the mattress and ensures a comfortable and restful night's sleep. The rustic queen bed with a suede headboard is designed to be both functional and stylish. The bed comes with a matching dresser to create a cohesive and stylish bedroom decor. Overall, a rustic queen bed with a suede headboard is a beautiful and comfortable piece of furniture that can add warmth and texture to any bedroom. Its sturdy construction, comfortable design, and charming rustic style make it a functional and beautiful addition to any home with a rustic or country decor style." - ) - ['en-US']( - "A rustic queen bed with a suede headboard is a beautiful and comfortable piece of furniture that can add warmth and texture to any bedroom. The bed features a sturdy wooden frame and a vintage look that is both rustic and inviting. The headboard of the bed is upholstered in soft suede fabric, providing a comfortable and stylish backrest for reading or relaxing in bed. The suede material also adds a tactile and luxurious feel to the bed, creating a cozy and inviting atmosphere in the bedroom. The bed comes with a sturdy wooden slat system that provides excellent support for the mattress and ensures a comfortable and restful night's sleep. The rustic queen bed with a suede headboard is designed to be both functional and stylish. The bed comes with a matching dresser to create a cohesive and stylish bedroom decor. Overall, a rustic queen bed with a suede headboard is a beautiful and comfortable piece of furniture that can add warmth and texture to any bedroom. Its sturdy construction, comfortable design, and charming rustic style make it a functional and beautiful addition to any home with a rustic or country decor style." - ) - ['de-DE']( - 'Das rustikale Queensize-Bett mit dem Kopfteil aus Wildleder ist ein schönes und komfortables Möbelstück, das jedem Schlafzimmer Wärme und Struktur verleiht. Das Bett hat einen stabilen Holzrahmen im Vintage-Look, der zum Relaxen einlädt. Das Kopfteil des Bettes ist mit weichem Wildleder bezogen und bietet eine bequeme und stilvolle Rückenlehne zum Lesen oder Entspannen im Bett. Das Wildledermaterial verleiht dem Bett luxuriöses Gefühl zum Anfassen und schafft eine gemütliche und einladende Atmosphäre im Schlafzimmer. Der stabile Holzlattenrost des Betts bietet eine solide Grundlage für die Matratze und somit für einen komfortablen und erholsamen Schlaf. Das rustikale Queensize-Bett mit Kopfteil aus Wildleder ist sowohl funktional als auch stilvoll designt. Zu dem Bett gibt es eine passende Kommode, mit der ein zusammenhängendes und stilvolles Schlafzimmerdekor geschaffen werden kann. Ein rustikales Queensize-Bett mit einem Kopfteil aus Wildleder ist ein schönes und komfortables Möbelstück, das Wärme und Textur in jedes Schlafzimmer bringt. Seine robuste Konstruktion, sein komfortables Design und der charmant-rustikale Charakter machen es zu einer funktionalen und schönen Ergänzung für jedes Zuhause im angesagten Landhausstil.' - ) + [ + 'en-GB' + ]("A rustic queen bed with a suede headboard is a beautiful and comfortable piece of furniture that can add warmth and texture to any bedroom. The bed features a sturdy wooden frame and a vintage look that is both rustic and inviting. The headboard of the bed is upholstered in soft suede fabric, providing a comfortable and stylish backrest for reading or relaxing in bed. The suede material also adds a tactile and luxurious feel to the bed, creating a cozy and inviting atmosphere in the bedroom. The bed comes with a sturdy wooden slat system that provides excellent support for the mattress and ensures a comfortable and restful night's sleep. The rustic queen bed with a suede headboard is designed to be both functional and stylish. The bed comes with a matching dresser to create a cohesive and stylish bedroom decor. Overall, a rustic queen bed with a suede headboard is a beautiful and comfortable piece of furniture that can add warmth and texture to any bedroom. Its sturdy construction, comfortable design, and charming rustic style make it a functional and beautiful addition to any home with a rustic or country decor style.") + [ + 'en-US' + ]("A rustic queen bed with a suede headboard is a beautiful and comfortable piece of furniture that can add warmth and texture to any bedroom. The bed features a sturdy wooden frame and a vintage look that is both rustic and inviting. The headboard of the bed is upholstered in soft suede fabric, providing a comfortable and stylish backrest for reading or relaxing in bed. The suede material also adds a tactile and luxurious feel to the bed, creating a cozy and inviting atmosphere in the bedroom. The bed comes with a sturdy wooden slat system that provides excellent support for the mattress and ensures a comfortable and restful night's sleep. The rustic queen bed with a suede headboard is designed to be both functional and stylish. The bed comes with a matching dresser to create a cohesive and stylish bedroom decor. Overall, a rustic queen bed with a suede headboard is a beautiful and comfortable piece of furniture that can add warmth and texture to any bedroom. Its sturdy construction, comfortable design, and charming rustic style make it a functional and beautiful addition to any home with a rustic or country decor style.") + [ + 'de-DE' + ]('Das rustikale Queensize-Bett mit dem Kopfteil aus Wildleder ist ein schönes und komfortables Möbelstück, das jedem Schlafzimmer Wärme und Struktur verleiht. Das Bett hat einen stabilen Holzrahmen im Vintage-Look, der zum Relaxen einlädt. Das Kopfteil des Bettes ist mit weichem Wildleder bezogen und bietet eine bequeme und stilvolle Rückenlehne zum Lesen oder Entspannen im Bett. Das Wildledermaterial verleiht dem Bett luxuriöses Gefühl zum Anfassen und schafft eine gemütliche und einladende Atmosphäre im Schlafzimmer. Der stabile Holzlattenrost des Betts bietet eine solide Grundlage für die Matratze und somit für einen komfortablen und erholsamen Schlaf. Das rustikale Queensize-Bett mit Kopfteil aus Wildleder ist sowohl funktional als auch stilvoll designt. Zu dem Bett gibt es eine passende Kommode, mit der ein zusammenhängendes und stilvolles Schlafzimmerdekor geschaffen werden kann. Ein rustikales Queensize-Bett mit einem Kopfteil aus Wildleder ist ein schönes und komfortables Möbelstück, das Wärme und Textur in jedes Schlafzimmer bringt. Seine robuste Konstruktion, sein komfortables Design und der charmant-rustikale Charakter machen es zu einer funktionalen und schönen Ergänzung für jedes Zuhause im angesagten Landhausstil.') ) .slug( LocalizedStringDraft.presets @@ -84,7 +84,7 @@ const rusticCountryQueenBed = (): TProductDraftBuilder => KeyReferenceDraft.presets.taxCategory().key(standardTaxCategory.key!) ) .masterVariant( - ProductVariantDraft.presets.sampleDataGoodStore.rusticCountryQueenBed01() + ProductVariantDraft.presets.sampleDataB2CLifestyle.rusticCountryQueenBed01() ) .categories([ KeyReferenceDraft.presets.category().key(bedroomFurnitureDraft.key!), diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/rustic-oven-casserole.spec.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/rustic-oven-casserole.spec.ts similarity index 99% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/rustic-oven-casserole.spec.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/rustic-oven-casserole.spec.ts index 03cc11171..dc6f5250b 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/rustic-oven-casserole.spec.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/rustic-oven-casserole.spec.ts @@ -45,7 +45,7 @@ describe(`with rusticOvenCasserole preset`, () => { "w": 4746, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Rustic_Oven_Casserole-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Rustic_Oven_Casserole-1.1.jpeg", }, ], "key": undefined, @@ -175,7 +175,7 @@ describe(`with rusticOvenCasserole preset`, () => { "width": 4746, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Rustic_Oven_Casserole-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Rustic_Oven_Casserole-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/rustic-oven-casserole.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/rustic-oven-casserole.ts similarity index 91% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/rustic-oven-casserole.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/rustic-oven-casserole.ts index 7286ad2aa..fe5dce4bc 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/rustic-oven-casserole.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/rustic-oven-casserole.ts @@ -14,12 +14,12 @@ import * as ProductVariantDraft from '../../../../product-variant/product-varian import * as ProductDraft from '../../../product-draft'; import type { TProductDraftBuilder } from '../../../types'; -const standardTaxCategory = TaxCategoryDraft.presets.sampleDataGoodStore +const standardTaxCategory = TaxCategoryDraft.presets.sampleDataB2CLifestyle .standardTaxCategory() .build(); const rusticOvenCasseroleProductTypeDraft = - ProductTypeDraft.presets.sampleDataGoodStore + ProductTypeDraft.presets.sampleDataB2CLifestyle .furnitureAndDecor() .build(); @@ -37,15 +37,15 @@ const rusticOvenCasserole = (): TProductDraftBuilder => .description( LocalizedStringDraft.presets .empty() - ['de-DE']( - 'Die rustikale Keramik-Kasserolle eignet sich ideal zum Backen oder Braten von Aufläufen, Eintöpfen oder anderen Ofengerichten. Im traditionellen Stil gehalten, hat die Ofenform ein rustikales Aussehen, ist in erdigen Farben und mit strukturierter Oberfläche und unebenen Rändern gestaltet. Die Dicke des Materials macht sie langlebig und temperaturfest, sodass Risse und Absplitterungen ausgeschlossen werden können. Das Material ist zudem so beständig, dass es nicht auf saure oder scharfe Speisen reagiert. Die Aromen der Gerichte bleiben somit jederzeit unverändert. Das Design der Keramikform sorgt für rustikalen Charme in der Küche und im Essbereich. Besonders in der kalten Jahreszeit eignet sich die Ofenform außerdem ideal zum Servieren warmer und herzhafter Speisen. Für die Reinigung der rustikalen Servierform empfiehlt es sich, sie nach vollständigem Abkühlen mit warmem Seifenwasser zu waschen. Sie sollte vor der Lagerung gründlich getrocknet werden, um zu verhindern, dass Feuchtigkeit im Inneren eingeschlossen wird. Eine rustikale Auflaufform aus Keramik ist ein praktisches und ästhetisch ansprechendes Kochgeschirr, das jeder Küche einen Hauch von Wärme und Charakter verleiht. Die robuste Machart und das klassische Design machen sie zum Must-have der Küchenausstattung für Hobbyköche und Köche gleichermaßen.' - ) - ['en-GB']( - "A rustic ceramic oven casserole is a cooking dish made of ceramic that is designed to be used in the oven for baking or roasting casseroles, stews, or other dishes. It has a traditional and rustic look, often featuring earthy colors, textured surfaces, and uneven edges. The ceramic material is thick and durable, allowing it to withstand high temperatures in the oven without cracking or chipping. It is also non-reactive, meaning it won't interact with acidic or spicy foods, ensuring that the flavors of the dish remain intact. The rustic design of the ceramic oven casserole adds a touch of warmth and charm to the kitchen and dining area. It is perfect for serving hot and hearty meals, particularly during colder months. To clean a rustic ceramic oven casserole, it is recommended to let it cool down after use before washing it with warm, soapy water. It should be dried thoroughly before storing to prevent any moisture from being trapped inside. Overall, a rustic ceramic oven casserole is a practical and aesthetically pleasing cooking dish that adds a touch of warmth and character to any kitchen. Its sturdy construction and classic design make it a staple for home cooks and chefs alike." - ) - ['en-US']( - "A rustic ceramic oven casserole is a cooking dish made of ceramic that is designed to be used in the oven for baking or roasting casseroles, stews, or other dishes. It has a traditional and rustic look, often featuring earthy colors, textured surfaces, and uneven edges. The ceramic material is thick and durable, allowing it to withstand high temperatures in the oven without cracking or chipping. It is also non-reactive, meaning it won't interact with acidic or spicy foods, ensuring that the flavors of the dish remain intact. The rustic design of the ceramic oven casserole adds a touch of warmth and charm to the kitchen and dining area. It is perfect for serving hot and hearty meals, particularly during colder months. To clean a rustic ceramic oven casserole, it is recommended to let it cool down after use before washing it with warm, soapy water. It should be dried thoroughly before storing to prevent any moisture from being trapped inside. Overall, a rustic ceramic oven casserole is a practical and aesthetically pleasing cooking dish that adds a touch of warmth and character to any kitchen. Its sturdy construction and classic design make it a staple for home cooks and chefs alike." - ) + [ + 'de-DE' + ]('Die rustikale Keramik-Kasserolle eignet sich ideal zum Backen oder Braten von Aufläufen, Eintöpfen oder anderen Ofengerichten. Im traditionellen Stil gehalten, hat die Ofenform ein rustikales Aussehen, ist in erdigen Farben und mit strukturierter Oberfläche und unebenen Rändern gestaltet. Die Dicke des Materials macht sie langlebig und temperaturfest, sodass Risse und Absplitterungen ausgeschlossen werden können. Das Material ist zudem so beständig, dass es nicht auf saure oder scharfe Speisen reagiert. Die Aromen der Gerichte bleiben somit jederzeit unverändert. Das Design der Keramikform sorgt für rustikalen Charme in der Küche und im Essbereich. Besonders in der kalten Jahreszeit eignet sich die Ofenform außerdem ideal zum Servieren warmer und herzhafter Speisen. Für die Reinigung der rustikalen Servierform empfiehlt es sich, sie nach vollständigem Abkühlen mit warmem Seifenwasser zu waschen. Sie sollte vor der Lagerung gründlich getrocknet werden, um zu verhindern, dass Feuchtigkeit im Inneren eingeschlossen wird. Eine rustikale Auflaufform aus Keramik ist ein praktisches und ästhetisch ansprechendes Kochgeschirr, das jeder Küche einen Hauch von Wärme und Charakter verleiht. Die robuste Machart und das klassische Design machen sie zum Must-have der Küchenausstattung für Hobbyköche und Köche gleichermaßen.') + [ + 'en-GB' + ]("A rustic ceramic oven casserole is a cooking dish made of ceramic that is designed to be used in the oven for baking or roasting casseroles, stews, or other dishes. It has a traditional and rustic look, often featuring earthy colors, textured surfaces, and uneven edges. The ceramic material is thick and durable, allowing it to withstand high temperatures in the oven without cracking or chipping. It is also non-reactive, meaning it won't interact with acidic or spicy foods, ensuring that the flavors of the dish remain intact. The rustic design of the ceramic oven casserole adds a touch of warmth and charm to the kitchen and dining area. It is perfect for serving hot and hearty meals, particularly during colder months. To clean a rustic ceramic oven casserole, it is recommended to let it cool down after use before washing it with warm, soapy water. It should be dried thoroughly before storing to prevent any moisture from being trapped inside. Overall, a rustic ceramic oven casserole is a practical and aesthetically pleasing cooking dish that adds a touch of warmth and character to any kitchen. Its sturdy construction and classic design make it a staple for home cooks and chefs alike.") + [ + 'en-US' + ]("A rustic ceramic oven casserole is a cooking dish made of ceramic that is designed to be used in the oven for baking or roasting casseroles, stews, or other dishes. It has a traditional and rustic look, often featuring earthy colors, textured surfaces, and uneven edges. The ceramic material is thick and durable, allowing it to withstand high temperatures in the oven without cracking or chipping. It is also non-reactive, meaning it won't interact with acidic or spicy foods, ensuring that the flavors of the dish remain intact. The rustic design of the ceramic oven casserole adds a touch of warmth and charm to the kitchen and dining area. It is perfect for serving hot and hearty meals, particularly during colder months. To clean a rustic ceramic oven casserole, it is recommended to let it cool down after use before washing it with warm, soapy water. It should be dried thoroughly before storing to prevent any moisture from being trapped inside. Overall, a rustic ceramic oven casserole is a practical and aesthetically pleasing cooking dish that adds a touch of warmth and character to any kitchen. Its sturdy construction and classic design make it a staple for home cooks and chefs alike.") ) .slug( LocalizedStringDraft.presets @@ -64,7 +64,7 @@ const rusticOvenCasserole = (): TProductDraftBuilder => KeyReferenceDraft.presets.taxCategory().key(standardTaxCategory.key!) ) .masterVariant( - ProductVariantDraft.presets.sampleDataGoodStore.rusticOvenCasserole01() + ProductVariantDraft.presets.sampleDataB2CLifestyle.rusticOvenCasserole01() ) .categories([]); diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/rye-whiskey-glass.spec.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/rye-whiskey-glass.spec.ts similarity index 98% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/rye-whiskey-glass.spec.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/rye-whiskey-glass.spec.ts index 5a1c9860e..471fcf24a 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/rye-whiskey-glass.spec.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/rye-whiskey-glass.spec.ts @@ -65,7 +65,7 @@ describe(`with ryeWhiskeyGlass preset`, () => { "w": 2848, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Rye_Whiskey_Glass-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Rye_Whiskey_Glass-1.1.jpeg", }, { "dimensions": { @@ -73,7 +73,7 @@ describe(`with ryeWhiskeyGlass preset`, () => { "w": 2632, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Rye_Whiskey_Glass-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Rye_Whiskey_Glass-1.2.jpeg", }, ], "key": undefined, @@ -220,7 +220,7 @@ describe(`with ryeWhiskeyGlass preset`, () => { "width": 2848, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Rye_Whiskey_Glass-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Rye_Whiskey_Glass-1.1.jpeg", }, { "dimensions": { @@ -228,7 +228,7 @@ describe(`with ryeWhiskeyGlass preset`, () => { "width": 2632, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Rye_Whiskey_Glass-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Rye_Whiskey_Glass-1.2.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/rye-whiskey-glass.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/rye-whiskey-glass.ts similarity index 84% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/rye-whiskey-glass.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/rye-whiskey-glass.ts index 590072a2a..be5976402 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/rye-whiskey-glass.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/rye-whiskey-glass.ts @@ -18,24 +18,24 @@ import * as ProductVariantDraft from '../../../../product-variant/product-varian import * as ProductDraft from '../../../product-draft'; import type { TProductDraftBuilder } from '../../../types'; -const standardTaxCategory = TaxCategoryDraft.presets.sampleDataGoodStore +const standardTaxCategory = TaxCategoryDraft.presets.sampleDataB2CLifestyle .standardTaxCategory() .build(); const ryeWhiskeyGlassProductTypeDraft = - ProductTypeDraft.presets.sampleDataGoodStore + ProductTypeDraft.presets.sampleDataB2CLifestyle .furnitureAndDecor() .build(); -const barAndGlasswareDraft = CategoryDraft.presets.sampleDataGoodStore +const barAndGlasswareDraft = CategoryDraft.presets.sampleDataB2CLifestyle .barAndGlassware() .build(); -const glasswareDraft = CategoryDraft.presets.sampleDataGoodStore +const glasswareDraft = CategoryDraft.presets.sampleDataB2CLifestyle .glassware() .build(); -const kitchenDraft = CategoryDraft.presets.sampleDataGoodStore +const kitchenDraft = CategoryDraft.presets.sampleDataB2CLifestyle .kitchen() .build(); @@ -53,15 +53,15 @@ const ryeWhiskeyGlass = (): TProductDraftBuilder => .description( LocalizedStringDraft.presets .empty() - ['en-GB']( - "The Rye Whiskey Glass is designed specifically for enjoying whiskey or other spirits. It has a short, wide shape with a thick, heavy base that provides stability and balance. The design of the whiskey glass is intended to enhance the drinking experience by allowing the whiskey's aroma and flavor to be fully appreciated. The wide opening of the glass allows the drinker to fully appreciate the color, clarity, and texture of the whiskey, while the heavy base helps to keep the drink from spilling or tipping over. Overall, the Rye Whiskey Glass is a classic and timeless type of drinking glass that is ideal for savoring the rich flavor and aroma of fine whiskey. Its simple yet elegant design makes it a popular choice for whiskey connoisseurs and casual drinkers alike." - ) - ['en-US']( - "The Rye Whiskey Glass is designed specifically for enjoying whiskey or other spirits. It has a short, wide shape with a thick, heavy base that provides stability and balance. The design of the whiskey glass is intended to enhance the drinking experience by allowing the whiskey's aroma and flavor to be fully appreciated. The wide opening of the glass allows the drinker to fully appreciate the color, clarity, and texture of the whiskey, while the heavy base helps to keep the drink from spilling or tipping over. Overall, the Rye Whiskey Glass is a classic and timeless type of drinking glass that is ideal for savoring the rich flavor and aroma of fine whiskey. Its simple yet elegant design makes it a popular choice for whiskey connoisseurs and casual drinkers alike." - ) - ['de-DE']( - 'Das Rye-Whiskyglas wurde speziell für den Genuss von Whisky und anderen Spirituosen entwickelt. Es hat eine breite Form mit einer dickglasigen, schweren Basis, die für Stabilität und Gleichgewicht sorgt. Das Design des Whiskyglases ist auf ein verbessertes Trinkerlebnis abgestimmt, bei dem die Aromen der Geschmack des Whiskys im Mittelpunkt stehen. Die breite Öffnung des Glases ermöglicht es dem Genießer, die Farbe, Klarheit und Textur des Whiskys voll und ganz wahrzunehmen, während der schwere Boden für Stabilität beim Abstellen sorgt. Insgesamt ist das Rye-Whiskyglas ein klassisches und zeitloses Trinkglas, das sich ideal eignet, um den reichen Geschmack und das Aroma von feinem Whisky zu genießen. Sein schlichtes, aber elegantes Design macht es zu einer beliebten Wahl für Whiskykenner und Gelegenheitsgenießer gleichermaßen.' - ) + [ + 'en-GB' + ]("The Rye Whiskey Glass is designed specifically for enjoying whiskey or other spirits. It has a short, wide shape with a thick, heavy base that provides stability and balance. The design of the whiskey glass is intended to enhance the drinking experience by allowing the whiskey's aroma and flavor to be fully appreciated. The wide opening of the glass allows the drinker to fully appreciate the color, clarity, and texture of the whiskey, while the heavy base helps to keep the drink from spilling or tipping over. Overall, the Rye Whiskey Glass is a classic and timeless type of drinking glass that is ideal for savoring the rich flavor and aroma of fine whiskey. Its simple yet elegant design makes it a popular choice for whiskey connoisseurs and casual drinkers alike.") + [ + 'en-US' + ]("The Rye Whiskey Glass is designed specifically for enjoying whiskey or other spirits. It has a short, wide shape with a thick, heavy base that provides stability and balance. The design of the whiskey glass is intended to enhance the drinking experience by allowing the whiskey's aroma and flavor to be fully appreciated. The wide opening of the glass allows the drinker to fully appreciate the color, clarity, and texture of the whiskey, while the heavy base helps to keep the drink from spilling or tipping over. Overall, the Rye Whiskey Glass is a classic and timeless type of drinking glass that is ideal for savoring the rich flavor and aroma of fine whiskey. Its simple yet elegant design makes it a popular choice for whiskey connoisseurs and casual drinkers alike.") + [ + 'de-DE' + ]('Das Rye-Whiskyglas wurde speziell für den Genuss von Whisky und anderen Spirituosen entwickelt. Es hat eine breite Form mit einer dickglasigen, schweren Basis, die für Stabilität und Gleichgewicht sorgt. Das Design des Whiskyglases ist auf ein verbessertes Trinkerlebnis abgestimmt, bei dem die Aromen der Geschmack des Whiskys im Mittelpunkt stehen. Die breite Öffnung des Glases ermöglicht es dem Genießer, die Farbe, Klarheit und Textur des Whiskys voll und ganz wahrzunehmen, während der schwere Boden für Stabilität beim Abstellen sorgt. Insgesamt ist das Rye-Whiskyglas ein klassisches und zeitloses Trinkglas, das sich ideal eignet, um den reichen Geschmack und das Aroma von feinem Whisky zu genießen. Sein schlichtes, aber elegantes Design macht es zu einer beliebten Wahl für Whiskykenner und Gelegenheitsgenießer gleichermaßen.') ) .slug( LocalizedStringDraft.presets @@ -80,7 +80,7 @@ const ryeWhiskeyGlass = (): TProductDraftBuilder => KeyReferenceDraft.presets.taxCategory().key(standardTaxCategory.key!) ) .masterVariant( - ProductVariantDraft.presets.sampleDataGoodStore.ryeWhiskeyGlass01() + ProductVariantDraft.presets.sampleDataB2CLifestyle.ryeWhiskeyGlass01() ) .categories([ KeyReferenceDraft.presets.category().key(barAndGlasswareDraft.key!), diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/sally-armchair.spec.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/sally-armchair.spec.ts similarity index 98% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/sally-armchair.spec.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/sally-armchair.spec.ts index f84a44dab..6dcf86abd 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/sally-armchair.spec.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/sally-armchair.spec.ts @@ -65,7 +65,7 @@ describe(`with sallyArmchair preset`, () => { "w": 5000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Sally_Armchair-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Sally_Armchair-1.1.jpeg", }, ], "key": undefined, @@ -212,7 +212,7 @@ describe(`with sallyArmchair preset`, () => { "width": 5000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Sally_Armchair-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Sally_Armchair-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/sally-armchair.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/sally-armchair.ts similarity index 82% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/sally-armchair.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/sally-armchair.ts index 31c4beea9..3a3cdedc7 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/sally-armchair.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/sally-armchair.ts @@ -18,24 +18,24 @@ import * as ProductVariantDraft from '../../../../product-variant/product-varian import * as ProductDraft from '../../../product-draft'; import type { TProductDraftBuilder } from '../../../types'; -const standardTaxCategory = TaxCategoryDraft.presets.sampleDataGoodStore +const standardTaxCategory = TaxCategoryDraft.presets.sampleDataB2CLifestyle .standardTaxCategory() .build(); const sallyArmchairProductTypeDraft = - ProductTypeDraft.presets.sampleDataGoodStore + ProductTypeDraft.presets.sampleDataB2CLifestyle .furnitureAndDecor() .build(); -const armchairsDraft = CategoryDraft.presets.sampleDataGoodStore +const armchairsDraft = CategoryDraft.presets.sampleDataB2CLifestyle .armchairs() .build(); -const furnitureDraft = CategoryDraft.presets.sampleDataGoodStore +const furnitureDraft = CategoryDraft.presets.sampleDataB2CLifestyle .furniture() .build(); -const livingRoomFurnitureDraft = CategoryDraft.presets.sampleDataGoodStore +const livingRoomFurnitureDraft = CategoryDraft.presets.sampleDataB2CLifestyle .livingRoomFurniture() .build(); @@ -53,15 +53,15 @@ const sallyArmchair = (): TProductDraftBuilder => .description( LocalizedStringDraft.presets .empty() - ['en-GB']( - 'A tufted armchair with wooden legs is an elegant and comfortable piece of furniture. The chair features a deep seat and a high backrest, which are both padded and upholstered with soft and plush material. The tufted design creates a sophisticated and timeless look, while the wooden legs adding a touch of softness and warmth. The legs are thin and tapered, giving the chair a sleek and modern appearance. The armrests are curved and plush, providing both comfort and support for the arms. Overall, a tufted armchair with brass legs is a stylish and comfortable addition to any living space or lounge area.' - ) - ['en-US']( - 'A tufted armchair with wooden legs is an elegant and comfortable piece of furniture. The chair features a deep seat and a high backrest, which are both padded and upholstered with soft and plush material. The tufted design creates a sophisticated and timeless look, while the wooden legs adding a touch of softness and warmth. The legs are thin and tapered, giving the chair a sleek and modern appearance. The armrests are curved and plush, providing both comfort and support for the arms. Overall, a tufted armchair with brass legs is a stylish and comfortable addition to any living space or lounge area.' - ) - ['de-DE']( - 'Dieser getuftete Sessel mit Holzbeinen ist ein elegantes und bequemes Sitzmöbel. Der Lounge-Sessel verfügt über eine tiefe gepolsterte Sitzfläche mit hoher Rückenlehne, die beide mit weichem Plüschmaterial bezogen sind. Das getuftete Design sorgt für einen raffinierten und dennoch zeitlosen Look, der von der Wärme der abgerundet wird. Die Beine des Lounge-Möbels sind schmal und verjüngt, was dem Stuhl ein leichtes und modernes Aussehen verleiht. Die Armlehnen sind gebogen und weich und bieten sowohl Komfort als auch Halt für die Arme. Ein getufteter Sessel mit Holzbeinen ist eine stilvolle und bequeme Ergänzung für jeden Wohn- oder Lounge-Bereich.' - ) + [ + 'en-GB' + ]('A tufted armchair with wooden legs is an elegant and comfortable piece of furniture. The chair features a deep seat and a high backrest, which are both padded and upholstered with soft and plush material. The tufted design creates a sophisticated and timeless look, while the wooden legs adding a touch of softness and warmth. The legs are thin and tapered, giving the chair a sleek and modern appearance. The armrests are curved and plush, providing both comfort and support for the arms. Overall, a tufted armchair with brass legs is a stylish and comfortable addition to any living space or lounge area.') + [ + 'en-US' + ]('A tufted armchair with wooden legs is an elegant and comfortable piece of furniture. The chair features a deep seat and a high backrest, which are both padded and upholstered with soft and plush material. The tufted design creates a sophisticated and timeless look, while the wooden legs adding a touch of softness and warmth. The legs are thin and tapered, giving the chair a sleek and modern appearance. The armrests are curved and plush, providing both comfort and support for the arms. Overall, a tufted armchair with brass legs is a stylish and comfortable addition to any living space or lounge area.') + [ + 'de-DE' + ]('Dieser getuftete Sessel mit Holzbeinen ist ein elegantes und bequemes Sitzmöbel. Der Lounge-Sessel verfügt über eine tiefe gepolsterte Sitzfläche mit hoher Rückenlehne, die beide mit weichem Plüschmaterial bezogen sind. Das getuftete Design sorgt für einen raffinierten und dennoch zeitlosen Look, der von der Wärme der abgerundet wird. Die Beine des Lounge-Möbels sind schmal und verjüngt, was dem Stuhl ein leichtes und modernes Aussehen verleiht. Die Armlehnen sind gebogen und weich und bieten sowohl Komfort als auch Halt für die Arme. Ein getufteter Sessel mit Holzbeinen ist eine stilvolle und bequeme Ergänzung für jeden Wohn- oder Lounge-Bereich.') ) .slug( LocalizedStringDraft.presets @@ -80,7 +80,7 @@ const sallyArmchair = (): TProductDraftBuilder => KeyReferenceDraft.presets.taxCategory().key(standardTaxCategory.key!) ) .masterVariant( - ProductVariantDraft.presets.sampleDataGoodStore.sallyArmchair01() + ProductVariantDraft.presets.sampleDataB2CLifestyle.sallyArmchair01() ) .categories([ KeyReferenceDraft.presets.category().key(armchairsDraft.key!), diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/sand-tea-cup.spec.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/sand-tea-cup.spec.ts similarity index 99% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/sand-tea-cup.spec.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/sand-tea-cup.spec.ts index 4071d07bd..4831c0eb3 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/sand-tea-cup.spec.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/sand-tea-cup.spec.ts @@ -57,7 +57,7 @@ describe(`with sandTeaCup preset`, () => { "w": 6046, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Sand_Tea_Cup-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Sand_Tea_Cup-1.1.jpeg", }, ], "key": undefined, @@ -199,7 +199,7 @@ describe(`with sandTeaCup preset`, () => { "width": 6046, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Sand_Tea_Cup-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Sand_Tea_Cup-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/sand-tea-cup.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/sand-tea-cup.ts similarity index 83% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/sand-tea-cup.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/sand-tea-cup.ts index ab72e0b06..abef10581 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/sand-tea-cup.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/sand-tea-cup.ts @@ -18,23 +18,24 @@ import * as ProductVariantDraft from '../../../../product-variant/product-varian import * as ProductDraft from '../../../product-draft'; import type { TProductDraftBuilder } from '../../../types'; -const standardTaxCategory = TaxCategoryDraft.presets.sampleDataGoodStore +const standardTaxCategory = TaxCategoryDraft.presets.sampleDataB2CLifestyle .standardTaxCategory() .build(); -const sandTeaCupProductTypeDraft = ProductTypeDraft.presets.sampleDataGoodStore - .furnitureAndDecor() - .build(); +const sandTeaCupProductTypeDraft = + ProductTypeDraft.presets.sampleDataB2CLifestyle + .furnitureAndDecor() + .build(); -const glasswareDraft = CategoryDraft.presets.sampleDataGoodStore +const glasswareDraft = CategoryDraft.presets.sampleDataB2CLifestyle .glassware() .build(); -const barAndGlasswareDraft = CategoryDraft.presets.sampleDataGoodStore +const barAndGlasswareDraft = CategoryDraft.presets.sampleDataB2CLifestyle .barAndGlassware() .build(); -const kitchenDraft = CategoryDraft.presets.sampleDataGoodStore +const kitchenDraft = CategoryDraft.presets.sampleDataB2CLifestyle .kitchen() .build(); @@ -52,15 +53,15 @@ const sandTeaCup = (): TProductDraftBuilder => .description( LocalizedStringDraft.presets .empty() - ['en-GB']( - 'The Sand Tea Cup is a type of drinking vessel that is designed to hold and serve tea and/or coffee. It has a cylindrical or slightly tapered shape, with a capacity of around 8 to 16 ounces, and is a light brownish color. The mug is made of ceramic. The body of the mug is smooth-sided, with a wide opening that makes it easy to pour and drink coffee or tea. The handle of the mug is designed to be easy to grip, with a comfortable shape and a size that fits most hands. The bottom of the mug is typically flat, with a stable base that helps to prevent tipping and spilling. The Sand Tea Cup is easy to clean and maintain. It can be washed by hand or in a dishwasher, and should be dried thoroughly to prevent water spots or residue from forming. Overall, this mug is a practical and functional type of drinking vessel that is ideal for enjoying a hot drink at home or at work. Its neutral color and simple design make it a popular choice for coffee lovers who prefer a classic and understated look.' - ) - ['en-US']( - 'The Sand Tea Cup is a type of drinking vessel that is designed to hold and serve tea and/or coffee. It has a cylindrical or slightly tapered shape, with a capacity of around 8 to 16 ounces, and is a light brownish color. The mug is made of ceramic. The body of the mug is smooth-sided, with a wide opening that makes it easy to pour and drink coffee or tea. The handle of the mug is designed to be easy to grip, with a comfortable shape and a size that fits most hands. The bottom of the mug is typically flat, with a stable base that helps to prevent tipping and spilling. The Sand Tea Cup is easy to clean and maintain. It can be washed by hand or in a dishwasher, and should be dried thoroughly to prevent water spots or residue from forming. Overall, this mug is a practical and functional type of drinking vessel that is ideal for enjoying a hot drink at home or at work. Its neutral color and simple design make it a popular choice for coffee lovers who prefer a classic and understated look.' - ) - ['de-DE']( - 'Die sandfarbene Tasse ist mit ihrer zylindrischen oder leicht konischen Form und einem Fassungsvermögen von etwa 8 bis 16 Unzen das ideale Trinkgefäß für jeden Tee- oder Kaffeeliebhaber. Der Keramikbecher hat glatte Seiten und eine breite Öffnung, die das Eingießen und den Genuss von Kaffee oder Tee erleichtern. Der Henkel der Tasse ist so konzipiert, dass er für jede Handgröße angenehm zu greifen ist und bequem in der Hand liegt. Der Boden des Henkeltasse ist flach und stabil, um ein Umkippen und Verschütten zu verhindern. Die hellbraune Teetasse ist leicht zu reinigen und zu pflegen. Sie kann von Hand oder in der Spülmaschine gewaschen werden und sollte gründlich getrocknet werden, um Wasserflecken oder Rückstände zu vermeiden. Die Tasse ist ein praktisches und funktionelles Trinkgefäß, das sich ideal für den Genuss von Heißgetränken Zuhause oder auf der Arbeit eignet. Die neutrale Farbe und das schlichte Design machen sie zu einer beliebten Wahl für alle Tee- und Kaffeeliebhaber, die einen klassischen und minimalistischen Look bevorzugen.' - ) + [ + 'en-GB' + ]('The Sand Tea Cup is a type of drinking vessel that is designed to hold and serve tea and/or coffee. It has a cylindrical or slightly tapered shape, with a capacity of around 8 to 16 ounces, and is a light brownish color. The mug is made of ceramic. The body of the mug is smooth-sided, with a wide opening that makes it easy to pour and drink coffee or tea. The handle of the mug is designed to be easy to grip, with a comfortable shape and a size that fits most hands. The bottom of the mug is typically flat, with a stable base that helps to prevent tipping and spilling. The Sand Tea Cup is easy to clean and maintain. It can be washed by hand or in a dishwasher, and should be dried thoroughly to prevent water spots or residue from forming. Overall, this mug is a practical and functional type of drinking vessel that is ideal for enjoying a hot drink at home or at work. Its neutral color and simple design make it a popular choice for coffee lovers who prefer a classic and understated look.') + [ + 'en-US' + ]('The Sand Tea Cup is a type of drinking vessel that is designed to hold and serve tea and/or coffee. It has a cylindrical or slightly tapered shape, with a capacity of around 8 to 16 ounces, and is a light brownish color. The mug is made of ceramic. The body of the mug is smooth-sided, with a wide opening that makes it easy to pour and drink coffee or tea. The handle of the mug is designed to be easy to grip, with a comfortable shape and a size that fits most hands. The bottom of the mug is typically flat, with a stable base that helps to prevent tipping and spilling. The Sand Tea Cup is easy to clean and maintain. It can be washed by hand or in a dishwasher, and should be dried thoroughly to prevent water spots or residue from forming. Overall, this mug is a practical and functional type of drinking vessel that is ideal for enjoying a hot drink at home or at work. Its neutral color and simple design make it a popular choice for coffee lovers who prefer a classic and understated look.') + [ + 'de-DE' + ]('Die sandfarbene Tasse ist mit ihrer zylindrischen oder leicht konischen Form und einem Fassungsvermögen von etwa 8 bis 16 Unzen das ideale Trinkgefäß für jeden Tee- oder Kaffeeliebhaber. Der Keramikbecher hat glatte Seiten und eine breite Öffnung, die das Eingießen und den Genuss von Kaffee oder Tee erleichtern. Der Henkel der Tasse ist so konzipiert, dass er für jede Handgröße angenehm zu greifen ist und bequem in der Hand liegt. Der Boden des Henkeltasse ist flach und stabil, um ein Umkippen und Verschütten zu verhindern. Die hellbraune Teetasse ist leicht zu reinigen und zu pflegen. Sie kann von Hand oder in der Spülmaschine gewaschen werden und sollte gründlich getrocknet werden, um Wasserflecken oder Rückstände zu vermeiden. Die Tasse ist ein praktisches und funktionelles Trinkgefäß, das sich ideal für den Genuss von Heißgetränken Zuhause oder auf der Arbeit eignet. Die neutrale Farbe und das schlichte Design machen sie zu einer beliebten Wahl für alle Tee- und Kaffeeliebhaber, die einen klassischen und minimalistischen Look bevorzugen.') ) .slug( LocalizedStringDraft.presets @@ -79,7 +80,7 @@ const sandTeaCup = (): TProductDraftBuilder => KeyReferenceDraft.presets.taxCategory().key(standardTaxCategory.key!) ) .masterVariant( - ProductVariantDraft.presets.sampleDataGoodStore.sandTeaCup01() + ProductVariantDraft.presets.sampleDataB2CLifestyle.sandTeaCup01() ) .categories([ KeyReferenceDraft.presets.category().key(glasswareDraft.key!), diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/serenity-queen-bed.spec.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/serenity-queen-bed.spec.ts similarity index 98% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/serenity-queen-bed.spec.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/serenity-queen-bed.spec.ts index f5ad03c67..eb8235f34 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/serenity-queen-bed.spec.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/serenity-queen-bed.spec.ts @@ -60,7 +60,7 @@ describe(`with serenityQueenBed preset`, () => { "w": 2000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Serenity_Queen_Bed-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Serenity_Queen_Bed-1.1.jpeg", }, ], "key": undefined, @@ -203,7 +203,7 @@ describe(`with serenityQueenBed preset`, () => { "width": 2000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Serenity_Queen_Bed-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Serenity_Queen_Bed-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/serenity-queen-bed.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/serenity-queen-bed.ts similarity index 81% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/serenity-queen-bed.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/serenity-queen-bed.ts index ab6b8305a..5a25ade75 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/serenity-queen-bed.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/serenity-queen-bed.ts @@ -18,24 +18,24 @@ import * as ProductVariantDraft from '../../../../product-variant/product-varian import * as ProductDraft from '../../../product-draft'; import type { TProductDraftBuilder } from '../../../types'; -const standardTaxCategory = TaxCategoryDraft.presets.sampleDataGoodStore +const standardTaxCategory = TaxCategoryDraft.presets.sampleDataB2CLifestyle .standardTaxCategory() .build(); const serenityQueenBedProductTypeDraft = - ProductTypeDraft.presets.sampleDataGoodStore + ProductTypeDraft.presets.sampleDataB2CLifestyle .furnitureAndDecor() .build(); -const bedroomFurnitureDraft = CategoryDraft.presets.sampleDataGoodStore +const bedroomFurnitureDraft = CategoryDraft.presets.sampleDataB2CLifestyle .bedroomFurniture() .build(); -const furnitureDraft = CategoryDraft.presets.sampleDataGoodStore +const furnitureDraft = CategoryDraft.presets.sampleDataB2CLifestyle .furniture() .build(); -const bedsDraft = CategoryDraft.presets.sampleDataGoodStore +const bedsDraft = CategoryDraft.presets.sampleDataB2CLifestyle .beds() .build(); @@ -53,15 +53,15 @@ const serenityQueenBed = (): TProductDraftBuilder => .description( LocalizedStringDraft.presets .empty() - ['en-GB']( - 'A queen bed with an industrial pillow headboard has a unique and edgy look. The headboard is covered in a sturdy beige canvas. The headboard includes leather straps that give it an industrial look with exposed screws and bolts. The frame is also covered in the same canvas as the headboard. The bed has a simple, minimalist design with a wood frame and straight lines to complement the bold statement of the headboard. Overall, this type of bed would be perfect for someone who wants to add a touch of industrial style to their bedroom décor.' - ) - ['en-US']( - 'A queen bed with an industrial pillow headboard has a unique and edgy look. The headboard is covered in a sturdy beige canvas. The headboard includes leather straps that give it an industrial look with exposed screws and bolts. The frame is also covered in the same canvas as the headboard. The bed has a simple, minimalist design with a wood frame and straight lines to complement the bold statement of the headboard. Overall, this type of bed would be perfect for someone who wants to add a touch of industrial style to their bedroom décor.' - ) - ['de-DE']( - 'Das Queensize-Bett mit gepolstertem Kopfteil im industriellen Look hat ein einzigartiges und kantigen Design. Das Kopfteil ist mit einem robusten beigefarbenen Stoff bezogen und ist mit Lederriemen versehen, die ihm zusammen mit den freiliegenden Schrauben ein industrielles Aussehen verleihen. Der Rahmen ist mit dem gleichen Stoff wie das Kopfteil bespannt. Das französische Bett hat ein schlichtes, minimalistisches Design unterstützt durch den Holzrahmen und den geraden Linien, die das Statement des Kopfteils abrunden. Das Bett eignet sich ideal für all diejenigen, die ihrem Schlafzimmerdekor einen Hauch von industriellem Charme verleihen möchten.' - ) + [ + 'en-GB' + ]('A queen bed with an industrial pillow headboard has a unique and edgy look. The headboard is covered in a sturdy beige canvas. The headboard includes leather straps that give it an industrial look with exposed screws and bolts. The frame is also covered in the same canvas as the headboard. The bed has a simple, minimalist design with a wood frame and straight lines to complement the bold statement of the headboard. Overall, this type of bed would be perfect for someone who wants to add a touch of industrial style to their bedroom décor.') + [ + 'en-US' + ]('A queen bed with an industrial pillow headboard has a unique and edgy look. The headboard is covered in a sturdy beige canvas. The headboard includes leather straps that give it an industrial look with exposed screws and bolts. The frame is also covered in the same canvas as the headboard. The bed has a simple, minimalist design with a wood frame and straight lines to complement the bold statement of the headboard. Overall, this type of bed would be perfect for someone who wants to add a touch of industrial style to their bedroom décor.') + [ + 'de-DE' + ]('Das Queensize-Bett mit gepolstertem Kopfteil im industriellen Look hat ein einzigartiges und kantigen Design. Das Kopfteil ist mit einem robusten beigefarbenen Stoff bezogen und ist mit Lederriemen versehen, die ihm zusammen mit den freiliegenden Schrauben ein industrielles Aussehen verleihen. Der Rahmen ist mit dem gleichen Stoff wie das Kopfteil bespannt. Das französische Bett hat ein schlichtes, minimalistisches Design unterstützt durch den Holzrahmen und den geraden Linien, die das Statement des Kopfteils abrunden. Das Bett eignet sich ideal für all diejenigen, die ihrem Schlafzimmerdekor einen Hauch von industriellem Charme verleihen möchten.') ) .slug( LocalizedStringDraft.presets @@ -80,7 +80,7 @@ const serenityQueenBed = (): TProductDraftBuilder => KeyReferenceDraft.presets.taxCategory().key(standardTaxCategory.key!) ) .masterVariant( - ProductVariantDraft.presets.sampleDataGoodStore.serenityQueenBed01() + ProductVariantDraft.presets.sampleDataB2CLifestyle.serenityQueenBed01() ) .categories([ KeyReferenceDraft.presets.category().key(bedroomFurnitureDraft.key!), diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/silky-pillow-cover.spec.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/silky-pillow-cover.spec.ts similarity index 99% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/silky-pillow-cover.spec.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/silky-pillow-cover.spec.ts index ab9d3171b..df31f6014 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/silky-pillow-cover.spec.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/silky-pillow-cover.spec.ts @@ -53,7 +53,7 @@ describe(`with silkyPillowCover preset`, () => { "w": 6016, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Silky_Pillow_Cover-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Silky_Pillow_Cover-1.1.jpeg", }, ], "key": undefined, @@ -192,7 +192,7 @@ describe(`with silkyPillowCover preset`, () => { "width": 6016, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Silky_Pillow_Cover-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Silky_Pillow_Cover-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/silky-pillow-cover.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/silky-pillow-cover.ts similarity index 87% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/silky-pillow-cover.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/silky-pillow-cover.ts index c049200da..2755e4c0d 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/silky-pillow-cover.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/silky-pillow-cover.ts @@ -18,20 +18,20 @@ import * as ProductVariantDraft from '../../../../product-variant/product-varian import * as ProductDraft from '../../../product-draft'; import type { TProductDraftBuilder } from '../../../types'; -const standardTaxCategory = TaxCategoryDraft.presets.sampleDataGoodStore +const standardTaxCategory = TaxCategoryDraft.presets.sampleDataB2CLifestyle .standardTaxCategory() .build(); const silkyPillowCoverProductTypeDraft = - ProductTypeDraft.presets.sampleDataGoodStore + ProductTypeDraft.presets.sampleDataB2CLifestyle .furnitureAndDecor() .build(); -const beddingDraft = CategoryDraft.presets.sampleDataGoodStore +const beddingDraft = CategoryDraft.presets.sampleDataB2CLifestyle .bedding() .build(); -const homeDecorDraft = CategoryDraft.presets.sampleDataGoodStore +const homeDecorDraft = CategoryDraft.presets.sampleDataB2CLifestyle .homeDecor() .build(); @@ -49,15 +49,15 @@ const silkyPillowCover = (): TProductDraftBuilder => .description( LocalizedStringDraft.presets .empty() - ['en-GB']( - 'A silk pillowcase is a luxurious and soft pillow cover made from natural silk fibers. Silk is a natural protein fiber that is produced by certain insect larvae, including the silkworm. The fibers are known for their softness, smoothness, and natural shine, giving silk pillowcases a luxurious and elegant look and feel. Silk pillowcases are known for their many benefits for the skin and hair. The smooth texture of silk helps reduce friction and irritation on the skin, reducing the risk of wrinkles and fine lines. It also helps prevent hair breakage and frizz, leaving hair looking smoother and more manageable. Silk pillowcases require some special care, as they are delicate and can easily be damaged by harsh detergents or rough handling. They should be washed by hand or in a gentle cycle with mild detergent, and dried flat or hung to dry. Overall, a silk pillowcase is a luxurious and elegant choice for any bedroom. Its many benefits for the skin and hair, as well as its soft and smooth texture, make it a popular choice among those looking for a comfortable and indulgent sleeping experience.' - ) - ['en-US']( - 'A silk pillowcase is a luxurious and soft pillow cover made from natural silk fibers. Silk is a natural protein fiber that is produced by certain insect larvae, including the silkworm. The fibers are known for their softness, smoothness, and natural shine, giving silk pillowcases a luxurious and elegant look and feel. Silk pillowcases are known for their many benefits for the skin and hair. The smooth texture of silk helps reduce friction and irritation on the skin, reducing the risk of wrinkles and fine lines. It also helps prevent hair breakage and frizz, leaving hair looking smoother and more manageable. Silk pillowcases require some special care, as they are delicate and can easily be damaged by harsh detergents or rough handling. They should be washed by hand or in a gentle cycle with mild detergent, and dried flat or hung to dry. Overall, a silk pillowcase is a luxurious and elegant choice for any bedroom. Its many benefits for the skin and hair, as well as its soft and smooth texture, make it a popular choice among those looking for a comfortable and indulgent sleeping experience.' - ) - ['de-DE']( - 'Der Seidenbezug ist ein luxuriöser und weicher Kissenbezug aus natürlichen Seidenfasern. Seide ist eine natürliche Proteinfaser, die von bestimmten Insektenlarven, einschließlich der Seidenraupe, produziert wird. Die Fasern sind für ihre Weichheit, Geschmeidigkeit und ihren natürlichen Glanz bekannt und verleihen Seidenkissenbezügen ihr luxuriöses und elegantes Aussehen und Gefühl. Seidenkissenbezüge sind bekannt für die vielen Vorteile für Haut und Haar. Die glatte Textur von Seide trägt dazu bei, Reibung und Irritationen auf der Haut zu reduzieren und das Risiko von Falten und feinen Linien zu verringern. Sie hilft auch dabei, Haarbruch und Frizz zu verhindern, wodurch das Haar glatter und geschmeidiger aussieht. Kissenbezüge aus Seide erfordern besondere Pflege, da sie empfindlich sind und leicht durch scharfe Reinigungsmittel oder grobe Behandlung beschädigt werden können. Sie sollten von Hand oder im Schonwaschgang mit Feinwaschmittel gewaschen und liegend getrocknet oder zum Trocknen aufgehängt werden. Ein Kissenbezug aus Seide ist eine luxuriöse und elegante Wahl für jedes Schlafzimmer. Seine vielen Vorteile für Haut und Haar sowie seine weiche und glatte Textur machen es zu einer beliebten Wahl für diejenigen, die ein komfortables und verwöhnendes Schlaferlebnis suchen.' - ) + [ + 'en-GB' + ]('A silk pillowcase is a luxurious and soft pillow cover made from natural silk fibers. Silk is a natural protein fiber that is produced by certain insect larvae, including the silkworm. The fibers are known for their softness, smoothness, and natural shine, giving silk pillowcases a luxurious and elegant look and feel. Silk pillowcases are known for their many benefits for the skin and hair. The smooth texture of silk helps reduce friction and irritation on the skin, reducing the risk of wrinkles and fine lines. It also helps prevent hair breakage and frizz, leaving hair looking smoother and more manageable. Silk pillowcases require some special care, as they are delicate and can easily be damaged by harsh detergents or rough handling. They should be washed by hand or in a gentle cycle with mild detergent, and dried flat or hung to dry. Overall, a silk pillowcase is a luxurious and elegant choice for any bedroom. Its many benefits for the skin and hair, as well as its soft and smooth texture, make it a popular choice among those looking for a comfortable and indulgent sleeping experience.') + [ + 'en-US' + ]('A silk pillowcase is a luxurious and soft pillow cover made from natural silk fibers. Silk is a natural protein fiber that is produced by certain insect larvae, including the silkworm. The fibers are known for their softness, smoothness, and natural shine, giving silk pillowcases a luxurious and elegant look and feel. Silk pillowcases are known for their many benefits for the skin and hair. The smooth texture of silk helps reduce friction and irritation on the skin, reducing the risk of wrinkles and fine lines. It also helps prevent hair breakage and frizz, leaving hair looking smoother and more manageable. Silk pillowcases require some special care, as they are delicate and can easily be damaged by harsh detergents or rough handling. They should be washed by hand or in a gentle cycle with mild detergent, and dried flat or hung to dry. Overall, a silk pillowcase is a luxurious and elegant choice for any bedroom. Its many benefits for the skin and hair, as well as its soft and smooth texture, make it a popular choice among those looking for a comfortable and indulgent sleeping experience.') + [ + 'de-DE' + ]('Der Seidenbezug ist ein luxuriöser und weicher Kissenbezug aus natürlichen Seidenfasern. Seide ist eine natürliche Proteinfaser, die von bestimmten Insektenlarven, einschließlich der Seidenraupe, produziert wird. Die Fasern sind für ihre Weichheit, Geschmeidigkeit und ihren natürlichen Glanz bekannt und verleihen Seidenkissenbezügen ihr luxuriöses und elegantes Aussehen und Gefühl. Seidenkissenbezüge sind bekannt für die vielen Vorteile für Haut und Haar. Die glatte Textur von Seide trägt dazu bei, Reibung und Irritationen auf der Haut zu reduzieren und das Risiko von Falten und feinen Linien zu verringern. Sie hilft auch dabei, Haarbruch und Frizz zu verhindern, wodurch das Haar glatter und geschmeidiger aussieht. Kissenbezüge aus Seide erfordern besondere Pflege, da sie empfindlich sind und leicht durch scharfe Reinigungsmittel oder grobe Behandlung beschädigt werden können. Sie sollten von Hand oder im Schonwaschgang mit Feinwaschmittel gewaschen und liegend getrocknet oder zum Trocknen aufgehängt werden. Ein Kissenbezug aus Seide ist eine luxuriöse und elegante Wahl für jedes Schlafzimmer. Seine vielen Vorteile für Haut und Haar sowie seine weiche und glatte Textur machen es zu einer beliebten Wahl für diejenigen, die ein komfortables und verwöhnendes Schlaferlebnis suchen.') ) .slug( LocalizedStringDraft.presets @@ -76,7 +76,7 @@ const silkyPillowCover = (): TProductDraftBuilder => KeyReferenceDraft.presets.taxCategory().key(standardTaxCategory.key!) ) .masterVariant( - ProductVariantDraft.presets.sampleDataGoodStore.silkyPillowCover01() + ProductVariantDraft.presets.sampleDataB2CLifestyle.silkyPillowCover01() ) .categories([ KeyReferenceDraft.presets.category().key(beddingDraft.key!), diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/sipper-coffee-mug.spec.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/sipper-coffee-mug.spec.ts similarity index 98% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/sipper-coffee-mug.spec.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/sipper-coffee-mug.spec.ts index b88063f49..1eff38c10 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/sipper-coffee-mug.spec.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/sipper-coffee-mug.spec.ts @@ -57,7 +57,7 @@ describe(`with sipperCoffeeMug preset`, () => { "w": 4500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Sipper_Coffee_Mug-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Sipper_Coffee_Mug-1.1.jpeg", }, ], "key": undefined, @@ -200,7 +200,7 @@ describe(`with sipperCoffeeMug preset`, () => { "width": 4500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Sipper_Coffee_Mug-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Sipper_Coffee_Mug-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/sipper-coffee-mug.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/sipper-coffee-mug.ts similarity index 84% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/sipper-coffee-mug.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/sipper-coffee-mug.ts index 00d841ac3..e29e2c472 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/sipper-coffee-mug.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/sipper-coffee-mug.ts @@ -18,24 +18,24 @@ import * as ProductVariantDraft from '../../../../product-variant/product-varian import * as ProductDraft from '../../../product-draft'; import type { TProductDraftBuilder } from '../../../types'; -const standardTaxCategory = TaxCategoryDraft.presets.sampleDataGoodStore +const standardTaxCategory = TaxCategoryDraft.presets.sampleDataB2CLifestyle .standardTaxCategory() .build(); const sipperCoffeeMugProductTypeDraft = - ProductTypeDraft.presets.sampleDataGoodStore + ProductTypeDraft.presets.sampleDataB2CLifestyle .furnitureAndDecor() .build(); -const glasswareDraft = CategoryDraft.presets.sampleDataGoodStore +const glasswareDraft = CategoryDraft.presets.sampleDataB2CLifestyle .glassware() .build(); -const barAndGlasswareDraft = CategoryDraft.presets.sampleDataGoodStore +const barAndGlasswareDraft = CategoryDraft.presets.sampleDataB2CLifestyle .barAndGlassware() .build(); -const kitchenDraft = CategoryDraft.presets.sampleDataGoodStore +const kitchenDraft = CategoryDraft.presets.sampleDataB2CLifestyle .kitchen() .build(); @@ -53,15 +53,15 @@ const sipperCoffeeMug = (): TProductDraftBuilder => .description( LocalizedStringDraft.presets .empty() - ['en-GB']( - 'The Sipper Coffee Mug is made from ceramic. The design of the mug is intended to make it easy to hold and drink from, with a handle on one side for comfortable grip. The mug is plain, but its basic design is generally simple and functional. The body of the mug is often smooth-sided, with a wide opening that makes it easy to pour and drink coffee. The Sipper Coffee Mug is easy to clean and maintain. It can be washed by hand or in a dishwasher, and should be dried thoroughly to prevent water spots or residue from forming. Overall, the Sipper Coffee Mug is a practical and functional type of drinking vessel that is ideal for enjoying a cup of coffee at home or at work. Its basic design and ease of use make it a popular choice for coffee lovers of all types.' - ) - ['en-US']( - 'The Sipper Coffee Mug is made from ceramic. The design of the mug is intended to make it easy to hold and drink from, with a handle on one side for comfortable grip. The mug is plain, but its basic design is generally simple and functional. The body of the mug is often smooth-sided, with a wide opening that makes it easy to pour and drink coffee. The Sipper Coffee Mug is easy to clean and maintain. It can be washed by hand or in a dishwasher, and should be dried thoroughly to prevent water spots or residue from forming. Overall, the Sipper Coffee Mug is a practical and functional type of drinking vessel that is ideal for enjoying a cup of coffee at home or at work. Its basic design and ease of use make it a popular choice for coffee lovers of all types.' - ) - ['de-DE']( - 'Die Sipper-Tasse besteht aus Keramik und besticht durch ihr schlichtes Design mit seitlichem Henkel, der ein bequemes Halten und Trinken ermöglicht. Das grundlegende Design ist minimalistisch und funktional. Der Körper des Bechers ist glatt abgerundet und hat eine breite Trinköffnung, die das Eingießen und Trinken von Heißgetränken erleichtert. Der Sipper-Kaffeebecher ist leicht zu reinigen und zu pflegen. Er kann von Hand oder in der Spülmaschine gewaschen werden und sollte gründlich getrocknet werden, um Wasserflecken oder Rückstände zu vermeiden. Die Sipper-Kaffeetasse ein praktisches und funktionelles Trinkgefäß, das sich ideal für den Tee- oder Kaffeegenuss zu Hause oder auf der Arbeit eignet. Ihr schlichtes Design und die benutzerfreundliche Handhabung machen sie zu einer beliebten Wahl für Kaffeeliebhaber aller Art.' - ) + [ + 'en-GB' + ]('The Sipper Coffee Mug is made from ceramic. The design of the mug is intended to make it easy to hold and drink from, with a handle on one side for comfortable grip. The mug is plain, but its basic design is generally simple and functional. The body of the mug is often smooth-sided, with a wide opening that makes it easy to pour and drink coffee. The Sipper Coffee Mug is easy to clean and maintain. It can be washed by hand or in a dishwasher, and should be dried thoroughly to prevent water spots or residue from forming. Overall, the Sipper Coffee Mug is a practical and functional type of drinking vessel that is ideal for enjoying a cup of coffee at home or at work. Its basic design and ease of use make it a popular choice for coffee lovers of all types.') + [ + 'en-US' + ]('The Sipper Coffee Mug is made from ceramic. The design of the mug is intended to make it easy to hold and drink from, with a handle on one side for comfortable grip. The mug is plain, but its basic design is generally simple and functional. The body of the mug is often smooth-sided, with a wide opening that makes it easy to pour and drink coffee. The Sipper Coffee Mug is easy to clean and maintain. It can be washed by hand or in a dishwasher, and should be dried thoroughly to prevent water spots or residue from forming. Overall, the Sipper Coffee Mug is a practical and functional type of drinking vessel that is ideal for enjoying a cup of coffee at home or at work. Its basic design and ease of use make it a popular choice for coffee lovers of all types.') + [ + 'de-DE' + ]('Die Sipper-Tasse besteht aus Keramik und besticht durch ihr schlichtes Design mit seitlichem Henkel, der ein bequemes Halten und Trinken ermöglicht. Das grundlegende Design ist minimalistisch und funktional. Der Körper des Bechers ist glatt abgerundet und hat eine breite Trinköffnung, die das Eingießen und Trinken von Heißgetränken erleichtert. Der Sipper-Kaffeebecher ist leicht zu reinigen und zu pflegen. Er kann von Hand oder in der Spülmaschine gewaschen werden und sollte gründlich getrocknet werden, um Wasserflecken oder Rückstände zu vermeiden. Die Sipper-Kaffeetasse ein praktisches und funktionelles Trinkgefäß, das sich ideal für den Tee- oder Kaffeegenuss zu Hause oder auf der Arbeit eignet. Ihr schlichtes Design und die benutzerfreundliche Handhabung machen sie zu einer beliebten Wahl für Kaffeeliebhaber aller Art.') ) .slug( LocalizedStringDraft.presets @@ -80,7 +80,7 @@ const sipperCoffeeMug = (): TProductDraftBuilder => KeyReferenceDraft.presets.taxCategory().key(standardTaxCategory.key!) ) .masterVariant( - ProductVariantDraft.presets.sampleDataGoodStore.sipperCoffeeMug01() + ProductVariantDraft.presets.sampleDataB2CLifestyle.sipperCoffeeMug01() ) .categories([ KeyReferenceDraft.presets.category().key(glasswareDraft.key!), diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/slate-armchair.spec.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/slate-armchair.spec.ts similarity index 97% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/slate-armchair.spec.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/slate-armchair.spec.ts index bd5b4ea92..820949ded 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/slate-armchair.spec.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/slate-armchair.spec.ts @@ -57,7 +57,7 @@ describe(`with slateArmchair preset`, () => { "w": 5009, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Slate_Armchair-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Slate_Armchair-1.1.jpeg", }, { "dimensions": { @@ -65,7 +65,7 @@ describe(`with slateArmchair preset`, () => { "w": 5544, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Slate_Armchair-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Slate_Armchair-1.2.jpeg", }, ], "key": undefined, @@ -208,7 +208,7 @@ describe(`with slateArmchair preset`, () => { "width": 5009, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Slate_Armchair-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Slate_Armchair-1.1.jpeg", }, { "dimensions": { @@ -216,7 +216,7 @@ describe(`with slateArmchair preset`, () => { "width": 5544, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Slate_Armchair-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Slate_Armchair-1.2.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/slate-armchair.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/slate-armchair.ts similarity index 81% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/slate-armchair.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/slate-armchair.ts index a9dd80e8b..53c1fe75e 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/slate-armchair.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/slate-armchair.ts @@ -18,24 +18,24 @@ import * as ProductVariantDraft from '../../../../product-variant/product-varian import * as ProductDraft from '../../../product-draft'; import type { TProductDraftBuilder } from '../../../types'; -const standardTaxCategory = TaxCategoryDraft.presets.sampleDataGoodStore +const standardTaxCategory = TaxCategoryDraft.presets.sampleDataB2CLifestyle .standardTaxCategory() .build(); const slateArmchairProductTypeDraft = - ProductTypeDraft.presets.sampleDataGoodStore + ProductTypeDraft.presets.sampleDataB2CLifestyle .furnitureAndDecor() .build(); -const furnitureDraft = CategoryDraft.presets.sampleDataGoodStore +const furnitureDraft = CategoryDraft.presets.sampleDataB2CLifestyle .furniture() .build(); -const armchairsDraft = CategoryDraft.presets.sampleDataGoodStore +const armchairsDraft = CategoryDraft.presets.sampleDataB2CLifestyle .armchairs() .build(); -const livingRoomFurnitureDraft = CategoryDraft.presets.sampleDataGoodStore +const livingRoomFurnitureDraft = CategoryDraft.presets.sampleDataB2CLifestyle .livingRoomFurniture() .build(); @@ -53,15 +53,15 @@ const slateArmchair = (): TProductDraftBuilder => .description( LocalizedStringDraft.presets .empty() - ['de-DE']( - 'Das minimalistische Sitzmöbel mit Ottomane besticht durch sein schlankes und schlichtes Design, bei dem klare Linien und Funktionalität im Vordergrund stehen. Die Ottomane ist passend zu dem Lounge-Möbel designt und bietet erweiterten Sitzkomfort. Das Polstermöbel ist mit seinen neutralen Farben und schlichten Mustern minimalistisch gehalten. Das Design ist von der modernen Ästhetik inspiriert und legt seinen Fokus auf Schlichtheit und Funktionalität. Das Ergebnis ist ein bequemer und stilvoller Sessel, der sich problemlos in eine Vielzahl von Einrichtungsstilen einfügt.' - ) - ['en-GB']( - 'A minimalist chair with ottoman is a sleek and simple design that emphasizes clean lines and functionality. The ottoman is a matching piece, providing a place for the user to prop up their feet and relax. The upholstery is minimal, with neutral colors and simple patterns. The design is inspired by mid-century modern aesthetics, with a focus on simplicity and functionality. The result is a comfortable and stylish chair that fits seamlessly into a variety of interior design styles.' - ) - ['en-US']( - 'A minimalist chair with ottoman is a sleek and simple design that emphasizes clean lines and functionality. The ottoman is a matching piece, providing a place for the user to prop up their feet and relax. The upholstery is minimal, with neutral colors and simple patterns. The design is inspired by mid-century modern aesthetics, with a focus on simplicity and functionality. The result is a comfortable and stylish chair that fits seamlessly into a variety of interior design styles.' - ) + [ + 'de-DE' + ]('Das minimalistische Sitzmöbel mit Ottomane besticht durch sein schlankes und schlichtes Design, bei dem klare Linien und Funktionalität im Vordergrund stehen. Die Ottomane ist passend zu dem Lounge-Möbel designt und bietet erweiterten Sitzkomfort. Das Polstermöbel ist mit seinen neutralen Farben und schlichten Mustern minimalistisch gehalten. Das Design ist von der modernen Ästhetik inspiriert und legt seinen Fokus auf Schlichtheit und Funktionalität. Das Ergebnis ist ein bequemer und stilvoller Sessel, der sich problemlos in eine Vielzahl von Einrichtungsstilen einfügt.') + [ + 'en-GB' + ]('A minimalist chair with ottoman is a sleek and simple design that emphasizes clean lines and functionality. The ottoman is a matching piece, providing a place for the user to prop up their feet and relax. The upholstery is minimal, with neutral colors and simple patterns. The design is inspired by mid-century modern aesthetics, with a focus on simplicity and functionality. The result is a comfortable and stylish chair that fits seamlessly into a variety of interior design styles.') + [ + 'en-US' + ]('A minimalist chair with ottoman is a sleek and simple design that emphasizes clean lines and functionality. The ottoman is a matching piece, providing a place for the user to prop up their feet and relax. The upholstery is minimal, with neutral colors and simple patterns. The design is inspired by mid-century modern aesthetics, with a focus on simplicity and functionality. The result is a comfortable and stylish chair that fits seamlessly into a variety of interior design styles.') ) .slug( LocalizedStringDraft.presets @@ -80,7 +80,7 @@ const slateArmchair = (): TProductDraftBuilder => KeyReferenceDraft.presets.taxCategory().key(standardTaxCategory.key!) ) .masterVariant( - ProductVariantDraft.presets.sampleDataGoodStore.slateArmchair01() + ProductVariantDraft.presets.sampleDataB2CLifestyle.slateArmchair01() ) .categories([ KeyReferenceDraft.presets.category().key(furnitureDraft.key!), diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/small-wooden-bowl.spec.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/small-wooden-bowl.spec.ts similarity index 96% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/small-wooden-bowl.spec.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/small-wooden-bowl.spec.ts index bb5097428..bd9816dcf 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/small-wooden-bowl.spec.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/small-wooden-bowl.spec.ts @@ -65,7 +65,7 @@ describe(`with smallWoodenBowl preset`, () => { "w": 3241, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Small_Wooden_Bowl-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Small_Wooden_Bowl-1.1.jpeg", }, { "dimensions": { @@ -73,7 +73,7 @@ describe(`with smallWoodenBowl preset`, () => { "w": 5184, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Small_Wooden_Bowl-1.3.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Small_Wooden_Bowl-1.3.jpeg", }, { "dimensions": { @@ -81,7 +81,7 @@ describe(`with smallWoodenBowl preset`, () => { "w": 6144, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Small_Wooden_Bowl-1.4.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Small_Wooden_Bowl-1.4.jpeg", }, { "dimensions": { @@ -89,7 +89,7 @@ describe(`with smallWoodenBowl preset`, () => { "w": 7696, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Small_Wooden_Bowl-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Small_Wooden_Bowl-1.2.jpeg", }, ], "key": undefined, @@ -240,7 +240,7 @@ describe(`with smallWoodenBowl preset`, () => { "width": 3241, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Small_Wooden_Bowl-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Small_Wooden_Bowl-1.1.jpeg", }, { "dimensions": { @@ -248,7 +248,7 @@ describe(`with smallWoodenBowl preset`, () => { "width": 5184, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Small_Wooden_Bowl-1.3.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Small_Wooden_Bowl-1.3.jpeg", }, { "dimensions": { @@ -256,7 +256,7 @@ describe(`with smallWoodenBowl preset`, () => { "width": 6144, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Small_Wooden_Bowl-1.4.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Small_Wooden_Bowl-1.4.jpeg", }, { "dimensions": { @@ -264,7 +264,7 @@ describe(`with smallWoodenBowl preset`, () => { "width": 7696, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Small_Wooden_Bowl-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Small_Wooden_Bowl-1.2.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/small-wooden-bowl.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/small-wooden-bowl.ts similarity index 83% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/small-wooden-bowl.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/small-wooden-bowl.ts index 3331d45bf..39862bb0a 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/small-wooden-bowl.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/small-wooden-bowl.ts @@ -18,32 +18,32 @@ import * as ProductVariantDraft from '../../../../product-variant/product-varian import * as ProductDraft from '../../../product-draft'; import type { TProductDraftBuilder } from '../../../types'; -const standardTaxCategory = TaxCategoryDraft.presets.sampleDataGoodStore +const standardTaxCategory = TaxCategoryDraft.presets.sampleDataB2CLifestyle .standardTaxCategory() .build(); const smallWoodenBowlProductTypeDraft = - ProductTypeDraft.presets.sampleDataGoodStore + ProductTypeDraft.presets.sampleDataB2CLifestyle .furnitureAndDecor() .build(); -const bowlsDraft = CategoryDraft.presets.sampleDataGoodStore +const bowlsDraft = CategoryDraft.presets.sampleDataB2CLifestyle .bowls() .build(); -const kitchenDraft = CategoryDraft.presets.sampleDataGoodStore +const kitchenDraft = CategoryDraft.presets.sampleDataB2CLifestyle .kitchen() .build(); -const servingPlattersDraft = CategoryDraft.presets.sampleDataGoodStore +const servingPlattersDraft = CategoryDraft.presets.sampleDataB2CLifestyle .servingPlatters() .build(); -const servewareDraft = CategoryDraft.presets.sampleDataGoodStore +const servewareDraft = CategoryDraft.presets.sampleDataB2CLifestyle .serveware() .build(); -const dinnerwareDraft = CategoryDraft.presets.sampleDataGoodStore +const dinnerwareDraft = CategoryDraft.presets.sampleDataB2CLifestyle .dinnerware() .build(); @@ -61,15 +61,15 @@ const smallWoodenBowl = (): TProductDraftBuilder => .description( LocalizedStringDraft.presets .empty() - ['en-GB']( - 'This wooden bowl is designed to hold small servings of food or other small items. It is ideal for serving small portions of food, such as nuts, candies, dips, or sauces. It can also be used as a decorative item, as its natural material and unique texture add warmth and character to any setting. It can be used as a standalone piece or as part of a larger set, and can be styled with other wooden pieces to create a cohesive look. The bowl is easy to clean and maintain, and can be washed with soap and water or wiped clean with a damp cloth. It should be allowed to dry thoroughly before use to prevent warping or cracking. Overall, a small round wooden bowl is a versatile and functional dish that adds a touch of natural warmth and character to any setting. Its simplicity and durability make it a staple in many kitchens and dining rooms.' - ) - ['en-US']( - 'This wooden bowl is designed to hold small servings of food or other small items. It is ideal for serving small portions of food, such as nuts, candies, dips, or sauces. It can also be used as a decorative item, as its natural material and unique texture add warmth and character to any setting. It can be used as a standalone piece or as part of a larger set, and can be styled with other wooden pieces to create a cohesive look. The bowl is easy to clean and maintain, and can be washed with soap and water or wiped clean with a damp cloth. It should be allowed to dry thoroughly before use to prevent warping or cracking. Overall, a small round wooden bowl is a versatile and functional dish that adds a touch of natural warmth and character to any setting. Its simplicity and durability make it a staple in many kitchens and dining rooms.' - ) - ['de-DE']( - 'Diese Holzschale ist so konzipiert, dass sie kleinere Snacks oder andere Gegenstände fassen kann. Sie eignet sich ideal zum Servieren kleiner Portionen wie Nüsse, Bonbons, Dips oder Saucen. Sie kann aber auch als Dekorationsartikel verwendet werden, da ihr natürliches Material und die einzigartige Textur jeder Umgebung Wärme und Charakter verleihen. Die Schale kann eigenständig oder als Teil eines größeren Sets ihre Wirkung entfalten. Sie kann zudem mit anderen Holz-Accessoires gestylt werden, um einen zusammenhängenden Look zu schaffen. Die Schale ist leicht zu reinigen und zu pflegen und kann mit Wasser und Seife gewaschen oder mit einem feuchten Tuch abgewischt werden. Sie sollte vor Gebrauch gründlich trocknen, um ein Verziehen oder Reißen zu vermeiden. Eine kleine runde Holzschale ist ein vielseitiges und funktionales Geschirr- oder Dekorations-Element, das jeder Umgebung einen Hauch von natürlicher Wärme und Charakter verleiht. Die Schlichtheit und Haltbarkeit machen sie zur perfekten Ergänzung in vielen Küchen und Esszimmern.' - ) + [ + 'en-GB' + ]('This wooden bowl is designed to hold small servings of food or other small items. It is ideal for serving small portions of food, such as nuts, candies, dips, or sauces. It can also be used as a decorative item, as its natural material and unique texture add warmth and character to any setting. It can be used as a standalone piece or as part of a larger set, and can be styled with other wooden pieces to create a cohesive look. The bowl is easy to clean and maintain, and can be washed with soap and water or wiped clean with a damp cloth. It should be allowed to dry thoroughly before use to prevent warping or cracking. Overall, a small round wooden bowl is a versatile and functional dish that adds a touch of natural warmth and character to any setting. Its simplicity and durability make it a staple in many kitchens and dining rooms.') + [ + 'en-US' + ]('This wooden bowl is designed to hold small servings of food or other small items. It is ideal for serving small portions of food, such as nuts, candies, dips, or sauces. It can also be used as a decorative item, as its natural material and unique texture add warmth and character to any setting. It can be used as a standalone piece or as part of a larger set, and can be styled with other wooden pieces to create a cohesive look. The bowl is easy to clean and maintain, and can be washed with soap and water or wiped clean with a damp cloth. It should be allowed to dry thoroughly before use to prevent warping or cracking. Overall, a small round wooden bowl is a versatile and functional dish that adds a touch of natural warmth and character to any setting. Its simplicity and durability make it a staple in many kitchens and dining rooms.') + [ + 'de-DE' + ]('Diese Holzschale ist so konzipiert, dass sie kleinere Snacks oder andere Gegenstände fassen kann. Sie eignet sich ideal zum Servieren kleiner Portionen wie Nüsse, Bonbons, Dips oder Saucen. Sie kann aber auch als Dekorationsartikel verwendet werden, da ihr natürliches Material und die einzigartige Textur jeder Umgebung Wärme und Charakter verleihen. Die Schale kann eigenständig oder als Teil eines größeren Sets ihre Wirkung entfalten. Sie kann zudem mit anderen Holz-Accessoires gestylt werden, um einen zusammenhängenden Look zu schaffen. Die Schale ist leicht zu reinigen und zu pflegen und kann mit Wasser und Seife gewaschen oder mit einem feuchten Tuch abgewischt werden. Sie sollte vor Gebrauch gründlich trocknen, um ein Verziehen oder Reißen zu vermeiden. Eine kleine runde Holzschale ist ein vielseitiges und funktionales Geschirr- oder Dekorations-Element, das jeder Umgebung einen Hauch von natürlicher Wärme und Charakter verleiht. Die Schlichtheit und Haltbarkeit machen sie zur perfekten Ergänzung in vielen Küchen und Esszimmern.') ) .slug( LocalizedStringDraft.presets @@ -88,7 +88,7 @@ const smallWoodenBowl = (): TProductDraftBuilder => KeyReferenceDraft.presets.taxCategory().key(standardTaxCategory.key!) ) .masterVariant( - ProductVariantDraft.presets.sampleDataGoodStore.smallWoodenBowl01() + ProductVariantDraft.presets.sampleDataB2CLifestyle.smallWoodenBowl01() ) .categories([ KeyReferenceDraft.presets.category().key(bowlsDraft.key!), diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/sparkle-champagne-glass.spec.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/sparkle-champagne-glass.spec.ts similarity index 99% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/sparkle-champagne-glass.spec.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/sparkle-champagne-glass.spec.ts index 724908e78..85a5c091d 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/sparkle-champagne-glass.spec.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/sparkle-champagne-glass.spec.ts @@ -66,7 +66,7 @@ describe(`with sparkleChampagneGlass preset`, () => { "w": 3000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Sparkle_Champagne_Glass-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Sparkle_Champagne_Glass-1.1.jpeg", }, ], "key": undefined, @@ -213,7 +213,7 @@ describe(`with sparkleChampagneGlass preset`, () => { "width": 3000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Sparkle_Champagne_Glass-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Sparkle_Champagne_Glass-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/sparkle-champagne-glass.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/sparkle-champagne-glass.ts similarity index 88% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/sparkle-champagne-glass.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/sparkle-champagne-glass.ts index 2a53bddd9..f5444f132 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/sparkle-champagne-glass.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/sparkle-champagne-glass.ts @@ -18,24 +18,24 @@ import * as ProductVariantDraft from '../../../../product-variant/product-varian import * as ProductDraft from '../../../product-draft'; import type { TProductDraftBuilder } from '../../../types'; -const standardTaxCategory = TaxCategoryDraft.presets.sampleDataGoodStore +const standardTaxCategory = TaxCategoryDraft.presets.sampleDataB2CLifestyle .standardTaxCategory() .build(); const sparkleChampagneGlassProductTypeDraft = - ProductTypeDraft.presets.sampleDataGoodStore + ProductTypeDraft.presets.sampleDataB2CLifestyle .furnitureAndDecor() .build(); -const glasswareDraft = CategoryDraft.presets.sampleDataGoodStore +const glasswareDraft = CategoryDraft.presets.sampleDataB2CLifestyle .glassware() .build(); -const barAndGlasswareDraft = CategoryDraft.presets.sampleDataGoodStore +const barAndGlasswareDraft = CategoryDraft.presets.sampleDataB2CLifestyle .barAndGlassware() .build(); -const kitchenDraft = CategoryDraft.presets.sampleDataGoodStore +const kitchenDraft = CategoryDraft.presets.sampleDataB2CLifestyle .kitchen() .build(); @@ -53,15 +53,15 @@ const sparkleChampagneGlass = (): TProductDraftBuilder => .description( LocalizedStringDraft.presets .empty() - ['de-DE']( - 'Ein konisches Champagnerglas, auch als Champagnerflöte bekannt, ist eine Art Stielglas, das speziell entwickelt wurde, um das Trinkerlebnis beim Genießen von Champagner oder Sekt zu steigern. Das Glas hat einen hohen, schmalen Kelch, der sich nach oben hin verjüngt, sodass das Aufsteigen die Bläschen an die Oberfläche des Getränks gut beobachtet werden kann. Der hohe, schlanke Stiel des Glases schafft genug Raum zwischen Hand und Getränk und verhindert so, dass der Champagner durch Körperwärme die Temperatur ändert. Der Fuß des Glases ist typischerweise breit und flach und sorgt für Stabilität und Balance. Das Design des konisch zulaufenden Sektglases soll das Aroma und den Geschmack des Getränks verstärken. Der schmale Kelch konzentriert die Bläschen und das Aroma des Champagners und lenkt ihn zur Nase hin. Dies steigert das Aroma und den Geschmack des Champagners. Das konische Sektglas wird typischerweise zum Servieren von Sekt oder anderen Schaumweinen verwendet, kann aber auch für andere kohlensäurehaltige Getränke oder Cocktails verwendet werden. Es ist leicht zu reinigen und zu pflegen und kann von Hand oder in der Spülmaschine gewaschen werden. Das konische Champagnerglas ein stilvolles und elegantes Stielglas, das speziell entwickelt wurde, um dem Genuss von Champagner oder Sekt zu steigern. Sein einzigartiges Design und die Liebe zum Detail machen es zu einer beliebten Wahl für besondere Anlässe und Feiern.' - ) - ['en-US']( - "A tapered champagne glass, also known as a champagne flute, is a type of stemware that is specifically designed to enhance the experience of drinking champagne or sparkling wine. The glass has a tall, narrow bowl that tapers towards the top, allowing the drinker to see the bubbles rising to the surface of the drink. The tall, slender stem of the glass helps to keep the drinker's hand away from the bowl, preventing the champagne from being warmed by body heat. The base of the glass is typically wide and flat, providing stability and balance. The design of the tapered champagne glass is intended to enhance the aroma and flavor of the drink. The narrow bowl concentrates the bubbles and the aroma of the champagne, directing it towards the drinker's nose. This allows the drinker to fully appreciate the aroma and flavor of the champagne. The tapered champagne glass is typically used for serving champagne or other sparkling wines, but may also be used for other carbonated drinks or cocktails. It is easy to clean and maintain, and can be washed by hand or in a dishwasher. Overall, the tapered champagne glass is a stylish and elegant piece of stemware that is specifically designed to enhance the experience of drinking champagne or sparkling wine. Its unique design and attention to detail make it a popular choice for special occasions and celebrations." - ) - ['en-GB']( - "A tapered champagne glass, also known as a champagne flute, is a type of stemware that is specifically designed to enhance the experience of drinking champagne or sparkling wine. The glass has a tall, narrow bowl that tapers towards the top, allowing the drinker to see the bubbles rising to the surface of the drink. The tall, slender stem of the glass helps to keep the drinker's hand away from the bowl, preventing the champagne from being warmed by body heat. The base of the glass is typically wide and flat, providing stability and balance. The design of the tapered champagne glass is intended to enhance the aroma and flavor of the drink. The narrow bowl concentrates the bubbles and the aroma of the champagne, directing it towards the drinker's nose. This allows the drinker to fully appreciate the aroma and flavor of the champagne. The tapered champagne glass is typically used for serving champagne or other sparkling wines, but may also be used for other carbonated drinks or cocktails. It is easy to clean and maintain, and can be washed by hand or in a dishwasher. Overall, the tapered champagne glass is a stylish and elegant piece of stemware that is specifically designed to enhance the experience of drinking champagne or sparkling wine. Its unique design and attention to detail make it a popular choice for special occasions and celebrations." - ) + [ + 'de-DE' + ]('Ein konisches Champagnerglas, auch als Champagnerflöte bekannt, ist eine Art Stielglas, das speziell entwickelt wurde, um das Trinkerlebnis beim Genießen von Champagner oder Sekt zu steigern. Das Glas hat einen hohen, schmalen Kelch, der sich nach oben hin verjüngt, sodass das Aufsteigen die Bläschen an die Oberfläche des Getränks gut beobachtet werden kann. Der hohe, schlanke Stiel des Glases schafft genug Raum zwischen Hand und Getränk und verhindert so, dass der Champagner durch Körperwärme die Temperatur ändert. Der Fuß des Glases ist typischerweise breit und flach und sorgt für Stabilität und Balance. Das Design des konisch zulaufenden Sektglases soll das Aroma und den Geschmack des Getränks verstärken. Der schmale Kelch konzentriert die Bläschen und das Aroma des Champagners und lenkt ihn zur Nase hin. Dies steigert das Aroma und den Geschmack des Champagners. Das konische Sektglas wird typischerweise zum Servieren von Sekt oder anderen Schaumweinen verwendet, kann aber auch für andere kohlensäurehaltige Getränke oder Cocktails verwendet werden. Es ist leicht zu reinigen und zu pflegen und kann von Hand oder in der Spülmaschine gewaschen werden. Das konische Champagnerglas ein stilvolles und elegantes Stielglas, das speziell entwickelt wurde, um dem Genuss von Champagner oder Sekt zu steigern. Sein einzigartiges Design und die Liebe zum Detail machen es zu einer beliebten Wahl für besondere Anlässe und Feiern.') + [ + 'en-US' + ]("A tapered champagne glass, also known as a champagne flute, is a type of stemware that is specifically designed to enhance the experience of drinking champagne or sparkling wine. The glass has a tall, narrow bowl that tapers towards the top, allowing the drinker to see the bubbles rising to the surface of the drink. The tall, slender stem of the glass helps to keep the drinker's hand away from the bowl, preventing the champagne from being warmed by body heat. The base of the glass is typically wide and flat, providing stability and balance. The design of the tapered champagne glass is intended to enhance the aroma and flavor of the drink. The narrow bowl concentrates the bubbles and the aroma of the champagne, directing it towards the drinker's nose. This allows the drinker to fully appreciate the aroma and flavor of the champagne. The tapered champagne glass is typically used for serving champagne or other sparkling wines, but may also be used for other carbonated drinks or cocktails. It is easy to clean and maintain, and can be washed by hand or in a dishwasher. Overall, the tapered champagne glass is a stylish and elegant piece of stemware that is specifically designed to enhance the experience of drinking champagne or sparkling wine. Its unique design and attention to detail make it a popular choice for special occasions and celebrations.") + [ + 'en-GB' + ]("A tapered champagne glass, also known as a champagne flute, is a type of stemware that is specifically designed to enhance the experience of drinking champagne or sparkling wine. The glass has a tall, narrow bowl that tapers towards the top, allowing the drinker to see the bubbles rising to the surface of the drink. The tall, slender stem of the glass helps to keep the drinker's hand away from the bowl, preventing the champagne from being warmed by body heat. The base of the glass is typically wide and flat, providing stability and balance. The design of the tapered champagne glass is intended to enhance the aroma and flavor of the drink. The narrow bowl concentrates the bubbles and the aroma of the champagne, directing it towards the drinker's nose. This allows the drinker to fully appreciate the aroma and flavor of the champagne. The tapered champagne glass is typically used for serving champagne or other sparkling wines, but may also be used for other carbonated drinks or cocktails. It is easy to clean and maintain, and can be washed by hand or in a dishwasher. Overall, the tapered champagne glass is a stylish and elegant piece of stemware that is specifically designed to enhance the experience of drinking champagne or sparkling wine. Its unique design and attention to detail make it a popular choice for special occasions and celebrations.") ) .slug( LocalizedStringDraft.presets @@ -80,7 +80,7 @@ const sparkleChampagneGlass = (): TProductDraftBuilder => KeyReferenceDraft.presets.taxCategory().key(standardTaxCategory.key!) ) .masterVariant( - ProductVariantDraft.presets.sampleDataGoodStore.sparkleChampagneGlass01() + ProductVariantDraft.presets.sampleDataB2CLifestyle.sparkleChampagneGlass01() ) .categories([ KeyReferenceDraft.presets.category().key(glasswareDraft.key!), diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/square-bamboo-coaster.spec.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/square-bamboo-coaster.spec.ts similarity index 98% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/square-bamboo-coaster.spec.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/square-bamboo-coaster.spec.ts index 88f6b20dc..b9f421469 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/square-bamboo-coaster.spec.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/square-bamboo-coaster.spec.ts @@ -61,7 +61,7 @@ describe(`with squareBambooCoaster preset`, () => { "w": 2912, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Square_Bamboo_Coaster-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Square_Bamboo_Coaster-1.1.jpeg", }, ], "key": undefined, @@ -204,7 +204,7 @@ describe(`with squareBambooCoaster preset`, () => { "width": 2912, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Square_Bamboo_Coaster-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Square_Bamboo_Coaster-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/square-bamboo-coaster.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/square-bamboo-coaster.ts similarity index 80% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/square-bamboo-coaster.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/square-bamboo-coaster.ts index cbfdc43ac..347a91b7b 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/square-bamboo-coaster.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/square-bamboo-coaster.ts @@ -18,24 +18,24 @@ import * as ProductVariantDraft from '../../../../product-variant/product-varian import * as ProductDraft from '../../../product-draft'; import type { TProductDraftBuilder } from '../../../types'; -const standardTaxCategory = TaxCategoryDraft.presets.sampleDataGoodStore +const standardTaxCategory = TaxCategoryDraft.presets.sampleDataB2CLifestyle .standardTaxCategory() .build(); const squareBambooCoasterProductTypeDraft = - ProductTypeDraft.presets.sampleDataGoodStore + ProductTypeDraft.presets.sampleDataB2CLifestyle .furnitureAndDecor() .build(); -const kitchenDraft = CategoryDraft.presets.sampleDataGoodStore +const kitchenDraft = CategoryDraft.presets.sampleDataB2CLifestyle .kitchen() .build(); -const barAccessoriesDraft = CategoryDraft.presets.sampleDataGoodStore +const barAccessoriesDraft = CategoryDraft.presets.sampleDataB2CLifestyle .barAccessories() .build(); -const barAndGlasswareDraft = CategoryDraft.presets.sampleDataGoodStore +const barAndGlasswareDraft = CategoryDraft.presets.sampleDataB2CLifestyle .barAndGlassware() .build(); @@ -53,15 +53,15 @@ const squareBambooCoaster = (): TProductDraftBuilder => .description( LocalizedStringDraft.presets .empty() - ['de-DE']( - 'Der quadratische Untersetzer aus Bambus besteht aus einer kleinen Matte mit großer Wirkung, da sie Oberflächen vor Wasserflecken oder Beschädigungen durch Trinkgläser oder Tassen schützt. Er besteht aus natürlichem Bambusmaterial und hat eine glatte Oberfläche. Der Untersetzer hat eine quadratische Form mit leicht abgerundeten Kanten und misst etwa 3,5 Zoll x 3,5 Zoll. Seine leichte und strapazierfähige Beschaffenheit macht ihn zu einer beliebten Wahl für legere und formelle Anlässe gleichermaßen.' - ) - ['en-GB']( - 'A square bamboo coaster is a small mat used to protect surfaces from water stains or damage caused by drinking glasses or mugs. It is made of natural bamboo material and has a smooth surface. The coaster is square in shape with slightly rounded edges, and measures approximately 3.5 inches by 3.5 inches. Its lightweight and durable nature make it a popular choice for casual and formal occasions alike.' - ) - ['en-US']( - 'A square bamboo coaster is a small mat used to protect surfaces from water stains or damage caused by drinking glasses or mugs. It is made of natural bamboo material and has a smooth surface. The coaster is square in shape with slightly rounded edges, and measures approximately 3.5 inches by 3.5 inches. Its lightweight and durable nature make it a popular choice for casual and formal occasions alike.' - ) + [ + 'de-DE' + ]('Der quadratische Untersetzer aus Bambus besteht aus einer kleinen Matte mit großer Wirkung, da sie Oberflächen vor Wasserflecken oder Beschädigungen durch Trinkgläser oder Tassen schützt. Er besteht aus natürlichem Bambusmaterial und hat eine glatte Oberfläche. Der Untersetzer hat eine quadratische Form mit leicht abgerundeten Kanten und misst etwa 3,5 Zoll x 3,5 Zoll. Seine leichte und strapazierfähige Beschaffenheit macht ihn zu einer beliebten Wahl für legere und formelle Anlässe gleichermaßen.') + [ + 'en-GB' + ]('A square bamboo coaster is a small mat used to protect surfaces from water stains or damage caused by drinking glasses or mugs. It is made of natural bamboo material and has a smooth surface. The coaster is square in shape with slightly rounded edges, and measures approximately 3.5 inches by 3.5 inches. Its lightweight and durable nature make it a popular choice for casual and formal occasions alike.') + [ + 'en-US' + ]('A square bamboo coaster is a small mat used to protect surfaces from water stains or damage caused by drinking glasses or mugs. It is made of natural bamboo material and has a smooth surface. The coaster is square in shape with slightly rounded edges, and measures approximately 3.5 inches by 3.5 inches. Its lightweight and durable nature make it a popular choice for casual and formal occasions alike.') ) .slug( LocalizedStringDraft.presets @@ -80,7 +80,7 @@ const squareBambooCoaster = (): TProductDraftBuilder => KeyReferenceDraft.presets.taxCategory().key(standardTaxCategory.key!) ) .masterVariant( - ProductVariantDraft.presets.sampleDataGoodStore.squareBambooCoaster01() + ProductVariantDraft.presets.sampleDataB2CLifestyle.squareBambooCoaster01() ) .categories([ KeyReferenceDraft.presets.category().key(kitchenDraft.key!), diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/steel-hip-flask.spec.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/steel-hip-flask.spec.ts similarity index 98% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/steel-hip-flask.spec.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/steel-hip-flask.spec.ts index 9061ff5c8..e7a091a3d 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/steel-hip-flask.spec.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/steel-hip-flask.spec.ts @@ -57,7 +57,7 @@ describe(`with steelHipFlask preset`, () => { "w": 5006, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Steel_Hip_Flask-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Steel_Hip_Flask-1.1.jpeg", }, ], "key": undefined, @@ -203,7 +203,7 @@ describe(`with steelHipFlask preset`, () => { "width": 5006, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Steel_Hip_Flask-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Steel_Hip_Flask-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/steel-hip-flask.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/steel-hip-flask.ts similarity index 80% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/steel-hip-flask.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/steel-hip-flask.ts index dd519f9e6..a5e377b3a 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/steel-hip-flask.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/steel-hip-flask.ts @@ -18,24 +18,24 @@ import * as ProductVariantDraft from '../../../../product-variant/product-varian import * as ProductDraft from '../../../product-draft'; import type { TProductDraftBuilder } from '../../../types'; -const standardTaxCategory = TaxCategoryDraft.presets.sampleDataGoodStore +const standardTaxCategory = TaxCategoryDraft.presets.sampleDataB2CLifestyle .standardTaxCategory() .build(); const steelHipFlaskProductTypeDraft = - ProductTypeDraft.presets.sampleDataGoodStore + ProductTypeDraft.presets.sampleDataB2CLifestyle .furnitureAndDecor() .build(); -const barAccessoriesDraft = CategoryDraft.presets.sampleDataGoodStore +const barAccessoriesDraft = CategoryDraft.presets.sampleDataB2CLifestyle .barAccessories() .build(); -const barAndGlasswareDraft = CategoryDraft.presets.sampleDataGoodStore +const barAndGlasswareDraft = CategoryDraft.presets.sampleDataB2CLifestyle .barAndGlassware() .build(); -const kitchenDraft = CategoryDraft.presets.sampleDataGoodStore +const kitchenDraft = CategoryDraft.presets.sampleDataB2CLifestyle .kitchen() .build(); @@ -53,15 +53,15 @@ const steelHipFlask = (): TProductDraftBuilder => .description( LocalizedStringDraft.presets .empty() - ['en-US']( - 'A steel hip flask is a small, curved, and flat container made of stainless steel. It is designed to hold and transport a small amount of alcoholic beverage, usually around 6-10 ounces. The flask has a hinged or screw-top lid that allows for easy opening and closing, as well as a small opening for pouring or drinking the contents. The exterior of the flask is smooth. Hip flasks are often carried in a pocket or purse for discreet consumption of alcohol while on-the-go.' - ) - ['de-DE']( - 'Der Flachmann aus Stahl ist ein kleiner, gebogener und flacher Behälter aus Edelstahl. Er ist so konzipiert, dass er eine kleine Menge alkoholischer Getränke aufnehmen und transportieren kann, normalerweise umfasst er etwa 6 bis 10 Unzen. Der Flachmann hat einen Scharnier- oder Schraubdeckel, der ein einfaches Öffnen und Schließen ermöglicht, sowie eine kleine Öffnung zum Ausgießen oder Trinken des Inhalts. Die Außenseite des Trinkbehälters ist glatt. Flachmänner werden oft in einer Tasche oder Handtasche getragen und eignen sich ideal für den diskreten Konsum von Alkohol unterwegs.' - ) - ['en-GB']( - 'A steel hip flask is a small, curved, and flat container made of stainless steel. It is designed to hold and transport a small amount of alcoholic beverage, usually around 6-10 ounces. The flask has a hinged or screw-top lid that allows for easy opening and closing, as well as a small opening for pouring or drinking the contents. The exterior of the flask is smooth. Hip flasks are often carried in a pocket or purse for discreet consumption of alcohol while on-the-go.' - ) + [ + 'en-US' + ]('A steel hip flask is a small, curved, and flat container made of stainless steel. It is designed to hold and transport a small amount of alcoholic beverage, usually around 6-10 ounces. The flask has a hinged or screw-top lid that allows for easy opening and closing, as well as a small opening for pouring or drinking the contents. The exterior of the flask is smooth. Hip flasks are often carried in a pocket or purse for discreet consumption of alcohol while on-the-go.') + [ + 'de-DE' + ]('Der Flachmann aus Stahl ist ein kleiner, gebogener und flacher Behälter aus Edelstahl. Er ist so konzipiert, dass er eine kleine Menge alkoholischer Getränke aufnehmen und transportieren kann, normalerweise umfasst er etwa 6 bis 10 Unzen. Der Flachmann hat einen Scharnier- oder Schraubdeckel, der ein einfaches Öffnen und Schließen ermöglicht, sowie eine kleine Öffnung zum Ausgießen oder Trinken des Inhalts. Die Außenseite des Trinkbehälters ist glatt. Flachmänner werden oft in einer Tasche oder Handtasche getragen und eignen sich ideal für den diskreten Konsum von Alkohol unterwegs.') + [ + 'en-GB' + ]('A steel hip flask is a small, curved, and flat container made of stainless steel. It is designed to hold and transport a small amount of alcoholic beverage, usually around 6-10 ounces. The flask has a hinged or screw-top lid that allows for easy opening and closing, as well as a small opening for pouring or drinking the contents. The exterior of the flask is smooth. Hip flasks are often carried in a pocket or purse for discreet consumption of alcohol while on-the-go.') ) .slug( LocalizedStringDraft.presets @@ -80,7 +80,7 @@ const steelHipFlask = (): TProductDraftBuilder => KeyReferenceDraft.presets.taxCategory().key(standardTaxCategory.key!) ) .masterVariant( - ProductVariantDraft.presets.sampleDataGoodStore.steelHipFlask01() + ProductVariantDraft.presets.sampleDataB2CLifestyle.steelHipFlask01() ) .categories([ KeyReferenceDraft.presets.category().key(barAccessoriesDraft.key!), diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/stone-serving-tray.spec.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/stone-serving-tray.spec.ts similarity index 99% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/stone-serving-tray.spec.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/stone-serving-tray.spec.ts index 5c36f7fc4..851dd2df4 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/stone-serving-tray.spec.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/stone-serving-tray.spec.ts @@ -69,7 +69,7 @@ describe(`with stoneServingTray preset`, () => { "w": 4125, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Stone_Serving_Tray-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Stone_Serving_Tray-1.1.jpeg", }, ], "key": undefined, @@ -224,7 +224,7 @@ describe(`with stoneServingTray preset`, () => { "width": 4125, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Stone_Serving_Tray-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Stone_Serving_Tray-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/stone-serving-tray.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/stone-serving-tray.ts similarity index 83% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/stone-serving-tray.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/stone-serving-tray.ts index 775abe7d4..63fa16d6b 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/stone-serving-tray.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/stone-serving-tray.ts @@ -18,36 +18,36 @@ import * as ProductVariantDraft from '../../../../product-variant/product-varian import * as ProductDraft from '../../../product-draft'; import type { TProductDraftBuilder } from '../../../types'; -const standardTaxCategory = TaxCategoryDraft.presets.sampleDataGoodStore +const standardTaxCategory = TaxCategoryDraft.presets.sampleDataB2CLifestyle .standardTaxCategory() .build(); const stoneServingTrayProductTypeDraft = - ProductTypeDraft.presets.sampleDataGoodStore + ProductTypeDraft.presets.sampleDataB2CLifestyle .furnitureAndDecor() .build(); -const kitchenDraft = CategoryDraft.presets.sampleDataGoodStore +const kitchenDraft = CategoryDraft.presets.sampleDataB2CLifestyle .kitchen() .build(); -const servewareDraft = CategoryDraft.presets.sampleDataGoodStore +const servewareDraft = CategoryDraft.presets.sampleDataB2CLifestyle .serveware() .build(); -const dinnerwareDraft = CategoryDraft.presets.sampleDataGoodStore +const dinnerwareDraft = CategoryDraft.presets.sampleDataB2CLifestyle .dinnerware() .build(); -const cheeseTraysDraft = CategoryDraft.presets.sampleDataGoodStore +const cheeseTraysDraft = CategoryDraft.presets.sampleDataB2CLifestyle .cheeseTrays() .build(); -const servingPlattersDraft = CategoryDraft.presets.sampleDataGoodStore +const servingPlattersDraft = CategoryDraft.presets.sampleDataB2CLifestyle .servingPlatters() .build(); -const bakewareDraft = CategoryDraft.presets.sampleDataGoodStore +const bakewareDraft = CategoryDraft.presets.sampleDataB2CLifestyle .bakeware() .build(); @@ -65,15 +65,15 @@ const stoneServingTray = (): TProductDraftBuilder => .description( LocalizedStringDraft.presets .empty() - ['en-US']( - "The Stone Serving Tray is made of natural stone that is designed to serve and display food. The tray is made of sturdy slate. The weight and texture of the stone material provide stability and a sense of luxury to the tray, making it ideal for serving a variety of items, including cheese, fruits or bread. The tray's natural stone material also makes it an excellent choice for use in outdoor settings, such as a picnic or barbecue. A stone serving tray is easy to clean and maintain. It can be washed with soap and water, and should be dried thoroughly after use to prevent any moisture from being trapped inside. Overall, a stone serving tray is a functional and aesthetically pleasing item that adds a touch of natural elegance to any setting. Its durability, stability and unique design make it a popular choice for serving and displaying food and beverages." - ) - ['de-DE']( - 'Dieses Serviertablett besteht aus Naturstein und wurde zum Servieren und Präsentieren von Speisen designt. Das Tablett besteht aus stabilem Schiefer. Das Gewicht und die Textur des Steinmaterials verleihen dem Tablett Stabilität und ein Gefühl von Luxus. Sie machen es darüber hinaus zum idealen Utensil zum Servieren einer Vielzahl von Speisen, wie zum Beispiel Käse, Obst oder Brot. Das Natursteinmaterial des Tabletts macht es zudem zu einer ausgezeichneten Wahl für den Einsatz im Freien, z. B. bei einem Picknick oder beim Grillen. Ein Serviertablett aus Stein ist leicht zu reinigen und zu pflegen. Es kann mit Wasser und Seife gewaschen werden und sollte nach Gebrauch gründlich getrocknet werden, um das Eindringen von Feuchtigkeit ins Innere zu vermeiden. Ein Serviertablett aus Stein ist ein funktionales und ästhetisch ansprechendes Element, das jeder Umgebung einen Hauch von natürlicher Eleganz verleiht. Seine Haltbarkeit, Stabilität und sein einzigartiges Design machen es zu einer beliebten Wahl zum Servieren und Präsentieren von Speisen und Getränken.' - ) - ['en-GB']( - "The Stone Serving Tray is made of natural stone that is designed to serve and display food. The tray is made of sturdy slate. The weight and texture of the stone material provide stability and a sense of luxury to the tray, making it ideal for serving a variety of items, including cheese, fruits or bread. The tray's natural stone material also makes it an excellent choice for use in outdoor settings, such as a picnic or barbecue. A stone serving tray is easy to clean and maintain. It can be washed with soap and water, and should be dried thoroughly after use to prevent any moisture from being trapped inside. Overall, a stone serving tray is a functional and aesthetically pleasing item that adds a touch of natural elegance to any setting. Its durability, stability and unique design make it a popular choice for serving and displaying food and beverages." - ) + [ + 'en-US' + ]("The Stone Serving Tray is made of natural stone that is designed to serve and display food. The tray is made of sturdy slate. The weight and texture of the stone material provide stability and a sense of luxury to the tray, making it ideal for serving a variety of items, including cheese, fruits or bread. The tray's natural stone material also makes it an excellent choice for use in outdoor settings, such as a picnic or barbecue. A stone serving tray is easy to clean and maintain. It can be washed with soap and water, and should be dried thoroughly after use to prevent any moisture from being trapped inside. Overall, a stone serving tray is a functional and aesthetically pleasing item that adds a touch of natural elegance to any setting. Its durability, stability and unique design make it a popular choice for serving and displaying food and beverages.") + [ + 'de-DE' + ]('Dieses Serviertablett besteht aus Naturstein und wurde zum Servieren und Präsentieren von Speisen designt. Das Tablett besteht aus stabilem Schiefer. Das Gewicht und die Textur des Steinmaterials verleihen dem Tablett Stabilität und ein Gefühl von Luxus. Sie machen es darüber hinaus zum idealen Utensil zum Servieren einer Vielzahl von Speisen, wie zum Beispiel Käse, Obst oder Brot. Das Natursteinmaterial des Tabletts macht es zudem zu einer ausgezeichneten Wahl für den Einsatz im Freien, z. B. bei einem Picknick oder beim Grillen. Ein Serviertablett aus Stein ist leicht zu reinigen und zu pflegen. Es kann mit Wasser und Seife gewaschen werden und sollte nach Gebrauch gründlich getrocknet werden, um das Eindringen von Feuchtigkeit ins Innere zu vermeiden. Ein Serviertablett aus Stein ist ein funktionales und ästhetisch ansprechendes Element, das jeder Umgebung einen Hauch von natürlicher Eleganz verleiht. Seine Haltbarkeit, Stabilität und sein einzigartiges Design machen es zu einer beliebten Wahl zum Servieren und Präsentieren von Speisen und Getränken.') + [ + 'en-GB' + ]("The Stone Serving Tray is made of natural stone that is designed to serve and display food. The tray is made of sturdy slate. The weight and texture of the stone material provide stability and a sense of luxury to the tray, making it ideal for serving a variety of items, including cheese, fruits or bread. The tray's natural stone material also makes it an excellent choice for use in outdoor settings, such as a picnic or barbecue. A stone serving tray is easy to clean and maintain. It can be washed with soap and water, and should be dried thoroughly after use to prevent any moisture from being trapped inside. Overall, a stone serving tray is a functional and aesthetically pleasing item that adds a touch of natural elegance to any setting. Its durability, stability and unique design make it a popular choice for serving and displaying food and beverages.") ) .slug( LocalizedStringDraft.presets @@ -92,7 +92,7 @@ const stoneServingTray = (): TProductDraftBuilder => KeyReferenceDraft.presets.taxCategory().key(standardTaxCategory.key!) ) .masterVariant( - ProductVariantDraft.presets.sampleDataGoodStore.stoneServingTray01() + ProductVariantDraft.presets.sampleDataB2CLifestyle.stoneServingTray01() ) .categories([ KeyReferenceDraft.presets.category().key(kitchenDraft.key!), diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/stout-beer-glass.spec.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/stout-beer-glass.spec.ts similarity index 99% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/stout-beer-glass.spec.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/stout-beer-glass.spec.ts index cd16024eb..7cdad9014 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/stout-beer-glass.spec.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/stout-beer-glass.spec.ts @@ -65,7 +65,7 @@ describe(`with stoutBeerGlass preset`, () => { "w": 3000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Stout_Beer_Glass-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Stout_Beer_Glass-1.1.jpeg", }, ], "key": undefined, @@ -212,7 +212,7 @@ describe(`with stoutBeerGlass preset`, () => { "width": 3000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Stout_Beer_Glass-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Stout_Beer_Glass-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/stout-beer-glass.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/stout-beer-glass.ts similarity index 85% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/stout-beer-glass.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/stout-beer-glass.ts index 18fb1ef50..07978a05f 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/stout-beer-glass.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/stout-beer-glass.ts @@ -18,24 +18,24 @@ import * as ProductVariantDraft from '../../../../product-variant/product-varian import * as ProductDraft from '../../../product-draft'; import type { TProductDraftBuilder } from '../../../types'; -const standardTaxCategory = TaxCategoryDraft.presets.sampleDataGoodStore +const standardTaxCategory = TaxCategoryDraft.presets.sampleDataB2CLifestyle .standardTaxCategory() .build(); const stoutBeerGlassProductTypeDraft = - ProductTypeDraft.presets.sampleDataGoodStore + ProductTypeDraft.presets.sampleDataB2CLifestyle .furnitureAndDecor() .build(); -const glasswareDraft = CategoryDraft.presets.sampleDataGoodStore +const glasswareDraft = CategoryDraft.presets.sampleDataB2CLifestyle .glassware() .build(); -const barAndGlasswareDraft = CategoryDraft.presets.sampleDataGoodStore +const barAndGlasswareDraft = CategoryDraft.presets.sampleDataB2CLifestyle .barAndGlassware() .build(); -const kitchenDraft = CategoryDraft.presets.sampleDataGoodStore +const kitchenDraft = CategoryDraft.presets.sampleDataB2CLifestyle .kitchen() .build(); @@ -53,15 +53,15 @@ const stoutBeerGlass = (): TProductDraftBuilder => .description( LocalizedStringDraft.presets .empty() - ['en-US']( - 'A stout beer glass, also known as a "pint glass," is a type of drinking glass that is designed specifically for serving and enjoying stout beers. It has a short, wide shape with a thick, heavy base that provides stability and balance. The design of the stout beer glass is intended to enhance the drinking experience by allowing the full range of flavors and aromas of the beer to be appreciated. The wide opening of the glass allows the drinker to fully appreciate the color and clarity of the beer, while the heavy base helps to keep the beer from spilling or tipping over. Overall, a stout beer glass is a classic and timeless type of drinking glass that is ideal for savoring the rich flavor and aroma of fine stout beers. Its simple yet elegant design makes it a popular choice for beer lovers and casual drinkers alike.' - ) - ['de-DE']( - 'Ein Stout-Bierglas, auch als "Pintglas" bekannt, ist ein Trinkglas, das speziell zum Servieren und Genießen von Starkbieren entwickelt wurde. Es hat eine kurze, breite Form mit einem dicken, schweren Boden, der für Stabilität und Gleichgewicht sorgt. Das Design des Stout-Bierglases unterstützt das Trinkerlebnis, indem es die volle Geschmacks- und Aromenvielfalt des Bieres zur Geltung bringt. Die breite Öffnung des Glases lässt die Farbe und Klarheit des Bieres erkennen, während der schwere Boden dazu beiträgt, dass das Bier nicht verschüttet oder umkippt. Ein Pintglas ist ein klassisches und zeitloses Trinkglas, das sich ideal eignet, um den reichen Geschmack und das Aroma feiner Stout-Biere zu genießen. Sein einfaches aber elegantes Design macht es zu einer beliebten Wahl für Bierliebhaber und Gelegenheitsgeniesser gleichermaßen.' - ) - ['en-GB']( - 'A stout beer glass, also known as a "pint glass," is a type of drinking glass that is designed specifically for serving and enjoying stout beers. It has a short, wide shape with a thick, heavy base that provides stability and balance. The design of the stout beer glass is intended to enhance the drinking experience by allowing the full range of flavors and aromas of the beer to be appreciated. The wide opening of the glass allows the drinker to fully appreciate the color and clarity of the beer, while the heavy base helps to keep the beer from spilling or tipping over. Overall, a stout beer glass is a classic and timeless type of drinking glass that is ideal for savoring the rich flavor and aroma of fine stout beers. Its simple yet elegant design makes it a popular choice for beer lovers and casual drinkers alike.' - ) + [ + 'en-US' + ]('A stout beer glass, also known as a "pint glass," is a type of drinking glass that is designed specifically for serving and enjoying stout beers. It has a short, wide shape with a thick, heavy base that provides stability and balance. The design of the stout beer glass is intended to enhance the drinking experience by allowing the full range of flavors and aromas of the beer to be appreciated. The wide opening of the glass allows the drinker to fully appreciate the color and clarity of the beer, while the heavy base helps to keep the beer from spilling or tipping over. Overall, a stout beer glass is a classic and timeless type of drinking glass that is ideal for savoring the rich flavor and aroma of fine stout beers. Its simple yet elegant design makes it a popular choice for beer lovers and casual drinkers alike.') + [ + 'de-DE' + ]('Ein Stout-Bierglas, auch als "Pintglas" bekannt, ist ein Trinkglas, das speziell zum Servieren und Genießen von Starkbieren entwickelt wurde. Es hat eine kurze, breite Form mit einem dicken, schweren Boden, der für Stabilität und Gleichgewicht sorgt. Das Design des Stout-Bierglases unterstützt das Trinkerlebnis, indem es die volle Geschmacks- und Aromenvielfalt des Bieres zur Geltung bringt. Die breite Öffnung des Glases lässt die Farbe und Klarheit des Bieres erkennen, während der schwere Boden dazu beiträgt, dass das Bier nicht verschüttet oder umkippt. Ein Pintglas ist ein klassisches und zeitloses Trinkglas, das sich ideal eignet, um den reichen Geschmack und das Aroma feiner Stout-Biere zu genießen. Sein einfaches aber elegantes Design macht es zu einer beliebten Wahl für Bierliebhaber und Gelegenheitsgeniesser gleichermaßen.') + [ + 'en-GB' + ]('A stout beer glass, also known as a "pint glass," is a type of drinking glass that is designed specifically for serving and enjoying stout beers. It has a short, wide shape with a thick, heavy base that provides stability and balance. The design of the stout beer glass is intended to enhance the drinking experience by allowing the full range of flavors and aromas of the beer to be appreciated. The wide opening of the glass allows the drinker to fully appreciate the color and clarity of the beer, while the heavy base helps to keep the beer from spilling or tipping over. Overall, a stout beer glass is a classic and timeless type of drinking glass that is ideal for savoring the rich flavor and aroma of fine stout beers. Its simple yet elegant design makes it a popular choice for beer lovers and casual drinkers alike.') ) .slug( LocalizedStringDraft.presets @@ -80,7 +80,7 @@ const stoutBeerGlass = (): TProductDraftBuilder => KeyReferenceDraft.presets.taxCategory().key(standardTaxCategory.key!) ) .masterVariant( - ProductVariantDraft.presets.sampleDataGoodStore.stoutBeerGlass01() + ProductVariantDraft.presets.sampleDataB2CLifestyle.stoutBeerGlass01() ) .categories([ KeyReferenceDraft.presets.category().key(glasswareDraft.key!), diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/sunnai-glass-bowl.spec.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/sunnai-glass-bowl.spec.ts similarity index 98% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/sunnai-glass-bowl.spec.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/sunnai-glass-bowl.spec.ts index 1bedf0e98..af4c7da44 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/sunnai-glass-bowl.spec.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/sunnai-glass-bowl.spec.ts @@ -83,7 +83,7 @@ Overall, a glass bowl used for serving food is a beautiful and practical choice "w": 5381, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Sunnai_Glass_Bowl-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Sunnai_Glass_Bowl-1.1.jpeg", }, ], "key": undefined, @@ -203,7 +203,7 @@ Overall, a glass bowl used for serving food is a beautiful and practical choice "w": 4944, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Sunnai_Glass_Bowl-2.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Sunnai_Glass_Bowl-2.1.jpeg", }, ], "key": undefined, @@ -337,7 +337,7 @@ Die Glasschale ist eine schöne und praktische Wahl zum Präsentieren und Servie "width": 5381, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Sunnai_Glass_Bowl-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Sunnai_Glass_Bowl-1.1.jpeg", }, ], "key": undefined, @@ -463,7 +463,7 @@ Die Glasschale ist eine schöne und praktische Wahl zum Präsentieren und Servie "width": 4944, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Sunnai_Glass_Bowl-2.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Sunnai_Glass_Bowl-2.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/sunnai-glass-bowl.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/sunnai-glass-bowl.ts similarity index 80% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/sunnai-glass-bowl.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/sunnai-glass-bowl.ts index 50545a7bf..0391716bb 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/sunnai-glass-bowl.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/sunnai-glass-bowl.ts @@ -18,28 +18,28 @@ import * as ProductVariantDraft from '../../../../product-variant/product-varian import * as ProductDraft from '../../../product-draft'; import type { TProductDraftBuilder } from '../../../types'; -const standardTaxCategory = TaxCategoryDraft.presets.sampleDataGoodStore +const standardTaxCategory = TaxCategoryDraft.presets.sampleDataB2CLifestyle .standardTaxCategory() .build(); const sunnaiGlassBowlProductTypeDraft = - ProductTypeDraft.presets.sampleDataGoodStore + ProductTypeDraft.presets.sampleDataB2CLifestyle .productSets() .build(); -const bowlsDraft = CategoryDraft.presets.sampleDataGoodStore +const bowlsDraft = CategoryDraft.presets.sampleDataB2CLifestyle .bowls() .build(); -const dinnerwareDraft = CategoryDraft.presets.sampleDataGoodStore +const dinnerwareDraft = CategoryDraft.presets.sampleDataB2CLifestyle .dinnerware() .build(); -const kitchenDraft = CategoryDraft.presets.sampleDataGoodStore +const kitchenDraft = CategoryDraft.presets.sampleDataB2CLifestyle .kitchen() .build(); -const bakewareDraft = CategoryDraft.presets.sampleDataGoodStore +const bakewareDraft = CategoryDraft.presets.sampleDataB2CLifestyle .bakeware() .build(); @@ -57,15 +57,15 @@ const sunnaiGlassBowl = (): TProductDraftBuilder => .description( LocalizedStringDraft.presets .empty() - ['en-US']( - 'These glass bowls are ideal for serving a variety of foods, including salads, fruits, desserts, and snacks. They are a popular choice for formal dinner parties and special occasions, as well as for everyday use.\n\nThe glass material is easy to clean and maintain, and can be washed with soap and water or in a dishwasher. It is also non-reactive, meaning it will not absorb any flavors or odors from the food.\n\nOverall, a glass bowl used for serving food is a beautiful and practical choice for presenting and serving food. Its transparency and simplicity make it a versatile and timeless piece that can be used for a variety of occasions and settings.' - ) - ['en-GB']( - 'These glass bowls are ideal for serving a variety of foods, including salads, fruits, desserts, and snacks. They are a popular choice for formal dinner parties and special occasions, as well as for everyday use.\n\nThe glass material is easy to clean and maintain, and can be washed with soap and water or in a dishwasher. It is also non-reactive, meaning it will not absorb any flavors or odors from the food.\n\nOverall, a glass bowl used for serving food is a beautiful and practical choice for presenting and serving food. Its transparency and simplicity make it a versatile and timeless piece that can be used for a variety of occasions and settings.' - ) - ['de-DE']( - 'Diese Glasschalen eignen sich ideal zum Servieren einer Vielzahl von Speisen, darunter Salate, Obst, Desserts und Snacks. Sie sind eine beliebte Wahl für formelle Dinnerpartys und besondere Anlässe sowie für den täglichen Gebrauch.\n\nDas Glas ist leicht zu reinigen und zu pflegen und kann mit Wasser und Seife gewaschen werden. Die Schale ist zudem spülmaschinenfest. Das Glasmaterial ist so verarbeitet, dass es keine Aromen oder Gerüche aus den Lebensmitteln aufnimmt.\n\nDie Glasschale ist eine schöne und praktische Wahl zum Präsentieren und Servieren von Speisen. Ihre Transparenz und Schlichtheit machen sie zu einem vielseitigen und zeitlosen Begleiter, der für eine Vielzahl von Anlässen verwendet werden kann.\n' - ) + [ + 'en-US' + ]('These glass bowls are ideal for serving a variety of foods, including salads, fruits, desserts, and snacks. They are a popular choice for formal dinner parties and special occasions, as well as for everyday use.\n\nThe glass material is easy to clean and maintain, and can be washed with soap and water or in a dishwasher. It is also non-reactive, meaning it will not absorb any flavors or odors from the food.\n\nOverall, a glass bowl used for serving food is a beautiful and practical choice for presenting and serving food. Its transparency and simplicity make it a versatile and timeless piece that can be used for a variety of occasions and settings.') + [ + 'en-GB' + ]('These glass bowls are ideal for serving a variety of foods, including salads, fruits, desserts, and snacks. They are a popular choice for formal dinner parties and special occasions, as well as for everyday use.\n\nThe glass material is easy to clean and maintain, and can be washed with soap and water or in a dishwasher. It is also non-reactive, meaning it will not absorb any flavors or odors from the food.\n\nOverall, a glass bowl used for serving food is a beautiful and practical choice for presenting and serving food. Its transparency and simplicity make it a versatile and timeless piece that can be used for a variety of occasions and settings.') + [ + 'de-DE' + ]('Diese Glasschalen eignen sich ideal zum Servieren einer Vielzahl von Speisen, darunter Salate, Obst, Desserts und Snacks. Sie sind eine beliebte Wahl für formelle Dinnerpartys und besondere Anlässe sowie für den täglichen Gebrauch.\n\nDas Glas ist leicht zu reinigen und zu pflegen und kann mit Wasser und Seife gewaschen werden. Die Schale ist zudem spülmaschinenfest. Das Glasmaterial ist so verarbeitet, dass es keine Aromen oder Gerüche aus den Lebensmitteln aufnimmt.\n\nDie Glasschale ist eine schöne und praktische Wahl zum Präsentieren und Servieren von Speisen. Ihre Transparenz und Schlichtheit machen sie zu einem vielseitigen und zeitlosen Begleiter, der für eine Vielzahl von Anlässen verwendet werden kann.\n') ) .slug( LocalizedStringDraft.presets @@ -84,10 +84,10 @@ const sunnaiGlassBowl = (): TProductDraftBuilder => KeyReferenceDraft.presets.taxCategory().key(standardTaxCategory.key!) ) .masterVariant( - ProductVariantDraft.presets.sampleDataGoodStore.sunnaiGlassBowl01() + ProductVariantDraft.presets.sampleDataB2CLifestyle.sunnaiGlassBowl01() ) .variants([ - ProductVariantDraft.presets.sampleDataGoodStore.sunnaiGlassBowl02(), + ProductVariantDraft.presets.sampleDataB2CLifestyle.sunnaiGlassBowl02(), ]) .categories([ KeyReferenceDraft.presets.category().key(bowlsDraft.key!), diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/sweet-pea-candle.spec.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/sweet-pea-candle.spec.ts similarity index 97% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/sweet-pea-candle.spec.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/sweet-pea-candle.spec.ts index 2e04c806f..5fb6c3b84 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/sweet-pea-candle.spec.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/sweet-pea-candle.spec.ts @@ -68,7 +68,7 @@ describe(`with sweetPeaCandle preset`, () => { "w": 5540, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Sweet_Pea_Candle-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Sweet_Pea_Candle-1.1.jpeg", }, { "dimensions": { @@ -76,7 +76,7 @@ describe(`with sweetPeaCandle preset`, () => { "w": 6720, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Sweet_Pea_Candle-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Sweet_Pea_Candle-1.2.jpeg", }, { "dimensions": { @@ -84,7 +84,7 @@ describe(`with sweetPeaCandle preset`, () => { "w": 6640, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Sweet_Pea_Candle-1.3.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Sweet_Pea_Candle-1.3.jpeg", }, ], "key": undefined, @@ -231,7 +231,7 @@ describe(`with sweetPeaCandle preset`, () => { "width": 5540, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Sweet_Pea_Candle-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Sweet_Pea_Candle-1.1.jpeg", }, { "dimensions": { @@ -239,7 +239,7 @@ describe(`with sweetPeaCandle preset`, () => { "width": 6720, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Sweet_Pea_Candle-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Sweet_Pea_Candle-1.2.jpeg", }, { "dimensions": { @@ -247,7 +247,7 @@ describe(`with sweetPeaCandle preset`, () => { "width": 6640, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Sweet_Pea_Candle-1.3.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Sweet_Pea_Candle-1.3.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/sweet-pea-candle.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/sweet-pea-candle.ts similarity index 85% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/sweet-pea-candle.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/sweet-pea-candle.ts index 99e560c38..816121e5e 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/sweet-pea-candle.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/sweet-pea-candle.ts @@ -18,24 +18,24 @@ import * as ProductVariantDraft from '../../../../product-variant/product-varian import * as ProductDraft from '../../../product-draft'; import type { TProductDraftBuilder } from '../../../types'; -const standardTaxCategory = TaxCategoryDraft.presets.sampleDataGoodStore +const standardTaxCategory = TaxCategoryDraft.presets.sampleDataB2CLifestyle .standardTaxCategory() .build(); const sweetPeaCandleProductTypeDraft = - ProductTypeDraft.presets.sampleDataGoodStore + ProductTypeDraft.presets.sampleDataB2CLifestyle .furnitureAndDecor() .build(); -const homeAccentsDraft = CategoryDraft.presets.sampleDataGoodStore +const homeAccentsDraft = CategoryDraft.presets.sampleDataB2CLifestyle .homeAccents() .build(); -const roomDecorDraft = CategoryDraft.presets.sampleDataGoodStore +const roomDecorDraft = CategoryDraft.presets.sampleDataB2CLifestyle .roomDecor() .build(); -const homeDecorDraft = CategoryDraft.presets.sampleDataGoodStore +const homeDecorDraft = CategoryDraft.presets.sampleDataB2CLifestyle .homeDecor() .build(); @@ -53,15 +53,15 @@ const sweetPeaCandle = (): TProductDraftBuilder => .description( LocalizedStringDraft.presets .empty() - ['en-US']( - 'A small sweet pea scented candle is a charming and delightful addition to any home. The candle is small in size, making it perfect for use on a tabletop or desk. The candle is made from high-quality wax, which is infused with the sweet and delicate fragrance of sweet pea. The scent is fresh and floral, reminiscent of a blooming garden in the springtime. The candle is presented in a glass container, which helps to protect the flame and also adds a decorative touch to the candle. When lit, the candle will release a gentle and pleasant aroma, filling the room with the sweet and soothing fragrance of sweet pea. The scent can help to create a relaxing and calming atmosphere, making it perfect for use during a yoga practice, a bubble bath, or a cozy night in. A sweet pea scented candle is a delightful and charming addition to any home, bringing a touch of nature and tranquility to your living space.' - ) - ['de-DE']( - 'Die kleine Kerze mit der Duftnote Schleierkraut oder Duftwicke ist eine charmante und hübsche Ergänzung für jedes Zuhause. Die Größe der Kerze macht sie zum perfekten Accessoire auf einem Tisch oder Schreibtisch. Die Kerze besteht aus hochwertigem Wachs, das mit den süßen und zarten Noten der Duftwicke durchdrungen ist. Der Duft ist frisch und blumig und erinnert an einen blühenden Garten im Frühling. Die Kerze wird in einem Glasbehälter präsentiert, der zum Schutz der Flamme beiträgt und der Kerze eine dekorative Note verleiht. Wenn die Kerze angezündet wird, verströmt sie ein sanftes und angenehmes Aroma und erfüllt den Raum mit dem süßen und beruhigenden Duft von Schleierkraut. Der Duft schafft eine entspannende und beruhigende Atmosphäre und eignen sich gut für die Verwendung während einer Yogastunde, eines Schaumbads oder zur Einstimmung in einen erholsamen Schlaf. Eine Kerze mit dem Aroma der Duftwicke ist eine hübsche und charmante Ergänzung für jedes Zuhause und bringt einen Hauch von Natur und Ruhe in jeden Wohnraum.' - ) - ['en-GB']( - 'A small sweet pea scented candle is a charming and delightful addition to any home. The candle is small in size, making it perfect for use on a tabletop or desk. The candle is made from high-quality wax, which is infused with the sweet and delicate fragrance of sweet pea. The scent is fresh and floral, reminiscent of a blooming garden in the springtime. The candle is presented in a glass container, which helps to protect the flame and also adds a decorative touch to the candle. When lit, the candle will release a gentle and pleasant aroma, filling the room with the sweet and soothing fragrance of sweet pea. The scent can help to create a relaxing and calming atmosphere, making it perfect for use during a yoga practice, a bubble bath, or a cozy night in. A sweet pea scented candle is a delightful and charming addition to any home, bringing a touch of nature and tranquility to your living space.' - ) + [ + 'en-US' + ]('A small sweet pea scented candle is a charming and delightful addition to any home. The candle is small in size, making it perfect for use on a tabletop or desk. The candle is made from high-quality wax, which is infused with the sweet and delicate fragrance of sweet pea. The scent is fresh and floral, reminiscent of a blooming garden in the springtime. The candle is presented in a glass container, which helps to protect the flame and also adds a decorative touch to the candle. When lit, the candle will release a gentle and pleasant aroma, filling the room with the sweet and soothing fragrance of sweet pea. The scent can help to create a relaxing and calming atmosphere, making it perfect for use during a yoga practice, a bubble bath, or a cozy night in. A sweet pea scented candle is a delightful and charming addition to any home, bringing a touch of nature and tranquility to your living space.') + [ + 'de-DE' + ]('Die kleine Kerze mit der Duftnote Schleierkraut oder Duftwicke ist eine charmante und hübsche Ergänzung für jedes Zuhause. Die Größe der Kerze macht sie zum perfekten Accessoire auf einem Tisch oder Schreibtisch. Die Kerze besteht aus hochwertigem Wachs, das mit den süßen und zarten Noten der Duftwicke durchdrungen ist. Der Duft ist frisch und blumig und erinnert an einen blühenden Garten im Frühling. Die Kerze wird in einem Glasbehälter präsentiert, der zum Schutz der Flamme beiträgt und der Kerze eine dekorative Note verleiht. Wenn die Kerze angezündet wird, verströmt sie ein sanftes und angenehmes Aroma und erfüllt den Raum mit dem süßen und beruhigenden Duft von Schleierkraut. Der Duft schafft eine entspannende und beruhigende Atmosphäre und eignen sich gut für die Verwendung während einer Yogastunde, eines Schaumbads oder zur Einstimmung in einen erholsamen Schlaf. Eine Kerze mit dem Aroma der Duftwicke ist eine hübsche und charmante Ergänzung für jedes Zuhause und bringt einen Hauch von Natur und Ruhe in jeden Wohnraum.') + [ + 'en-GB' + ]('A small sweet pea scented candle is a charming and delightful addition to any home. The candle is small in size, making it perfect for use on a tabletop or desk. The candle is made from high-quality wax, which is infused with the sweet and delicate fragrance of sweet pea. The scent is fresh and floral, reminiscent of a blooming garden in the springtime. The candle is presented in a glass container, which helps to protect the flame and also adds a decorative touch to the candle. When lit, the candle will release a gentle and pleasant aroma, filling the room with the sweet and soothing fragrance of sweet pea. The scent can help to create a relaxing and calming atmosphere, making it perfect for use during a yoga practice, a bubble bath, or a cozy night in. A sweet pea scented candle is a delightful and charming addition to any home, bringing a touch of nature and tranquility to your living space.') ) .slug( LocalizedStringDraft.presets @@ -80,7 +80,7 @@ const sweetPeaCandle = (): TProductDraftBuilder => KeyReferenceDraft.presets.taxCategory().key(standardTaxCategory.key!) ) .masterVariant( - ProductVariantDraft.presets.sampleDataGoodStore.sweetPeaCandle01() + ProductVariantDraft.presets.sampleDataB2CLifestyle.sweetPeaCandle01() ) .categories([ KeyReferenceDraft.presets.category().key(homeAccentsDraft.key!), diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/tan-queen-bed.spec.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/tan-queen-bed.spec.ts similarity index 99% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/tan-queen-bed.spec.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/tan-queen-bed.spec.ts index 23765af0c..30107396a 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/tan-queen-bed.spec.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/tan-queen-bed.spec.ts @@ -65,7 +65,7 @@ describe(`with tanQueenBed preset`, () => { "w": 5000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Tan_Queen_Bed-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Tan_Queen_Bed-1.1.jpeg", }, ], "key": undefined, @@ -212,7 +212,7 @@ describe(`with tanQueenBed preset`, () => { "width": 5000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Tan_Queen_Bed-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Tan_Queen_Bed-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/tan-queen-bed.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/tan-queen-bed.ts similarity index 84% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/tan-queen-bed.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/tan-queen-bed.ts index d3e8a8d17..29891bd7d 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/tan-queen-bed.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/tan-queen-bed.ts @@ -18,23 +18,24 @@ import * as ProductVariantDraft from '../../../../product-variant/product-varian import * as ProductDraft from '../../../product-draft'; import type { TProductDraftBuilder } from '../../../types'; -const standardTaxCategory = TaxCategoryDraft.presets.sampleDataGoodStore +const standardTaxCategory = TaxCategoryDraft.presets.sampleDataB2CLifestyle .standardTaxCategory() .build(); -const tanQueenBedProductTypeDraft = ProductTypeDraft.presets.sampleDataGoodStore - .furnitureAndDecor() - .build(); +const tanQueenBedProductTypeDraft = + ProductTypeDraft.presets.sampleDataB2CLifestyle + .furnitureAndDecor() + .build(); -const furnitureDraft = CategoryDraft.presets.sampleDataGoodStore +const furnitureDraft = CategoryDraft.presets.sampleDataB2CLifestyle .furniture() .build(); -const bedroomFurnitureDraft = CategoryDraft.presets.sampleDataGoodStore +const bedroomFurnitureDraft = CategoryDraft.presets.sampleDataB2CLifestyle .bedroomFurniture() .build(); -const bedsDraft = CategoryDraft.presets.sampleDataGoodStore +const bedsDraft = CategoryDraft.presets.sampleDataB2CLifestyle .beds() .build(); @@ -52,15 +53,15 @@ const tanQueenBed = (): TProductDraftBuilder => .description( LocalizedStringDraft.presets .empty() - ['en-US']( - 'A queen bed with a padded leather headboard is a stylish and sophisticated piece of furniture. The headboard is tall and wide, featuring a padded design with luxurious leather upholstery that provides a comfortable place to lean against when sitting up in bed. The leather is soft and supple, adding a touch of elegance and refinement to the bed. The bed frame is made of sturdy wood and is finished in a complementary color to the leather headboard. The bed also has a platform base, providing a solid foundation for the mattress while also eliminating the need for a box spring. This type of bed is often favored in contemporary or transitional design styles and can be paired with a range of bedding and decor to create a luxurious and inviting sleeping space. Overall, a queen bed with a padded leather headboard is a statement piece that adds both comfort and style to any bedroom.' - ) - ['de-DE']( - 'Das Queensize-Bett mit gepolstertem Kopfteil aus Leder ist ein stilvolles und raffiniertes Möbelstück. Das Kopfteil ist hoch und breit und bietet ein gepolstertes Design mit luxuriösem Lederbezug, das es zu einen bequemen Platz zum Anlehnen im Bett macht. Das Leder ist weich und geschmeidig und verleiht dem Bett einen Hauch von Eleganz und Raffinesse. Das Bettgestell besteht aus stabilem Holz und ist in passender Farbe zum Lederkopfteil gehalten. Das Bett hat einen Lattenrost, der eine solide Grundlage für die Matratze bietet und dem Komfort eines Boxspringbetts gleichkommt. Diese Art von Bett wird oft in zeitgenössischen oder Übergangsdesignstilen bevorzugt und kann mit einer Reihe von Betttextilien und Dekorationsartikeln kombiniert werden, um einen luxuriösen und einladenden Schlafbereich zu schaffen. Ein Queensize-Bett mit einem gepolsterten Kopfteil aus Leder ist ein Statement-Stück, das jedem Schlafzimmer sowohl Komfort als auch Stil verleiht.' - ) - ['en-GB']( - 'A queen bed with a padded leather headboard is a stylish and sophisticated piece of furniture. The headboard is tall and wide, featuring a padded design with luxurious leather upholstery that provides a comfortable place to lean against when sitting up in bed. The leather is soft and supple, adding a touch of elegance and refinement to the bed. The bed frame is made of sturdy wood and is finished in a complementary color to the leather headboard. The bed also has a platform base, providing a solid foundation for the mattress while also eliminating the need for a box spring. This type of bed is often favored in contemporary or transitional design styles and can be paired with a range of bedding and decor to create a luxurious and inviting sleeping space. Overall, a queen bed with a padded leather headboard is a statement piece that adds both comfort and style to any bedroom.' - ) + [ + 'en-US' + ]('A queen bed with a padded leather headboard is a stylish and sophisticated piece of furniture. The headboard is tall and wide, featuring a padded design with luxurious leather upholstery that provides a comfortable place to lean against when sitting up in bed. The leather is soft and supple, adding a touch of elegance and refinement to the bed. The bed frame is made of sturdy wood and is finished in a complementary color to the leather headboard. The bed also has a platform base, providing a solid foundation for the mattress while also eliminating the need for a box spring. This type of bed is often favored in contemporary or transitional design styles and can be paired with a range of bedding and decor to create a luxurious and inviting sleeping space. Overall, a queen bed with a padded leather headboard is a statement piece that adds both comfort and style to any bedroom.') + [ + 'de-DE' + ]('Das Queensize-Bett mit gepolstertem Kopfteil aus Leder ist ein stilvolles und raffiniertes Möbelstück. Das Kopfteil ist hoch und breit und bietet ein gepolstertes Design mit luxuriösem Lederbezug, das es zu einen bequemen Platz zum Anlehnen im Bett macht. Das Leder ist weich und geschmeidig und verleiht dem Bett einen Hauch von Eleganz und Raffinesse. Das Bettgestell besteht aus stabilem Holz und ist in passender Farbe zum Lederkopfteil gehalten. Das Bett hat einen Lattenrost, der eine solide Grundlage für die Matratze bietet und dem Komfort eines Boxspringbetts gleichkommt. Diese Art von Bett wird oft in zeitgenössischen oder Übergangsdesignstilen bevorzugt und kann mit einer Reihe von Betttextilien und Dekorationsartikeln kombiniert werden, um einen luxuriösen und einladenden Schlafbereich zu schaffen. Ein Queensize-Bett mit einem gepolsterten Kopfteil aus Leder ist ein Statement-Stück, das jedem Schlafzimmer sowohl Komfort als auch Stil verleiht.') + [ + 'en-GB' + ]('A queen bed with a padded leather headboard is a stylish and sophisticated piece of furniture. The headboard is tall and wide, featuring a padded design with luxurious leather upholstery that provides a comfortable place to lean against when sitting up in bed. The leather is soft and supple, adding a touch of elegance and refinement to the bed. The bed frame is made of sturdy wood and is finished in a complementary color to the leather headboard. The bed also has a platform base, providing a solid foundation for the mattress while also eliminating the need for a box spring. This type of bed is often favored in contemporary or transitional design styles and can be paired with a range of bedding and decor to create a luxurious and inviting sleeping space. Overall, a queen bed with a padded leather headboard is a statement piece that adds both comfort and style to any bedroom.') ) .slug( LocalizedStringDraft.presets @@ -79,7 +80,7 @@ const tanQueenBed = (): TProductDraftBuilder => KeyReferenceDraft.presets.taxCategory().key(standardTaxCategory.key!) ) .masterVariant( - ProductVariantDraft.presets.sampleDataGoodStore.tanQueenBed01() + ProductVariantDraft.presets.sampleDataB2CLifestyle.tanQueenBed01() ) .categories([ KeyReferenceDraft.presets.category().key(furnitureDraft.key!), diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/teak-serving-platter.spec.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/teak-serving-platter.spec.ts similarity index 98% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/teak-serving-platter.spec.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/teak-serving-platter.spec.ts index 32bd225b8..cc27e3db5 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/teak-serving-platter.spec.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/teak-serving-platter.spec.ts @@ -65,7 +65,7 @@ describe(`with teakServingPlatter preset`, () => { "w": 4331, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Teak_Serving_Platter-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Teak_Serving_Platter-1.1.jpeg", }, ], "key": undefined, @@ -212,7 +212,7 @@ describe(`with teakServingPlatter preset`, () => { "width": 4331, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Teak_Serving_Platter-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Teak_Serving_Platter-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/teak-serving-platter.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/teak-serving-platter.ts similarity index 81% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/teak-serving-platter.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/teak-serving-platter.ts index 43c54c89d..85a02ab98 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/teak-serving-platter.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/teak-serving-platter.ts @@ -18,28 +18,28 @@ import * as ProductVariantDraft from '../../../../product-variant/product-varian import * as ProductDraft from '../../../product-draft'; import type { TProductDraftBuilder } from '../../../types'; -const standardTaxCategory = TaxCategoryDraft.presets.sampleDataGoodStore +const standardTaxCategory = TaxCategoryDraft.presets.sampleDataB2CLifestyle .standardTaxCategory() .build(); const teakServingPlatterProductTypeDraft = - ProductTypeDraft.presets.sampleDataGoodStore + ProductTypeDraft.presets.sampleDataB2CLifestyle .furnitureAndDecor() .build(); -const cheeseTraysDraft = CategoryDraft.presets.sampleDataGoodStore +const cheeseTraysDraft = CategoryDraft.presets.sampleDataB2CLifestyle .cheeseTrays() .build(); -const servingPlattersDraft = CategoryDraft.presets.sampleDataGoodStore +const servingPlattersDraft = CategoryDraft.presets.sampleDataB2CLifestyle .servingPlatters() .build(); -const kitchenDraft = CategoryDraft.presets.sampleDataGoodStore +const kitchenDraft = CategoryDraft.presets.sampleDataB2CLifestyle .kitchen() .build(); -const servewareDraft = CategoryDraft.presets.sampleDataGoodStore +const servewareDraft = CategoryDraft.presets.sampleDataB2CLifestyle .serveware() .build(); @@ -57,15 +57,15 @@ const teakServingPlatter = (): TProductDraftBuilder => .description( LocalizedStringDraft.presets .empty() - ['en-US']( - 'This wooden serving tray is a versatile and functional item that can be used in a variety of settings. The teak material used in the tray provides a warm and natural aesthetic, adding a touch of rustic charm to any setting. Wooden serving trays are easy to clean and maintain. They can be wiped down with a damp cloth and mild detergent, and should be dried thoroughly after use to prevent any moisture from being trapped inside. Overall, a wooden serving tray is a practical and attractive item that adds a touch of natural elegance to any setting. Its durability, versatility, and range of designs make it a popular choice for serving and displaying food, drinks, and other items.' - ) - ['de-DE']( - 'Dieses Serviertablett aus Holz ist ein vielseitiger und funktionaler Artikel, der in einer Vielzahl von Umgebungen verwendet werden kann. Das für das Tablett verwendete Teakholz sorgt für eine warme und natürliche Ästhetik und verleiht jeder Umgebung einen Hauch von rustikalem Charme. Serviertabletts aus Holz sind leicht zu reinigen und zu pflegen. Sie können mit einem feuchten Tuch und einem milden Reinigungsmittel abgewischt werden und sollten nach Gebrauch gründlich getrocknet werden, um zu verhindern, dass Feuchtigkeit im Inneren eingeschlossen wird. Ein Serviertablett aus Holz ist ein praktisches und attraktives Element, das jedem Ambiente einen Hauch von natürlicher Eleganz verleiht. Seine Langlebigkeit und Designvielfalt machen es zu einer beliebten Wahl zum Servieren und Präsentieren von Speisen, Getränken und Gegenständen.' - ) - ['en-GB']( - 'This wooden serving tray is a versatile and functional item that can be used in a variety of settings. The teak material used in the tray provides a warm and natural aesthetic, adding a touch of rustic charm to any setting. Wooden serving trays are easy to clean and maintain. They can be wiped down with a damp cloth and mild detergent, and should be dried thoroughly after use to prevent any moisture from being trapped inside. Overall, a wooden serving tray is a practical and attractive item that adds a touch of natural elegance to any setting. Its durability, versatility, and range of designs make it a popular choice for serving and displaying food, drinks, and other items.' - ) + [ + 'en-US' + ]('This wooden serving tray is a versatile and functional item that can be used in a variety of settings. The teak material used in the tray provides a warm and natural aesthetic, adding a touch of rustic charm to any setting. Wooden serving trays are easy to clean and maintain. They can be wiped down with a damp cloth and mild detergent, and should be dried thoroughly after use to prevent any moisture from being trapped inside. Overall, a wooden serving tray is a practical and attractive item that adds a touch of natural elegance to any setting. Its durability, versatility, and range of designs make it a popular choice for serving and displaying food, drinks, and other items.') + [ + 'de-DE' + ]('Dieses Serviertablett aus Holz ist ein vielseitiger und funktionaler Artikel, der in einer Vielzahl von Umgebungen verwendet werden kann. Das für das Tablett verwendete Teakholz sorgt für eine warme und natürliche Ästhetik und verleiht jeder Umgebung einen Hauch von rustikalem Charme. Serviertabletts aus Holz sind leicht zu reinigen und zu pflegen. Sie können mit einem feuchten Tuch und einem milden Reinigungsmittel abgewischt werden und sollten nach Gebrauch gründlich getrocknet werden, um zu verhindern, dass Feuchtigkeit im Inneren eingeschlossen wird. Ein Serviertablett aus Holz ist ein praktisches und attraktives Element, das jedem Ambiente einen Hauch von natürlicher Eleganz verleiht. Seine Langlebigkeit und Designvielfalt machen es zu einer beliebten Wahl zum Servieren und Präsentieren von Speisen, Getränken und Gegenständen.') + [ + 'en-GB' + ]('This wooden serving tray is a versatile and functional item that can be used in a variety of settings. The teak material used in the tray provides a warm and natural aesthetic, adding a touch of rustic charm to any setting. Wooden serving trays are easy to clean and maintain. They can be wiped down with a damp cloth and mild detergent, and should be dried thoroughly after use to prevent any moisture from being trapped inside. Overall, a wooden serving tray is a practical and attractive item that adds a touch of natural elegance to any setting. Its durability, versatility, and range of designs make it a popular choice for serving and displaying food, drinks, and other items.') ) .slug( LocalizedStringDraft.presets @@ -84,7 +84,7 @@ const teakServingPlatter = (): TProductDraftBuilder => KeyReferenceDraft.presets.taxCategory().key(standardTaxCategory.key!) ) .masterVariant( - ProductVariantDraft.presets.sampleDataGoodStore.teakServingPlatter01() + ProductVariantDraft.presets.sampleDataB2CLifestyle.teakServingPlatter01() ) .categories([ KeyReferenceDraft.presets.category().key(cheeseTraysDraft.key!), diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/traditional-armchair.spec.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/traditional-armchair.spec.ts similarity index 96% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/traditional-armchair.spec.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/traditional-armchair.spec.ts index 25eb50023..025433ca4 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/traditional-armchair.spec.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/traditional-armchair.spec.ts @@ -66,7 +66,7 @@ describe(`with traditionalArmchair preset`, () => { "w": 2500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Traditional_Armchair-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Traditional_Armchair-1.1.jpeg", }, { "dimensions": { @@ -74,7 +74,7 @@ describe(`with traditionalArmchair preset`, () => { "w": 2500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Traditional_Armchair-1.3.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Traditional_Armchair-1.3.jpeg", }, { "dimensions": { @@ -82,7 +82,7 @@ describe(`with traditionalArmchair preset`, () => { "w": 5760, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Traditional_Armchair-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Traditional_Armchair-1.2.jpeg", }, ], "key": undefined, @@ -233,7 +233,7 @@ describe(`with traditionalArmchair preset`, () => { "width": 2500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Traditional_Armchair-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Traditional_Armchair-1.1.jpeg", }, { "dimensions": { @@ -241,7 +241,7 @@ describe(`with traditionalArmchair preset`, () => { "width": 2500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Traditional_Armchair-1.3.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Traditional_Armchair-1.3.jpeg", }, { "dimensions": { @@ -249,7 +249,7 @@ describe(`with traditionalArmchair preset`, () => { "width": 5760, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Traditional_Armchair-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Traditional_Armchair-1.2.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/traditional-armchair.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/traditional-armchair.ts similarity index 81% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/traditional-armchair.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/traditional-armchair.ts index 962e99c6c..66f56abf8 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/traditional-armchair.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/traditional-armchair.ts @@ -18,32 +18,32 @@ import * as ProductVariantDraft from '../../../../product-variant/product-varian import * as ProductDraft from '../../../product-draft'; import type { TProductDraftBuilder } from '../../../types'; -const standardTaxCategory = TaxCategoryDraft.presets.sampleDataGoodStore +const standardTaxCategory = TaxCategoryDraft.presets.sampleDataB2CLifestyle .standardTaxCategory() .build(); const traditionalArmchairProductTypeDraft = - ProductTypeDraft.presets.sampleDataGoodStore + ProductTypeDraft.presets.sampleDataB2CLifestyle .furnitureAndDecor() .build(); -const livingRoomFurnitureDraft = CategoryDraft.presets.sampleDataGoodStore +const livingRoomFurnitureDraft = CategoryDraft.presets.sampleDataB2CLifestyle .livingRoomFurniture() .build(); -const furnitureDraft = CategoryDraft.presets.sampleDataGoodStore +const furnitureDraft = CategoryDraft.presets.sampleDataB2CLifestyle .furniture() .build(); -const theTraditionalistDraft = CategoryDraft.presets.sampleDataGoodStore +const theTraditionalistDraft = CategoryDraft.presets.sampleDataB2CLifestyle .theTraditionalist() .build(); -const armchairsDraft = CategoryDraft.presets.sampleDataGoodStore +const armchairsDraft = CategoryDraft.presets.sampleDataB2CLifestyle .armchairs() .build(); -const collectionsDraft = CategoryDraft.presets.sampleDataGoodStore +const collectionsDraft = CategoryDraft.presets.sampleDataB2CLifestyle .collections() .build(); @@ -61,15 +61,15 @@ const traditionalArmchair = (): TProductDraftBuilder => .description( LocalizedStringDraft.presets .empty() - ['en-US']( - 'A traditional armchair with a geometric pattern has a classic design with a touch of modern flair. The chair has a wooden frame and legs. The chair has a high back, providing a comfortable place to sit and relax. The cushioning is plush, offering a soft feel to the seat and backrest. The geometric pattern adds a visual interest and texture to the overall look of the chair, providing a subtle yet eye-catching element to the decor of the room. Overall, a traditional armchair with a geometric pattern could be a great addition to a living room, study, or bedroom, offering both comfort and style to the space.' - ) - ['de-DE']( - 'Der traditionelle Sessel mit geometrischem Muster überzeugt mit einem klassischen Design und einem Hauch von modernem Flair. Rahmen und Beine des Stuhls sind aus Holz gefertigt. Er hat eine hohe Rückenlehne, die einen bequemen Platz zum Sitzen und Entspannen bietet. Die Polsterung ist weich und bietet so Komfort im Sitz- und Rückenbereich. Das geometrische Muster verleiht dem Gesamtbild des Stuhls einen visuellen Twist. Zusammen mit seiner Textur, verleiht er dem Dekor des Raums ein subtiles und dennoch auffälliges Element. Dieser traditionelle Sessel mit geometrischem Muster ist eine großartige Ergänzung für den Wohn-, Arbeits- oder Schlafbereich und bereichert den Raum sowohl um Komfort als auch um Stil.' - ) - ['en-GB']( - 'A traditional armchair with a geometric pattern has a classic design with a touch of modern flair. The chair has a wooden frame and legs. The chair has a high back, providing a comfortable place to sit and relax. The cushioning is plush, offering a soft feel to the seat and backrest. The geometric pattern adds a visual interest and texture to the overall look of the chair, providing a subtle yet eye-catching element to the decor of the room. Overall, a traditional armchair with a geometric pattern could be a great addition to a living room, study, or bedroom, offering both comfort and style to the space.' - ) + [ + 'en-US' + ]('A traditional armchair with a geometric pattern has a classic design with a touch of modern flair. The chair has a wooden frame and legs. The chair has a high back, providing a comfortable place to sit and relax. The cushioning is plush, offering a soft feel to the seat and backrest. The geometric pattern adds a visual interest and texture to the overall look of the chair, providing a subtle yet eye-catching element to the decor of the room. Overall, a traditional armchair with a geometric pattern could be a great addition to a living room, study, or bedroom, offering both comfort and style to the space.') + [ + 'de-DE' + ]('Der traditionelle Sessel mit geometrischem Muster überzeugt mit einem klassischen Design und einem Hauch von modernem Flair. Rahmen und Beine des Stuhls sind aus Holz gefertigt. Er hat eine hohe Rückenlehne, die einen bequemen Platz zum Sitzen und Entspannen bietet. Die Polsterung ist weich und bietet so Komfort im Sitz- und Rückenbereich. Das geometrische Muster verleiht dem Gesamtbild des Stuhls einen visuellen Twist. Zusammen mit seiner Textur, verleiht er dem Dekor des Raums ein subtiles und dennoch auffälliges Element. Dieser traditionelle Sessel mit geometrischem Muster ist eine großartige Ergänzung für den Wohn-, Arbeits- oder Schlafbereich und bereichert den Raum sowohl um Komfort als auch um Stil.') + [ + 'en-GB' + ]('A traditional armchair with a geometric pattern has a classic design with a touch of modern flair. The chair has a wooden frame and legs. The chair has a high back, providing a comfortable place to sit and relax. The cushioning is plush, offering a soft feel to the seat and backrest. The geometric pattern adds a visual interest and texture to the overall look of the chair, providing a subtle yet eye-catching element to the decor of the room. Overall, a traditional armchair with a geometric pattern could be a great addition to a living room, study, or bedroom, offering both comfort and style to the space.') ) .slug( LocalizedStringDraft.presets @@ -88,7 +88,7 @@ const traditionalArmchair = (): TProductDraftBuilder => KeyReferenceDraft.presets.taxCategory().key(standardTaxCategory.key!) ) .masterVariant( - ProductVariantDraft.presets.sampleDataGoodStore.traditionalArmchair01() + ProductVariantDraft.presets.sampleDataB2CLifestyle.traditionalArmchair01() ) .categories([ KeyReferenceDraft.presets.category().key(livingRoomFurnitureDraft.key!), diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/traditional-l-seater-sofa.spec.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/traditional-l-seater-sofa.spec.ts similarity index 97% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/traditional-l-seater-sofa.spec.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/traditional-l-seater-sofa.spec.ts index 9f93f3ec4..321401223 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/traditional-l-seater-sofa.spec.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/traditional-l-seater-sofa.spec.ts @@ -80,7 +80,7 @@ describe(`with traditionalLSeaterSofa preset`, () => { "w": 2500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Traditional_L_Seater_Sofa-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Traditional_L_Seater_Sofa-1.2.jpeg", }, { "dimensions": { @@ -88,7 +88,7 @@ describe(`with traditionalLSeaterSofa preset`, () => { "w": 2500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Traditional_L_Seater_Sofa-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Traditional_L_Seater_Sofa-1.1.jpeg", }, { "dimensions": { @@ -96,7 +96,7 @@ describe(`with traditionalLSeaterSofa preset`, () => { "w": 5760, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Traditional_L_Seater_Sofa-1.3.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Traditional_L_Seater_Sofa-1.3.jpeg", }, ], "key": undefined, @@ -251,7 +251,7 @@ describe(`with traditionalLSeaterSofa preset`, () => { "width": 2500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Traditional_L_Seater_Sofa-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Traditional_L_Seater_Sofa-1.2.jpeg", }, { "dimensions": { @@ -259,7 +259,7 @@ describe(`with traditionalLSeaterSofa preset`, () => { "width": 2500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Traditional_L_Seater_Sofa-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Traditional_L_Seater_Sofa-1.1.jpeg", }, { "dimensions": { @@ -267,7 +267,7 @@ describe(`with traditionalLSeaterSofa preset`, () => { "width": 5760, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Traditional_L_Seater_Sofa-1.3.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Traditional_L_Seater_Sofa-1.3.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/traditional-l-seater-sofa.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/traditional-l-seater-sofa.ts similarity index 87% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/traditional-l-seater-sofa.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/traditional-l-seater-sofa.ts index 3ae039901..4c69ee5ac 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/traditional-l-seater-sofa.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/traditional-l-seater-sofa.ts @@ -18,32 +18,32 @@ import * as ProductVariantDraft from '../../../../product-variant/product-varian import * as ProductDraft from '../../../product-draft'; import type { TProductDraftBuilder } from '../../../types'; -const standardTaxCategory = TaxCategoryDraft.presets.sampleDataGoodStore +const standardTaxCategory = TaxCategoryDraft.presets.sampleDataB2CLifestyle .standardTaxCategory() .build(); const traditionalLSeaterSofaProductTypeDraft = - ProductTypeDraft.presets.sampleDataGoodStore + ProductTypeDraft.presets.sampleDataB2CLifestyle .furnitureAndDecor() .build(); -const livingRoomFurnitureDraft = CategoryDraft.presets.sampleDataGoodStore +const livingRoomFurnitureDraft = CategoryDraft.presets.sampleDataB2CLifestyle .livingRoomFurniture() .build(); -const sofasDraft = CategoryDraft.presets.sampleDataGoodStore +const sofasDraft = CategoryDraft.presets.sampleDataB2CLifestyle .sofas() .build(); -const furnitureDraft = CategoryDraft.presets.sampleDataGoodStore +const furnitureDraft = CategoryDraft.presets.sampleDataB2CLifestyle .furniture() .build(); -const theTraditionalistDraft = CategoryDraft.presets.sampleDataGoodStore +const theTraditionalistDraft = CategoryDraft.presets.sampleDataB2CLifestyle .theTraditionalist() .build(); -const collectionsDraft = CategoryDraft.presets.sampleDataGoodStore +const collectionsDraft = CategoryDraft.presets.sampleDataB2CLifestyle .collections() .build(); @@ -61,15 +61,15 @@ const traditionalLSeaterSofa = (): TProductDraftBuilder => .description( LocalizedStringDraft.presets .empty() - ['en-US']( - 'A traditional L-shaped sofa is a comfortable and practical piece of furniture. The sofa is upholstered in a durable and high-quality fabric and features a classic and timeless design that can fit well with a variety of decor styles. The sofa provides ample room for multiple people to sit comfortably. It also features a chaise lounge or a place to stretch out and relax. The L-shape design of the sofa maximizes seating space while also providing a comfortable and inviting space to relax and unwind. The sofa features padded armrests and backrests, providing ample support and comfort for those who sit on it. The cushions are made of high-density foam, ensuring that they are comfortable and retain their shape over time. The sofa also comes with matching throw pillows, adding to the comfort and style of the piece. Overall, a traditional L-shaped sofa is a comfortable and practical piece of furniture that can add both style and functionality to any living room. Its classic and timeless design, comfortable cushions, and ample seating space make it a popular choice for families and anyone who loves to entertain guests in their home.' - ) - ['de-DE']( - 'Das traditionelle Ecksofa ist ein bequemes und praktisches Möbelstück. Das Sofa ist mit einem strapazierfähigen und hochwertigen Baumwollstoff bezogen und überzeugt mit einem klassischen und zeitlosen Design, das gut zu einer Vielzahl von Einrichtungsstilen passt. Das Sofa bietet ausreichend Platz und Komfort für mehrere Personen. Es kann wie eine Chaiselongue genutzt werden und bietet einen Platz zum Ausstrecken und Entspannen. Das L-förmige Design des Sofas maximiert den Sitzplatz und bietet gleichzeitig einen komfortablen und einladenden Ort zum Entspannen und Erholen. Das Sofa ist mit gepolsterten Armlehnen und Rückenlehnen ausgestattet, die dem Sitzenden ausreichend Halt und Komfort bieten. Die Kissen bestehen aus hochdichtem Schaumstoff, der die Form hält und das gute Sitzgefühl wahrt. Das Sofa wird darüber hinaus mit passenden Wurfkissen geliefert, die den Komfort und Stil des Sofas weiter unterstützen. Das traditionelle L-förmiges Sofa ist ein bequemes und praktisches Möbelstück, das jedem Wohnzimmer sowohl Stil als auch Funktionalität verleiht. Sein klassisches und zeitloses Design, die bequemen Kissen und die großzügige Sitzfläche machen es zu einer beliebten Wahl für Familien und alle, die gerne Gäste in ihrem Zuhause zu empfangen.' - ) - ['en-GB']( - 'A traditional L-shaped sofa is a comfortable and practical piece of furniture. The sofa is upholstered in a durable and high-quality fabric and features a classic and timeless design that can fit well with a variety of decor styles. The sofa provides ample room for multiple people to sit comfortably. It also features a chaise lounge or a place to stretch out and relax. The L-shape design of the sofa maximizes seating space while also providing a comfortable and inviting space to relax and unwind. The sofa features padded armrests and backrests, providing ample support and comfort for those who sit on it. The cushions are made of high-density foam, ensuring that they are comfortable and retain their shape over time. The sofa also comes with matching throw pillows, adding to the comfort and style of the piece. Overall, a traditional L-shaped sofa is a comfortable and practical piece of furniture that can add both style and functionality to any living room. Its classic and timeless design, comfortable cushions, and ample seating space make it a popular choice for families and anyone who loves to entertain guests in their home.' - ) + [ + 'en-US' + ]('A traditional L-shaped sofa is a comfortable and practical piece of furniture. The sofa is upholstered in a durable and high-quality fabric and features a classic and timeless design that can fit well with a variety of decor styles. The sofa provides ample room for multiple people to sit comfortably. It also features a chaise lounge or a place to stretch out and relax. The L-shape design of the sofa maximizes seating space while also providing a comfortable and inviting space to relax and unwind. The sofa features padded armrests and backrests, providing ample support and comfort for those who sit on it. The cushions are made of high-density foam, ensuring that they are comfortable and retain their shape over time. The sofa also comes with matching throw pillows, adding to the comfort and style of the piece. Overall, a traditional L-shaped sofa is a comfortable and practical piece of furniture that can add both style and functionality to any living room. Its classic and timeless design, comfortable cushions, and ample seating space make it a popular choice for families and anyone who loves to entertain guests in their home.') + [ + 'de-DE' + ]('Das traditionelle Ecksofa ist ein bequemes und praktisches Möbelstück. Das Sofa ist mit einem strapazierfähigen und hochwertigen Baumwollstoff bezogen und überzeugt mit einem klassischen und zeitlosen Design, das gut zu einer Vielzahl von Einrichtungsstilen passt. Das Sofa bietet ausreichend Platz und Komfort für mehrere Personen. Es kann wie eine Chaiselongue genutzt werden und bietet einen Platz zum Ausstrecken und Entspannen. Das L-förmige Design des Sofas maximiert den Sitzplatz und bietet gleichzeitig einen komfortablen und einladenden Ort zum Entspannen und Erholen. Das Sofa ist mit gepolsterten Armlehnen und Rückenlehnen ausgestattet, die dem Sitzenden ausreichend Halt und Komfort bieten. Die Kissen bestehen aus hochdichtem Schaumstoff, der die Form hält und das gute Sitzgefühl wahrt. Das Sofa wird darüber hinaus mit passenden Wurfkissen geliefert, die den Komfort und Stil des Sofas weiter unterstützen. Das traditionelle L-förmiges Sofa ist ein bequemes und praktisches Möbelstück, das jedem Wohnzimmer sowohl Stil als auch Funktionalität verleiht. Sein klassisches und zeitloses Design, die bequemen Kissen und die großzügige Sitzfläche machen es zu einer beliebten Wahl für Familien und alle, die gerne Gäste in ihrem Zuhause zu empfangen.') + [ + 'en-GB' + ]('A traditional L-shaped sofa is a comfortable and practical piece of furniture. The sofa is upholstered in a durable and high-quality fabric and features a classic and timeless design that can fit well with a variety of decor styles. The sofa provides ample room for multiple people to sit comfortably. It also features a chaise lounge or a place to stretch out and relax. The L-shape design of the sofa maximizes seating space while also providing a comfortable and inviting space to relax and unwind. The sofa features padded armrests and backrests, providing ample support and comfort for those who sit on it. The cushions are made of high-density foam, ensuring that they are comfortable and retain their shape over time. The sofa also comes with matching throw pillows, adding to the comfort and style of the piece. Overall, a traditional L-shaped sofa is a comfortable and practical piece of furniture that can add both style and functionality to any living room. Its classic and timeless design, comfortable cushions, and ample seating space make it a popular choice for families and anyone who loves to entertain guests in their home.') ) .slug( LocalizedStringDraft.presets @@ -88,7 +88,7 @@ const traditionalLSeaterSofa = (): TProductDraftBuilder => KeyReferenceDraft.presets.taxCategory().key(standardTaxCategory.key!) ) .masterVariant( - ProductVariantDraft.presets.sampleDataGoodStore.traditionalLSeaterSofa01() + ProductVariantDraft.presets.sampleDataB2CLifestyle.traditionalLSeaterSofa01() ) .categories([ KeyReferenceDraft.presets.category().key(livingRoomFurnitureDraft.key!), diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/traditional-three-seater-sofa.spec.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/traditional-three-seater-sofa.spec.ts similarity index 97% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/traditional-three-seater-sofa.spec.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/traditional-three-seater-sofa.spec.ts index d603a7c7c..f79d8cce7 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/traditional-three-seater-sofa.spec.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/traditional-three-seater-sofa.spec.ts @@ -84,7 +84,7 @@ describe(`with traditionalThreeSeaterSofa preset`, () => { "w": 2500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Traditional_Three_Seater_Sofa-1.3.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Traditional_Three_Seater_Sofa-1.3.jpeg", }, { "dimensions": { @@ -92,7 +92,7 @@ describe(`with traditionalThreeSeaterSofa preset`, () => { "w": 2500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Traditional_Three_Seater_Sofa-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Traditional_Three_Seater_Sofa-1.1.jpeg", }, { "dimensions": { @@ -100,7 +100,7 @@ describe(`with traditionalThreeSeaterSofa preset`, () => { "w": 5760, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Traditional_Three_Seater_Sofa-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Traditional_Three_Seater_Sofa-1.2.jpeg", }, ], "key": undefined, @@ -259,7 +259,7 @@ describe(`with traditionalThreeSeaterSofa preset`, () => { "width": 2500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Traditional_Three_Seater_Sofa-1.3.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Traditional_Three_Seater_Sofa-1.3.jpeg", }, { "dimensions": { @@ -267,7 +267,7 @@ describe(`with traditionalThreeSeaterSofa preset`, () => { "width": 2500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Traditional_Three_Seater_Sofa-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Traditional_Three_Seater_Sofa-1.1.jpeg", }, { "dimensions": { @@ -275,7 +275,7 @@ describe(`with traditionalThreeSeaterSofa preset`, () => { "width": 5760, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Traditional_Three_Seater_Sofa-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Traditional_Three_Seater_Sofa-1.2.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/traditional-three-seater-sofa.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/traditional-three-seater-sofa.ts similarity index 87% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/traditional-three-seater-sofa.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/traditional-three-seater-sofa.ts index 4c0bc5dc4..ec3701561 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/traditional-three-seater-sofa.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/traditional-three-seater-sofa.ts @@ -18,36 +18,36 @@ import * as ProductVariantDraft from '../../../../product-variant/product-varian import * as ProductDraft from '../../../product-draft'; import type { TProductDraftBuilder } from '../../../types'; -const standardTaxCategory = TaxCategoryDraft.presets.sampleDataGoodStore +const standardTaxCategory = TaxCategoryDraft.presets.sampleDataB2CLifestyle .standardTaxCategory() .build(); const traditionalThreeSeaterSofaProductTypeDraft = - ProductTypeDraft.presets.sampleDataGoodStore + ProductTypeDraft.presets.sampleDataB2CLifestyle .furnitureAndDecor() .build(); -const livingRoomFurnitureDraft = CategoryDraft.presets.sampleDataGoodStore +const livingRoomFurnitureDraft = CategoryDraft.presets.sampleDataB2CLifestyle .livingRoomFurniture() .build(); -const sofasDraft = CategoryDraft.presets.sampleDataGoodStore +const sofasDraft = CategoryDraft.presets.sampleDataB2CLifestyle .sofas() .build(); -const furnitureDraft = CategoryDraft.presets.sampleDataGoodStore +const furnitureDraft = CategoryDraft.presets.sampleDataB2CLifestyle .furniture() .build(); -const newArrivalsDraft = CategoryDraft.presets.sampleDataGoodStore +const newArrivalsDraft = CategoryDraft.presets.sampleDataB2CLifestyle .newArrivals() .build(); -const theTraditionalistDraft = CategoryDraft.presets.sampleDataGoodStore +const theTraditionalistDraft = CategoryDraft.presets.sampleDataB2CLifestyle .theTraditionalist() .build(); -const collectionsDraft = CategoryDraft.presets.sampleDataGoodStore +const collectionsDraft = CategoryDraft.presets.sampleDataB2CLifestyle .collections() .build(); @@ -65,15 +65,15 @@ const traditionalThreeSeaterSofa = (): TProductDraftBuilder => .description( LocalizedStringDraft.presets .empty() - ['en-US']( - 'A traditional three-seater sofa is a classic and elegant piece of furniture that can add a touch of sophistication to any living room or sitting area. The sofa features a sturdy wooden frame that is designed to provide durability and stability, ensuring that the sofa can withstand regular use over time. The sofa is upholstered in a rich emerald-colored fabric, providing a vibrant and eye-catching focal point in the room. The fabric is soft and comfortable to the touch, allowing you to relax and unwind in style. The sofa is equipped with two large cushions, which are filled with a high-quality foam material, providing excellent support and comfort for extended periods of sitting. The backrest and armrests of the sofa are filled with a soft and plush material, allowing you to sink into the sofa and relax after a long day. The traditional three-seater sofa is a versatile piece of furniture that can complement a range of interior design styles, from classic and traditional to more modern and eclectic. It can be paired with a variety of decorative accents, such as pillows, throws, and rugs, to create a cohesive and stylish living space. Overall, a traditional three-seater sofa in emerald fabric is a timeless and elegant piece of furniture that can provide both comfort and style to any living room or sitting area. Its classic design, high-quality materials, and practical features make it a functional and stylish choice for any home.' - ) - ['de-DE']( - 'Das traditionelle Dreisitzer-Sofa ist ein klassisches und elegantes Möbelstück, das jedem Wohnzimmer oder Sitzbereich einen Hauch von Raffinesse verleiht. Das Sofa ist mit einem robusten Holzrahmen konzipiert, der auf Langlebigkeit und Stabilität ausgelegt ist und sicherstellt, dass das Sofa einer regelmäßigen Nutzung im Laufe der Zeit standhält. Das Sofa ist mit einem smaragdfarbenem Stoff bezogen - ein wahrer Hingucker in jedem Raum. Der Stoff fühlt sich weich und angenehm an, sodass dem stilvollen Entspannen nichts mehr im Wege steht. Das Sofa ist mit zwei großen Kissen ausgestattet, die mit hochwertigem Schaumstoffmaterial gefüllt sind und bei längerem Sitzen hervorragenden Halt und Komfort bieten. Die Rückenlehne und die Armlehnen des Sofas sind mit einem weichen und plüschigen Material gefüllt, sodass Sie nach einem langen Tag in das Sofa sinken und sich entspannen können. Das traditionelle Dreisitzer-Sofa ist ein vielseitiges Möbelstück, das eine Reihe von Einrichtungsstilen ergänzen kann, von klassisch und traditionell bis hin zu modern. Es kann mit einer Vielzahl von dekorativen Akzenten wie Kissen, Überwürfen und Teppichen kombiniert werden, um einen zusammenhängenden und stilvollen Wohnraum zu schaffen. Das traditionelle Dreisitzer-Sofa aus smaragdgrünem Stoff ist ein zeitloses und elegantes Möbelstück, das jedem Wohnzimmer oder Sitzbereich sowohl Komfort als auch Stil verleiht. Sein klassisches Design, die hochwertigen Materialien und seine Funktionalität machen es zu einer funktionalen und stilvollen Wahl für jedes Zuhause.' - ) - ['en-GB']( - 'A traditional three-seater sofa is a classic and elegant piece of furniture that can add a touch of sophistication to any living room or sitting area. The sofa features a sturdy wooden frame that is designed to provide durability and stability, ensuring that the sofa can withstand regular use over time. The sofa is upholstered in a rich emerald-colored fabric, providing a vibrant and eye-catching focal point in the room. The fabric is soft and comfortable to the touch, allowing you to relax and unwind in style. The sofa is equipped with two large cushions, which are filled with a high-quality foam material, providing excellent support and comfort for extended periods of sitting. The backrest and armrests of the sofa are filled with a soft and plush material, allowing you to sink into the sofa and relax after a long day. The traditional three-seater sofa is a versatile piece of furniture that can complement a range of interior design styles, from classic and traditional to more modern and eclectic. It can be paired with a variety of decorative accents, such as pillows, throws, and rugs, to create a cohesive and stylish living space. Overall, a traditional three-seater sofa in emerald fabric is a timeless and elegant piece of furniture that can provide both comfort and style to any living room or sitting area. Its classic design, high-quality materials, and practical features make it a functional and stylish choice for any home.' - ) + [ + 'en-US' + ]('A traditional three-seater sofa is a classic and elegant piece of furniture that can add a touch of sophistication to any living room or sitting area. The sofa features a sturdy wooden frame that is designed to provide durability and stability, ensuring that the sofa can withstand regular use over time. The sofa is upholstered in a rich emerald-colored fabric, providing a vibrant and eye-catching focal point in the room. The fabric is soft and comfortable to the touch, allowing you to relax and unwind in style. The sofa is equipped with two large cushions, which are filled with a high-quality foam material, providing excellent support and comfort for extended periods of sitting. The backrest and armrests of the sofa are filled with a soft and plush material, allowing you to sink into the sofa and relax after a long day. The traditional three-seater sofa is a versatile piece of furniture that can complement a range of interior design styles, from classic and traditional to more modern and eclectic. It can be paired with a variety of decorative accents, such as pillows, throws, and rugs, to create a cohesive and stylish living space. Overall, a traditional three-seater sofa in emerald fabric is a timeless and elegant piece of furniture that can provide both comfort and style to any living room or sitting area. Its classic design, high-quality materials, and practical features make it a functional and stylish choice for any home.') + [ + 'de-DE' + ]('Das traditionelle Dreisitzer-Sofa ist ein klassisches und elegantes Möbelstück, das jedem Wohnzimmer oder Sitzbereich einen Hauch von Raffinesse verleiht. Das Sofa ist mit einem robusten Holzrahmen konzipiert, der auf Langlebigkeit und Stabilität ausgelegt ist und sicherstellt, dass das Sofa einer regelmäßigen Nutzung im Laufe der Zeit standhält. Das Sofa ist mit einem smaragdfarbenem Stoff bezogen - ein wahrer Hingucker in jedem Raum. Der Stoff fühlt sich weich und angenehm an, sodass dem stilvollen Entspannen nichts mehr im Wege steht. Das Sofa ist mit zwei großen Kissen ausgestattet, die mit hochwertigem Schaumstoffmaterial gefüllt sind und bei längerem Sitzen hervorragenden Halt und Komfort bieten. Die Rückenlehne und die Armlehnen des Sofas sind mit einem weichen und plüschigen Material gefüllt, sodass Sie nach einem langen Tag in das Sofa sinken und sich entspannen können. Das traditionelle Dreisitzer-Sofa ist ein vielseitiges Möbelstück, das eine Reihe von Einrichtungsstilen ergänzen kann, von klassisch und traditionell bis hin zu modern. Es kann mit einer Vielzahl von dekorativen Akzenten wie Kissen, Überwürfen und Teppichen kombiniert werden, um einen zusammenhängenden und stilvollen Wohnraum zu schaffen. Das traditionelle Dreisitzer-Sofa aus smaragdgrünem Stoff ist ein zeitloses und elegantes Möbelstück, das jedem Wohnzimmer oder Sitzbereich sowohl Komfort als auch Stil verleiht. Sein klassisches Design, die hochwertigen Materialien und seine Funktionalität machen es zu einer funktionalen und stilvollen Wahl für jedes Zuhause.') + [ + 'en-GB' + ]('A traditional three-seater sofa is a classic and elegant piece of furniture that can add a touch of sophistication to any living room or sitting area. The sofa features a sturdy wooden frame that is designed to provide durability and stability, ensuring that the sofa can withstand regular use over time. The sofa is upholstered in a rich emerald-colored fabric, providing a vibrant and eye-catching focal point in the room. The fabric is soft and comfortable to the touch, allowing you to relax and unwind in style. The sofa is equipped with two large cushions, which are filled with a high-quality foam material, providing excellent support and comfort for extended periods of sitting. The backrest and armrests of the sofa are filled with a soft and plush material, allowing you to sink into the sofa and relax after a long day. The traditional three-seater sofa is a versatile piece of furniture that can complement a range of interior design styles, from classic and traditional to more modern and eclectic. It can be paired with a variety of decorative accents, such as pillows, throws, and rugs, to create a cohesive and stylish living space. Overall, a traditional three-seater sofa in emerald fabric is a timeless and elegant piece of furniture that can provide both comfort and style to any living room or sitting area. Its classic design, high-quality materials, and practical features make it a functional and stylish choice for any home.') ) .slug( LocalizedStringDraft.presets @@ -92,7 +92,7 @@ const traditionalThreeSeaterSofa = (): TProductDraftBuilder => KeyReferenceDraft.presets.taxCategory().key(standardTaxCategory.key!) ) .masterVariant( - ProductVariantDraft.presets.sampleDataGoodStore.traditionalThreeSeaterSofa01() + ProductVariantDraft.presets.sampleDataB2CLifestyle.traditionalThreeSeaterSofa01() ) .categories([ KeyReferenceDraft.presets.category().key(livingRoomFurnitureDraft.key!), diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/travel-coffee-mug.spec.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/travel-coffee-mug.spec.ts similarity index 99% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/travel-coffee-mug.spec.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/travel-coffee-mug.spec.ts index 7c0a019ef..fa6a53385 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/travel-coffee-mug.spec.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/travel-coffee-mug.spec.ts @@ -68,7 +68,7 @@ describe(`with travelCoffeeMug preset`, () => { "w": 4000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Travel_Coffee_Mug-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Travel_Coffee_Mug-1.1.jpeg", }, ], "key": undefined, @@ -215,7 +215,7 @@ describe(`with travelCoffeeMug preset`, () => { "width": 4000, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Travel_Coffee_Mug-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Travel_Coffee_Mug-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/travel-coffee-mug.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/travel-coffee-mug.ts similarity index 84% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/travel-coffee-mug.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/travel-coffee-mug.ts index 134134277..148a2818c 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/travel-coffee-mug.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/travel-coffee-mug.ts @@ -18,24 +18,24 @@ import * as ProductVariantDraft from '../../../../product-variant/product-varian import * as ProductDraft from '../../../product-draft'; import type { TProductDraftBuilder } from '../../../types'; -const standardTaxCategory = TaxCategoryDraft.presets.sampleDataGoodStore +const standardTaxCategory = TaxCategoryDraft.presets.sampleDataB2CLifestyle .standardTaxCategory() .build(); const travelCoffeeMugProductTypeDraft = - ProductTypeDraft.presets.sampleDataGoodStore + ProductTypeDraft.presets.sampleDataB2CLifestyle .furnitureAndDecor() .build(); -const glasswareDraft = CategoryDraft.presets.sampleDataGoodStore +const glasswareDraft = CategoryDraft.presets.sampleDataB2CLifestyle .glassware() .build(); -const barAndGlasswareDraft = CategoryDraft.presets.sampleDataGoodStore +const barAndGlasswareDraft = CategoryDraft.presets.sampleDataB2CLifestyle .barAndGlassware() .build(); -const kitchenDraft = CategoryDraft.presets.sampleDataGoodStore +const kitchenDraft = CategoryDraft.presets.sampleDataB2CLifestyle .kitchen() .build(); @@ -53,15 +53,15 @@ const travelCoffeeMug = (): TProductDraftBuilder => .description( LocalizedStringDraft.presets .empty() - ['en-US']( - 'The Travel Coffee Mug is designed for use on the go. The mug has a capacity of around 12 to 20 ounces, and is designed to keep beverages hot or cold for an extended period of time. This is achieved through the use of insulation, which helps to maintain the temperature of the drink inside the mug. The Travel Coffee Mug has a variety of features, including a spill-proof lid that can be securely fastened to prevent leaks or spills and a handle or grip that makes it easy to hold, even while walking or driving. This travel coffee mug is designed to fit into standard cup holders in cars. Overall, this travel coffee mug is a practical and convenient type of drinking vessel that is ideal for anyone who enjoys a hot or cold beverage while on the go. Its durable construction and insulated design make it a popular choice for commuters, travelers, and outdoor enthusiasts alike.' - ) - ['de-DE']( - 'Diese praktische Reisetasse ist für unterwegs konzipiert. Der Becher hat ein Fassungsvermögen von etwa 12 bis 20 Unzen und ist so konzipiert, dass er Getränke über einen längeren Zeitraum heiß oder kalt hält. Dies wird durch die Verwendung einer Isolierschicht erreicht, die dazu beiträgt, die Temperatur des Getränks im Inneren des Bechers aufrechtzuerhalten. Die Reisetasse hat eine Vielzahl von Funktionen, darunter einen auslaufsicheren Deckel, der sicher befestigt werden kann, um ein Auslaufen oder Verschütten zu verhindern, und einen Henkel, der das Halten auch beim Gehen oder Fahren erleichtert. Dieser Reisekaffeebecher ist auf den Gebrauch in Kombination mit Standard-Getränkehaltern in Autos angepasst. Die Reisetasse ist ein praktisches Trinkgefäß und der ideale Begleiter für all diejenigen, die unterwegs auf ein heißes oder kaltes Getränk nicht verzichten möchten. Seine robuste Konstruktion und sein isoliertes Design machen sie zu einer beliebten Wahl für Pendler, Reisende und Outdoor-Enthusiasten.' - ) - ['en-GB']( - 'The Travel Coffee Mug is designed for use on the go. The mug has a capacity of around 12 to 20 ounces, and is designed to keep beverages hot or cold for an extended period of time. This is achieved through the use of insulation, which helps to maintain the temperature of the drink inside the mug. The Travel Coffee Mug has a variety of features, including a spill-proof lid that can be securely fastened to prevent leaks or spills and a handle or grip that makes it easy to hold, even while walking or driving. This travel coffee mug is designed to fit into standard cup holders in cars. Overall, this travel coffee mug is a practical and convenient type of drinking vessel that is ideal for anyone who enjoys a hot or cold beverage while on the go. Its durable construction and insulated design make it a popular choice for commuters, travelers, and outdoor enthusiasts alike.' - ) + [ + 'en-US' + ]('The Travel Coffee Mug is designed for use on the go. The mug has a capacity of around 12 to 20 ounces, and is designed to keep beverages hot or cold for an extended period of time. This is achieved through the use of insulation, which helps to maintain the temperature of the drink inside the mug. The Travel Coffee Mug has a variety of features, including a spill-proof lid that can be securely fastened to prevent leaks or spills and a handle or grip that makes it easy to hold, even while walking or driving. This travel coffee mug is designed to fit into standard cup holders in cars. Overall, this travel coffee mug is a practical and convenient type of drinking vessel that is ideal for anyone who enjoys a hot or cold beverage while on the go. Its durable construction and insulated design make it a popular choice for commuters, travelers, and outdoor enthusiasts alike.') + [ + 'de-DE' + ]('Diese praktische Reisetasse ist für unterwegs konzipiert. Der Becher hat ein Fassungsvermögen von etwa 12 bis 20 Unzen und ist so konzipiert, dass er Getränke über einen längeren Zeitraum heiß oder kalt hält. Dies wird durch die Verwendung einer Isolierschicht erreicht, die dazu beiträgt, die Temperatur des Getränks im Inneren des Bechers aufrechtzuerhalten. Die Reisetasse hat eine Vielzahl von Funktionen, darunter einen auslaufsicheren Deckel, der sicher befestigt werden kann, um ein Auslaufen oder Verschütten zu verhindern, und einen Henkel, der das Halten auch beim Gehen oder Fahren erleichtert. Dieser Reisekaffeebecher ist auf den Gebrauch in Kombination mit Standard-Getränkehaltern in Autos angepasst. Die Reisetasse ist ein praktisches Trinkgefäß und der ideale Begleiter für all diejenigen, die unterwegs auf ein heißes oder kaltes Getränk nicht verzichten möchten. Seine robuste Konstruktion und sein isoliertes Design machen sie zu einer beliebten Wahl für Pendler, Reisende und Outdoor-Enthusiasten.') + [ + 'en-GB' + ]('The Travel Coffee Mug is designed for use on the go. The mug has a capacity of around 12 to 20 ounces, and is designed to keep beverages hot or cold for an extended period of time. This is achieved through the use of insulation, which helps to maintain the temperature of the drink inside the mug. The Travel Coffee Mug has a variety of features, including a spill-proof lid that can be securely fastened to prevent leaks or spills and a handle or grip that makes it easy to hold, even while walking or driving. This travel coffee mug is designed to fit into standard cup holders in cars. Overall, this travel coffee mug is a practical and convenient type of drinking vessel that is ideal for anyone who enjoys a hot or cold beverage while on the go. Its durable construction and insulated design make it a popular choice for commuters, travelers, and outdoor enthusiasts alike.') ) .slug( LocalizedStringDraft.presets @@ -80,7 +80,7 @@ const travelCoffeeMug = (): TProductDraftBuilder => KeyReferenceDraft.presets.taxCategory().key(standardTaxCategory.key!) ) .masterVariant( - ProductVariantDraft.presets.sampleDataGoodStore.travelCoffeeMug01() + ProductVariantDraft.presets.sampleDataB2CLifestyle.travelCoffeeMug01() ) .categories([ KeyReferenceDraft.presets.category().key(glasswareDraft.key!), diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/turner-velvet-armchair.spec.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/turner-velvet-armchair.spec.ts similarity index 98% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/turner-velvet-armchair.spec.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/turner-velvet-armchair.spec.ts index b5214770b..eb2f55b79 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/turner-velvet-armchair.spec.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/turner-velvet-armchair.spec.ts @@ -58,7 +58,7 @@ describe(`with turnerVelvetArmchair preset`, () => { "w": 2500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Turner_Velvet_Armchair-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Turner_Velvet_Armchair-1.1.jpeg", }, { "dimensions": { @@ -66,7 +66,7 @@ describe(`with turnerVelvetArmchair preset`, () => { "w": 2500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Turner_Velvet_Armchair-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Turner_Velvet_Armchair-1.2.jpeg", }, ], "key": undefined, @@ -209,7 +209,7 @@ describe(`with turnerVelvetArmchair preset`, () => { "width": 2500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Turner_Velvet_Armchair-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Turner_Velvet_Armchair-1.1.jpeg", }, { "dimensions": { @@ -217,7 +217,7 @@ describe(`with turnerVelvetArmchair preset`, () => { "width": 2500, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Turner_Velvet_Armchair-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Turner_Velvet_Armchair-1.2.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/turner-velvet-armchair.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/turner-velvet-armchair.ts similarity index 85% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/turner-velvet-armchair.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/turner-velvet-armchair.ts index 10b625cd0..8488336d8 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/turner-velvet-armchair.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/turner-velvet-armchair.ts @@ -18,24 +18,24 @@ import * as ProductVariantDraft from '../../../../product-variant/product-varian import * as ProductDraft from '../../../product-draft'; import type { TProductDraftBuilder } from '../../../types'; -const standardTaxCategory = TaxCategoryDraft.presets.sampleDataGoodStore +const standardTaxCategory = TaxCategoryDraft.presets.sampleDataB2CLifestyle .standardTaxCategory() .build(); const turnerVelvetArmchairProductTypeDraft = - ProductTypeDraft.presets.sampleDataGoodStore + ProductTypeDraft.presets.sampleDataB2CLifestyle .furnitureAndDecor() .build(); -const furnitureDraft = CategoryDraft.presets.sampleDataGoodStore +const furnitureDraft = CategoryDraft.presets.sampleDataB2CLifestyle .furniture() .build(); -const armchairsDraft = CategoryDraft.presets.sampleDataGoodStore +const armchairsDraft = CategoryDraft.presets.sampleDataB2CLifestyle .armchairs() .build(); -const livingRoomFurnitureDraft = CategoryDraft.presets.sampleDataGoodStore +const livingRoomFurnitureDraft = CategoryDraft.presets.sampleDataB2CLifestyle .livingRoomFurniture() .build(); @@ -53,15 +53,15 @@ const turnerVelvetArmchair = (): TProductDraftBuilder => .description( LocalizedStringDraft.presets .empty() - ['en-US']( - 'A velvet chair with ebony legs is an elegant and luxurious piece of furniture. The soft, plush velvet material of the chair provides a comfortable and cozy seating experience. The dark blue color of the velvet fabric is soft and delicate, adding a touch of modernity to the overall look of the chair. The ebony legs of the chair are sturdy and durable, providing a solid foundation for the seating area. The ebony color of the frame adds a touch of sophistication to the overall look of the chair. The combination of the velvet and ebony creates a striking contrast, making this chair a statement piece in any room. The chair features a high backrest with a curved design, providing support for the back and shoulders. The armrests are also curved, providing a comfortable place to rest the arms. The chair is designed for both style and comfort, making it a great addition to any living room, bedroom, or office space.' - ) - ['de-DE']( - 'Das Samt-Sitzmöbel mit Beinen aus Ebenholz ist ein elegantes und luxuriöses Möbelstück. Das weiche, plüschige Samtmaterial des Stuhls sorgt für ein bequemes und gemütliches Sitzerlebnis. Die dunkelblaue Farbe des Samtstoffs ist weich und zart und verleiht dem Gesamtbild des Stuhls einen modernen Touch. Die Ebenholzbeine des Sessels sind robust und langlebig und bilden eine solide Grundlage für den Sitzbereich. Die Ebenholzfarbe des Gestells verleiht dem Gesamtbild des Stuhls die gewünschte Raffinesse. Die Kombination aus Samt und Ebenholz schafft einen interessanten Kontrast und macht diesen Stuhl zu einem Statement-Piece in jedem Raum. Der Sessel hat eine hohe Rückenlehne mit geschwungenem Design, die Rücken und Schultern stützt. Die Armlehnen sind ebenfalls gebogen und bieten eine bequeme Ablagefläche für die Arme. Der Sessel ist sowohl auf Stil als auch auf Komfort ausgelegt, was ihn zu einer großartigen Ergänzung für jedes Wohnzimmer, Schlafzimmer oder Büro macht.' - ) - ['en-GB']( - 'A velvet chair with ebony legs is an elegant and luxurious piece of furniture. The soft, plush velvet material of the chair provides a comfortable and cozy seating experience. The dark blue color of the velvet fabric is soft and delicate, adding a touch of modernity to the overall look of the chair. The ebony legs of the chair are sturdy and durable, providing a solid foundation for the seating area. The ebony color of the frame adds a touch of sophistication to the overall look of the chair. The combination of the velvet and ebony creates a striking contrast, making this chair a statement piece in any room. The chair features a high backrest with a curved design, providing support for the back and shoulders. The armrests are also curved, providing a comfortable place to rest the arms. The chair is designed for both style and comfort, making it a great addition to any living room, bedroom, or office space.' - ) + [ + 'en-US' + ]('A velvet chair with ebony legs is an elegant and luxurious piece of furniture. The soft, plush velvet material of the chair provides a comfortable and cozy seating experience. The dark blue color of the velvet fabric is soft and delicate, adding a touch of modernity to the overall look of the chair. The ebony legs of the chair are sturdy and durable, providing a solid foundation for the seating area. The ebony color of the frame adds a touch of sophistication to the overall look of the chair. The combination of the velvet and ebony creates a striking contrast, making this chair a statement piece in any room. The chair features a high backrest with a curved design, providing support for the back and shoulders. The armrests are also curved, providing a comfortable place to rest the arms. The chair is designed for both style and comfort, making it a great addition to any living room, bedroom, or office space.') + [ + 'de-DE' + ]('Das Samt-Sitzmöbel mit Beinen aus Ebenholz ist ein elegantes und luxuriöses Möbelstück. Das weiche, plüschige Samtmaterial des Stuhls sorgt für ein bequemes und gemütliches Sitzerlebnis. Die dunkelblaue Farbe des Samtstoffs ist weich und zart und verleiht dem Gesamtbild des Stuhls einen modernen Touch. Die Ebenholzbeine des Sessels sind robust und langlebig und bilden eine solide Grundlage für den Sitzbereich. Die Ebenholzfarbe des Gestells verleiht dem Gesamtbild des Stuhls die gewünschte Raffinesse. Die Kombination aus Samt und Ebenholz schafft einen interessanten Kontrast und macht diesen Stuhl zu einem Statement-Piece in jedem Raum. Der Sessel hat eine hohe Rückenlehne mit geschwungenem Design, die Rücken und Schultern stützt. Die Armlehnen sind ebenfalls gebogen und bieten eine bequeme Ablagefläche für die Arme. Der Sessel ist sowohl auf Stil als auch auf Komfort ausgelegt, was ihn zu einer großartigen Ergänzung für jedes Wohnzimmer, Schlafzimmer oder Büro macht.') + [ + 'en-GB' + ]('A velvet chair with ebony legs is an elegant and luxurious piece of furniture. The soft, plush velvet material of the chair provides a comfortable and cozy seating experience. The dark blue color of the velvet fabric is soft and delicate, adding a touch of modernity to the overall look of the chair. The ebony legs of the chair are sturdy and durable, providing a solid foundation for the seating area. The ebony color of the frame adds a touch of sophistication to the overall look of the chair. The combination of the velvet and ebony creates a striking contrast, making this chair a statement piece in any room. The chair features a high backrest with a curved design, providing support for the back and shoulders. The armrests are also curved, providing a comfortable place to rest the arms. The chair is designed for both style and comfort, making it a great addition to any living room, bedroom, or office space.') ) .slug( LocalizedStringDraft.presets @@ -80,7 +80,7 @@ const turnerVelvetArmchair = (): TProductDraftBuilder => KeyReferenceDraft.presets.taxCategory().key(standardTaxCategory.key!) ) .masterVariant( - ProductVariantDraft.presets.sampleDataGoodStore.turnerVelvetArmchair01() + ProductVariantDraft.presets.sampleDataB2CLifestyle.turnerVelvetArmchair01() ) .categories([ KeyReferenceDraft.presets.category().key(furnitureDraft.key!), diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/vanilla-candle.spec.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/vanilla-candle.spec.ts similarity index 98% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/vanilla-candle.spec.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/vanilla-candle.spec.ts index f91cab834..f5bad2d49 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/vanilla-candle.spec.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/vanilla-candle.spec.ts @@ -68,7 +68,7 @@ describe(`with vanillaCandle preset`, () => { "w": 5819, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Vanilla_Candle-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Vanilla_Candle-1.1.jpeg", }, { "dimensions": { @@ -76,7 +76,7 @@ describe(`with vanillaCandle preset`, () => { "w": 6214, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Vanilla_Candle-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Vanilla_Candle-1.2.jpeg", }, ], "key": undefined, @@ -226,7 +226,7 @@ describe(`with vanillaCandle preset`, () => { "width": 5819, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Vanilla_Candle-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Vanilla_Candle-1.1.jpeg", }, { "dimensions": { @@ -234,7 +234,7 @@ describe(`with vanillaCandle preset`, () => { "width": 6214, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Vanilla_Candle-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Vanilla_Candle-1.2.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/vanilla-candle.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/vanilla-candle.ts similarity index 84% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/vanilla-candle.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/vanilla-candle.ts index ab2139b10..5d2bf58c2 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/vanilla-candle.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/vanilla-candle.ts @@ -18,24 +18,24 @@ import * as ProductVariantDraft from '../../../../product-variant/product-varian import * as ProductDraft from '../../../product-draft'; import type { TProductDraftBuilder } from '../../../types'; -const standardTaxCategory = TaxCategoryDraft.presets.sampleDataGoodStore +const standardTaxCategory = TaxCategoryDraft.presets.sampleDataB2CLifestyle .standardTaxCategory() .build(); const vanillaCandleProductTypeDraft = - ProductTypeDraft.presets.sampleDataGoodStore + ProductTypeDraft.presets.sampleDataB2CLifestyle .furnitureAndDecor() .build(); -const homeAccentsDraft = CategoryDraft.presets.sampleDataGoodStore +const homeAccentsDraft = CategoryDraft.presets.sampleDataB2CLifestyle .homeAccents() .build(); -const roomDecorDraft = CategoryDraft.presets.sampleDataGoodStore +const roomDecorDraft = CategoryDraft.presets.sampleDataB2CLifestyle .roomDecor() .build(); -const homeDecorDraft = CategoryDraft.presets.sampleDataGoodStore +const homeDecorDraft = CategoryDraft.presets.sampleDataB2CLifestyle .homeDecor() .build(); @@ -53,15 +53,15 @@ const vanillaCandle = (): TProductDraftBuilder => .description( LocalizedStringDraft.presets .empty() - ['en-US']( - 'A vanilla candle is a popular and timeless choice for adding a warm and inviting atmosphere to any home. The candle is made from high-quality wax, which is infused with the rich and creamy fragrance of vanilla. The candle is presented in a glass container, which helps to protect the flame and also adds a decorative touch to the candle. When lit, the candle will release a soothing and comforting aroma, filling the room with the sweet and comforting scent of vanilla. The fragrance is often associated with warmth, coziness, and relaxation, making it perfect for use during a cozy night in or for creating a calming atmosphere in a bedroom or living room. A vanilla candle is a classic and comforting choice for adding a touch of warmth and coziness to any home. Its sweet and soothing aroma can help to create a relaxed and welcoming atmosphere, making it a popular choice for use in bedrooms, living rooms, and bathrooms.' - ) - ['de-DE']( - 'Eine Kerze mit Vanilleduft ist eine beliebte und zeitlose Wahl, um jedem Zuhause eine warme und einladende Atmosphäre zu verleihen. Die Kerze besteht aus hochwertigem Wachs, das mit dem reichhaltigem und cremigen Vanilleduft versehen ist. Die Kerze wird in einem Glasbehälter präsentiert, der zum Schutz der Flamme beiträgt und der Kerze auch eine dekorative Note verleiht. Angezündet verströmt sie ein beruhigendes Aroma und erfüllt den Raum mit dem süßen Duft von Vanille. Der Duft wird oft mit Wärme, Gemütlichkeit und Entspannung in Verbindung gebracht und eignet sich daher perfekt für die Einstimmung auf einen gemütlichen Abend oder um eine beruhigende Atmosphäre in einem Schlaf- oder Wohnbereich zu schaffen. Diese Kerze ist eine klassische und beruhigende Wahl, um jedem Zuhause etwas mehr Wärme und Gemütlichkeit zu verleihen. Ihr süßes und beruhigendes Aroma trägt dazu bei, eine entspannte und einladende Atmosphäre zu schaffen, was sie zu einer beliebten Wahl für den Einsatz im Schlaf- oder Wohnbereich und in Badezimmern macht.' - ) - ['en-GB']( - 'A vanilla candle is a popular and timeless choice for adding a warm and inviting atmosphere to any home. The candle is made from high-quality wax, which is infused with the rich and creamy fragrance of vanilla. The candle is presented in a glass container, which helps to protect the flame and also adds a decorative touch to the candle. When lit, the candle will release a soothing and comforting aroma, filling the room with the sweet and comforting scent of vanilla. The fragrance is often associated with warmth, coziness, and relaxation, making it perfect for use during a cozy night in or for creating a calming atmosphere in a bedroom or living room. A vanilla candle is a classic and comforting choice for adding a touch of warmth and coziness to any home. Its sweet and soothing aroma can help to create a relaxed and welcoming atmosphere, making it a popular choice for use in bedrooms, living rooms, and bathrooms.' - ) + [ + 'en-US' + ]('A vanilla candle is a popular and timeless choice for adding a warm and inviting atmosphere to any home. The candle is made from high-quality wax, which is infused with the rich and creamy fragrance of vanilla. The candle is presented in a glass container, which helps to protect the flame and also adds a decorative touch to the candle. When lit, the candle will release a soothing and comforting aroma, filling the room with the sweet and comforting scent of vanilla. The fragrance is often associated with warmth, coziness, and relaxation, making it perfect for use during a cozy night in or for creating a calming atmosphere in a bedroom or living room. A vanilla candle is a classic and comforting choice for adding a touch of warmth and coziness to any home. Its sweet and soothing aroma can help to create a relaxed and welcoming atmosphere, making it a popular choice for use in bedrooms, living rooms, and bathrooms.') + [ + 'de-DE' + ]('Eine Kerze mit Vanilleduft ist eine beliebte und zeitlose Wahl, um jedem Zuhause eine warme und einladende Atmosphäre zu verleihen. Die Kerze besteht aus hochwertigem Wachs, das mit dem reichhaltigem und cremigen Vanilleduft versehen ist. Die Kerze wird in einem Glasbehälter präsentiert, der zum Schutz der Flamme beiträgt und der Kerze auch eine dekorative Note verleiht. Angezündet verströmt sie ein beruhigendes Aroma und erfüllt den Raum mit dem süßen Duft von Vanille. Der Duft wird oft mit Wärme, Gemütlichkeit und Entspannung in Verbindung gebracht und eignet sich daher perfekt für die Einstimmung auf einen gemütlichen Abend oder um eine beruhigende Atmosphäre in einem Schlaf- oder Wohnbereich zu schaffen. Diese Kerze ist eine klassische und beruhigende Wahl, um jedem Zuhause etwas mehr Wärme und Gemütlichkeit zu verleihen. Ihr süßes und beruhigendes Aroma trägt dazu bei, eine entspannte und einladende Atmosphäre zu schaffen, was sie zu einer beliebten Wahl für den Einsatz im Schlaf- oder Wohnbereich und in Badezimmern macht.') + [ + 'en-GB' + ]('A vanilla candle is a popular and timeless choice for adding a warm and inviting atmosphere to any home. The candle is made from high-quality wax, which is infused with the rich and creamy fragrance of vanilla. The candle is presented in a glass container, which helps to protect the flame and also adds a decorative touch to the candle. When lit, the candle will release a soothing and comforting aroma, filling the room with the sweet and comforting scent of vanilla. The fragrance is often associated with warmth, coziness, and relaxation, making it perfect for use during a cozy night in or for creating a calming atmosphere in a bedroom or living room. A vanilla candle is a classic and comforting choice for adding a touch of warmth and coziness to any home. Its sweet and soothing aroma can help to create a relaxed and welcoming atmosphere, making it a popular choice for use in bedrooms, living rooms, and bathrooms.') ) .slug( LocalizedStringDraft.presets @@ -80,7 +80,7 @@ const vanillaCandle = (): TProductDraftBuilder => KeyReferenceDraft.presets.taxCategory().key(standardTaxCategory.key!) ) .masterVariant( - ProductVariantDraft.presets.sampleDataGoodStore.vanillaCandle01() + ProductVariantDraft.presets.sampleDataB2CLifestyle.vanillaCandle01() ) .categories([ KeyReferenceDraft.presets.category().key(homeAccentsDraft.key!), diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/walnut-cabinet.spec.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/walnut-cabinet.spec.ts similarity index 97% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/walnut-cabinet.spec.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/walnut-cabinet.spec.ts index 92607b70a..65a44fe0b 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/walnut-cabinet.spec.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/walnut-cabinet.spec.ts @@ -57,7 +57,7 @@ describe(`with walnutCabinet preset`, () => { "w": 4400, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Walnut_Cabinet-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Walnut_Cabinet-1.1.jpeg", }, { "dimensions": { @@ -65,7 +65,7 @@ describe(`with walnutCabinet preset`, () => { "w": 4400, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Walnut_Cabinet-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Walnut_Cabinet-1.2.jpeg", }, ], "key": undefined, @@ -211,7 +211,7 @@ describe(`with walnutCabinet preset`, () => { "width": 4400, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Walnut_Cabinet-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Walnut_Cabinet-1.1.jpeg", }, { "dimensions": { @@ -219,7 +219,7 @@ describe(`with walnutCabinet preset`, () => { "width": 4400, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Walnut_Cabinet-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Walnut_Cabinet-1.2.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/walnut-cabinet.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/walnut-cabinet.ts similarity index 80% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/walnut-cabinet.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/walnut-cabinet.ts index ed3435124..1196e596b 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/walnut-cabinet.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/walnut-cabinet.ts @@ -18,24 +18,24 @@ import * as ProductVariantDraft from '../../../../product-variant/product-varian import * as ProductDraft from '../../../product-draft'; import type { TProductDraftBuilder } from '../../../types'; -const standardTaxCategory = TaxCategoryDraft.presets.sampleDataGoodStore +const standardTaxCategory = TaxCategoryDraft.presets.sampleDataB2CLifestyle .standardTaxCategory() .build(); const walnutCabinetProductTypeDraft = - ProductTypeDraft.presets.sampleDataGoodStore + ProductTypeDraft.presets.sampleDataB2CLifestyle .furnitureAndDecor() .build(); -const furnitureDraft = CategoryDraft.presets.sampleDataGoodStore +const furnitureDraft = CategoryDraft.presets.sampleDataB2CLifestyle .furniture() .build(); -const bedroomFurnitureDraft = CategoryDraft.presets.sampleDataGoodStore +const bedroomFurnitureDraft = CategoryDraft.presets.sampleDataB2CLifestyle .bedroomFurniture() .build(); -const storageTablesDraft = CategoryDraft.presets.sampleDataGoodStore +const storageTablesDraft = CategoryDraft.presets.sampleDataB2CLifestyle .dressers() .build(); @@ -53,15 +53,15 @@ const walnutCabinet = (): TProductDraftBuilder => .description( LocalizedStringDraft.presets .empty() - ['en-US']( - 'This Walnut Cabinet has many drawers, which are arranged in rows, with several drawers per row. The drawers are large and deep, allowing for ample storage space. The drawers may have simple handles. The top of the sideboard is flat and smooth, and can be used to display decorative items such as vases or candles. Overall, a large sideboard with many drawers is a functional and practical piece of furniture that can add style and storage to any room.' - ) - ['de-DE']( - 'Dieser Nussbaumschrank besticht durch seine Vielzahl an Schubladen, die in Reihen angeordnet sind, mit mehreren Schubladen pro Reihe. Die Schubladen sind groß und tief und bieten viel Stauraum. Die Schubladen sind mit einfachen Griffen zu haben. Die Oberseite des Sideboards ist flach und glatt und kann zur Präsentation von Dekorationsartikeln wie Vasen oder Kerzen verwendet werden. Das geräumige Sideboard mit vielen Schubladen ist ein funktionales und praktisches Möbelstück, das jedem Raum Stil und Stauraum verleiht.' - ) - ['en-GB']( - 'This Walnut Cabinet has many drawers, which are arranged in rows, with several drawers per row. The drawers are large and deep, allowing for ample storage space. The drawers may have simple handles. The top of the sideboard is flat and smooth, and can be used to display decorative items such as vases or candles. Overall, a large sideboard with many drawers is a functional and practical piece of furniture that can add style and storage to any room.' - ) + [ + 'en-US' + ]('This Walnut Cabinet has many drawers, which are arranged in rows, with several drawers per row. The drawers are large and deep, allowing for ample storage space. The drawers may have simple handles. The top of the sideboard is flat and smooth, and can be used to display decorative items such as vases or candles. Overall, a large sideboard with many drawers is a functional and practical piece of furniture that can add style and storage to any room.') + [ + 'de-DE' + ]('Dieser Nussbaumschrank besticht durch seine Vielzahl an Schubladen, die in Reihen angeordnet sind, mit mehreren Schubladen pro Reihe. Die Schubladen sind groß und tief und bieten viel Stauraum. Die Schubladen sind mit einfachen Griffen zu haben. Die Oberseite des Sideboards ist flach und glatt und kann zur Präsentation von Dekorationsartikeln wie Vasen oder Kerzen verwendet werden. Das geräumige Sideboard mit vielen Schubladen ist ein funktionales und praktisches Möbelstück, das jedem Raum Stil und Stauraum verleiht.') + [ + 'en-GB' + ]('This Walnut Cabinet has many drawers, which are arranged in rows, with several drawers per row. The drawers are large and deep, allowing for ample storage space. The drawers may have simple handles. The top of the sideboard is flat and smooth, and can be used to display decorative items such as vases or candles. Overall, a large sideboard with many drawers is a functional and practical piece of furniture that can add style and storage to any room.') ) .slug( LocalizedStringDraft.presets @@ -80,7 +80,7 @@ const walnutCabinet = (): TProductDraftBuilder => KeyReferenceDraft.presets.taxCategory().key(standardTaxCategory.key!) ) .masterVariant( - ProductVariantDraft.presets.sampleDataGoodStore.walnutCabinet01() + ProductVariantDraft.presets.sampleDataB2CLifestyle.walnutCabinet01() ) .categories([ KeyReferenceDraft.presets.category().key(furnitureDraft.key!), diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/walnut-counter-stool.spec.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/walnut-counter-stool.spec.ts similarity index 98% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/walnut-counter-stool.spec.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/walnut-counter-stool.spec.ts index 4650ef39d..b2857ded0 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/walnut-counter-stool.spec.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/walnut-counter-stool.spec.ts @@ -66,7 +66,7 @@ describe(`with walnutCounterStool preset`, () => { "w": 5906, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Walnut_Counter_Stool-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Walnut_Counter_Stool-1.1.jpeg", }, ], "key": undefined, @@ -217,7 +217,7 @@ describe(`with walnutCounterStool preset`, () => { "width": 5906, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Walnut_Counter_Stool-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Walnut_Counter_Stool-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/walnut-counter-stool.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/walnut-counter-stool.ts similarity index 82% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/walnut-counter-stool.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/walnut-counter-stool.ts index 503b364a3..85c3424fd 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/walnut-counter-stool.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/walnut-counter-stool.ts @@ -18,32 +18,32 @@ import * as ProductVariantDraft from '../../../../product-variant/product-varian import * as ProductDraft from '../../../product-draft'; import type { TProductDraftBuilder } from '../../../types'; -const standardTaxCategory = TaxCategoryDraft.presets.sampleDataGoodStore +const standardTaxCategory = TaxCategoryDraft.presets.sampleDataB2CLifestyle .standardTaxCategory() .build(); const walnutCounterStoolProductTypeDraft = - ProductTypeDraft.presets.sampleDataGoodStore + ProductTypeDraft.presets.sampleDataB2CLifestyle .furnitureAndDecor() .build(); -const tablesDraft = CategoryDraft.presets.sampleDataGoodStore +const tablesDraft = CategoryDraft.presets.sampleDataB2CLifestyle .tables() .build(); -const livingRoomFurnitureDraft = CategoryDraft.presets.sampleDataGoodStore +const livingRoomFurnitureDraft = CategoryDraft.presets.sampleDataB2CLifestyle .livingRoomFurniture() .build(); -const furnitureDraft = CategoryDraft.presets.sampleDataGoodStore +const furnitureDraft = CategoryDraft.presets.sampleDataB2CLifestyle .furniture() .build(); -const storageTablesDraft = CategoryDraft.presets.sampleDataGoodStore +const storageTablesDraft = CategoryDraft.presets.sampleDataB2CLifestyle .dressers() .build(); -const bedroomFurnitureDraft = CategoryDraft.presets.sampleDataGoodStore +const bedroomFurnitureDraft = CategoryDraft.presets.sampleDataB2CLifestyle .bedroomFurniture() .build(); @@ -61,15 +61,15 @@ const walnutCounterStool = (): TProductDraftBuilder => .description( LocalizedStringDraft.presets .empty() - ['en-US']( - 'The walnut stool is made from walnut wood, which is known for its durability and strength. The stool is a simple design, with a flat top surface and four straight legs. The legs are slightly tapered for added visual interest. The walnut wood may be left in its natural state or finished with a stain or varnish to bring out the natural beauty of the wood grain. The stool has a square top. Overall, a walnut stool is a versatile and functional piece of furniture that can be used in a variety of settings.' - ) - ['de-DE']( - 'Der Barhocker ist aus Nussbaumholz gefertigt, das für seine Langlebigkeit und Stärke bekannt ist. Der Hocker hat ein schlichtes Design mit einer flachen Oberfläche und vier geraden Beinen. Die Beine sind für zusätzliches visuelles Interesse leicht konisch zulaufend designt. Das Nussbaumholz kann in seinem natürlichen Zustand belassen oder mit einer Beize oder einem Lack veredelt werden, um die natürliche Schönheit der Holzmaserung hervorzuheben. Der Hocker hat eine quadratische Sitzfläche. Der Barocker aus Nussbaumholz ist ein vielseitiges und funktionelles Möbelstück, das in einer Vielzahl von Wohnräumen verwendet werden kann.' - ) - ['en-GB']( - 'The walnut stool is made from walnut wood, which is known for its durability and strength. The stool is a simple design, with a flat top surface and four straight legs. The legs are slightly tapered for added visual interest. The walnut wood may be left in its natural state or finished with a stain or varnish to bring out the natural beauty of the wood grain. The stool has a square top. Overall, a walnut stool is a versatile and functional piece of furniture that can be used in a variety of settings.' - ) + [ + 'en-US' + ]('The walnut stool is made from walnut wood, which is known for its durability and strength. The stool is a simple design, with a flat top surface and four straight legs. The legs are slightly tapered for added visual interest. The walnut wood may be left in its natural state or finished with a stain or varnish to bring out the natural beauty of the wood grain. The stool has a square top. Overall, a walnut stool is a versatile and functional piece of furniture that can be used in a variety of settings.') + [ + 'de-DE' + ]('Der Barhocker ist aus Nussbaumholz gefertigt, das für seine Langlebigkeit und Stärke bekannt ist. Der Hocker hat ein schlichtes Design mit einer flachen Oberfläche und vier geraden Beinen. Die Beine sind für zusätzliches visuelles Interesse leicht konisch zulaufend designt. Das Nussbaumholz kann in seinem natürlichen Zustand belassen oder mit einer Beize oder einem Lack veredelt werden, um die natürliche Schönheit der Holzmaserung hervorzuheben. Der Hocker hat eine quadratische Sitzfläche. Der Barocker aus Nussbaumholz ist ein vielseitiges und funktionelles Möbelstück, das in einer Vielzahl von Wohnräumen verwendet werden kann.') + [ + 'en-GB' + ]('The walnut stool is made from walnut wood, which is known for its durability and strength. The stool is a simple design, with a flat top surface and four straight legs. The legs are slightly tapered for added visual interest. The walnut wood may be left in its natural state or finished with a stain or varnish to bring out the natural beauty of the wood grain. The stool has a square top. Overall, a walnut stool is a versatile and functional piece of furniture that can be used in a variety of settings.') ) .slug( LocalizedStringDraft.presets @@ -88,7 +88,7 @@ const walnutCounterStool = (): TProductDraftBuilder => KeyReferenceDraft.presets.taxCategory().key(standardTaxCategory.key!) ) .masterVariant( - ProductVariantDraft.presets.sampleDataGoodStore.walnutCounterStool01() + ProductVariantDraft.presets.sampleDataB2CLifestyle.walnutCounterStool01() ) .categories([ KeyReferenceDraft.presets.category().key(tablesDraft.key!), diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/willow-teapot.spec.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/willow-teapot.spec.ts similarity index 99% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/willow-teapot.spec.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/willow-teapot.spec.ts index e320265ca..261cc8a72 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/willow-teapot.spec.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/willow-teapot.spec.ts @@ -61,7 +61,7 @@ describe(`with willowTeapot preset`, () => { "w": 6240, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Willow_Teapot-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Willow_Teapot-1.1.jpeg", }, ], "key": undefined, @@ -208,7 +208,7 @@ describe(`with willowTeapot preset`, () => { "width": 6240, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Willow_Teapot-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Willow_Teapot-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/willow-teapot.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/willow-teapot.ts similarity index 85% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/willow-teapot.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/willow-teapot.ts index 304a784e3..8b5d22a70 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/willow-teapot.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/willow-teapot.ts @@ -18,28 +18,28 @@ import * as ProductVariantDraft from '../../../../product-variant/product-varian import * as ProductDraft from '../../../product-draft'; import type { TProductDraftBuilder } from '../../../types'; -const standardTaxCategory = TaxCategoryDraft.presets.sampleDataGoodStore +const standardTaxCategory = TaxCategoryDraft.presets.sampleDataB2CLifestyle .standardTaxCategory() .build(); const willowTeapotProductTypeDraft = - ProductTypeDraft.presets.sampleDataGoodStore + ProductTypeDraft.presets.sampleDataB2CLifestyle .furnitureAndDecor() .build(); -const dinnerwareDraft = CategoryDraft.presets.sampleDataGoodStore +const dinnerwareDraft = CategoryDraft.presets.sampleDataB2CLifestyle .dinnerware() .build(); -const kitchenDraft = CategoryDraft.presets.sampleDataGoodStore +const kitchenDraft = CategoryDraft.presets.sampleDataB2CLifestyle .kitchen() .build(); -const barAccessoriesDraft = CategoryDraft.presets.sampleDataGoodStore +const barAccessoriesDraft = CategoryDraft.presets.sampleDataB2CLifestyle .barAccessories() .build(); -const barAndGlasswareDraft = CategoryDraft.presets.sampleDataGoodStore +const barAndGlasswareDraft = CategoryDraft.presets.sampleDataB2CLifestyle .barAndGlassware() .build(); @@ -57,15 +57,15 @@ const willowTeapot = (): TProductDraftBuilder => .description( LocalizedStringDraft.presets .empty() - ['en-US']( - 'This teapot is made of fine porcelain, commonly known as bone china. It is a delicate and elegant piece of tableware that is designed to brew and serve tea. The fine china material used in the teapot provides an excellent heat retention capacity, ensuring that the tea stays warm for an extended period. It is also non-porous, which means it does not absorb any flavors or odors from the tea, preserving the purity of the flavor. To clean a china teapot, it is recommended to wash it by hand with a mild detergent, using a soft cloth or sponge. Harsh cleaning agents or abrasives should be avoided, as they can damage the delicate surface of the teapot. Overall, a china teapot is a timeless and classic piece of tableware that adds a touch of elegance and sophistication to any tea party or gathering. Its delicate and intricate design, combined with its functionality and heat retention properties, make it a cherished item for tea lovers around the world.' - ) - ['de-DE']( - 'Diese Teekanne besteht aus feinem Porzellan, allgemein bekannt als Knochenporzellan. Es ist ein zartes und elegantes Geschirr, das zum Aufbrühen und Servieren von Tee bestimmt ist. Das für die Teekanne verwendete feine Porzellanmaterial hat ein hervorragendes Wärmespeichervermögen und sorgt dafür, dass der Tee lange warm bleibt. Es ist auch nicht porös, was bedeutet, dass es keine Aromen oder Gerüche aus dem Tee aufnimmt, wodurch die Reinheit des Geschmacks erhalten bleibt. Zum Reinigen einer Teekanne aus Porzellan wird empfohlen, sie von Hand mit einem milden Reinigungsmittel und einem weichen Tuch oder Schwamm zu waschen. Scharfe Reinigungsmittel oder Scheuermittel sollten vermieden werden, da sie die empfindliche Oberfläche der Teekanne beschädigen können. Die Teekanne aus Porzellan ein zeitloses und klassisches Geschirr, das jeder Teestunde oder Zusammenkunft einen Hauch von Eleganz und Raffinesse verleiht. Ihr zartes und kompliziertes Design, kombiniert mit ihrer Funktionalität und Wärmespeichereigenschaften, macht sie zum idealen Must-have für Teeliebhaber auf der ganzen Welt.' - ) - ['en-GB']( - 'This teapot is made of fine porcelain, commonly known as bone china. It is a delicate and elegant piece of tableware that is designed to brew and serve tea. The fine china material used in the teapot provides an excellent heat retention capacity, ensuring that the tea stays warm for an extended period. It is also non-porous, which means it does not absorb any flavors or odors from the tea, preserving the purity of the flavor. To clean a china teapot, it is recommended to wash it by hand with a mild detergent, using a soft cloth or sponge. Harsh cleaning agents or abrasives should be avoided, as they can damage the delicate surface of the teapot. Overall, a china teapot is a timeless and classic piece of tableware that adds a touch of elegance and sophistication to any tea party or gathering. Its delicate and intricate design, combined with its functionality and heat retention properties, make it a cherished item for tea lovers around the world.' - ) + [ + 'en-US' + ]('This teapot is made of fine porcelain, commonly known as bone china. It is a delicate and elegant piece of tableware that is designed to brew and serve tea. The fine china material used in the teapot provides an excellent heat retention capacity, ensuring that the tea stays warm for an extended period. It is also non-porous, which means it does not absorb any flavors or odors from the tea, preserving the purity of the flavor. To clean a china teapot, it is recommended to wash it by hand with a mild detergent, using a soft cloth or sponge. Harsh cleaning agents or abrasives should be avoided, as they can damage the delicate surface of the teapot. Overall, a china teapot is a timeless and classic piece of tableware that adds a touch of elegance and sophistication to any tea party or gathering. Its delicate and intricate design, combined with its functionality and heat retention properties, make it a cherished item for tea lovers around the world.') + [ + 'de-DE' + ]('Diese Teekanne besteht aus feinem Porzellan, allgemein bekannt als Knochenporzellan. Es ist ein zartes und elegantes Geschirr, das zum Aufbrühen und Servieren von Tee bestimmt ist. Das für die Teekanne verwendete feine Porzellanmaterial hat ein hervorragendes Wärmespeichervermögen und sorgt dafür, dass der Tee lange warm bleibt. Es ist auch nicht porös, was bedeutet, dass es keine Aromen oder Gerüche aus dem Tee aufnimmt, wodurch die Reinheit des Geschmacks erhalten bleibt. Zum Reinigen einer Teekanne aus Porzellan wird empfohlen, sie von Hand mit einem milden Reinigungsmittel und einem weichen Tuch oder Schwamm zu waschen. Scharfe Reinigungsmittel oder Scheuermittel sollten vermieden werden, da sie die empfindliche Oberfläche der Teekanne beschädigen können. Die Teekanne aus Porzellan ein zeitloses und klassisches Geschirr, das jeder Teestunde oder Zusammenkunft einen Hauch von Eleganz und Raffinesse verleiht. Ihr zartes und kompliziertes Design, kombiniert mit ihrer Funktionalität und Wärmespeichereigenschaften, macht sie zum idealen Must-have für Teeliebhaber auf der ganzen Welt.') + [ + 'en-GB' + ]('This teapot is made of fine porcelain, commonly known as bone china. It is a delicate and elegant piece of tableware that is designed to brew and serve tea. The fine china material used in the teapot provides an excellent heat retention capacity, ensuring that the tea stays warm for an extended period. It is also non-porous, which means it does not absorb any flavors or odors from the tea, preserving the purity of the flavor. To clean a china teapot, it is recommended to wash it by hand with a mild detergent, using a soft cloth or sponge. Harsh cleaning agents or abrasives should be avoided, as they can damage the delicate surface of the teapot. Overall, a china teapot is a timeless and classic piece of tableware that adds a touch of elegance and sophistication to any tea party or gathering. Its delicate and intricate design, combined with its functionality and heat retention properties, make it a cherished item for tea lovers around the world.') ) .slug( LocalizedStringDraft.presets @@ -84,7 +84,7 @@ const willowTeapot = (): TProductDraftBuilder => KeyReferenceDraft.presets.taxCategory().key(standardTaxCategory.key!) ) .masterVariant( - ProductVariantDraft.presets.sampleDataGoodStore.willowTeapot01() + ProductVariantDraft.presets.sampleDataB2CLifestyle.willowTeapot01() ) .categories([ KeyReferenceDraft.presets.category().key(dinnerwareDraft.key!), diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/wilma-chair.spec.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/wilma-chair.spec.ts similarity index 97% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/wilma-chair.spec.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/wilma-chair.spec.ts index 7150fbaef..006ffa538 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/wilma-chair.spec.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/wilma-chair.spec.ts @@ -65,7 +65,7 @@ describe(`with wilmaChair preset`, () => { "w": 2400, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Wilma_Chair-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Wilma_Chair-1.1.jpeg", }, { "dimensions": { @@ -73,7 +73,7 @@ describe(`with wilmaChair preset`, () => { "w": 2400, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Wilma_Chair-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Wilma_Chair-1.2.jpeg", }, ], "key": undefined, @@ -220,7 +220,7 @@ describe(`with wilmaChair preset`, () => { "width": 2400, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Wilma_Chair-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Wilma_Chair-1.1.jpeg", }, { "dimensions": { @@ -228,7 +228,7 @@ describe(`with wilmaChair preset`, () => { "width": 2400, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Wilma_Chair-1.2.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Wilma_Chair-1.2.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/wilma-chair.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/wilma-chair.ts similarity index 79% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/wilma-chair.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/wilma-chair.ts index a10c4679c..d6f8b12d4 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/wilma-chair.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/wilma-chair.ts @@ -18,23 +18,24 @@ import * as ProductVariantDraft from '../../../../product-variant/product-varian import * as ProductDraft from '../../../product-draft'; import type { TProductDraftBuilder } from '../../../types'; -const standardTaxCategory = TaxCategoryDraft.presets.sampleDataGoodStore +const standardTaxCategory = TaxCategoryDraft.presets.sampleDataB2CLifestyle .standardTaxCategory() .build(); -const wilmaChairProductTypeDraft = ProductTypeDraft.presets.sampleDataGoodStore - .furnitureAndDecor() - .build(); +const wilmaChairProductTypeDraft = + ProductTypeDraft.presets.sampleDataB2CLifestyle + .furnitureAndDecor() + .build(); -const armchairsDraft = CategoryDraft.presets.sampleDataGoodStore +const armchairsDraft = CategoryDraft.presets.sampleDataB2CLifestyle .armchairs() .build(); -const livingRoomFurnitureDraft = CategoryDraft.presets.sampleDataGoodStore +const livingRoomFurnitureDraft = CategoryDraft.presets.sampleDataB2CLifestyle .livingRoomFurniture() .build(); -const furnitureDraft = CategoryDraft.presets.sampleDataGoodStore +const furnitureDraft = CategoryDraft.presets.sampleDataB2CLifestyle .furniture() .build(); @@ -52,15 +53,15 @@ const wilmaChair = (): TProductDraftBuilder => .description( LocalizedStringDraft.presets .empty() - ['en-US']( - 'A tufted armless futon chair has a simple and modern design, featuring a cushioned seat and backrest with tufted details for added comfort and style. The chair lacks arms to allow for more flexibility and ease of use. The upholstery is made of durable fabric that is easy to clean and maintain. Overall, a tufted armless futon chair is a practical and stylish furniture piece that can be used in a variety of settings, such as a living room, bedroom, or home office.' - ) - ['de-DE']( - 'Der getuftete armlehnenlose Futon-Stuhl hat ein einfaches und modernes Design mit gepolstertem Sitz und Rückenlehne. Das Design des Sessels verzichtet auf Armlehnen, um mehr Flexibilität beim Sitzerlebnis zu schaffen. Die Polsterung besteht aus strapazierfähigem Stoff, der leicht zu reinigen und zu pflegen ist. Der getuftete Futonstuhl ohne Armlehnen ist ein praktisches und stilvolles Möbelstück, das in einer Vielzahl von Umgebungen verwendet werden kann, z. B. im Wohn-, Schlaf- oder Arbeitsbereich.' - ) - ['en-GB']( - 'A tufted armless futon chair has a simple and modern design, featuring a cushioned seat and backrest with tufted details for added comfort and style. The chair lacks arms to allow for more flexibility and ease of use. The upholstery is made of durable fabric that is easy to clean and maintain. Overall, a tufted armless futon chair is a practical and stylish furniture piece that can be used in a variety of settings, such as a living room, bedroom, or home office.' - ) + [ + 'en-US' + ]('A tufted armless futon chair has a simple and modern design, featuring a cushioned seat and backrest with tufted details for added comfort and style. The chair lacks arms to allow for more flexibility and ease of use. The upholstery is made of durable fabric that is easy to clean and maintain. Overall, a tufted armless futon chair is a practical and stylish furniture piece that can be used in a variety of settings, such as a living room, bedroom, or home office.') + [ + 'de-DE' + ]('Der getuftete armlehnenlose Futon-Stuhl hat ein einfaches und modernes Design mit gepolstertem Sitz und Rückenlehne. Das Design des Sessels verzichtet auf Armlehnen, um mehr Flexibilität beim Sitzerlebnis zu schaffen. Die Polsterung besteht aus strapazierfähigem Stoff, der leicht zu reinigen und zu pflegen ist. Der getuftete Futonstuhl ohne Armlehnen ist ein praktisches und stilvolles Möbelstück, das in einer Vielzahl von Umgebungen verwendet werden kann, z. B. im Wohn-, Schlaf- oder Arbeitsbereich.') + [ + 'en-GB' + ]('A tufted armless futon chair has a simple and modern design, featuring a cushioned seat and backrest with tufted details for added comfort and style. The chair lacks arms to allow for more flexibility and ease of use. The upholstery is made of durable fabric that is easy to clean and maintain. Overall, a tufted armless futon chair is a practical and stylish furniture piece that can be used in a variety of settings, such as a living room, bedroom, or home office.') ) .slug( LocalizedStringDraft.presets @@ -79,7 +80,7 @@ const wilmaChair = (): TProductDraftBuilder => KeyReferenceDraft.presets.taxCategory().key(standardTaxCategory.key!) ) .masterVariant( - ProductVariantDraft.presets.sampleDataGoodStore.wilmaChair01() + ProductVariantDraft.presets.sampleDataB2CLifestyle.wilmaChair01() ) .categories([ KeyReferenceDraft.presets.category().key(armchairsDraft.key!), diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/wine-bottle-opener.spec.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/wine-bottle-opener.spec.ts similarity index 98% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/wine-bottle-opener.spec.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/wine-bottle-opener.spec.ts index b8e90aa63..223705b9d 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/wine-bottle-opener.spec.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/wine-bottle-opener.spec.ts @@ -65,7 +65,7 @@ describe(`with wineBottleOpener preset`, () => { "w": 5184, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Wine_Bottle_Opener-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Wine_Bottle_Opener-1.1.jpeg", }, ], "key": undefined, @@ -212,7 +212,7 @@ describe(`with wineBottleOpener preset`, () => { "width": 5184, }, "label": undefined, - "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/goodstore/Wine_Bottle_Opener-1.1.jpeg", + "url": "https://storage.googleapis.com/merchant-center-europe/sample-data/b2c-lifestyle/Wine_Bottle_Opener-1.1.jpeg", }, ], "key": undefined, diff --git a/models/product/src/product/product-draft/presets/sample-data-goodstore/wine-bottle-opener.ts b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/wine-bottle-opener.ts similarity index 75% rename from models/product/src/product/product-draft/presets/sample-data-goodstore/wine-bottle-opener.ts rename to models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/wine-bottle-opener.ts index b14a1987c..6f2903d18 100644 --- a/models/product/src/product/product-draft/presets/sample-data-goodstore/wine-bottle-opener.ts +++ b/models/product/src/product/product-draft/presets/sample-data-b2c-lifestyle/wine-bottle-opener.ts @@ -18,24 +18,24 @@ import * as ProductVariantDraft from '../../../../product-variant/product-varian import * as ProductDraft from '../../../product-draft'; import type { TProductDraftBuilder } from '../../../types'; -const standardTaxCategory = TaxCategoryDraft.presets.sampleDataGoodStore +const standardTaxCategory = TaxCategoryDraft.presets.sampleDataB2CLifestyle .standardTaxCategory() .build(); const wineBottleOpenerProductTypeDraft = - ProductTypeDraft.presets.sampleDataGoodStore + ProductTypeDraft.presets.sampleDataB2CLifestyle .furnitureAndDecor() .build(); -const barAccessoriesDraft = CategoryDraft.presets.sampleDataGoodStore +const barAccessoriesDraft = CategoryDraft.presets.sampleDataB2CLifestyle .barAccessories() .build(); -const barAndGlasswareDraft = CategoryDraft.presets.sampleDataGoodStore +const barAndGlasswareDraft = CategoryDraft.presets.sampleDataB2CLifestyle .barAndGlassware() .build(); -const kitchenDraft = CategoryDraft.presets.sampleDataGoodStore +const kitchenDraft = CategoryDraft.presets.sampleDataB2CLifestyle .kitchen() .build(); @@ -53,15 +53,15 @@ const wineBottleOpener = (): TProductDraftBuilder => .description( LocalizedStringDraft.presets .empty() - ['en-US']( - 'A wine bottle opener is a device used to remove the cork from a wine bottle. This opener features a pointed helix screw that is twisted into the cork, and a handle or lever that is used to pull the cork out of the bottle. Additional features include a bottle opener. This wine bottle opener is lever-style.' - ) - ['de-DE']( - 'Mit diesem praktischen Korkenzieher wird das Öffnen von Weinflaschen zur leichten Übung. Der Korkenzieher hat eine spitze Spiralschraube, die in den Korken gedreht wird, und einen Griff oder Hebel, mit dem der Korken aus der Flasche gehoben wird. Ein weiteres Feature des Korkenziehers im Hebelstil ist ein Flaschenöffner.' - ) - ['en-GB']( - 'A wine bottle opener is a device used to remove the cork from a wine bottle. This opener features a pointed helix screw that is twisted into the cork, and a handle or lever that is used to pull the cork out of the bottle. Additional features include a bottle opener. This wine bottle opener is lever-style.' - ) + [ + 'en-US' + ]('A wine bottle opener is a device used to remove the cork from a wine bottle. This opener features a pointed helix screw that is twisted into the cork, and a handle or lever that is used to pull the cork out of the bottle. Additional features include a bottle opener. This wine bottle opener is lever-style.') + [ + 'de-DE' + ]('Mit diesem praktischen Korkenzieher wird das Öffnen von Weinflaschen zur leichten Übung. Der Korkenzieher hat eine spitze Spiralschraube, die in den Korken gedreht wird, und einen Griff oder Hebel, mit dem der Korken aus der Flasche gehoben wird. Ein weiteres Feature des Korkenziehers im Hebelstil ist ein Flaschenöffner.') + [ + 'en-GB' + ]('A wine bottle opener is a device used to remove the cork from a wine bottle. This opener features a pointed helix screw that is twisted into the cork, and a handle or lever that is used to pull the cork out of the bottle. Additional features include a bottle opener. This wine bottle opener is lever-style.') ) .slug( LocalizedStringDraft.presets @@ -80,7 +80,7 @@ const wineBottleOpener = (): TProductDraftBuilder => KeyReferenceDraft.presets.taxCategory().key(standardTaxCategory.key!) ) .masterVariant( - ProductVariantDraft.presets.sampleDataGoodStore.wineBottleOpener01() + ProductVariantDraft.presets.sampleDataB2CLifestyle.wineBottleOpener01() ) .categories([ KeyReferenceDraft.presets.category().key(barAccessoriesDraft.key!), diff --git a/models/shipping-method/src/shipping-method/shipping-method-draft/presets/index.ts b/models/shipping-method/src/shipping-method/shipping-method-draft/presets/index.ts index 525c7ef58..45a3396fe 100644 --- a/models/shipping-method/src/shipping-method/shipping-method-draft/presets/index.ts +++ b/models/shipping-method/src/shipping-method/shipping-method-draft/presets/index.ts @@ -1,15 +1,15 @@ import changeHistoryData from './change-history-data'; import empty from './empty'; import sampleDataB2B from './sample-data-b2b'; +import sampleDataB2CLifestyle from './sample-data-b2c-lifestyle'; import sampleDataFashion from './sample-data-fashion'; -import sampleDataGoodStore from './sample-data-goodstore'; const presets = { changeHistoryData, empty, sampleDataB2B, + sampleDataB2CLifestyle, sampleDataFashion, - sampleDataGoodStore, }; export default presets; diff --git a/models/shipping-method/src/shipping-method/shipping-method-draft/presets/sample-data-goodstore/express.spec.ts b/models/shipping-method/src/shipping-method/shipping-method-draft/presets/sample-data-b2c-lifestyle/express.spec.ts similarity index 100% rename from models/shipping-method/src/shipping-method/shipping-method-draft/presets/sample-data-goodstore/express.spec.ts rename to models/shipping-method/src/shipping-method/shipping-method-draft/presets/sample-data-b2c-lifestyle/express.spec.ts diff --git a/models/shipping-method/src/shipping-method/shipping-method-draft/presets/sample-data-goodstore/express.ts b/models/shipping-method/src/shipping-method/shipping-method-draft/presets/sample-data-b2c-lifestyle/express.ts similarity index 91% rename from models/shipping-method/src/shipping-method/shipping-method-draft/presets/sample-data-goodstore/express.ts rename to models/shipping-method/src/shipping-method/shipping-method-draft/presets/sample-data-b2c-lifestyle/express.ts index b5dbdb484..83384f5ad 100644 --- a/models/shipping-method/src/shipping-method/shipping-method-draft/presets/sample-data-goodstore/express.ts +++ b/models/shipping-method/src/shipping-method/shipping-method-draft/presets/sample-data-b2c-lifestyle/express.ts @@ -10,7 +10,7 @@ import * as ZoneRateDraft from '../../../../zone-rate/zone-rate-draft'; import type { TShippingMethodDraftBuilder } from '../../../types'; import * as ShippingMethodDraft from '../../index'; -const standardTaxCategoryDraft = TaxCategoryDraft.presets.sampleDataGoodStore +const standardTaxCategoryDraft = TaxCategoryDraft.presets.sampleDataB2CLifestyle .standardTaxCategory() .build(); @@ -29,7 +29,7 @@ const expressShippingMethod = (): TShippingMethodDraftBuilder => .taxCategory( KeyReferenceDraft.presets.taxCategory().key(standardTaxCategoryDraft.key!) ) - .zoneRates([ZoneRateDraft.presets.sampleDataGoodStore.europeExpress()]) + .zoneRates([ZoneRateDraft.presets.sampleDataB2CLifestyle.europeExpress()]) .isDefault(false); export default expressShippingMethod; diff --git a/models/shipping-method/src/shipping-method/shipping-method-draft/presets/sample-data-goodstore/index.ts b/models/shipping-method/src/shipping-method/shipping-method-draft/presets/sample-data-b2c-lifestyle/index.ts similarity index 100% rename from models/shipping-method/src/shipping-method/shipping-method-draft/presets/sample-data-goodstore/index.ts rename to models/shipping-method/src/shipping-method/shipping-method-draft/presets/sample-data-b2c-lifestyle/index.ts diff --git a/models/shipping-method/src/shipping-method/shipping-method-draft/presets/sample-data-goodstore/standard.spec.ts b/models/shipping-method/src/shipping-method/shipping-method-draft/presets/sample-data-b2c-lifestyle/standard.spec.ts similarity index 100% rename from models/shipping-method/src/shipping-method/shipping-method-draft/presets/sample-data-goodstore/standard.spec.ts rename to models/shipping-method/src/shipping-method/shipping-method-draft/presets/sample-data-b2c-lifestyle/standard.spec.ts diff --git a/models/shipping-method/src/shipping-method/shipping-method-draft/presets/sample-data-goodstore/standard.ts b/models/shipping-method/src/shipping-method/shipping-method-draft/presets/sample-data-b2c-lifestyle/standard.ts similarity index 92% rename from models/shipping-method/src/shipping-method/shipping-method-draft/presets/sample-data-goodstore/standard.ts rename to models/shipping-method/src/shipping-method/shipping-method-draft/presets/sample-data-b2c-lifestyle/standard.ts index 539aa3250..44fb5fa70 100644 --- a/models/shipping-method/src/shipping-method/shipping-method-draft/presets/sample-data-goodstore/standard.ts +++ b/models/shipping-method/src/shipping-method/shipping-method-draft/presets/sample-data-b2c-lifestyle/standard.ts @@ -10,7 +10,7 @@ import * as ZoneRateDraft from '../../../../zone-rate/zone-rate-draft'; import type { TShippingMethodDraftBuilder } from '../../../types'; import * as ShippingMethodDraft from '../../index'; -const standardTaxCategoryDraft = TaxCategoryDraft.presets.sampleDataGoodStore +const standardTaxCategoryDraft = TaxCategoryDraft.presets.sampleDataB2CLifestyle .standardTaxCategory() .build(); @@ -29,7 +29,7 @@ const standardShippingMethod = (): TShippingMethodDraftBuilder => .taxCategory( KeyReferenceDraft.presets.taxCategory().key(standardTaxCategoryDraft.key!) ) - .zoneRates([ZoneRateDraft.presets.sampleDataGoodStore.europe()]) + .zoneRates([ZoneRateDraft.presets.sampleDataB2CLifestyle.europe()]) .isDefault(true); export default standardShippingMethod; diff --git a/models/shipping-method/src/shipping-method/shipping-method-draft/presets/sample-data-goodstore/usa.spec.ts b/models/shipping-method/src/shipping-method/shipping-method-draft/presets/sample-data-b2c-lifestyle/usa.spec.ts similarity index 100% rename from models/shipping-method/src/shipping-method/shipping-method-draft/presets/sample-data-goodstore/usa.spec.ts rename to models/shipping-method/src/shipping-method/shipping-method-draft/presets/sample-data-b2c-lifestyle/usa.spec.ts diff --git a/models/shipping-method/src/shipping-method/shipping-method-draft/presets/sample-data-goodstore/usa.ts b/models/shipping-method/src/shipping-method/shipping-method-draft/presets/sample-data-b2c-lifestyle/usa.ts similarity index 92% rename from models/shipping-method/src/shipping-method/shipping-method-draft/presets/sample-data-goodstore/usa.ts rename to models/shipping-method/src/shipping-method/shipping-method-draft/presets/sample-data-b2c-lifestyle/usa.ts index d9009e087..70f56d785 100644 --- a/models/shipping-method/src/shipping-method/shipping-method-draft/presets/sample-data-goodstore/usa.ts +++ b/models/shipping-method/src/shipping-method/shipping-method-draft/presets/sample-data-b2c-lifestyle/usa.ts @@ -10,7 +10,7 @@ import * as ZoneRateDraft from '../../../../zone-rate/zone-rate-draft'; import type { TShippingMethodDraftBuilder } from '../../../types'; import * as ShippingMethodDraft from '../../index'; -const standardTaxCategoryDraft = TaxCategoryDraft.presets.sampleDataGoodStore +const standardTaxCategoryDraft = TaxCategoryDraft.presets.sampleDataB2CLifestyle .standardTaxCategory() .build(); @@ -29,7 +29,7 @@ const usaShippingMethod = (): TShippingMethodDraftBuilder => .taxCategory( KeyReferenceDraft.presets.taxCategory().key(standardTaxCategoryDraft.key!) ) - .zoneRates([ZoneRateDraft.presets.sampleDataGoodStore.usa()]) + .zoneRates([ZoneRateDraft.presets.sampleDataB2CLifestyle.usa()]) .isDefault(false); export default usaShippingMethod; diff --git a/models/shipping-method/src/shipping-rate/shipping-rate-draft/presets/index.ts b/models/shipping-method/src/shipping-rate/shipping-rate-draft/presets/index.ts index 525c7ef58..45a3396fe 100644 --- a/models/shipping-method/src/shipping-rate/shipping-rate-draft/presets/index.ts +++ b/models/shipping-method/src/shipping-rate/shipping-rate-draft/presets/index.ts @@ -1,15 +1,15 @@ import changeHistoryData from './change-history-data'; import empty from './empty'; import sampleDataB2B from './sample-data-b2b'; +import sampleDataB2CLifestyle from './sample-data-b2c-lifestyle'; import sampleDataFashion from './sample-data-fashion'; -import sampleDataGoodStore from './sample-data-goodstore'; const presets = { changeHistoryData, empty, sampleDataB2B, + sampleDataB2CLifestyle, sampleDataFashion, - sampleDataGoodStore, }; export default presets; diff --git a/models/shipping-method/src/shipping-rate/shipping-rate-draft/presets/sample-data-goodstore/eur-10000.spec.ts b/models/shipping-method/src/shipping-rate/shipping-rate-draft/presets/sample-data-b2c-lifestyle/eur-10000.spec.ts similarity index 100% rename from models/shipping-method/src/shipping-rate/shipping-rate-draft/presets/sample-data-goodstore/eur-10000.spec.ts rename to models/shipping-method/src/shipping-rate/shipping-rate-draft/presets/sample-data-b2c-lifestyle/eur-10000.spec.ts diff --git a/models/shipping-method/src/shipping-rate/shipping-rate-draft/presets/sample-data-goodstore/eur-10000.ts b/models/shipping-method/src/shipping-rate/shipping-rate-draft/presets/sample-data-b2c-lifestyle/eur-10000.ts similarity index 100% rename from models/shipping-method/src/shipping-rate/shipping-rate-draft/presets/sample-data-goodstore/eur-10000.ts rename to models/shipping-method/src/shipping-rate/shipping-rate-draft/presets/sample-data-b2c-lifestyle/eur-10000.ts diff --git a/models/shipping-method/src/shipping-rate/shipping-rate-draft/presets/sample-data-goodstore/eur-50000.spec.ts b/models/shipping-method/src/shipping-rate/shipping-rate-draft/presets/sample-data-b2c-lifestyle/eur-50000.spec.ts similarity index 100% rename from models/shipping-method/src/shipping-rate/shipping-rate-draft/presets/sample-data-goodstore/eur-50000.spec.ts rename to models/shipping-method/src/shipping-rate/shipping-rate-draft/presets/sample-data-b2c-lifestyle/eur-50000.spec.ts diff --git a/models/shipping-method/src/shipping-rate/shipping-rate-draft/presets/sample-data-goodstore/eur-50000.ts b/models/shipping-method/src/shipping-rate/shipping-rate-draft/presets/sample-data-b2c-lifestyle/eur-50000.ts similarity index 100% rename from models/shipping-method/src/shipping-rate/shipping-rate-draft/presets/sample-data-goodstore/eur-50000.ts rename to models/shipping-method/src/shipping-rate/shipping-rate-draft/presets/sample-data-b2c-lifestyle/eur-50000.ts diff --git a/models/shipping-method/src/shipping-rate/shipping-rate-draft/presets/sample-data-goodstore/gbp-10000.spec.ts b/models/shipping-method/src/shipping-rate/shipping-rate-draft/presets/sample-data-b2c-lifestyle/gbp-10000.spec.ts similarity index 100% rename from models/shipping-method/src/shipping-rate/shipping-rate-draft/presets/sample-data-goodstore/gbp-10000.spec.ts rename to models/shipping-method/src/shipping-rate/shipping-rate-draft/presets/sample-data-b2c-lifestyle/gbp-10000.spec.ts diff --git a/models/shipping-method/src/shipping-rate/shipping-rate-draft/presets/sample-data-goodstore/gbp-10000.ts b/models/shipping-method/src/shipping-rate/shipping-rate-draft/presets/sample-data-b2c-lifestyle/gbp-10000.ts similarity index 100% rename from models/shipping-method/src/shipping-rate/shipping-rate-draft/presets/sample-data-goodstore/gbp-10000.ts rename to models/shipping-method/src/shipping-rate/shipping-rate-draft/presets/sample-data-b2c-lifestyle/gbp-10000.ts diff --git a/models/shipping-method/src/shipping-rate/shipping-rate-draft/presets/sample-data-goodstore/gbp-50000.spec.ts b/models/shipping-method/src/shipping-rate/shipping-rate-draft/presets/sample-data-b2c-lifestyle/gbp-50000.spec.ts similarity index 100% rename from models/shipping-method/src/shipping-rate/shipping-rate-draft/presets/sample-data-goodstore/gbp-50000.spec.ts rename to models/shipping-method/src/shipping-rate/shipping-rate-draft/presets/sample-data-b2c-lifestyle/gbp-50000.spec.ts diff --git a/models/shipping-method/src/shipping-rate/shipping-rate-draft/presets/sample-data-goodstore/gbp-50000.ts b/models/shipping-method/src/shipping-rate/shipping-rate-draft/presets/sample-data-b2c-lifestyle/gbp-50000.ts similarity index 100% rename from models/shipping-method/src/shipping-rate/shipping-rate-draft/presets/sample-data-goodstore/gbp-50000.ts rename to models/shipping-method/src/shipping-rate/shipping-rate-draft/presets/sample-data-b2c-lifestyle/gbp-50000.ts diff --git a/models/shipping-method/src/shipping-rate/shipping-rate-draft/presets/sample-data-goodstore/index.ts b/models/shipping-method/src/shipping-rate/shipping-rate-draft/presets/sample-data-b2c-lifestyle/index.ts similarity index 100% rename from models/shipping-method/src/shipping-rate/shipping-rate-draft/presets/sample-data-goodstore/index.ts rename to models/shipping-method/src/shipping-rate/shipping-rate-draft/presets/sample-data-b2c-lifestyle/index.ts diff --git a/models/shipping-method/src/shipping-rate/shipping-rate-draft/presets/sample-data-goodstore/usd-5000.spec.ts b/models/shipping-method/src/shipping-rate/shipping-rate-draft/presets/sample-data-b2c-lifestyle/usd-5000.spec.ts similarity index 100% rename from models/shipping-method/src/shipping-rate/shipping-rate-draft/presets/sample-data-goodstore/usd-5000.spec.ts rename to models/shipping-method/src/shipping-rate/shipping-rate-draft/presets/sample-data-b2c-lifestyle/usd-5000.spec.ts diff --git a/models/shipping-method/src/shipping-rate/shipping-rate-draft/presets/sample-data-goodstore/usd-5000.ts b/models/shipping-method/src/shipping-rate/shipping-rate-draft/presets/sample-data-b2c-lifestyle/usd-5000.ts similarity index 100% rename from models/shipping-method/src/shipping-rate/shipping-rate-draft/presets/sample-data-goodstore/usd-5000.ts rename to models/shipping-method/src/shipping-rate/shipping-rate-draft/presets/sample-data-b2c-lifestyle/usd-5000.ts diff --git a/models/shipping-method/src/zone-rate/zone-rate-draft/presets/index.ts b/models/shipping-method/src/zone-rate/zone-rate-draft/presets/index.ts index 1a29f1e33..ca001e328 100644 --- a/models/shipping-method/src/zone-rate/zone-rate-draft/presets/index.ts +++ b/models/shipping-method/src/zone-rate/zone-rate-draft/presets/index.ts @@ -1,13 +1,13 @@ import changeHistoryData from './change-history-data'; import sampleDataB2B from './sample-data-b2b'; +import sampleDataB2CLifestyle from './sample-data-b2c-lifestyle'; import sampleDataFashion from './sample-data-fashion'; -import sampleDataGoodStore from './sample-data-goodstore'; const presets = { changeHistoryData, sampleDataB2B, + sampleDataB2CLifestyle, sampleDataFashion, - sampleDataGoodStore, }; export default presets; diff --git a/models/shipping-method/src/zone-rate/zone-rate-draft/presets/sample-data-goodstore/europe-express.spec.ts b/models/shipping-method/src/zone-rate/zone-rate-draft/presets/sample-data-b2c-lifestyle/europe-express.spec.ts similarity index 100% rename from models/shipping-method/src/zone-rate/zone-rate-draft/presets/sample-data-goodstore/europe-express.spec.ts rename to models/shipping-method/src/zone-rate/zone-rate-draft/presets/sample-data-b2c-lifestyle/europe-express.spec.ts diff --git a/models/shipping-method/src/zone-rate/zone-rate-draft/presets/sample-data-goodstore/europe-express.ts b/models/shipping-method/src/zone-rate/zone-rate-draft/presets/sample-data-b2c-lifestyle/europe-express.ts similarity index 74% rename from models/shipping-method/src/zone-rate/zone-rate-draft/presets/sample-data-goodstore/europe-express.ts rename to models/shipping-method/src/zone-rate/zone-rate-draft/presets/sample-data-b2c-lifestyle/europe-express.ts index 8b1f88d2c..085e410d7 100644 --- a/models/shipping-method/src/zone-rate/zone-rate-draft/presets/sample-data-goodstore/europe-express.ts +++ b/models/shipping-method/src/zone-rate/zone-rate-draft/presets/sample-data-b2c-lifestyle/europe-express.ts @@ -4,7 +4,7 @@ import { ShippingRateDraft } from '../../../../shipping-rate'; import type { TZoneRateDraftBuilder } from '../../../types'; import * as ZoneRateDraft from '../../index'; -const europeZone = ZoneDraft.presets.sampleDataGoodStore +const europeZone = ZoneDraft.presets.sampleDataB2CLifestyle .europeAndUk() .build(); @@ -12,8 +12,8 @@ const europeExpress = (): TZoneRateDraftBuilder => ZoneRateDraft.random() .zone(KeyReferenceDraft.presets.zone().key(europeZone.key!)) .shippingRates([ - ShippingRateDraft.presets.sampleDataGoodStore.eur50000(), - ShippingRateDraft.presets.sampleDataGoodStore.gbp50000(), + ShippingRateDraft.presets.sampleDataB2CLifestyle.eur50000(), + ShippingRateDraft.presets.sampleDataB2CLifestyle.gbp50000(), ]); export default europeExpress; diff --git a/models/shipping-method/src/zone-rate/zone-rate-draft/presets/sample-data-goodstore/europe.spec.ts b/models/shipping-method/src/zone-rate/zone-rate-draft/presets/sample-data-b2c-lifestyle/europe.spec.ts similarity index 100% rename from models/shipping-method/src/zone-rate/zone-rate-draft/presets/sample-data-goodstore/europe.spec.ts rename to models/shipping-method/src/zone-rate/zone-rate-draft/presets/sample-data-b2c-lifestyle/europe.spec.ts diff --git a/models/shipping-method/src/zone-rate/zone-rate-draft/presets/sample-data-goodstore/europe.ts b/models/shipping-method/src/zone-rate/zone-rate-draft/presets/sample-data-b2c-lifestyle/europe.ts similarity index 73% rename from models/shipping-method/src/zone-rate/zone-rate-draft/presets/sample-data-goodstore/europe.ts rename to models/shipping-method/src/zone-rate/zone-rate-draft/presets/sample-data-b2c-lifestyle/europe.ts index d4bfc9903..def4adfa0 100644 --- a/models/shipping-method/src/zone-rate/zone-rate-draft/presets/sample-data-goodstore/europe.ts +++ b/models/shipping-method/src/zone-rate/zone-rate-draft/presets/sample-data-b2c-lifestyle/europe.ts @@ -4,7 +4,7 @@ import { ShippingRateDraft } from '../../../../shipping-rate'; import type { TZoneRateDraftBuilder } from '../../../types'; import * as ZoneRateDraft from '../../index'; -const europeZone = ZoneDraft.presets.sampleDataGoodStore +const europeZone = ZoneDraft.presets.sampleDataB2CLifestyle .europeAndUk() .build(); @@ -12,8 +12,8 @@ const europe = (): TZoneRateDraftBuilder => ZoneRateDraft.random() .zone(KeyReferenceDraft.presets.zone().key(europeZone.key!)) .shippingRates([ - ShippingRateDraft.presets.sampleDataGoodStore.eur10000(), - ShippingRateDraft.presets.sampleDataGoodStore.gbp10000(), + ShippingRateDraft.presets.sampleDataB2CLifestyle.eur10000(), + ShippingRateDraft.presets.sampleDataB2CLifestyle.gbp10000(), ]); export default europe; diff --git a/models/shipping-method/src/zone-rate/zone-rate-draft/presets/sample-data-goodstore/index.ts b/models/shipping-method/src/zone-rate/zone-rate-draft/presets/sample-data-b2c-lifestyle/index.ts similarity index 100% rename from models/shipping-method/src/zone-rate/zone-rate-draft/presets/sample-data-goodstore/index.ts rename to models/shipping-method/src/zone-rate/zone-rate-draft/presets/sample-data-b2c-lifestyle/index.ts diff --git a/models/shipping-method/src/zone-rate/zone-rate-draft/presets/sample-data-goodstore/usa.spec.ts b/models/shipping-method/src/zone-rate/zone-rate-draft/presets/sample-data-b2c-lifestyle/usa.spec.ts similarity index 100% rename from models/shipping-method/src/zone-rate/zone-rate-draft/presets/sample-data-goodstore/usa.spec.ts rename to models/shipping-method/src/zone-rate/zone-rate-draft/presets/sample-data-b2c-lifestyle/usa.spec.ts diff --git a/models/shipping-method/src/zone-rate/zone-rate-draft/presets/sample-data-goodstore/usa.ts b/models/shipping-method/src/zone-rate/zone-rate-draft/presets/sample-data-b2c-lifestyle/usa.ts similarity index 76% rename from models/shipping-method/src/zone-rate/zone-rate-draft/presets/sample-data-goodstore/usa.ts rename to models/shipping-method/src/zone-rate/zone-rate-draft/presets/sample-data-b2c-lifestyle/usa.ts index 15fb5934e..c4f14a491 100644 --- a/models/shipping-method/src/zone-rate/zone-rate-draft/presets/sample-data-goodstore/usa.ts +++ b/models/shipping-method/src/zone-rate/zone-rate-draft/presets/sample-data-b2c-lifestyle/usa.ts @@ -4,13 +4,15 @@ import { ShippingRateDraft } from '../../../../shipping-rate'; import type { TZoneRateDraftBuilder } from '../../../types'; import * as ZoneRateDraft from '../../index'; -const usaZone = ZoneDraft.presets.sampleDataGoodStore +const usaZone = ZoneDraft.presets.sampleDataB2CLifestyle .countryUsa() .build(); const usa = (): TZoneRateDraftBuilder => ZoneRateDraft.random() .zone(KeyReferenceDraft.presets.zone().key(usaZone.key!)) - .shippingRates([ShippingRateDraft.presets.sampleDataGoodStore.usd5000()]); + .shippingRates([ + ShippingRateDraft.presets.sampleDataB2CLifestyle.usd5000(), + ]); export default usa; diff --git a/models/store/src/store/store-draft/presets/index.ts b/models/store/src/store/store-draft/presets/index.ts index e3da0cb2b..e248369c8 100644 --- a/models/store/src/store/store-draft/presets/index.ts +++ b/models/store/src/store/store-draft/presets/index.ts @@ -1,13 +1,13 @@ import empty from './empty'; import sampleDataB2B from './sample-data-b2b'; +import sampleDataB2CLifestyle from './sample-data-b2c-lifestyle'; import sampleDataFashion from './sample-data-fashion'; -import sampleDataGoodStore from './sample-data-goodstore'; const presets = { empty, sampleDataB2B, + sampleDataB2CLifestyle, sampleDataFashion, - sampleDataGoodStore, }; export default presets; diff --git a/models/store/src/store/store-draft/presets/sample-data-b2c-lifestyle/b2c-retail-store.spec.ts b/models/store/src/store/store-draft/presets/sample-data-b2c-lifestyle/b2c-retail-store.spec.ts new file mode 100644 index 000000000..fb8f4ffbc --- /dev/null +++ b/models/store/src/store/store-draft/presets/sample-data-b2c-lifestyle/b2c-retail-store.spec.ts @@ -0,0 +1,51 @@ +import { TStoreDraft } from '../../../types'; +import b2cRetailStore from './b2c-retail-store'; + +describe('with `b2c-retail-store` preset', () => { + it('should return a store draft preset', () => { + const storeDraft = b2cRetailStore().build(); + expect(storeDraft).toMatchInlineSnapshot(` +{ + "countries": undefined, + "custom": undefined, + "distributionChannels": undefined, + "key": "b2c-retail-store", + "languages": undefined, + "name": { + "de": undefined, + "en": undefined, + "en-GB": "B2C Retail Store", + "en-US": "B2C Retail Store", + "fr": undefined, + }, + "productSelections": undefined, + "supplyChannels": undefined, +} +`); + }); + + it('should return a store draft preset preset when built for graphql', () => { + const storeDraft = b2cRetailStore().buildGraphql(); + expect(storeDraft).toMatchInlineSnapshot(` +{ + "countries": undefined, + "custom": undefined, + "distributionChannels": undefined, + "key": "b2c-retail-store", + "languages": undefined, + "name": [ + { + "locale": "en-US", + "value": "B2C Retail Store", + }, + { + "locale": "en-GB", + "value": "B2C Retail Store", + }, + ], + "productSelections": undefined, + "supplyChannels": undefined, +} +`); + }); +}); diff --git a/models/store/src/store/store-draft/presets/sample-data-goodstore/the-good-store.ts b/models/store/src/store/store-draft/presets/sample-data-b2c-lifestyle/b2c-retail-store.ts similarity index 60% rename from models/store/src/store/store-draft/presets/sample-data-goodstore/the-good-store.ts rename to models/store/src/store/store-draft/presets/sample-data-b2c-lifestyle/b2c-retail-store.ts index 42f3ed16e..de4cb7989 100644 --- a/models/store/src/store/store-draft/presets/sample-data-goodstore/the-good-store.ts +++ b/models/store/src/store/store-draft/presets/sample-data-b2c-lifestyle/b2c-retail-store.ts @@ -2,14 +2,14 @@ import { LocalizedStringDraft } from '@commercetools-test-data/commons'; import type { TStoreDraftBuilder } from '../../../types'; import * as StoreDraft from '../../index'; -const theGoodStore = (): TStoreDraftBuilder => +const b2cRetailStore = (): TStoreDraftBuilder => StoreDraft.presets .empty() - .key('the-good-store') + .key('b2c-retail-store') .name( LocalizedStringDraft.presets .empty() - ['en-US']('The Good Store') - ['en-GB']('The Good Store') + ['en-US']('B2C Retail Store') + ['en-GB']('B2C Retail Store') ); -export default theGoodStore; +export default b2cRetailStore; diff --git a/models/store/src/store/store-draft/presets/sample-data-b2c-lifestyle/index.ts b/models/store/src/store/store-draft/presets/sample-data-b2c-lifestyle/index.ts new file mode 100644 index 000000000..2e1172208 --- /dev/null +++ b/models/store/src/store/store-draft/presets/sample-data-b2c-lifestyle/index.ts @@ -0,0 +1,5 @@ +import b2cRetailStore from './b2c-retail-store'; + +const presets = { b2cRetailStore }; + +export default presets; diff --git a/models/store/src/store/store-draft/presets/sample-data-goodstore/index.ts b/models/store/src/store/store-draft/presets/sample-data-goodstore/index.ts deleted file mode 100644 index e7c68c3b0..000000000 --- a/models/store/src/store/store-draft/presets/sample-data-goodstore/index.ts +++ /dev/null @@ -1,5 +0,0 @@ -import theGoodStore from './the-good-store'; - -const presets = { theGoodStore }; - -export default presets; diff --git a/models/store/src/store/store-draft/presets/sample-data-goodstore/the-good-store.spec.ts b/models/store/src/store/store-draft/presets/sample-data-goodstore/the-good-store.spec.ts deleted file mode 100644 index 00bf1a957..000000000 --- a/models/store/src/store/store-draft/presets/sample-data-goodstore/the-good-store.spec.ts +++ /dev/null @@ -1,51 +0,0 @@ -import { TStoreDraft } from '../../../types'; -import theGoodStore from './the-good-store'; - -describe('with `the_good_store` preset', () => { - it('should return a store draft preset', () => { - const storeDraft = theGoodStore().build(); - expect(storeDraft).toMatchInlineSnapshot(` - { - "countries": undefined, - "custom": undefined, - "distributionChannels": undefined, - "key": "the-good-store", - "languages": undefined, - "name": { - "de": undefined, - "en": undefined, - "en-GB": "The Good Store", - "en-US": "The Good Store", - "fr": undefined, - }, - "productSelections": undefined, - "supplyChannels": undefined, - } - `); - }); - - it('should return a store draft preset preset when built for graphql', () => { - const storeDraft = theGoodStore().buildGraphql(); - expect(storeDraft).toMatchInlineSnapshot(` - { - "countries": undefined, - "custom": undefined, - "distributionChannels": undefined, - "key": "the-good-store", - "languages": undefined, - "name": [ - { - "locale": "en-US", - "value": "The Good Store", - }, - { - "locale": "en-GB", - "value": "The Good Store", - }, - ], - "productSelections": undefined, - "supplyChannels": undefined, - } - `); - }); -}); diff --git a/models/tax-category/src/tax-category/tax-category-draft/presets/index.ts b/models/tax-category/src/tax-category/tax-category-draft/presets/index.ts index 525c7ef58..45a3396fe 100644 --- a/models/tax-category/src/tax-category/tax-category-draft/presets/index.ts +++ b/models/tax-category/src/tax-category/tax-category-draft/presets/index.ts @@ -1,15 +1,15 @@ import changeHistoryData from './change-history-data'; import empty from './empty'; import sampleDataB2B from './sample-data-b2b'; +import sampleDataB2CLifestyle from './sample-data-b2c-lifestyle'; import sampleDataFashion from './sample-data-fashion'; -import sampleDataGoodStore from './sample-data-goodstore'; const presets = { changeHistoryData, empty, sampleDataB2B, + sampleDataB2CLifestyle, sampleDataFashion, - sampleDataGoodStore, }; export default presets; diff --git a/models/tax-category/src/tax-category/tax-category-draft/presets/sample-data-goodstore/index.ts b/models/tax-category/src/tax-category/tax-category-draft/presets/sample-data-b2c-lifestyle/index.ts similarity index 100% rename from models/tax-category/src/tax-category/tax-category-draft/presets/sample-data-goodstore/index.ts rename to models/tax-category/src/tax-category/tax-category-draft/presets/sample-data-b2c-lifestyle/index.ts diff --git a/models/tax-category/src/tax-category/tax-category-draft/presets/sample-data-goodstore/standard-tax-category.spec.ts b/models/tax-category/src/tax-category/tax-category-draft/presets/sample-data-b2c-lifestyle/standard-tax-category.spec.ts similarity index 100% rename from models/tax-category/src/tax-category/tax-category-draft/presets/sample-data-goodstore/standard-tax-category.spec.ts rename to models/tax-category/src/tax-category/tax-category-draft/presets/sample-data-b2c-lifestyle/standard-tax-category.spec.ts diff --git a/models/tax-category/src/tax-category/tax-category-draft/presets/sample-data-goodstore/standard-tax-category.ts b/models/tax-category/src/tax-category/tax-category-draft/presets/sample-data-b2c-lifestyle/standard-tax-category.ts similarity index 100% rename from models/tax-category/src/tax-category/tax-category-draft/presets/sample-data-goodstore/standard-tax-category.ts rename to models/tax-category/src/tax-category/tax-category-draft/presets/sample-data-b2c-lifestyle/standard-tax-category.ts diff --git a/models/zone/src/zone/zone-draft/presets/index.ts b/models/zone/src/zone/zone-draft/presets/index.ts index e3da0cb2b..e248369c8 100644 --- a/models/zone/src/zone/zone-draft/presets/index.ts +++ b/models/zone/src/zone/zone-draft/presets/index.ts @@ -1,13 +1,13 @@ import empty from './empty'; import sampleDataB2B from './sample-data-b2b'; +import sampleDataB2CLifestyle from './sample-data-b2c-lifestyle'; import sampleDataFashion from './sample-data-fashion'; -import sampleDataGoodStore from './sample-data-goodstore'; const presets = { empty, sampleDataB2B, + sampleDataB2CLifestyle, sampleDataFashion, - sampleDataGoodStore, }; export default presets; diff --git a/models/zone/src/zone/zone-draft/presets/sample-data-goodstore/country-europe-and-uk.spec.ts b/models/zone/src/zone/zone-draft/presets/sample-data-b2c-lifestyle/country-europe-and-uk.spec.ts similarity index 100% rename from models/zone/src/zone/zone-draft/presets/sample-data-goodstore/country-europe-and-uk.spec.ts rename to models/zone/src/zone/zone-draft/presets/sample-data-b2c-lifestyle/country-europe-and-uk.spec.ts diff --git a/models/zone/src/zone/zone-draft/presets/sample-data-goodstore/country-europe-and-uk.ts b/models/zone/src/zone/zone-draft/presets/sample-data-b2c-lifestyle/country-europe-and-uk.ts similarity index 100% rename from models/zone/src/zone/zone-draft/presets/sample-data-goodstore/country-europe-and-uk.ts rename to models/zone/src/zone/zone-draft/presets/sample-data-b2c-lifestyle/country-europe-and-uk.ts diff --git a/models/zone/src/zone/zone-draft/presets/sample-data-goodstore/country-usa.spec.ts b/models/zone/src/zone/zone-draft/presets/sample-data-b2c-lifestyle/country-usa.spec.ts similarity index 100% rename from models/zone/src/zone/zone-draft/presets/sample-data-goodstore/country-usa.spec.ts rename to models/zone/src/zone/zone-draft/presets/sample-data-b2c-lifestyle/country-usa.spec.ts diff --git a/models/zone/src/zone/zone-draft/presets/sample-data-goodstore/country-usa.ts b/models/zone/src/zone/zone-draft/presets/sample-data-b2c-lifestyle/country-usa.ts similarity index 100% rename from models/zone/src/zone/zone-draft/presets/sample-data-goodstore/country-usa.ts rename to models/zone/src/zone/zone-draft/presets/sample-data-b2c-lifestyle/country-usa.ts diff --git a/models/zone/src/zone/zone-draft/presets/sample-data-goodstore/index.ts b/models/zone/src/zone/zone-draft/presets/sample-data-b2c-lifestyle/index.ts similarity index 100% rename from models/zone/src/zone/zone-draft/presets/sample-data-goodstore/index.ts rename to models/zone/src/zone/zone-draft/presets/sample-data-b2c-lifestyle/index.ts