xpoNlmModule.factory("Enum",[function(){return{ControlMode:{ReadOnly:0,Edit:1}}}]);xpoNlmModule.factory("filterFactory",function(){return _.mixin({filterArrayByValues:function(n,t,i){return _.filter(n,function(n){return _.includes(i,n[t])})}}),{FilterArrayByValues:function(n,t,i){return _.isEmpty(i)?n:_.filterArrayByValues(n,t,i)}}});xpoNlmModule.factory("httpRequestInterceptor",["$q","$rootScope",function(n,t){return{request:function(i){return t.legacySyncCooldown||(t.legacySyncCooldown=0),(new Date).getTime()>t.legacySyncCooldown&&(t.legacySyncCooldown=(new Date).getTime()+3e4),i.url.endsWith(".html")&&Object.assign(i.headers,{"Cache-Control":"no-cache, must-revalidate"}),i||n.when(i)},requestError:function(t){return n.reject(t)},response:function(t){return t||n.when(t)},responseError:function(t){return n.reject(t)}}}])