Skip to content
This repository was archived by the owner on Nov 19, 2024. It is now read-only.

Commit 0cac71e

Browse files
committed
Merge branch 'kh_giftwrap' of github.com:magento/devdocs into kh_giftwrap
2 parents be93b03 + 69479bf commit 0cac71e

File tree

4 files changed

+14
-14
lines changed

4 files changed

+14
-14
lines changed

src/_includes/graphql/cart-object-24.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@ Attribute | Data Type | Description
1010
`billing_address` | [BillingCartAddress][BillingCartAddress] | Contains the billing address specified in the customer's cart
1111
`email` | String | The customer's email address
1212
`gift_message` | [GiftMessage][GiftMessage] | A gift message added to the cart
13-
`gift_receipt_included` | Boolean! | Whether the customer requested a gift receipt for the cart
13+
`gift_receipt_included` | Boolean! | Indicates if the customer requested a gift receipt for the cart
1414
`gift_wrapping` | GiftWrapping | The selected gift wrapping for the cart
1515
`id` | ID! | The ID of the cart
1616
`is_virtual` | Boolean! | Indicates whether the cart contains only virtual products
1717
`items` | [[CartItemInterface]][CartItemInterface] | Contains the items in the customer's cart
1818
`prices` | [CartPrices][CartPrices] | Contains subtotals and totals
19-
`printed_card_included` | Boolean! | Whether the customer requested a printed card for the cart
19+
`printed_card_included` | Boolean! | Indicates if the customer requested a printed card for the cart
2020
`selected_payment_method` | [SelectedPaymentMethod][SelectedPaymentMethod] | Selected payment method
2121
`shipping_addresses` | [[ShippingCartAddress]][ShippingCartAddress]! | Contains one or more shipping addresses
2222
`total_quantity` | Float! | Total Quantity of products in the cart

src/_includes/graphql/customer-orders-output.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ Attribute | Data type | Description
4848
`credit_memos` | [[CreditMemo](#CreditMemo)] | Contains a list of credit memos for the order
4949
`grand_total` | Float | Deprecated. Use the `totals.grand_total` attribute instead
5050
`gift_message` | [GiftMessage](#GiftMessage) | The entered gift message for the order
51-
`gift_receipt_included` | Boolean! | Indicates whether the customer requested a gift receipt for the order
51+
`gift_receipt_included` | Boolean! | Indicates if the customer requested a gift receipt for the order
5252
`gift_wrapping` | [GiftWrapping](#GiftWrapping) | The selected gift wrapping for the order
5353
`id` | ID! | Unique identifier for the order
5454
`increment_id` | String | Deprecated. Use the `id` attribute instead
@@ -58,7 +58,7 @@ Attribute | Data type | Description
5858
`order_date` | String! | The date the order was placed
5959
`order_number` | String! | Deprecated. Use the `number` attribute instead
6060
`payment_methods` | [[PaymentMethod](#PaymentMethod)] | Payment details for the order
61-
`printed_card_included` | Boolean! | Indicates whether the customer requested a printed card for the order
61+
`printed_card_included` | Boolean! | Indicates if the customer requested a printed card for the order
6262
`shipments` | [[OrderShipment](#OrderShipment)] | Shipment list for the order
6363
`shipping_address` | [OrderAddress](#OrderAddress) | Shipping address for the order
6464
`shipping_method` | String | Shipping method for the order

src/guides/v2.4/graphql/mutations/update-cart-items.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ group: graphql
33
title: updateCartItems mutation
44
---
55

6-
The `updateCartItems` mutation allows you modify items in the specified cart. You can also replace the current quantity of one or more cart items with the specified quantities. The mutation does not perform calculations to determine the quantity of cart items.
6+
The `updateCartItems` mutation allows you to modify items in the specified cart. You can also replace the current quantity of one or more cart items with the specified quantities. The mutation does not perform calculations to determine the quantity of cart items.
77

88
{:.bs-callout-info}
99
Setting the quantity to `0` removes an item from the cart.
@@ -100,7 +100,7 @@ Attribute | Data Type | Description
100100

101101
### CartItemUpdateInput attributes {#CartItemUpdateInput}
102102

103-
The `CartItemUpdateInput` object may contain the following attributes.
103+
The `CartItemUpdateInput` object can contain the following attributes.
104104

105105
Attribute | Data Type | Description
106106
--- | --- | ---

src/guides/v2.4/graphql/queries/store-config.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -242,20 +242,20 @@ The `StoreConfig` object can contain the following attributes.
242242
Attribute | Data Type | Description | Default or example value
243243
--- | --- | --- | ---
244244
`absolute_footer` | String | Contains scripts that must be included in the HTML before the closing `<body>` tag | null
245-
`allow_gift_wrapping_on_order` | String | Indicates whether a gift wrapping can be added for the entire order. Possible values: 1 (Yes) and 0 (No) | 1
246-
`allow_gift_wrapping_on_order_items` | String | Indicates whether a gift wrapping can be added for individual order items. Possible values: 1 (Yes) and 0 (No) | 1
247-
`allow_gift_receipt` | String | Indicates whether the gift sender has the option to send a gift receipt. Possible values: 1 (Yes) and 0 (No) | 1
245+
`allow_gift_wrapping_on_order` | String | Indicates if a gift wrapping can be added for the entire order. Possible values: 1 (Yes) and 0 (No) | 1
246+
`allow_gift_wrapping_on_order_items` | String | Indicates if a gift wrapping can be added for individual order items. Possible values: 1 (Yes) and 0 (No) | 1
247+
`allow_gift_receipt` | String | Indicates if the gift sender has the option to send a gift receipt. Possible values: 1 (Yes) and 0 (No) | 1
248248
`allow_items` | String | Allows gift messages for order items. Possible values: 1 (Yes) and 0 (No). <br/>Configuration path: sales/gift_options/allow_items | 0
249249
`allow_order` | String | Allows gift messages at the order level. Possible values: 1 (Yes) and 0 (No). <br/>Configuration path: sales/gift_options/allow_order | 0
250-
`allow_printed_card` | String | Indicates whether a printed card can accompany an order. Possible values: 1 (Yes) and 0 (No) | 1
250+
`allow_printed_card` | String | Indicates if a printed card can accompany an order. Possible values: 1 (Yes) and 0 (No) | 1
251251
`autocomplete_on_storefront` | Boolean | Enable autocomplete on login and forgot password forms. <br/>Configuration path: customer/password/autocomplete_on_storefront | true
252252
`base_currency_code` | String | The code representing the currency in which Magento processes all payment transactions | `USD`
253253
`base_link_url` | String | A fully-qualified URL that is used to create relative links to the `base_url` | `http://magentohost.example.com/`
254254
`base_media_url` | String | The fully-qualified URL that specifies the location of user media files | `http://magentohost.example.com/pub/media/`
255255
`base_static_url` | String | The fully-qualified URL that specifies the location of static view files | `http://magentohost.example.com/pub/static/`
256256
`base_url` | String | The store's fully-qualified base URL | `http://magentohost.example.com/`
257-
`cart_gift_wrapping` | String | Indicates whether gift wrapping prices are displayed on the Shopping Cart page. Possible values: 1 (Yes) and 0 (No) | 1
258-
`cart_printed_card` | String | Indicates whether printed card prices are displayed on the Shopping Cart page. Possible values: 1 (Yes) and 0 (No) | 1
257+
`cart_gift_wrapping` | String | Indicates if gift wrapping prices are displayed on the Shopping Cart page. Possible values: 1 (Yes) and 0 (No) | 1
258+
`cart_printed_card` | String | Indicates if printed card prices are displayed on the Shopping Cart page. Possible values: 1 (Yes) and 0 (No) | 1
259259
`catalog_default_sort_by` | String | The default sort order of the search results list | `position`
260260
`category_fixed_product_tax_display_setting` | [FixedProductTaxDisplaySettings](#FixedProductTaxDisplaySettings) | Corresponds to the **Display Prices In Product Lists** field. It indicates how Fixed Product Tax information is displayed on category pages | FPT_DISABLED
261261
`category_url_suffix` | String | The suffix applied to category pages, such as `.htm` or `.html` | `.html`
@@ -305,8 +305,8 @@ Attribute | Data Type | Description | Default or example value
305305
`required_character_classes_number` | String | The number of different character classes required in a password (lowercase, uppercase, digits, special characters). <br/>Configuration path: customer/password/required_character_classes_number | 2
306306
`root_category_id` | Int | The ID of the root category | 2
307307
`sales_fixed_product_tax_display_setting` | [FixedProductTaxDisplaySettings](#FixedProductTaxDisplaySettings) | Corresponds to the **Display Prices In Sales Modules** field. It indicates how Fixed Product Taxes information is displayed on cart, checkout, and order pages | FPT_DISABLED
308-
`sales_gift_wrapping` | String | Indicates whether gift wrapping prices are displayed on the Orders page. Possible values: 1 (Yes) and 0 (No) | 1
309-
`sales_printed_card` | String | Indicates whether printed card prices are displayed on the Orders page. Possible values: 1 (Yes) and 0 (No) | 1
308+
`sales_gift_wrapping` | String | Indicates if gift wrapping prices are displayed on the Orders page. Possible values: 1 (Yes) and 0 (No) | 1
309+
`sales_printed_card` | String | Indicates if printed card prices are displayed on the Orders page. Possible values: 1 (Yes) and 0 (No) | 1
310310
`secure_base_link_url` | String | A secure fully-qualified URL that is used to create relative links to the `base_url` | `https://magentohost.example.com/`
311311
`secure_base_media_url` | String | The secure fully-qualified URL that specifies the location of user media files | `https://magentohost.example.com/pub/media/`
312312
`secure_base_static_url` | String | The secure fully-qualified URL that specifies the location of static view files | `https://magentohost.example.com/pub/static/`

0 commit comments

Comments
 (0)