27 January 2021
ExtensibilityGraphQLOrders
You can now add Custom Fields to Shipping Methods via the Shipping Methods API and the GraphQL API endpoints. This allows you to provide more information about your shipping services, for instance, the estimated delivery window, a carrier code, a pick-up point, or the 'track and trace URL format'.
- [API] Added 
shipping-methodenumeration value to Customizable Resources. - [API] Added 
customfield to ShippingMethodDraft and ShippingMethod. - [API] Added the setCustomType update action to the Update ShippingMethod endpoint.
 - [API] Added the setCustomField update action to the Update ShippingMethod endpoint.
 - [GraphQL API] Added the 
customfield to theShippingMethodtype. - [GraphQL API] Added 
setCustomTypeandsetCustomFieldstoShippingMethodUpdateActiontype. 
Introduced the following changes to the GraphQL schema (in SDL format):
extend type ShippingMethod {
  custom: CustomFieldsType
}
extend input ShippingMethodUpdateAction {
  setCustomType: SetCustomType
  setCustomFields: SetCustomFields
}