@@ -49,7 +49,7 @@ input CustomerAddressInput @doc(description: "Contains details about a billing o
4949 prefix : String @doc (description : " An honorific, such as Dr., Mr., or Mrs." )
5050 suffix : String @doc (description : " A value such as Sr., Jr., or III." )
5151 vat_id : String @doc (description : " The customer's Tax/VAT number (for corporate customers)." )
52- custom_attributes : [AttributeValueInput ] @doc (description : " Deprecated: Custom attributes should not be put into container ." )
52+ custom_attributes : [AttributeValueInput ] @doc (description : " Custom attributes assigned to the customer address ." )
5353}
5454
5555input CustomerAddressRegionInput @doc (description : " Defines the customer's state or province." ) {
@@ -163,7 +163,7 @@ type CustomerAddress @doc(description: "Contains detailed information about a cu
163163 default_shipping : Boolean @doc (description : " Indicates whether the address is the customer's default shipping address." )
164164 default_billing : Boolean @doc (description : " Indicates whether the address is the customer's default billing address." )
165165 custom_attributes : [CustomerAddressAttribute ] @deprecated (reason : " Use custom_attributesV2 instead." )
166- custom_attributesV2 : [AttributeValueInterface ! ]! @doc (description : " Customer address' custom attributes ." )
166+ custom_attributesV2 : [AttributeValueInterface ! ]! @doc (description : " Custom attributes assigned to the customer address ." )
167167 extension_attributes : [CustomerAddressAttribute ] @doc (description : " Contains any extension attributes for the address." )
168168}
169169
@@ -175,7 +175,7 @@ type CustomerAddressRegion @doc(description: "Defines the customer's state or pr
175175
176176type CustomerAddressAttribute @doc (description : " Specifies the attribute code and value of a customer address attribute." ) {
177177 attribute_code : String @doc (description : " The name assigned to the customer address attribute." )
178- value : String @doc (description : " The valuue assigned to the customer address attribute." )
178+ value : String @doc (description : " The value assigned to the customer address attribute." )
179179}
180180
181181type IsEmailAvailableOutput @doc (description : " Contains the result of the `isEmailAvailable` query." ) {
0 commit comments