Skip to content

Commit aa92027

Browse files
authored
Merge branch 'master' into db-schema-length-attribute
2 parents f33ee41 + 2df6437 commit aa92027

File tree

9 files changed

+11
-11
lines changed

9 files changed

+11
-11
lines changed

src/_includes/graphql/cart-object.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Attribute | Data Type | Description
88
`billing_address` | [BillingCartAddress][BillingCartAddress] | Contains the billing address specified in the customer's cart
99
`email` | String | The customer's email address
1010
`id` | ID! | The ID of the cart
11-
`is_virtual` | Boolean | Indicates whether the cart contains only virtual products
11+
`is_virtual` | Boolean! | Indicates whether the cart contains only virtual products
1212
`items` | [[CartItemInterface]][CartItemInterface] | Contains the items in the customer's cart
1313
`prices` | [CartPrices][CartPrices] | Contains subtotals and totals
1414
`selected_payment_method` | [SelectedPaymentMethod][SelectedPaymentMethod] | Selected payment method

src/guides/v2.3/frontend-dev-guide/themes/theme-create.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ To learn more about theme layouts, refer to the [Layout section]({{page.baseurl}
262262

263263
## Troubleshooting {#trouble}
264264

265-
When your theme changes are not visible even after clearing the cache, try redeploying your static files using the `magento setup:static-content:deploy` command, or add the `-f` argument to force deploy static content in any deployment mode in case you are not in production mode.
265+
When your theme changes are not visible even after clearing the cache, try redeploying your static files using the `bin/magento setup:static-content:deploy` command, or add the `-f` argument to force deploy static content in any deployment mode in case you are not in production mode.
266266

267267
{:.bs-callout-info}
268268
Running this command with the `-f` argument can fix issues regarding deployment of static content, but removes **all** symlinks and deploys the actual static content files.

src/guides/v2.3/graphql/queries/cart.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -564,7 +564,7 @@ query {
564564

565565
Attribute | Data Type | Description
566566
--- | --- | ---
567-
`cart_id` | String | A 32-character string that is created when you [create a cart]({{page.baseurl}}/graphql/mutations/create-empty-cart.html)
567+
`cart_id` | String! | A 32-character string that is created when you [create a cart]({{page.baseurl}}/graphql/mutations/create-empty-cart.html)
568568

569569
## Output attributes {#cart-output}
570570

@@ -622,7 +622,7 @@ Attribute | Data Type | Description
622622
--- | --- | ---
623623
`amount` | Money! | The cost of shipping using this shipping method
624624
`available` | Boolean! | Indicates whether this shipping method can be applied to the cart
625-
`base_amount` | Money | The base shipping cost, not including taxes or other cost adjustment. Could be null if method is not available
625+
`base_amount` | Money | Deprecated. This attribute is not applicable for GraphQL
626626
`carrier_code` | String! | A string that identifies a commercial carrier or an offline shipping method
627627
`carrier_title` | String! | The label for the carrier code
628628
`error_message` | String | Describes an error condition

src/recommendations/events.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: Recommendation Events
44
ee_only: True
55
---
66

7-
When you deploy the `product-recommendations` module, the module tracks the following user events. These events enable behavioral data collection.
7+
When you deploy the `magento/product-recommendations` module, the module tracks the following user events. These events enable behavioral data collection.
88

99
{:.bs-callout-info}
1010
If [Cookie Restriction Mode](https://docs.magento.com/m2/ce/user_guide/stores/compliance-cookie-restriction-mode.html) is enabled, Magento does not collect behavioral data until the shopper consents. If Cookie Restriction Mode is disabled, Magento collects behavioral data by default.
26.3 KB
Loading

src/recommendations/install-configure.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,16 +18,16 @@ Install the `magento/product-recommendations` module with Composer:
1818

1919
The `magento/product-recommendations` module requires the following dependencies:
2020

21-
- **module-data-services** — This module enables behavioral data collection by tracking [user events on the page]({{ page.baseurl }}/recommendations/events.html). This type of data is required by Adobe Sensei to compute product affinities based on production shopper behavior like product views, products added to a cart, and checkouts. Adobe Sensei then uses this information to create and train machine learning models for each website and storeview. This unlocks recommendation types like "Customers who viewed this, also viewed...", which automatically adjusts with shopper behavior over time. Magento and Adobe Sensei do not collect personally identifiable information.
21+
- **data-services** — This module enables behavioral data collection by tracking [user events on the page]({{ page.baseurl }}/recommendations/events.html). This type of data is required by Adobe Sensei to compute product affinities based on production shopper behavior like product views, products added to a cart, and checkouts. Adobe Sensei then uses this information to create and train machine learning models for each website and store view. This unlocks recommendation types like "Customers who viewed this, also viewed...", which automatically adjusts with shopper behavior over time. Magento and Adobe Sensei do not collect personally identifiable information.
2222

2323
- **saas-export** — This module syncs catalog data. This type of data provides product information to the Product Recommendations service so it can accurately return product names, pricing, images, URLs, inventory and availability, and other attributes.
2424

2525
{:.bs-callout-info}
26-
If you prefer, you can install the above modules explicitly using Composer: `composer require magento/module-data-services` and `composer require magento/saas-export`
26+
If you prefer, you can install the above modules explicitly using Composer: `composer require magento/data-services` and `composer require magento/saas-export`
2727

2828
### Update your Product Recommendations installation
2929

30-
If for any reason you need to update the `product-recommendations` module, run the following:
30+
If for any reason you need to update the `magento/product-recommendations` module, run the following:
3131

3232
```bash
3333
composer update magento/product-recommendations --with-dependencies

src/recommendations/product-recs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Product Recommendations require the following data:
2424

2525
- **Catalog** - Product metadata, such as name, price, availability, and so on.
2626

27-
When you install the `product-recommendations` module, Adobe Sensei aggregates the behavioral and catalog data, creating Product Recommendations for each recommendation type. The Product Recommendations service then deploys those recommendations to your storefront.
27+
When you install the `magento/product-recommendations` module, Adobe Sensei aggregates the behavioral and catalog data, creating Product Recommendations for each recommendation type. The Product Recommendations service then deploys those recommendations to your storefront.
2828

2929
## Next steps
3030

src/recommendations/test.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ The following recommendation types are listed in the recommended order when test
1717

1818
## Testing recommendations on a non-production environment
1919

20-
1. Deploy the `product-recommendations` module to a non-production environment where the catalog data is similar to your production catalog.
20+
1. Deploy the `magento/product-recommendations` module to a non-production environment where the catalog data is similar to your production catalog.
2121

2222
1. Use one of the non-production SaaS Environment IDs for [configuration](https://docs.magento.com/m2/ce/user_guide/configuration/services/saas.html) in the Magento Admin.
2323

src/recommendations/verify.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: Verify Event Collection
44
ee_only: True
55
---
66

7-
After you [install]({{ page.baseurl }}/recommendations/product-recs.html) and [configure]({{ page.baseurl }}/recommendations/install-configure.html) the product recommendations module, you can verify that the behavioral data is being sent to Magento. Magento uses the `DataServices.js` file to collect and send behavioral data. You can use developer tools available in Chrome, or you can install the Snowplow Chrome extension.
7+
After you [install]({{ page.baseurl }}/recommendations/product-recs.html) and [configure]({{ page.baseurl }}/recommendations/install-configure.html) the `magento/product-recommendations` module, you can verify that the behavioral data is being sent to Magento. Magento uses the `DataServices.js` file to collect and send behavioral data. You can use developer tools available in Chrome, or you can install the Snowplow Chrome extension.
88

99
## Verify using developer tools in Chrome
1010

0 commit comments

Comments
 (0)