/** @description Update method to use for the tracking information */
export enum UpdateMethods {
  /** @description Append the new data to the existing data set */
  Append = 'append',
  /** @description Replace the existing data set with the new data */
  Replace = 'replace',
}
