Skip to content

Commit 83c4232

Browse files
author
oleksandrkravchuk
committed
Update with latest version.
1 parent 9602dbb commit 83c4232

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

design-documents/graph-ql/coverage/CartAddressOperations.graphqls

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ input SetShippingAddressesOnCartInput {
3333
input ShippingAddressInput {
3434
customer_address_id: Int # If provided then will be used address from address book
3535
address: CartAddressInput
36+
customer_notes: String
3637
pickup_location_code: String
3738
}
3839

@@ -76,7 +77,6 @@ interface CartAddressInterface {
7677
postcode: String
7778
country: CartAddressCountry
7879
telephone: String
79-
customer_notes: String
8080
}
8181

8282
type ShippingCartAddress implements CartAddressInterface {
@@ -85,6 +85,7 @@ type ShippingCartAddress implements CartAddressInterface {
8585
items_weight: Float
8686
cart_items: [CartItemQuantity]
8787
pickup_location_code: String
88+
customer_notes: String
8889
}
8990

9091
type BillingCartAddress implements CartAddressInterface {
@@ -111,7 +112,6 @@ type SelectedShippingMethod {
111112
carrier_title: String
112113
method_title: String
113114
amount: Money
114-
base_amount: Money
115115
}
116116

117117
type AvailableShippingMethod {
@@ -121,7 +121,6 @@ type AvailableShippingMethod {
121121
method_title: String
122122
error_message: String
123123
amount: Money!
124-
base_amount: Money
125124
price_excl_tax: Money!
126125
price_incl_tax: Money!
127126
available: Boolean!

0 commit comments

Comments
 (0)