@@ -49,7 +49,7 @@ input CustomerAddressInput @doc(description: "Contains details about a billing o
49
49
prefix : String @doc (description : " An honorific, such as Dr., Mr., or Mrs." )
50
50
suffix : String @doc (description : " A value such as Sr., Jr., or III." )
51
51
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 ." )
53
53
}
54
54
55
55
input CustomerAddressRegionInput @doc (description : " Defines the customer's state or province." ) {
@@ -163,7 +163,7 @@ type CustomerAddress @doc(description: "Contains detailed information about a cu
163
163
default_shipping : Boolean @doc (description : " Indicates whether the address is the customer's default shipping address." )
164
164
default_billing : Boolean @doc (description : " Indicates whether the address is the customer's default billing address." )
165
165
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 ." )
167
167
extension_attributes : [CustomerAddressAttribute ] @doc (description : " Contains any extension attributes for the address." )
168
168
}
169
169
@@ -175,7 +175,7 @@ type CustomerAddressRegion @doc(description: "Defines the customer's state or pr
175
175
176
176
type CustomerAddressAttribute @doc (description : " Specifies the attribute code and value of a customer address attribute." ) {
177
177
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." )
179
179
}
180
180
181
181
type IsEmailAvailableOutput @doc (description : " Contains the result of the `isEmailAvailable` query." ) {
0 commit comments