Michael Scott
03/22/2023, 7:37 PM/**
 * @NApiVersion 2.0
 * @NScriptType BundleInstallationScript
 */
define([], function () {
  function checkPrerequisites() {
    log.debug("all good, proceed with the uninstallation or update");
  }
  return {
    beforeUpdate: function beforeUpdate(params) {
      checkPrerequisites();
    },
  };
});scottvonduhn
03/22/2023, 8:20 PMbeforeUpdate: function(params) {karlenigma
03/22/2023, 9:58 PMbattk
03/23/2023, 3:13 AM