19 May 2021
Composable Commerce
HTTP API
Enhancement
Audit LogOrdersGraphQL
Extended support for Audit Log Change tracking. The following Changes are now properly identified and displayed in the Change History API instead of being identified as an UnknownChange. This applies to both the REST and the GraphQL APIs.

The following change was introduced in terms of GraphQL SDL:

  enum TaxMode {
    Disabled
    ExternalAmount
    External
    Platform
  }

  type OrderChange implements Change {
    change: String!
    nextValue: ChangeValue
    previousValue: ChangeValue
    """
    Custom Field Name
    """
    name: String
    customTypeId: String
    channelId: String
    deliveryId: String
    variant: String
    lineItemNameAllLocales: [LocalizedString!]!
    customLineItemNameAllLocales: [LocalizedString!]!
    lineItemId: String
    stateId: String
    parcel: Parcel
    customLineItemId: String
    taxMode: TaxMode
  }