lavva.exalushome 1.0.402 → 1.0.405

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (88) hide show
  1. package/build/exalushome-library-bundle.js +1 -1
  2. package/build/exalushome-library-bundle.js.map +1 -1
  3. package/build/js/Api.d.ts +29 -0
  4. package/build/js/Api.js +2 -0
  5. package/build/js/Api.js.map +1 -1
  6. package/build/js/CancelationTokenSource.js +25 -0
  7. package/build/js/CancelationTokenSource.js.map +1 -0
  8. package/build/js/DataFrame.js +38 -0
  9. package/build/js/DataFrame.js.map +1 -0
  10. package/build/js/DependencyContainer.js +98 -0
  11. package/build/js/DependencyContainer.js.map +1 -0
  12. package/build/js/Event.js +28 -0
  13. package/build/js/Event.js.map +1 -0
  14. package/build/js/Helpers.js +23 -0
  15. package/build/js/Helpers.js.map +1 -0
  16. package/build/js/IDIService.js +2 -0
  17. package/build/js/IDIService.js.map +1 -0
  18. package/build/js/Services/Controller/ControllerConfigurationService.d.ts +4 -0
  19. package/build/js/Services/Controller/ControllerConfigurationService.js +35 -0
  20. package/build/js/Services/Controller/ControllerConfigurationService.js.map +1 -1
  21. package/build/js/Services/Devices/Device.d.ts +3 -1
  22. package/build/js/Services/Devices/Device.js +306 -0
  23. package/build/js/Services/Devices/Device.js.map +1 -0
  24. package/build/js/Services/Devices/DeviceChannel.d.ts +19 -1
  25. package/build/js/Services/Devices/DeviceChannel.js +289 -0
  26. package/build/js/Services/Devices/DeviceChannel.js.map +1 -0
  27. package/build/js/Services/Devices/DevicesService.d.ts +5 -2
  28. package/build/js/Services/Devices/DevicesService.js +220 -11
  29. package/build/js/Services/Devices/DevicesService.js.map +1 -1
  30. package/build/js/Services/Devices/IDevice.d.ts +10 -7
  31. package/build/js/Services/Devices/IDevice.js +163 -0
  32. package/build/js/Services/Devices/IDevice.js.map +1 -0
  33. package/build/js/Services/Devices/IDeviceChannel.d.ts +6 -0
  34. package/build/js/Services/Devices/IDeviceChannel.js +14 -0
  35. package/build/js/Services/Devices/IDeviceChannel.js.map +1 -0
  36. package/build/js/Services/Devices/IDeviceState.js +915 -0
  37. package/build/js/Services/Devices/IDeviceState.js.map +1 -0
  38. package/build/js/Services/Devices/IDeviceTask.d.ts +21 -3
  39. package/build/js/Services/Devices/IDeviceTask.js +21 -0
  40. package/build/js/Services/Devices/IDeviceTask.js.map +1 -0
  41. package/build/js/Services/Devices/IDevicesService.d.ts +5 -2
  42. package/build/js/Services/Devices/IDevicesService.js +2 -0
  43. package/build/js/Services/Devices/IDevicesService.js.map +1 -0
  44. package/build/js/Services/Devices/TaskExecutionResult.js +10 -0
  45. package/build/js/Services/Devices/TaskExecutionResult.js.map +1 -0
  46. package/build/js/Services/Devices/Tasks/DeviceTask.d.ts +19 -0
  47. package/build/js/Services/Devices/Tasks/DeviceTask.js +64 -0
  48. package/build/js/Services/Devices/Tasks/DeviceTask.js.map +1 -0
  49. package/build/js/Services/Devices/Tasks/Tasks.d.ts +92 -0
  50. package/build/js/Services/Devices/Tasks/Tasks.js +253 -0
  51. package/build/js/Services/Devices/Tasks/Tasks.js.map +1 -0
  52. package/build/js/Services/ExalusConnectionService.d.ts +1 -1
  53. package/build/js/Services/ExalusConnectionService.js +345 -0
  54. package/build/js/Services/ExalusConnectionService.js.map +1 -0
  55. package/build/js/Services/FieldChangeResult.d.ts +1 -0
  56. package/build/js/Services/FieldChangeResult.js +41 -0
  57. package/build/js/Services/FieldChangeResult.js.map +1 -0
  58. package/build/js/Services/{IExalusConnector.d.ts → IExalusConnectionService.d.ts} +0 -0
  59. package/build/js/Services/IExalusConnectionService.js +33 -0
  60. package/build/js/Services/IExalusConnectionService.js.map +1 -0
  61. package/build/js/Services/ILocalStorageService.js +2 -0
  62. package/build/js/Services/ILocalStorageService.js.map +1 -0
  63. package/build/js/Services/LocalStorageService.js +33 -0
  64. package/build/js/Services/LocalStorageService.js.map +1 -0
  65. package/build/js/Services/Logging/ILoggerService.js +8 -0
  66. package/build/js/Services/Logging/ILoggerService.js.map +1 -0
  67. package/build/js/Services/Logging/LoggerService.js +93 -0
  68. package/build/js/Services/Logging/LoggerService.js.map +1 -0
  69. package/build/js/Services/Session/ISessionService.js +7 -0
  70. package/build/js/Services/Session/ISessionService.js.map +1 -0
  71. package/build/js/Services/Session/SessionService.js +189 -0
  72. package/build/js/Services/Session/SessionService.js.map +1 -0
  73. package/build/js/Services/Users/IUser.js +22 -0
  74. package/build/js/Services/Users/IUser.js.map +1 -0
  75. package/build/js/Services/Users/IUsersService.js +2 -0
  76. package/build/js/Services/Users/IUsersService.js.map +1 -0
  77. package/build/js/Services/Users/User.js +151 -0
  78. package/build/js/Services/Users/User.js.map +1 -0
  79. package/build/js/Services/Users/UsersService.js +144 -0
  80. package/build/js/Services/Users/UsersService.js.map +1 -0
  81. package/build/js/Services/WebApi/IWebApiCacheService.js +2 -0
  82. package/build/js/Services/WebApi/IWebApiCacheService.js.map +1 -0
  83. package/build/js/Services/WebApi/WebApiCacheService.js +44 -0
  84. package/build/js/Services/WebApi/WebApiCacheService.js.map +1 -0
  85. package/build/js/TypedEvent.js +26 -0
  86. package/build/js/TypedEvent.js.map +1 -0
  87. package/build/tsconfig.tsbuildinfo +1 -1
  88. package/package.json +3 -2
@@ -1,2 +1,2 @@
1
- (()=>{"use strict";var e={714:(e,t,n)=>{t.$=void 0;var o=n(898);Object.defineProperty(t,"$",{enumerable:!0,get:function(){return o.nameof}})},898:(e,t)=>{function n(e){return e.replace(/[?!]/g,"")}Object.defineProperty(t,"__esModule",{value:!0}),t.nameof=void 0,t.nameof=function(e,t){var o=e.toString();if(o.startsWith("class ")&&!o.startsWith("class =>"))return n(o.substring("class ".length,o.indexOf(" {")));if(o.includes("=>"))return n(o.substring(o.indexOf(".")+1));var r=o.match(/function\s*\(\w+\)\s*\{[\r\n\s]*return\s+\w+\.((\w+\.)*(\w+))/i);if(r)return t&&t.lastProp?r[3]:r[1];if(o.startsWith("function "))return n(o.substring("function ".length,o.indexOf("(")));throw new Error("ts-simple-nameof: Invalid function.")}}},t={};function n(o){var r=t[o];if(void 0!==r)return r.exports;var i=t[o]={exports:{}};return e[o](i,i.exports,n),i.exports}n.d=(e,t)=>{for(var o in t)n.o(t,o)&&!n.o(e,o)&&Object.defineProperty(e,o,{enumerable:!0,get:t[o]})},n.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(e){if("object"==typeof window)return window}}(),n.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t);var o={};(()=>{n.d(o,{V:()=>Mn});var e,t=n(714),r=function(){function e(){this.handlers=[]}return e.prototype.Subscribe=function(e){this.handlers.push(e)},e.prototype.Unsubscribe=function(e){this.handlers=this.handlers.filter((function(t){return t!==e}))},e.prototype.Invoke=function(e){this.handlers.slice(0).forEach((function(t){var n;try{t(e)}catch(e){null===(n=s.Log)||void 0===n||n.Error(e)}}))},e}();!function(e){e[e.Debug=0]="Debug",e[e.Info=1]="Info",e[e.Warning=2]="Warning",e[e.Error=3]="Error"}(e||(e={}));var i=function(){function n(){this._logLevel=e.Debug}return Object.defineProperty(n.prototype,"LogLevel",{get:function(){return this._logLevel},set:function(e){this._logLevel=e},enumerable:!1,configurable:!0}),n.prototype.GetServiceName=function(){return(0,t.$)(n)},n.prototype.GetTimeStamp=function(){var e=new Date;return"".concat(e.getHours(),":").concat(e.getMinutes(),":").concat(e.getSeconds(),".").concat(e.getMilliseconds()," | ")},n.prototype.Warning=function(n,o){switch(this._logLevel){case e.Warning:case e.Info:case e.Debug:break;default:return}null!=n&&("string"==typeof n||n instanceof String)?null==o?console.warn("".concat(this.GetTimeStamp(),"[WARN] ").concat(n)):console.warn("".concat(this.GetTimeStamp(),"[WARN] [").concat(n,"] ").concat(o)):null!=n&&n instanceof Object&&console.warn("".concat(this.GetTimeStamp(),"[WARN] [").concat((0,t.$)(n),"] ").concat(o))},n.prototype.Error=function(e,n){null!=e&&("string"==typeof e||e instanceof String)?null==n?console.error("".concat(this.GetTimeStamp(),"[ERROR] ").concat(e)):console.error("".concat(this.GetTimeStamp(),"[ERROR] [").concat(e,"] ").concat(n)):null!=e&&e instanceof Object&&console.error("".concat(this.GetTimeStamp(),"[ERROR] [").concat((0,t.$)(e),"] ").concat(n))},n.prototype.Info=function(n,o){switch(this._logLevel){case e.Info:case e.Debug:break;default:return}null!=n&&("string"==typeof n||n instanceof String)?null==o?console.info("".concat(this.GetTimeStamp(),"[INFO] ").concat(n)):console.info("".concat(this.GetTimeStamp(),"[INFO] [").concat(n,"] ").concat(o)):null!=n&&n instanceof Object&&console.info("".concat(this.GetTimeStamp(),"[INFO] [").concat((0,t.$)(n),"] ").concat(o))},n.prototype.Debug=function(n,o){this._logLevel===e.Debug&&(null!=n&&("string"==typeof n||n instanceof String)?null==o?console.debug("".concat(this.GetTimeStamp(),"[DEBUG] ").concat(n)):console.debug("".concat(this.GetTimeStamp(),"[DEBUG] [").concat(n,"] ").concat(o)):null!=n&&n instanceof Object&&console.debug("".concat(this.GetTimeStamp(),"[DEBUG] [").concat((0,t.$)(n),"] ").concat(o)))},n.prototype.Log=function(e,n){null!=e&&("string"==typeof e||e instanceof String)?null==n?console.log("".concat(this.GetTimeStamp(),"[LOG] ").concat(e)):console.log("".concat(this.GetTimeStamp(),"[LOG] [").concat(e,"] ").concat(n)):null!=e&&e instanceof Object&&console.log("".concat(this.GetTimeStamp(),"[LOG] [").concat((0,t.$)(e),"] ").concat(n))},n}(),s=function(){function e(){this._services={},this._serviceRegistrationEvent=new r}return Object.defineProperty(e,"Instance",{get:function(){return null!=e._instance||(e._instance=new e,this.Log=new i,this.Log.Warning("Initializing DependencyContainer"),e._instance.RegisterService(this.Log),this.IsInitialized=!0),e._instance},enumerable:!1,configurable:!0}),e.prototype.RegisterService=function(t){var n;null===(n=e.Log)||void 0===n||n.Debug(e,"Registering new service: ".concat(t.GetServiceName())),this._services[t.GetServiceName()]=t},e.prototype.GetService=function(n){var o,r=(0,t.$)(n);return null===(o=e.Log)||void 0===o||o.Debug(e,"Getting service [".concat(r,"] by GetService<T>()")),this._services[r]},e.prototype.GetServiceAsync=function(n,o){var r,i,s=this,a=(0,t.$)(n);return null===(r=e.Log)||void 0===r||r.Debug(e,"Waiting for service availability [".concat(a,"] by GetServiceAsync<T>()")),this._services.hasOwnProperty(a)?(null===(i=e.Log)||void 0===i||i.Debug(e,"Got service [".concat(a,"] by GetServiceAsync<T>()")),Promise.resolve(this._services[a])):new Promise((function(t,n){var r=function(n){var o;(null==n?void 0:n.GetServiceName())===a&&(null===(o=e.Log)||void 0===o||o.Debug(e,"Got service [".concat(a,"] by GetServiceAsync<T>()")),s._serviceRegistrationEvent.Unsubscribe(r),t(n))},i=function(){var t;s._serviceRegistrationEvent.Unsubscribe(r),null==o||o.CancellationEvent.Unsubscribe(i),null===(t=e.Log)||void 0===t||t.Debug(e,"Cancelled service [".concat(a,"] retrieval by GetServiceAsync<T>()")),n(new Error("Operation cancelled!"))};null==o||o.CancellationEvent.Subscribe(i),s._serviceRegistrationEvent.Subscribe(r)}))},e.prototype.GetServiceWithTimeoutAsync=function(n,o){var r,i,s=this,a=(0,t.$)(n);return null===(r=e.Log)||void 0===r||r.Debug(e,"Waiting for service[".concat(a,"] availability by GetServiceWithTimeoutAsync<T>()")),this._services.hasOwnProperty(a)?(null===(i=e.Log)||void 0===i||i.Debug(e,"Got service [".concat(a,"] by GetServiceWithTimeoutAsync<T>()")),Promise.resolve(this._services[a])):new Promise((function(t,n){var r=0,i=function(n){var o;(null==n?void 0:n.GetClassName())===a&&(null===(o=e.Log)||void 0===o||o.Debug(e,"Got service [".concat(a,"] by GetServiceWithTimeoutAsync<T>()")),window.clearTimeout(r),s._serviceRegistrationEvent.Unsubscribe(i),t(n))};r=window.setTimeout((function(){var t;window.clearTimeout(r),s._serviceRegistrationEvent.Unsubscribe(i),null===(t=e.Log)||void 0===t||t.Error(e,"Failed to get service [".concat(a,"] in time by GetServiceWithTimeoutAsync<T>()")),n(new Error("Operation cancelled!"))}),o),s._serviceRegistrationEvent.Subscribe(i)}))},e.IsInitialized=!1,e}(),a=function(){function e(){}return e.prototype.GetServiceName=function(){return(0,t.$)(e)},e.prototype.GetResourceName=function(e,t){return"_exalus_".concat(e,"_").concat(t)},e.prototype.Remove=function(e,t){localStorage.removeItem(this.GetResourceName(e,t))},e.prototype.DropStorage=function(e){var t="_exalus_".concat(e);for(var n in localStorage)(null==n?void 0:n.startsWith(t))&&localStorage.removeItem(n)},e.prototype.Save=function(e,t,n){localStorage.setItem(this.GetResourceName(e,t),JSON.stringify(n))},e.prototype.Read=function(e,t){var n=localStorage.getItem(this.GetResourceName(e,t));return null==n?null:JSON.parse(n)},e}();const c=[0,2e3,1e4,3e4,null];class u{constructor(e){this._retryDelays=void 0!==e?[...e,null]:c}nextRetryDelayInMilliseconds(e){return this._retryDelays[e.previousRetryCount]}}class l extends Error{constructor(e,t){const n=new.target.prototype;super(`${e}: Status code '${t}'`),this.statusCode=t,this.__proto__=n}}class h extends Error{constructor(e="A timeout occurred."){const t=new.target.prototype;super(e),this.__proto__=t}}class d extends Error{constructor(e="An abort occurred."){const t=new.target.prototype;super(e),this.__proto__=t}}class p extends Error{constructor(e,t){const n=new.target.prototype;super(e),this.transport=t,this.errorType="UnsupportedTransportError",this.__proto__=n}}class f extends Error{constructor(e,t){const n=new.target.prototype;super(e),this.transport=t,this.errorType="DisabledTransportError",this.__proto__=n}}class g extends Error{constructor(e,t){const n=new.target.prototype;super(e),this.transport=t,this.errorType="FailedToStartTransportError",this.__proto__=n}}class v extends Error{constructor(e){const t=new.target.prototype;super(e),this.errorType="FailedToNegotiateWithServerError",this.__proto__=t}}class _ extends Error{constructor(e,t){const n=new.target.prototype;super(e),this.innerErrors=t,this.__proto__=n}}class y{constructor(e,t,n){this.statusCode=e,this.statusText=t,this.content=n}}class m{get(e,t){return this.send({...t,method:"GET",url:e})}post(e,t){return this.send({...t,method:"POST",url:e})}delete(e,t){return this.send({...t,method:"DELETE",url:e})}getCookieString(e){return""}}var b,w,S,T,C;!function(e){e[e.Trace=0]="Trace",e[e.Debug=1]="Debug",e[e.Information=2]="Information",e[e.Warning=3]="Warning",e[e.Error=4]="Error",e[e.Critical=5]="Critical",e[e.None=6]="None"}(b||(b={}));class E{constructor(){}log(e,t){}}E.instance=new E;class P{static isRequired(e,t){if(null==e)throw new Error(`The '${t}' argument is required.`)}static isNotEmpty(e,t){if(!e||e.match(/^\s*$/))throw new Error(`The '${t}' argument should not be empty.`)}static isIn(e,t,n){if(!(e in t))throw new Error(`Unknown ${n} value: ${e}.`)}}class k{static get isBrowser(){return"object"==typeof window&&"object"==typeof window.document}static get isWebWorker(){return"object"==typeof self&&"importScripts"in self}static get isReactNative(){return"object"==typeof window&&void 0===window.document}static get isNode(){return!this.isBrowser&&!this.isWebWorker&&!this.isReactNative}}function I(e,t){let n="";return D(e)?(n=`Binary data of length ${e.byteLength}`,t&&(n+=`. Content: '${function(e){const t=new Uint8Array(e);let n="";return t.forEach((e=>{n+=`0x${e<16?"0":""}${e.toString(16)} `})),n.substr(0,n.length-1)}(e)}'`)):"string"==typeof e&&(n=`String data of length ${e.length}`,t&&(n+=`. Content: '${e}'`)),n}function D(e){return e&&"undefined"!=typeof ArrayBuffer&&(e instanceof ArrayBuffer||e.constructor&&"ArrayBuffer"===e.constructor.name)}async function R(e,t,n,o,r,i,s){let a={};if(r){const e=await r();e&&(a={Authorization:`Bearer ${e}`})}const[c,u]=N();a[c]=u,e.log(b.Trace,`(${t} transport) sending data. ${I(i,s.logMessageContent)}.`);const l=D(i)?"arraybuffer":"text",h=await n.post(o,{content:i,headers:{...a,...s.headers},responseType:l,timeout:s.timeout,withCredentials:s.withCredentials});e.log(b.Trace,`(${t} transport) request complete. Response status: ${h.statusCode}.`)}class A{constructor(e,t){this._subject=e,this._observer=t}dispose(){const e=this._subject.observers.indexOf(this._observer);e>-1&&this._subject.observers.splice(e,1),0===this._subject.observers.length&&this._subject.cancelCallback&&this._subject.cancelCallback().catch((e=>{}))}}class O{constructor(e){this._minLevel=e,this.out=console}log(e,t){if(e>=this._minLevel){const n=`[${(new Date).toISOString()}] ${b[e]}: ${t}`;switch(e){case b.Critical:case b.Error:this.out.error(n);break;case b.Warning:this.out.warn(n);break;case b.Information:this.out.info(n);break;default:this.out.log(n)}}}}function N(){let e="X-SignalR-User-Agent";return k.isNode&&(e="User-Agent"),[e,x("6.0.6",G(),k.isNode?"NodeJS":"Browser",$())]}function x(e,t,n,o){let r="Microsoft SignalR/";const i=e.split(".");return r+=`${i[0]}.${i[1]}`,r+=` (${e}; `,r+=t&&""!==t?`${t}; `:"Unknown OS; ",r+=`${n}`,r+=o?`; ${o}`:"; Unknown Runtime Version",r+=")",r}function G(){if(!k.isNode)return"";switch(process.platform){case"win32":return"Windows NT";case"darwin":return"macOS";case"linux":return"Linux";default:return process.platform}}function $(){if(k.isNode)return process.versions.node}function U(e){return e.stack?e.stack:e.message?e.message:`${e}`}class L extends m{constructor(e){if(super(),this._logger=e,"undefined"==typeof fetch){const e=require;this._jar=new(e("tough-cookie").CookieJar),this._fetchType=e("node-fetch"),this._fetchType=e("fetch-cookie")(this._fetchType,this._jar)}else this._fetchType=fetch.bind(function(){if("undefined"!=typeof globalThis)return globalThis;if("undefined"!=typeof self)return self;if("undefined"!=typeof window)return window;if(void 0!==n.g)return n.g;throw new Error("could not find global")}());if("undefined"==typeof AbortController){const e=require;this._abortControllerType=e("abort-controller")}else this._abortControllerType=AbortController}async send(e){if(e.abortSignal&&e.abortSignal.aborted)throw new d;if(!e.method)throw new Error("No method defined.");if(!e.url)throw new Error("No url defined.");const t=new this._abortControllerType;let n;e.abortSignal&&(e.abortSignal.onabort=()=>{t.abort(),n=new d});let o,r=null;if(e.timeout){const o=e.timeout;r=setTimeout((()=>{t.abort(),this._logger.log(b.Warning,"Timeout from HTTP request."),n=new h}),o)}try{o=await this._fetchType(e.url,{body:e.content,cache:"no-cache",credentials:!0===e.withCredentials?"include":"same-origin",headers:{"Content-Type":"text/plain;charset=UTF-8","X-Requested-With":"XMLHttpRequest",...e.headers},method:e.method,mode:"cors",redirect:"follow",signal:t.signal})}catch(e){if(n)throw n;throw this._logger.log(b.Warning,`Error from HTTP request. ${e}.`),e}finally{r&&clearTimeout(r),e.abortSignal&&(e.abortSignal.onabort=null)}if(!o.ok){const e=await M(o,"text");throw new l(e||o.statusText,o.status)}const i=M(o,e.responseType),s=await i;return new y(o.status,o.statusText,s)}getCookieString(e){let t="";return k.isNode&&this._jar&&this._jar.getCookies(e,((e,n)=>t=n.join("; "))),t}}function M(e,t){let n;switch(t){case"arraybuffer":n=e.arrayBuffer();break;case"text":default:n=e.text();break;case"blob":case"document":case"json":throw new Error(`${t} is not supported.`)}return n}class W extends m{constructor(e){super(),this._logger=e}send(e){return e.abortSignal&&e.abortSignal.aborted?Promise.reject(new d):e.method?e.url?new Promise(((t,n)=>{const o=new XMLHttpRequest;o.open(e.method,e.url,!0),o.withCredentials=void 0===e.withCredentials||e.withCredentials,o.setRequestHeader("X-Requested-With","XMLHttpRequest"),o.setRequestHeader("Content-Type","text/plain;charset=UTF-8");const r=e.headers;r&&Object.keys(r).forEach((e=>{o.setRequestHeader(e,r[e])})),e.responseType&&(o.responseType=e.responseType),e.abortSignal&&(e.abortSignal.onabort=()=>{o.abort(),n(new d)}),e.timeout&&(o.timeout=e.timeout),o.onload=()=>{e.abortSignal&&(e.abortSignal.onabort=null),o.status>=200&&o.status<300?t(new y(o.status,o.statusText,o.response||o.responseText)):n(new l(o.response||o.responseText||o.statusText,o.status))},o.onerror=()=>{this._logger.log(b.Warning,`Error from HTTP request. ${o.status}: ${o.statusText}.`),n(new l(o.statusText,o.status))},o.ontimeout=()=>{this._logger.log(b.Warning,"Timeout from HTTP request."),n(new h)},o.send(e.content||"")})):Promise.reject(new Error("No url defined.")):Promise.reject(new Error("No method defined."))}}class j extends m{constructor(e){if(super(),"undefined"!=typeof fetch||k.isNode)this._httpClient=new L(e);else{if("undefined"==typeof XMLHttpRequest)throw new Error("No usable HttpClient found.");this._httpClient=new W(e)}}send(e){return e.abortSignal&&e.abortSignal.aborted?Promise.reject(new d):e.method?e.url?this._httpClient.send(e):Promise.reject(new Error("No url defined.")):Promise.reject(new Error("No method defined."))}getCookieString(e){return this._httpClient.getCookieString(e)}}class B{}B.Authorization="Authorization",B.Cookie="Cookie",function(e){e[e.None=0]="None",e[e.WebSockets=1]="WebSockets",e[e.ServerSentEvents=2]="ServerSentEvents",e[e.LongPolling=4]="LongPolling"}(w||(w={})),function(e){e[e.Text=1]="Text",e[e.Binary=2]="Binary"}(S||(S={}));class F{constructor(){this._isAborted=!1,this.onabort=null}abort(){this._isAborted||(this._isAborted=!0,this.onabort&&this.onabort())}get signal(){return this}get aborted(){return this._isAborted}}class H{constructor(e,t,n,o){this._httpClient=e,this._accessTokenFactory=t,this._logger=n,this._pollAbort=new F,this._options=o,this._running=!1,this.onreceive=null,this.onclose=null}get pollAborted(){return this._pollAbort.aborted}async connect(e,t){if(P.isRequired(e,"url"),P.isRequired(t,"transferFormat"),P.isIn(t,S,"transferFormat"),this._url=e,this._logger.log(b.Trace,"(LongPolling transport) Connecting."),t===S.Binary&&"undefined"!=typeof XMLHttpRequest&&"string"!=typeof(new XMLHttpRequest).responseType)throw new Error("Binary protocols over XmlHttpRequest not implementing advanced features are not supported.");const[n,o]=N(),r={[n]:o,...this._options.headers},i={abortSignal:this._pollAbort.signal,headers:r,timeout:1e5,withCredentials:this._options.withCredentials};t===S.Binary&&(i.responseType="arraybuffer");const s=await this._getAccessToken();this._updateHeaderToken(i,s);const a=`${e}&_=${Date.now()}`;this._logger.log(b.Trace,`(LongPolling transport) polling: ${a}.`);const c=await this._httpClient.get(a,i);200!==c.statusCode?(this._logger.log(b.Error,`(LongPolling transport) Unexpected response code: ${c.statusCode}.`),this._closeError=new l(c.statusText||"",c.statusCode),this._running=!1):this._running=!0,this._receiving=this._poll(this._url,i)}async _getAccessToken(){return this._accessTokenFactory?await this._accessTokenFactory():null}_updateHeaderToken(e,t){e.headers||(e.headers={}),t?e.headers[B.Authorization]=`Bearer ${t}`:e.headers[B.Authorization]&&delete e.headers[B.Authorization]}async _poll(e,t){try{for(;this._running;){const n=await this._getAccessToken();this._updateHeaderToken(t,n);try{const n=`${e}&_=${Date.now()}`;this._logger.log(b.Trace,`(LongPolling transport) polling: ${n}.`);const o=await this._httpClient.get(n,t);204===o.statusCode?(this._logger.log(b.Information,"(LongPolling transport) Poll terminated by server."),this._running=!1):200!==o.statusCode?(this._logger.log(b.Error,`(LongPolling transport) Unexpected response code: ${o.statusCode}.`),this._closeError=new l(o.statusText||"",o.statusCode),this._running=!1):o.content?(this._logger.log(b.Trace,`(LongPolling transport) data received. ${I(o.content,this._options.logMessageContent)}.`),this.onreceive&&this.onreceive(o.content)):this._logger.log(b.Trace,"(LongPolling transport) Poll timed out, reissuing.")}catch(e){this._running?e instanceof h?this._logger.log(b.Trace,"(LongPolling transport) Poll timed out, reissuing."):(this._closeError=e,this._running=!1):this._logger.log(b.Trace,`(LongPolling transport) Poll errored after shutdown: ${e.message}`)}}}finally{this._logger.log(b.Trace,"(LongPolling transport) Polling complete."),this.pollAborted||this._raiseOnClose()}}async send(e){return this._running?R(this._logger,"LongPolling",this._httpClient,this._url,this._accessTokenFactory,e,this._options):Promise.reject(new Error("Cannot send until the transport is connected"))}async stop(){this._logger.log(b.Trace,"(LongPolling transport) Stopping polling."),this._running=!1,this._pollAbort.abort();try{await this._receiving,this._logger.log(b.Trace,`(LongPolling transport) sending DELETE request to ${this._url}.`);const e={},[t,n]=N();e[t]=n;const o={headers:{...e,...this._options.headers},timeout:this._options.timeout,withCredentials:this._options.withCredentials},r=await this._getAccessToken();this._updateHeaderToken(o,r),await this._httpClient.delete(this._url,o),this._logger.log(b.Trace,"(LongPolling transport) DELETE request sent.")}finally{this._logger.log(b.Trace,"(LongPolling transport) Stop finished."),this._raiseOnClose()}}_raiseOnClose(){if(this.onclose){let e="(LongPolling transport) Firing onclose event.";this._closeError&&(e+=" Error: "+this._closeError),this._logger.log(b.Trace,e),this.onclose(this._closeError)}}}class q{constructor(e,t,n,o){this._httpClient=e,this._accessTokenFactory=t,this._logger=n,this._options=o,this.onreceive=null,this.onclose=null}async connect(e,t){if(P.isRequired(e,"url"),P.isRequired(t,"transferFormat"),P.isIn(t,S,"transferFormat"),this._logger.log(b.Trace,"(SSE transport) Connecting."),this._url=e,this._accessTokenFactory){const t=await this._accessTokenFactory();t&&(e+=(e.indexOf("?")<0?"?":"&")+`access_token=${encodeURIComponent(t)}`)}return new Promise(((n,o)=>{let r,i=!1;if(t===S.Text){if(k.isBrowser||k.isWebWorker)r=new this._options.EventSource(e,{withCredentials:this._options.withCredentials});else{const t=this._httpClient.getCookieString(e),n={};n.Cookie=t;const[o,i]=N();n[o]=i,r=new this._options.EventSource(e,{withCredentials:this._options.withCredentials,headers:{...n,...this._options.headers}})}try{r.onmessage=e=>{if(this.onreceive)try{this._logger.log(b.Trace,`(SSE transport) data received. ${I(e.data,this._options.logMessageContent)}.`),this.onreceive(e.data)}catch(e){return void this._close(e)}},r.onerror=e=>{i?this._close():o(new Error("EventSource failed to connect. The connection could not be found on the server, either the connection ID is not present on the server, or a proxy is refusing/buffering the connection. If you have multiple servers check that sticky sessions are enabled."))},r.onopen=()=>{this._logger.log(b.Information,`SSE connected to ${this._url}`),this._eventSource=r,i=!0,n()}}catch(e){return void o(e)}}else o(new Error("The Server-Sent Events transport only supports the 'Text' transfer format"))}))}async send(e){return this._eventSource?R(this._logger,"SSE",this._httpClient,this._url,this._accessTokenFactory,e,this._options):Promise.reject(new Error("Cannot send until the transport is connected"))}stop(){return this._close(),Promise.resolve()}_close(e){this._eventSource&&(this._eventSource.close(),this._eventSource=void 0,this.onclose&&this.onclose(e))}}class z{constructor(e,t,n,o,r,i){this._logger=n,this._accessTokenFactory=t,this._logMessageContent=o,this._webSocketConstructor=r,this._httpClient=e,this.onreceive=null,this.onclose=null,this._headers=i}async connect(e,t){if(P.isRequired(e,"url"),P.isRequired(t,"transferFormat"),P.isIn(t,S,"transferFormat"),this._logger.log(b.Trace,"(WebSockets transport) Connecting."),this._accessTokenFactory){const t=await this._accessTokenFactory();t&&(e+=(e.indexOf("?")<0?"?":"&")+`access_token=${encodeURIComponent(t)}`)}return new Promise(((n,o)=>{let r;e=e.replace(/^http/,"ws");const i=this._httpClient.getCookieString(e);let s=!1;if(k.isNode){const t={},[n,o]=N();t[n]=o,i&&(t[B.Cookie]=`${i}`),r=new this._webSocketConstructor(e,void 0,{headers:{...t,...this._headers}})}r||(r=new this._webSocketConstructor(e)),t===S.Binary&&(r.binaryType="arraybuffer"),r.onopen=t=>{this._logger.log(b.Information,`WebSocket connected to ${e}.`),this._webSocket=r,s=!0,n()},r.onerror=e=>{let t=null;t="undefined"!=typeof ErrorEvent&&e instanceof ErrorEvent?e.error:"There was an error with the transport",this._logger.log(b.Information,`(WebSockets transport) ${t}.`)},r.onmessage=e=>{if(this._logger.log(b.Trace,`(WebSockets transport) data received. ${I(e.data,this._logMessageContent)}.`),this.onreceive)try{this.onreceive(e.data)}catch(e){return void this._close(e)}},r.onclose=e=>{if(s)this._close(e);else{let t=null;t="undefined"!=typeof ErrorEvent&&e instanceof ErrorEvent?e.error:"WebSocket failed to connect. The connection could not be found on the server, either the endpoint may not be a SignalR endpoint, the connection ID is not present on the server, or there is a proxy blocking WebSockets. If you have multiple servers check that sticky sessions are enabled.",o(new Error(t))}}}))}send(e){return this._webSocket&&this._webSocket.readyState===this._webSocketConstructor.OPEN?(this._logger.log(b.Trace,`(WebSockets transport) sending data. ${I(e,this._logMessageContent)}.`),this._webSocket.send(e),Promise.resolve()):Promise.reject("WebSocket is not in the OPEN state")}stop(){return this._webSocket&&this._close(void 0),Promise.resolve()}_close(e){this._webSocket&&(this._webSocket.onclose=()=>{},this._webSocket.onmessage=()=>{},this._webSocket.onerror=()=>{},this._webSocket.close(),this._webSocket=void 0),this._logger.log(b.Trace,"(WebSockets transport) socket closed."),this.onclose&&(!this._isCloseEvent(e)||!1!==e.wasClean&&1e3===e.code?e instanceof Error?this.onclose(e):this.onclose():this.onclose(new Error(`WebSocket closed with status code: ${e.code} (${e.reason||"no reason given"}).`)))}_isCloseEvent(e){return e&&"boolean"==typeof e.wasClean&&"number"==typeof e.code}}class V{constructor(e,t={}){var n;if(this._stopPromiseResolver=()=>{},this.features={},this._negotiateVersion=1,P.isRequired(e,"url"),this._logger=void 0===(n=t.logger)?new O(b.Information):null===n?E.instance:void 0!==n.log?n:new O(n),this.baseUrl=this._resolveUrl(e),(t=t||{}).logMessageContent=void 0!==t.logMessageContent&&t.logMessageContent,"boolean"!=typeof t.withCredentials&&void 0!==t.withCredentials)throw new Error("withCredentials option was not a 'boolean' or 'undefined' value");t.withCredentials=void 0===t.withCredentials||t.withCredentials,t.timeout=void 0===t.timeout?1e5:t.timeout;let o=null,r=null;if(k.isNode){const e=require;o=e("ws"),r=e("eventsource")}k.isNode||"undefined"==typeof WebSocket||t.WebSocket?k.isNode&&!t.WebSocket&&o&&(t.WebSocket=o):t.WebSocket=WebSocket,k.isNode||"undefined"==typeof EventSource||t.EventSource?k.isNode&&!t.EventSource&&void 0!==r&&(t.EventSource=r):t.EventSource=EventSource,this._httpClient=t.httpClient||new j(this._logger),this._connectionState="Disconnected",this._connectionStarted=!1,this._options=t,this.onreceive=null,this.onclose=null}async start(e){if(e=e||S.Binary,P.isIn(e,S,"transferFormat"),this._logger.log(b.Debug,`Starting connection with transfer format '${S[e]}'.`),"Disconnected"!==this._connectionState)return Promise.reject(new Error("Cannot start an HttpConnection that is not in the 'Disconnected' state."));if(this._connectionState="Connecting",this._startInternalPromise=this._startInternal(e),await this._startInternalPromise,"Disconnecting"===this._connectionState){const e="Failed to start the HttpConnection before stop() was called.";return this._logger.log(b.Error,e),await this._stopPromise,Promise.reject(new Error(e))}if("Connected"!==this._connectionState){const e="HttpConnection.startInternal completed gracefully but didn't enter the connection into the connected state!";return this._logger.log(b.Error,e),Promise.reject(new Error(e))}this._connectionStarted=!0}send(e){return"Connected"!==this._connectionState?Promise.reject(new Error("Cannot send data if the connection is not in the 'Connected' State.")):(this._sendQueue||(this._sendQueue=new K(this.transport)),this._sendQueue.send(e))}async stop(e){return"Disconnected"===this._connectionState?(this._logger.log(b.Debug,`Call to HttpConnection.stop(${e}) ignored because the connection is already in the disconnected state.`),Promise.resolve()):"Disconnecting"===this._connectionState?(this._logger.log(b.Debug,`Call to HttpConnection.stop(${e}) ignored because the connection is already in the disconnecting state.`),this._stopPromise):(this._connectionState="Disconnecting",this._stopPromise=new Promise((e=>{this._stopPromiseResolver=e})),await this._stopInternal(e),void await this._stopPromise)}async _stopInternal(e){this._stopError=e;try{await this._startInternalPromise}catch(e){}if(this.transport){try{await this.transport.stop()}catch(e){this._logger.log(b.Error,`HttpConnection.transport.stop() threw error '${e}'.`),this._stopConnection()}this.transport=void 0}else this._logger.log(b.Debug,"HttpConnection.transport is undefined in HttpConnection.stop() because start() failed.")}async _startInternal(e){let t=this.baseUrl;this._accessTokenFactory=this._options.accessTokenFactory;try{if(this._options.skipNegotiation){if(this._options.transport!==w.WebSockets)throw new Error("Negotiation can only be skipped when using the WebSocket transport directly.");this.transport=this._constructTransport(w.WebSockets),await this._startTransport(t,e)}else{let n=null,o=0;do{if(n=await this._getNegotiationResponse(t),"Disconnecting"===this._connectionState||"Disconnected"===this._connectionState)throw new Error("The connection was stopped during negotiation.");if(n.error)throw new Error(n.error);if(n.ProtocolVersion)throw new Error("Detected a connection attempt to an ASP.NET SignalR Server. This client only supports connecting to an ASP.NET Core SignalR Server. See https://aka.ms/signalr-core-differences for details.");if(n.url&&(t=n.url),n.accessToken){const e=n.accessToken;this._accessTokenFactory=()=>e}o++}while(n.url&&o<100);if(100===o&&n.url)throw new Error("Negotiate redirection limit exceeded.");await this._createTransport(t,this._options.transport,n,e)}this.transport instanceof H&&(this.features.inherentKeepAlive=!0),"Connecting"===this._connectionState&&(this._logger.log(b.Debug,"The HttpConnection connected successfully."),this._connectionState="Connected")}catch(e){return this._logger.log(b.Error,"Failed to start the connection: "+e),this._connectionState="Disconnected",this.transport=void 0,this._stopPromiseResolver(),Promise.reject(e)}}async _getNegotiationResponse(e){const t={};if(this._accessTokenFactory){const e=await this._accessTokenFactory();e&&(t[B.Authorization]=`Bearer ${e}`)}const[n,o]=N();t[n]=o;const r=this._resolveNegotiateUrl(e);this._logger.log(b.Debug,`Sending negotiation request: ${r}.`);try{const e=await this._httpClient.post(r,{content:"",headers:{...t,...this._options.headers},timeout:this._options.timeout,withCredentials:this._options.withCredentials});if(200!==e.statusCode)return Promise.reject(new Error(`Unexpected status code returned from negotiate '${e.statusCode}'`));const n=JSON.parse(e.content);return(!n.negotiateVersion||n.negotiateVersion<1)&&(n.connectionToken=n.connectionId),n}catch(e){let t="Failed to complete negotiation with the server: "+e;return e instanceof l&&404===e.statusCode&&(t+=" Either this is not a SignalR endpoint or there is a proxy blocking the connection."),this._logger.log(b.Error,t),Promise.reject(new v(t))}}_createConnectUrl(e,t){return t?e+(-1===e.indexOf("?")?"?":"&")+`id=${t}`:e}async _createTransport(e,t,n,o){let r=this._createConnectUrl(e,n.connectionToken);if(this._isITransport(t))return this._logger.log(b.Debug,"Connection was provided an instance of ITransport, using that directly."),this.transport=t,await this._startTransport(r,o),void(this.connectionId=n.connectionId);const i=[],s=n.availableTransports||[];let a=n;for(const n of s){const s=this._resolveTransportOrError(n,t,o);if(s instanceof Error)i.push(`${n.transport} failed:`),i.push(s);else if(this._isITransport(s)){if(this.transport=s,!a){try{a=await this._getNegotiationResponse(e)}catch(e){return Promise.reject(e)}r=this._createConnectUrl(e,a.connectionToken)}try{return await this._startTransport(r,o),void(this.connectionId=a.connectionId)}catch(e){if(this._logger.log(b.Error,`Failed to start the transport '${n.transport}': ${e}`),a=void 0,i.push(new g(`${n.transport} failed: ${e}`,w[n.transport])),"Connecting"!==this._connectionState){const e="Failed to select transport before stop() was called.";return this._logger.log(b.Debug,e),Promise.reject(new Error(e))}}}}return i.length>0?Promise.reject(new _(`Unable to connect to the server with any of the available transports. ${i.join(" ")}`,i)):Promise.reject(new Error("None of the transports supported by the client are supported by the server."))}_constructTransport(e){switch(e){case w.WebSockets:if(!this._options.WebSocket)throw new Error("'WebSocket' is not supported in your environment.");return new z(this._httpClient,this._accessTokenFactory,this._logger,this._options.logMessageContent,this._options.WebSocket,this._options.headers||{});case w.ServerSentEvents:if(!this._options.EventSource)throw new Error("'EventSource' is not supported in your environment.");return new q(this._httpClient,this._accessTokenFactory,this._logger,this._options);case w.LongPolling:return new H(this._httpClient,this._accessTokenFactory,this._logger,this._options);default:throw new Error(`Unknown transport: ${e}.`)}}_startTransport(e,t){return this.transport.onreceive=this.onreceive,this.transport.onclose=e=>this._stopConnection(e),this.transport.connect(e,t)}_resolveTransportOrError(e,t,n){const o=w[e.transport];if(null==o)return this._logger.log(b.Debug,`Skipping transport '${e.transport}' because it is not supported by this client.`),new Error(`Skipping transport '${e.transport}' because it is not supported by this client.`);if(!function(e,t){return!e||0!=(t&e)}(t,o))return this._logger.log(b.Debug,`Skipping transport '${w[o]}' because it was disabled by the client.`),new f(`'${w[o]}' is disabled by the client.`,o);if(!(e.transferFormats.map((e=>S[e])).indexOf(n)>=0))return this._logger.log(b.Debug,`Skipping transport '${w[o]}' because it does not support the requested transfer format '${S[n]}'.`),new Error(`'${w[o]}' does not support ${S[n]}.`);if(o===w.WebSockets&&!this._options.WebSocket||o===w.ServerSentEvents&&!this._options.EventSource)return this._logger.log(b.Debug,`Skipping transport '${w[o]}' because it is not supported in your environment.'`),new p(`'${w[o]}' is not supported in your environment.`,o);this._logger.log(b.Debug,`Selecting transport '${w[o]}'.`);try{return this._constructTransport(o)}catch(e){return e}}_isITransport(e){return e&&"object"==typeof e&&"connect"in e}_stopConnection(e){if(this._logger.log(b.Debug,`HttpConnection.stopConnection(${e}) called while in state ${this._connectionState}.`),this.transport=void 0,e=this._stopError||e,this._stopError=void 0,"Disconnected"!==this._connectionState){if("Connecting"===this._connectionState)throw this._logger.log(b.Warning,`Call to HttpConnection.stopConnection(${e}) was ignored because the connection is still in the connecting state.`),new Error(`HttpConnection.stopConnection(${e}) was called while the connection is still in the connecting state.`);if("Disconnecting"===this._connectionState&&this._stopPromiseResolver(),e?this._logger.log(b.Error,`Connection disconnected with error '${e}'.`):this._logger.log(b.Information,"Connection disconnected."),this._sendQueue&&(this._sendQueue.stop().catch((e=>{this._logger.log(b.Error,`TransportSendQueue.stop() threw error '${e}'.`)})),this._sendQueue=void 0),this.connectionId=void 0,this._connectionState="Disconnected",this._connectionStarted){this._connectionStarted=!1;try{this.onclose&&this.onclose(e)}catch(t){this._logger.log(b.Error,`HttpConnection.onclose(${e}) threw error '${t}'.`)}}}else this._logger.log(b.Debug,`Call to HttpConnection.stopConnection(${e}) was ignored because the connection is already in the disconnected state.`)}_resolveUrl(e){if(0===e.lastIndexOf("https://",0)||0===e.lastIndexOf("http://",0))return e;if(!k.isBrowser)throw new Error(`Cannot resolve '${e}'.`);const t=window.document.createElement("a");return t.href=e,this._logger.log(b.Information,`Normalizing '${e}' to '${t.href}'.`),t.href}_resolveNegotiateUrl(e){const t=e.indexOf("?");let n=e.substring(0,-1===t?e.length:t);return"/"!==n[n.length-1]&&(n+="/"),n+="negotiate",n+=-1===t?"":e.substring(t),-1===n.indexOf("negotiateVersion")&&(n+=-1===t?"?":"&",n+="negotiateVersion="+this._negotiateVersion),n}}class K{constructor(e){this._transport=e,this._buffer=[],this._executing=!0,this._sendBufferedData=new J,this._transportResult=new J,this._sendLoopPromise=this._sendLoop()}send(e){return this._bufferData(e),this._transportResult||(this._transportResult=new J),this._transportResult.promise}stop(){return this._executing=!1,this._sendBufferedData.resolve(),this._sendLoopPromise}_bufferData(e){if(this._buffer.length&&typeof this._buffer[0]!=typeof e)throw new Error(`Expected data to be of type ${typeof this._buffer} but was of type ${typeof e}`);this._buffer.push(e),this._sendBufferedData.resolve()}async _sendLoop(){for(;;){if(await this._sendBufferedData.promise,!this._executing){this._transportResult&&this._transportResult.reject("Connection stopped.");break}this._sendBufferedData=new J;const e=this._transportResult;this._transportResult=void 0;const t="string"==typeof this._buffer[0]?this._buffer.join(""):K._concatBuffers(this._buffer);this._buffer.length=0;try{await this._transport.send(t),e.resolve()}catch(t){e.reject(t)}}}static _concatBuffers(e){const t=e.map((e=>e.byteLength)).reduce(((e,t)=>e+t)),n=new Uint8Array(t);let o=0;for(const t of e)n.set(new Uint8Array(t),o),o+=t.byteLength;return n.buffer}}class J{constructor(){this.promise=new Promise(((e,t)=>[this._resolver,this._rejecter]=[e,t]))}resolve(){this._resolver()}reject(e){this._rejecter(e)}}class X{static write(e){return`${e}${X.RecordSeparator}`}static parse(e){if(e[e.length-1]!==X.RecordSeparator)throw new Error("Message is incomplete.");const t=e.split(X.RecordSeparator);return t.pop(),t}}X.RecordSeparatorCode=30,X.RecordSeparator=String.fromCharCode(X.RecordSeparatorCode);class Q{writeHandshakeRequest(e){return X.write(JSON.stringify(e))}parseHandshakeResponse(e){let t,n;if(D(e)){const o=new Uint8Array(e),r=o.indexOf(X.RecordSeparatorCode);if(-1===r)throw new Error("Message is incomplete.");const i=r+1;t=String.fromCharCode.apply(null,Array.prototype.slice.call(o.slice(0,i))),n=o.byteLength>i?o.slice(i).buffer:null}else{const o=e,r=o.indexOf(X.RecordSeparator);if(-1===r)throw new Error("Message is incomplete.");const i=r+1;t=o.substring(0,i),n=o.length>i?o.substring(i):null}const o=X.parse(t),r=JSON.parse(o[0]);if(r.type)throw new Error("Expected a handshake response from the server.");return[n,r]}}!function(e){e[e.Invocation=1]="Invocation",e[e.StreamItem=2]="StreamItem",e[e.Completion=3]="Completion",e[e.StreamInvocation=4]="StreamInvocation",e[e.CancelInvocation=5]="CancelInvocation",e[e.Ping=6]="Ping",e[e.Close=7]="Close"}(T||(T={}));class Y{constructor(){this.observers=[]}next(e){for(const t of this.observers)t.next(e)}error(e){for(const t of this.observers)t.error&&t.error(e)}complete(){for(const e of this.observers)e.complete&&e.complete()}subscribe(e){return this.observers.push(e),new A(this,e)}}!function(e){e.Disconnected="Disconnected",e.Connecting="Connecting",e.Connected="Connected",e.Disconnecting="Disconnecting",e.Reconnecting="Reconnecting"}(C||(C={}));class Z{constructor(e,t,n,o){this._nextKeepAlive=0,this._freezeEventListener=()=>{this._logger.log(b.Warning,"The page is being frozen, this will likely lead to the connection being closed and messages being lost. For more information see the docs at https://docs.microsoft.com/aspnet/core/signalr/javascript-client#bsleep")},P.isRequired(e,"connection"),P.isRequired(t,"logger"),P.isRequired(n,"protocol"),this.serverTimeoutInMilliseconds=3e4,this.keepAliveIntervalInMilliseconds=15e3,this._logger=t,this._protocol=n,this.connection=e,this._reconnectPolicy=o,this._handshakeProtocol=new Q,this.connection.onreceive=e=>this._processIncomingData(e),this.connection.onclose=e=>this._connectionClosed(e),this._callbacks={},this._methods={},this._closedCallbacks=[],this._reconnectingCallbacks=[],this._reconnectedCallbacks=[],this._invocationId=0,this._receivedHandshakeResponse=!1,this._connectionState=C.Disconnected,this._connectionStarted=!1,this._cachedPingMessage=this._protocol.writeMessage({type:T.Ping})}static create(e,t,n,o){return new Z(e,t,n,o)}get state(){return this._connectionState}get connectionId(){return this.connection&&this.connection.connectionId||null}get baseUrl(){return this.connection.baseUrl||""}set baseUrl(e){if(this._connectionState!==C.Disconnected&&this._connectionState!==C.Reconnecting)throw new Error("The HubConnection must be in the Disconnected or Reconnecting state to change the url.");if(!e)throw new Error("The HubConnection url must be a valid url.");this.connection.baseUrl=e}start(){return this._startPromise=this._startWithStateTransitions(),this._startPromise}async _startWithStateTransitions(){if(this._connectionState!==C.Disconnected)return Promise.reject(new Error("Cannot start a HubConnection that is not in the 'Disconnected' state."));this._connectionState=C.Connecting,this._logger.log(b.Debug,"Starting HubConnection.");try{await this._startInternal(),k.isBrowser&&window.document.addEventListener("freeze",this._freezeEventListener),this._connectionState=C.Connected,this._connectionStarted=!0,this._logger.log(b.Debug,"HubConnection connected successfully.")}catch(e){return this._connectionState=C.Disconnected,this._logger.log(b.Debug,`HubConnection failed to start successfully because of error '${e}'.`),Promise.reject(e)}}async _startInternal(){this._stopDuringStartError=void 0,this._receivedHandshakeResponse=!1;const e=new Promise(((e,t)=>{this._handshakeResolver=e,this._handshakeRejecter=t}));await this.connection.start(this._protocol.transferFormat);try{const t={protocol:this._protocol.name,version:this._protocol.version};if(this._logger.log(b.Debug,"Sending handshake request."),await this._sendMessage(this._handshakeProtocol.writeHandshakeRequest(t)),this._logger.log(b.Information,`Using HubProtocol '${this._protocol.name}'.`),this._cleanupTimeout(),this._resetTimeoutPeriod(),this._resetKeepAliveInterval(),await e,this._stopDuringStartError)throw this._stopDuringStartError}catch(e){throw this._logger.log(b.Debug,`Hub handshake failed with error '${e}' during start(). Stopping HubConnection.`),this._cleanupTimeout(),this._cleanupPingTimer(),await this.connection.stop(e),e}}async stop(){const e=this._startPromise;this._stopPromise=this._stopInternal(),await this._stopPromise;try{await e}catch(e){}}_stopInternal(e){return this._connectionState===C.Disconnected?(this._logger.log(b.Debug,`Call to HubConnection.stop(${e}) ignored because it is already in the disconnected state.`),Promise.resolve()):this._connectionState===C.Disconnecting?(this._logger.log(b.Debug,`Call to HttpConnection.stop(${e}) ignored because the connection is already in the disconnecting state.`),this._stopPromise):(this._connectionState=C.Disconnecting,this._logger.log(b.Debug,"Stopping HubConnection."),this._reconnectDelayHandle?(this._logger.log(b.Debug,"Connection stopped during reconnect delay. Done reconnecting."),clearTimeout(this._reconnectDelayHandle),this._reconnectDelayHandle=void 0,this._completeClose(),Promise.resolve()):(this._cleanupTimeout(),this._cleanupPingTimer(),this._stopDuringStartError=e||new Error("The connection was stopped before the hub handshake could complete."),this.connection.stop(e)))}stream(e,...t){const[n,o]=this._replaceStreamingParams(t),r=this._createStreamInvocation(e,t,o);let i;const s=new Y;return s.cancelCallback=()=>{const e=this._createCancelInvocation(r.invocationId);return delete this._callbacks[r.invocationId],i.then((()=>this._sendWithProtocol(e)))},this._callbacks[r.invocationId]=(e,t)=>{t?s.error(t):e&&(e.type===T.Completion?e.error?s.error(new Error(e.error)):s.complete():s.next(e.item))},i=this._sendWithProtocol(r).catch((e=>{s.error(e),delete this._callbacks[r.invocationId]})),this._launchStreams(n,i),s}_sendMessage(e){return this._resetKeepAliveInterval(),this.connection.send(e)}_sendWithProtocol(e){return this._sendMessage(this._protocol.writeMessage(e))}send(e,...t){const[n,o]=this._replaceStreamingParams(t),r=this._sendWithProtocol(this._createInvocation(e,t,!0,o));return this._launchStreams(n,r),r}invoke(e,...t){const[n,o]=this._replaceStreamingParams(t),r=this._createInvocation(e,t,!1,o);return new Promise(((e,t)=>{this._callbacks[r.invocationId]=(n,o)=>{o?t(o):n&&(n.type===T.Completion?n.error?t(new Error(n.error)):e(n.result):t(new Error(`Unexpected message type: ${n.type}`)))};const o=this._sendWithProtocol(r).catch((e=>{t(e),delete this._callbacks[r.invocationId]}));this._launchStreams(n,o)}))}on(e,t){e&&t&&(e=e.toLowerCase(),this._methods[e]||(this._methods[e]=[]),-1===this._methods[e].indexOf(t)&&this._methods[e].push(t))}off(e,t){if(!e)return;e=e.toLowerCase();const n=this._methods[e];if(n)if(t){const o=n.indexOf(t);-1!==o&&(n.splice(o,1),0===n.length&&delete this._methods[e])}else delete this._methods[e]}onclose(e){e&&this._closedCallbacks.push(e)}onreconnecting(e){e&&this._reconnectingCallbacks.push(e)}onreconnected(e){e&&this._reconnectedCallbacks.push(e)}_processIncomingData(e){if(this._cleanupTimeout(),this._receivedHandshakeResponse||(e=this._processHandshakeResponse(e),this._receivedHandshakeResponse=!0),e){const t=this._protocol.parseMessages(e,this._logger);for(const e of t)switch(e.type){case T.Invocation:this._invokeClientMethod(e);break;case T.StreamItem:case T.Completion:{const t=this._callbacks[e.invocationId];if(t){e.type===T.Completion&&delete this._callbacks[e.invocationId];try{t(e)}catch(e){this._logger.log(b.Error,`Stream callback threw error: ${U(e)}`)}}break}case T.Ping:break;case T.Close:{this._logger.log(b.Information,"Close message received from server.");const t=e.error?new Error("Server returned an error on close: "+e.error):void 0;!0===e.allowReconnect?this.connection.stop(t):this._stopPromise=this._stopInternal(t);break}default:this._logger.log(b.Warning,`Invalid message type: ${e.type}.`)}}this._resetTimeoutPeriod()}_processHandshakeResponse(e){let t,n;try{[n,t]=this._handshakeProtocol.parseHandshakeResponse(e)}catch(e){const t="Error parsing handshake response: "+e;this._logger.log(b.Error,t);const n=new Error(t);throw this._handshakeRejecter(n),n}if(t.error){const e="Server returned handshake error: "+t.error;this._logger.log(b.Error,e);const n=new Error(e);throw this._handshakeRejecter(n),n}return this._logger.log(b.Debug,"Server handshake complete."),this._handshakeResolver(),n}_resetKeepAliveInterval(){this.connection.features.inherentKeepAlive||(this._nextKeepAlive=(new Date).getTime()+this.keepAliveIntervalInMilliseconds,this._cleanupPingTimer())}_resetTimeoutPeriod(){if(!(this.connection.features&&this.connection.features.inherentKeepAlive||(this._timeoutHandle=setTimeout((()=>this.serverTimeout()),this.serverTimeoutInMilliseconds),void 0!==this._pingServerHandle))){let e=this._nextKeepAlive-(new Date).getTime();e<0&&(e=0),this._pingServerHandle=setTimeout((async()=>{if(this._connectionState===C.Connected)try{await this._sendMessage(this._cachedPingMessage)}catch{this._cleanupPingTimer()}}),e)}}serverTimeout(){this.connection.stop(new Error("Server timeout elapsed without receiving a message from the server."))}_invokeClientMethod(e){const t=this._methods[e.target.toLowerCase()];if(t){try{t.forEach((t=>t.apply(this,e.arguments)))}catch(t){this._logger.log(b.Error,`A callback for the method ${e.target.toLowerCase()} threw error '${t}'.`)}if(e.invocationId){const e="Server requested a response, which is not supported in this version of the client.";this._logger.log(b.Error,e),this._stopPromise=this._stopInternal(new Error(e))}}else this._logger.log(b.Warning,`No client method with the name '${e.target}' found.`)}_connectionClosed(e){this._logger.log(b.Debug,`HubConnection.connectionClosed(${e}) called while in state ${this._connectionState}.`),this._stopDuringStartError=this._stopDuringStartError||e||new Error("The underlying connection was closed before the hub handshake could complete."),this._handshakeResolver&&this._handshakeResolver(),this._cancelCallbacksWithError(e||new Error("Invocation canceled due to the underlying connection being closed.")),this._cleanupTimeout(),this._cleanupPingTimer(),this._connectionState===C.Disconnecting?this._completeClose(e):this._connectionState===C.Connected&&this._reconnectPolicy?this._reconnect(e):this._connectionState===C.Connected&&this._completeClose(e)}_completeClose(e){if(this._connectionStarted){this._connectionState=C.Disconnected,this._connectionStarted=!1,k.isBrowser&&window.document.removeEventListener("freeze",this._freezeEventListener);try{this._closedCallbacks.forEach((t=>t.apply(this,[e])))}catch(t){this._logger.log(b.Error,`An onclose callback called with error '${e}' threw error '${t}'.`)}}}async _reconnect(e){const t=Date.now();let n=0,o=void 0!==e?e:new Error("Attempting to reconnect due to a unknown error."),r=this._getNextRetryDelay(n++,0,o);if(null===r)return this._logger.log(b.Debug,"Connection not reconnecting because the IRetryPolicy returned null on the first reconnect attempt."),void this._completeClose(e);if(this._connectionState=C.Reconnecting,e?this._logger.log(b.Information,`Connection reconnecting because of error '${e}'.`):this._logger.log(b.Information,"Connection reconnecting."),0!==this._reconnectingCallbacks.length){try{this._reconnectingCallbacks.forEach((t=>t.apply(this,[e])))}catch(t){this._logger.log(b.Error,`An onreconnecting callback called with error '${e}' threw error '${t}'.`)}if(this._connectionState!==C.Reconnecting)return void this._logger.log(b.Debug,"Connection left the reconnecting state in onreconnecting callback. Done reconnecting.")}for(;null!==r;){if(this._logger.log(b.Information,`Reconnect attempt number ${n} will start in ${r} ms.`),await new Promise((e=>{this._reconnectDelayHandle=setTimeout(e,r)})),this._reconnectDelayHandle=void 0,this._connectionState!==C.Reconnecting)return void this._logger.log(b.Debug,"Connection left the reconnecting state during reconnect delay. Done reconnecting.");try{if(await this._startInternal(),this._connectionState=C.Connected,this._logger.log(b.Information,"HubConnection reconnected successfully."),0!==this._reconnectedCallbacks.length)try{this._reconnectedCallbacks.forEach((e=>e.apply(this,[this.connection.connectionId])))}catch(e){this._logger.log(b.Error,`An onreconnected callback called with connectionId '${this.connection.connectionId}; threw error '${e}'.`)}return}catch(e){if(this._logger.log(b.Information,`Reconnect attempt failed because of error '${e}'.`),this._connectionState!==C.Reconnecting)return this._logger.log(b.Debug,`Connection moved to the '${this._connectionState}' from the reconnecting state during reconnect attempt. Done reconnecting.`),void(this._connectionState===C.Disconnecting&&this._completeClose());o=e instanceof Error?e:new Error(e.toString()),r=this._getNextRetryDelay(n++,Date.now()-t,o)}}this._logger.log(b.Information,`Reconnect retries have been exhausted after ${Date.now()-t} ms and ${n} failed attempts. Connection disconnecting.`),this._completeClose()}_getNextRetryDelay(e,t,n){try{return this._reconnectPolicy.nextRetryDelayInMilliseconds({elapsedMilliseconds:t,previousRetryCount:e,retryReason:n})}catch(n){return this._logger.log(b.Error,`IRetryPolicy.nextRetryDelayInMilliseconds(${e}, ${t}) threw error '${n}'.`),null}}_cancelCallbacksWithError(e){const t=this._callbacks;this._callbacks={},Object.keys(t).forEach((n=>{const o=t[n];try{o(null,e)}catch(t){this._logger.log(b.Error,`Stream 'error' callback called with '${e}' threw error: ${U(t)}`)}}))}_cleanupPingTimer(){this._pingServerHandle&&(clearTimeout(this._pingServerHandle),this._pingServerHandle=void 0)}_cleanupTimeout(){this._timeoutHandle&&clearTimeout(this._timeoutHandle)}_createInvocation(e,t,n,o){if(n)return 0!==o.length?{arguments:t,streamIds:o,target:e,type:T.Invocation}:{arguments:t,target:e,type:T.Invocation};{const n=this._invocationId;return this._invocationId++,0!==o.length?{arguments:t,invocationId:n.toString(),streamIds:o,target:e,type:T.Invocation}:{arguments:t,invocationId:n.toString(),target:e,type:T.Invocation}}}_launchStreams(e,t){if(0!==e.length){t||(t=Promise.resolve());for(const n in e)e[n].subscribe({complete:()=>{t=t.then((()=>this._sendWithProtocol(this._createCompletionMessage(n))))},error:e=>{let o;o=e instanceof Error?e.message:e&&e.toString?e.toString():"Unknown error",t=t.then((()=>this._sendWithProtocol(this._createCompletionMessage(n,o))))},next:e=>{t=t.then((()=>this._sendWithProtocol(this._createStreamItemMessage(n,e))))}})}}_replaceStreamingParams(e){const t=[],n=[];for(let o=0;o<e.length;o++){const r=e[o];if(this._isObservable(r)){const i=this._invocationId;this._invocationId++,t[i]=r,n.push(i.toString()),e.splice(o,1)}}return[t,n]}_isObservable(e){return e&&e.subscribe&&"function"==typeof e.subscribe}_createStreamInvocation(e,t,n){const o=this._invocationId;return this._invocationId++,0!==n.length?{arguments:t,invocationId:o.toString(),streamIds:n,target:e,type:T.StreamInvocation}:{arguments:t,invocationId:o.toString(),target:e,type:T.StreamInvocation}}_createCancelInvocation(e){return{invocationId:e,type:T.CancelInvocation}}_createStreamItemMessage(e,t){return{invocationId:e,item:t,type:T.StreamItem}}_createCompletionMessage(e,t,n){return t?{error:t,invocationId:e,type:T.Completion}:{invocationId:e,result:n,type:T.Completion}}}class ee{constructor(){this.name="json",this.version=1,this.transferFormat=S.Text}parseMessages(e,t){if("string"!=typeof e)throw new Error("Invalid input for JSON hub protocol. Expected a string.");if(!e)return[];null===t&&(t=E.instance);const n=X.parse(e),o=[];for(const e of n){const n=JSON.parse(e);if("number"!=typeof n.type)throw new Error("Invalid payload.");switch(n.type){case T.Invocation:this._isInvocationMessage(n);break;case T.StreamItem:this._isStreamItemMessage(n);break;case T.Completion:this._isCompletionMessage(n);break;case T.Ping:case T.Close:break;default:t.log(b.Information,"Unknown message type '"+n.type+"' ignored.");continue}o.push(n)}return o}writeMessage(e){return X.write(JSON.stringify(e))}_isInvocationMessage(e){this._assertNotEmptyString(e.target,"Invalid payload for Invocation message."),void 0!==e.invocationId&&this._assertNotEmptyString(e.invocationId,"Invalid payload for Invocation message.")}_isStreamItemMessage(e){if(this._assertNotEmptyString(e.invocationId,"Invalid payload for StreamItem message."),void 0===e.item)throw new Error("Invalid payload for StreamItem message.")}_isCompletionMessage(e){if(e.result&&e.error)throw new Error("Invalid payload for Completion message.");!e.result&&e.error&&this._assertNotEmptyString(e.error,"Invalid payload for Completion message."),this._assertNotEmptyString(e.invocationId,"Invalid payload for Completion message.")}_assertNotEmptyString(e,t){if("string"!=typeof e||""===e)throw new Error(t)}}const te={trace:b.Trace,debug:b.Debug,info:b.Information,information:b.Information,warn:b.Warning,warning:b.Warning,error:b.Error,critical:b.Critical,none:b.None};class ne{configureLogging(e){if(P.isRequired(e,"logging"),void 0!==e.log)this.logger=e;else if("string"==typeof e){const t=function(e){const t=te[e.toLowerCase()];if(void 0!==t)return t;throw new Error(`Unknown log level: ${e}`)}(e);this.logger=new O(t)}else this.logger=new O(e);return this}withUrl(e,t){return P.isRequired(e,"url"),P.isNotEmpty(e,"url"),this.url=e,this.httpConnectionOptions="object"==typeof t?{...this.httpConnectionOptions,...t}:{...this.httpConnectionOptions,transport:t},this}withHubProtocol(e){return P.isRequired(e,"protocol"),this.protocol=e,this}withAutomaticReconnect(e){if(this.reconnectPolicy)throw new Error("A reconnectPolicy has already been set.");return e?Array.isArray(e)?this.reconnectPolicy=new u(e):this.reconnectPolicy=e:this.reconnectPolicy=new u,this}build(){const e=this.httpConnectionOptions||{};if(void 0===e.logger&&(e.logger=this.logger),!this.url)throw new Error("The 'HubConnectionBuilder.withUrl' method must be called before building the connection.");const t=new V(this.url,e);return Z.create(t,this.logger||E.instance,this.protocol||new ee,this.reconnectPolicy)}}var oe,re,ie,se=function(e,t){this.serialNumber=e,this.pin=t,this.SerialNumber=e,this.PIN=t};!function(e){e[e.ByCloud=0]="ByCloud",e[e.LocalNetwork=1]="LocalNetwork",e[e.P2P=2]="P2P"}(oe||(oe={})),function(e){e[e.FailedToConnect=0]="FailedToConnect",e[e.AuthorizationFailed=1]="AuthorizationFailed",e[e.FailedToConnectToServer=2]="FailedToConnectToServer",e[e.Connected=3]="Connected"}(re||(re={})),function(e){e[e.Disconnected=0]="Disconnected",e[e.Connecting=1]="Connecting",e[e.Connected=3]="Connected",e[e.Disconnecting=4]="Disconnecting",e[e.Failed=5]="Failed",e[e.Reconnecting=6]="Reconnecting"}(ie||(ie={}));var ae,ce,ue,le,he,de=function(){function e(){this._log=Mn.Get(i),this.handlers=[]}return e.prototype.Subscribe=function(e){this.handlers.push(e)},e.prototype.Unsubscribe=function(e){this.handlers=this.handlers.filter((function(t){return t!==e}))},e.prototype.Invoke=function(){var e=this;this.handlers.slice(0).forEach((function(t){try{t()}catch(t){e._log.Error(t)}}))},e}(),pe=function(e,t,n,o){return new(n||(n=Promise))((function(r,i){function s(e){try{c(o.next(e))}catch(e){i(e)}}function a(e){try{c(o.throw(e))}catch(e){i(e)}}function c(e){var t;e.done?r(e.value):(t=e.value,t instanceof n?t:new n((function(e){e(t)}))).then(s,a)}c((o=o.apply(e,t||[])).next())}))},fe=function(e,t){var n,o,r,i,s={label:0,sent:function(){if(1&r[0])throw r[1];return r[1]},trys:[],ops:[]};return i={next:a(0),throw:a(1),return:a(2)},"function"==typeof Symbol&&(i[Symbol.iterator]=function(){return this}),i;function a(i){return function(a){return function(i){if(n)throw new TypeError("Generator is already executing.");for(;s;)try{if(n=1,o&&(r=2&i[0]?o.return:i[0]?o.throw||((r=o.return)&&r.call(o),0):o.next)&&!(r=r.call(o,i[1])).done)return r;switch(o=0,r&&(i=[2&i[0],r.value]),i[0]){case 0:case 1:r=i;break;case 4:return s.label++,{value:i[1],done:!1};case 5:s.label++,o=i[1],i=[0];continue;case 7:i=s.ops.pop(),s.trys.pop();continue;default:if(!((r=(r=s.trys).length>0&&r[r.length-1])||6!==i[0]&&2!==i[0])){s=0;continue}if(3===i[0]&&(!r||i[1]>r[0]&&i[1]<r[3])){s.label=i[1];break}if(6===i[0]&&s.label<r[1]){s.label=r[1],r=i;break}if(r&&s.label<r[2]){s.label=r[2],s.ops.push(i);break}r[2]&&s.ops.pop(),s.trys.pop();continue}i=t.call(e,s)}catch(e){i=[6,e],o=0}finally{n=r=0}if(5&i[0])throw i[1];return{value:i[0]?i[1]:void 0,done:!0}}([i,a])}}},ge=function(){function e(){this._defaultPacketsBrokerAddress="br1.tr7.pl",this._serversBrokerAddress="https://broker.tr7.pl",this._address="br1.tr7.pl",this._isEstabilished=!1,this._timeout=5e3,this._dataReceivedEvent=new r,this._pongReceivedEvent=new de,this._authorizationReceivedEvent=new r,this._registrationReceivedEvent=new r,this._connectionStateChangedEvent=new r,this._errorOccuredEvent=new r,this._log=Mn.Get(i)}return e.prototype.InitializeConnection=function(){if(this._log.Debug(e,"Initializing Exalus Cloud connection service"),this._connection)throw new Error("Connection already initialized");if(!this._address)throw new Error("Domain is not set");if(!this._serialId)throw new Error("SerialId is not set");if(!this._PIN)throw new Error("PIN is not set");this._connection=(new ne).withUrl("https://".concat(this._address,"/broker")).build()},e.prototype.GetServiceName=function(){return(0,t.$)(e)},e.prototype.SetServersBrokerAddress=function(e){this._serversBrokerAddress=e},e.prototype.SetDefaultPacketsBrokerAddress=function(e){this._defaultPacketsBrokerAddress=e,this._address=e},e.prototype.GetServerAddressAsync=function(){return pe(this,void 0,void 0,(function(){var t,n,o;return fe(this,(function(r){switch(r.label){case 0:return r.trys.push([0,5,,6]),[4,fetch("".concat(this._serversBrokerAddress,"/api/connections/broker/whichserver/").concat(this._serialId))];case 1:return(t=r.sent()).ok?[4,t.text()]:[3,3];case 2:return n=r.sent(),this._log.Debug(e,"Got server address: ".concat(n)),[2,n];case 3:return this._log.Error(e,"Failed to get server address, status: ".concat(t.status)),[2,null];case 4:return[3,6];case 5:return o=r.sent(),this._log.Error(e,o),[2,null];case 6:return[2]}}))}))},e.prototype.ConnectAsync=function(e){return pe(this,void 0,void 0,(function(){return fe(this,(function(t){switch(t.label){case 0:return this._address=e,[4,this.connectAsync()];case 1:return[2,t.sent()]}}))}))},e.prototype.AuthorizeAsync=function(e){var t=this;return new Promise((function(n,o){return pe(t,void 0,void 0,(function(){var t,o,r,i,s=this;return fe(this,(function(a){switch(a.label){case 0:return t=0,o=function(e){window.clearTimeout(t),s._authorizationReceivedEvent.Unsubscribe(o),n(e)},r=function(){window.clearTimeout(t),s._authorizationReceivedEvent.Unsubscribe(o),n(!1)},t=window.setTimeout(r,2e3),this._authorizationReceivedEvent.Subscribe(o),[4,null===(i=this._connection)||void 0===i?void 0:i.send("AuthorizeTo",e.SerialNumber,e.PIN)];case 1:return a.sent(),[2]}}))}))}))},e.prototype.ConnectAndAuthorizeAsync=function(e){return pe(this,void 0,void 0,(function(){var t,n;return fe(this,(function(o){switch(o.label){case 0:return this._isEstabilished?[2,Promise.resolve(re.Connected)]:(this._isEstabilished=!0,this._serialId=e.SerialNumber,this._PIN=e.PIN,[4,this.GetServerAddressAsync()]);case 1:return null==(t=o.sent())?[2,Promise.resolve(re.FailedToConnectToServer)]:(this._address=t,[4,this.connectAsync()]);case 2:return(n=o.sent())!=re.Connected?[2,n]:[4,this.AuthorizeAsync(e)];case 3:return[2,o.sent()?re.Connected:re.AuthorizationFailed]}}))}))},e.prototype.connectAsync=function(){var t,n,o,r,i,s,a;return pe(this,void 0,void 0,(function(){var c,u,l=this;return fe(this,(function(h){switch(h.label){case 0:return this.InitializeConnection(),[4,null===(t=this._connection)||void 0===t?void 0:t.start()];case 1:switch(h.sent(),null===(n=this._connection)||void 0===n||n.on("Pong",(function(){l._log.Debug(e,"Pong received <-"),l._pongReceivedEvent.Invoke()})),null===(o=this._connection)||void 0===o||o.on("Registration",(function(e){var t;null===(t=l._registrationReceivedEvent)||void 0===t||t.Invoke(e)})),null===(r=this._connection)||void 0===r||r.on("Authorization",(function(t){var n;l._log.Debug(e,"Received authorization response: ".concat(t)),null===(n=l._authorizationReceivedEvent)||void 0===n||n.Invoke(t)})),null===(i=this._connection)||void 0===i||i.on("SendError",(function(t,n){return pe(l,void 0,void 0,(function(){return fe(this,(function(o){switch(o.label){case 0:return t.startsWith("NotAuthorized:")?(this._log.Warning(e,"Failed to authorize!"),[4,this.AuthorizeAsync(new se(this._serialId,this._PIN))]):[3,2];case 1:return o.sent(),[3,3];case 2:this._log.Error(e,"Server returned error: ".concat(t," ").concat(n)),this._errorOccuredEvent.Invoke([t,n]),o.label=3;case 3:return[2]}}))}))})),c=this._dataReceivedEvent,null===(s=this._connection)||void 0===s||s.on("Data",(function(t,n){var o=JSON.parse(n);l._log.Debug(e,"Received data:\n".concat(JSON.stringify(o,null,2))),c.Invoke(o)})),u=this._connectionStateChangedEvent,null===(a=this._connection)||void 0===a?void 0:a.state){case C.Connected:return u.Invoke(ie.Connected),[2,re.Connected];case C.Connecting:return u.Invoke(ie.Connecting),[2,re.Connected];case C.Disconnected:return u.Invoke(ie.Disconnected),[2,re.FailedToConnect];case C.Disconnecting:return u.Invoke(ie.Disconnecting),[2,re.FailedToConnect];case C.Reconnecting:return u.Invoke(ie.Reconnecting),[2,re.FailedToConnect]}return[2,re.FailedToConnect]}}))}))},e.prototype.DisconnectAsync=function(){var e;return pe(this,void 0,void 0,(function(){return fe(this,(function(t){switch(t.label){case 0:return[4,null===(e=this._connection)||void 0===e?void 0:e.stop()];case 1:return t.sent(),[2]}}))}))},e.prototype.IsConnected=function(){var e;return(null===(e=this._connection)||void 0===e?void 0:e.state)===C.Connected},e.prototype.SendAndWaitForResponseAsync=function(t,n,o,r){var i=this;void 0===r&&(r=!1);var s=0,a=new Date,c=a.getDate();if(!this.IsConnected())throw new Error("Connection is not established");return new Promise((function(o,u){return pe(i,void 0,void 0,(function(){var i,l,d=this;return fe(this,(function(p){switch(p.label){case 0:return i=function(n){if((null==n?void 0:n.TransactionId)==t.TransactionId){window.clearTimeout(s),d._dataReceivedEvent.Unsubscribe(i);var u=c-a.getDate();r&&d._log.Debug(e,"Received response for: ".concat(null==n?void 0:n.Resource," ").concat(null==n?void 0:n.Method," id: ").concat(null==n?void 0:n.TransactionId," in ").concat(u,"ms")),o(n)}},this._dataReceivedEvent.Subscribe(i),[4,this.SendAsync(t,r)];case 1:return p.sent()?s=window.setTimeout((function(){d._dataReceivedEvent.Unsubscribe(i);var n="Response timeout, resource: ".concat(t.Resource," method: ").concat(t.Method," transaction id: ").concat(t.TransactionId);d._log.Error(e,n),u(new h(n))}),n):(l="Failed to send request, resource: ".concat(t.Resource," method: ").concat(t.Method," transaction id: ").concat(t.TransactionId),u(new Error(l))),[2]}}))}))}))},e.prototype.SendAsync=function(t,n){var o=this;if(void 0===n&&(n=!1),!this.IsConnected())throw new Error("Connection is not established");return new Promise((function(r){var i;n&&o._log.Debug(e,"Send DataFrame ".concat(t.Resource," ").concat(t.Method," transaction id: ").concat(t.TransactionId," ")),null===(i=o._connection)||void 0===i||i.invoke("SendTo",o._serialId,t).then((function(){r(!0)})).catch((function(t){o._log.Error(e,t),r(!1)}))}))},e.prototype.OnDataReceivedEvent=function(){return this._dataReceivedEvent},e.prototype.OnConnectionStateChangedEvent=function(){return this._connectionStateChangedEvent},e.prototype.OnErrorOccuredEvent=function(){return this._errorOccuredEvent},e}(),ve=function(){function e(){this._log=Mn.Get(i),this._serviceName=(0,t.$)(a),e._localStorageService=Mn.Get(a)}return e.prototype.GetServiceName=function(){return this._serviceName},e.prototype.GetResourceName=function(e){return"".concat(e.Resource,"_").concat(e.Method)},e.prototype.Cache=function(t){var n,o=JSON.stringify(t);this._log.Debug("Caching request: ".concat(t.Resource," ").concat(t.Method,"\n").concat(o)),null===(n=e._localStorageService)||void 0===n||n.Save(e,this.GetResourceName(t),o)},e.prototype.GetCache=function(t){var n,o=null===(n=e._localStorageService)||void 0===n?void 0:n.Read(e,this.GetResourceName(t));return null==o&&this._log.Debug("Got request response from cache: ".concat(t.Resource," ").concat(t.Method,"\n").concat(o)),o},e.prototype.ClearCache=function(){var t;null===(t=e._localStorageService)||void 0===t||t.DropStorage(e),this._log.Debug("Clearing cache for ".concat(this.GetServiceName()))},e.prototype.Remove=function(t){var n;null===(n=e._localStorageService)||void 0===n||n.Remove(e,this.GetResourceName(t)),this._log.Debug("Clearing cache for cache: ".concat(t.Resource," ").concat(t.Method))},e._localStorageService=null,e}(),_e=function(){function e(){}return e.GenerateUUID=function(){var e=(new Date).getTime(),t="undefined"!=typeof performance&&performance.now&&1e3*performance.now()||0;return"xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx".replace(/[xy]/g,(function(n){var o=16*Math.random();return e>0?(o=(e+o)%16|0,e=Math.floor(e/16)):(o=(t+o)%16|0,t=Math.floor(t/16)),("x"===n?o:3&o|8).toString(16)}))},e}(),ye=function(){this.TransactionId=_e.GenerateUUID()};!function(e){e[e.OK=0]="OK",e[e.UnknownError=1]="UnknownError",e[e.FatalError=2]="FatalError",e[e.WrongData=3]="WrongData",e[e.ResourceDoesNotExists=4]="ResourceDoesNotExists",e[e.NoPermissionToPerformThisOperation=5]="NoPermissionToPerformThisOperation",e[e.SessionHasAlreadyLoggedOnUser=6]="SessionHasAlreadyLoggedOnUser",e[e.OperationNotPermitted=7]="OperationNotPermitted",e[e.NoPermissionsToCallGivenResource=8]="NoPermissionsToCallGivenResource",e[e.ResourceIsNotAvailable=9]="ResourceIsNotAvailable",e[e.Error=10]="Error",e[e.NoData=11]="NoData",e[e.NotSupportedMethod=12]="NotSupportedMethod",e[e.UserIsNotLoggedIn=13]="UserIsNotLoggedIn",e[e.MultiDataResponseStart=14]="MultiDataResponseStart",e[e.MultiDataResponse=15]="MultiDataResponse",e[e.MultiDataResponseStop=16]="MultiDataResponseStop"}(ae||(ae={})),function(e){e[e.Get=0]="Get",e[e.Post=1]="Post",e[e.Delete=2]="Delete",e[e.Put=3]="Put",e[e.Options=4]="Options",e[e.Head=5]="Head"}(ce||(ce={})),function(e){e[e.Any=0]="Any",e[e.Guest=10]="Guest",e[e.Standard=20]="Standard",e[e.Admin=30]="Admin",e[e.Installator=40]="Installator",e[e.Support=50]="Support"}(ue||(ue={})),function(e){e[e.Unknown=0]="Unknown",e[e.Men=1]="Men",e[e.Woman=2]="Woman",e[e.Other=3]="Other"}(le||(le={})),function(e){e[e.En_Us=0]="En_Us",e[e.Pl_Pl=1]="Pl_Pl"}(he||(he={}));var me,be,we,Se=function(){function e(){this._guid="",this._cloudGuid="",this._name="",this._surname="",this._phone="",this._email="",this._isAccountOnline=!0,this._isAccountActive=!0,this._isAccountBanned=!0,this._notificationChannels=[],this._gender=le.Unknown,this._accessLevel=ue.Any,this._localization=he.En_Us}return Object.defineProperty(e.prototype,"Guid",{get:function(){return this._guid},set:function(e){this._guid=e},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"CloudGuid",{get:function(){return this._cloudGuid},set:function(e){this._cloudGuid=e},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"Name",{get:function(){return this._name},set:function(e){this._name=e},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"Surname",{get:function(){return this._surname},set:function(e){this._surname=e},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"Phone",{get:function(){return this._phone},set:function(e){this._phone=e},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"AccessLevel",{get:function(){return this._accessLevel},set:function(e){this._accessLevel=e},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"Email",{get:function(){return this._email},set:function(e){this._email=e},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"IsAccountOnline",{get:function(){return this._isAccountOnline},set:function(e){this._isAccountOnline=e},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"IsActive",{get:function(){return this._isAccountActive},set:function(e){this._isAccountActive=e},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"IsBanned",{get:function(){return this._isAccountBanned},set:function(e){this._isAccountBanned=e},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"NotificationChannels",{get:function(){return this._notificationChannels},set:function(e){this._notificationChannels=e},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"Gender",{get:function(){return this._gender},set:function(e){this._gender=e},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"Localization",{get:function(){return this._localization},set:function(e){this._localization=e},enumerable:!1,configurable:!0}),e}(),Te=(me=function(e,t){return me=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])},me(e,t)},function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Class extends value "+String(t)+" is not a constructor or null");function n(){this.constructor=e}me(e,t),e.prototype=null===t?Object.create(t):(n.prototype=t.prototype,new n)}),Ce=function(){function e(){this._connection=null,this._serviceName=(0,t.$)(e),this._connection=Mn.Get(ge)}return e.prototype.GetServiceName=function(){return this._serviceName},e.prototype.GetUsersAsync=function(){var t,n,o,r,i,a;return o=this,r=void 0,a=function(){var o,r;return function(e,t){var n,o,r,i,s={label:0,sent:function(){if(1&r[0])throw r[1];return r[1]},trys:[],ops:[]};return i={next:a(0),throw:a(1),return:a(2)},"function"==typeof Symbol&&(i[Symbol.iterator]=function(){return this}),i;function a(i){return function(a){return function(i){if(n)throw new TypeError("Generator is already executing.");for(;s;)try{if(n=1,o&&(r=2&i[0]?o.return:i[0]?o.throw||((r=o.return)&&r.call(o),0):o.next)&&!(r=r.call(o,i[1])).done)return r;switch(o=0,r&&(i=[2&i[0],r.value]),i[0]){case 0:case 1:r=i;break;case 4:return s.label++,{value:i[1],done:!1};case 5:s.label++,o=i[1],i=[0];continue;case 7:i=s.ops.pop(),s.trys.pop();continue;default:if(!((r=(r=s.trys).length>0&&r[r.length-1])||6!==i[0]&&2!==i[0])){s=0;continue}if(3===i[0]&&(!r||i[1]>r[0]&&i[1]<r[3])){s.label=i[1];break}if(6===i[0]&&s.label<r[1]){s.label=r[1],r=i;break}if(r&&s.label<r[2]){s.label=r[2],s.ops.push(i);break}r[2]&&s.ops.pop(),s.trys.pop();continue}i=t.call(e,s)}catch(e){i=[6,e],o=0}finally{n=r=0}if(5&i[0])throw i[1];return{value:i[0]?i[1]:void 0,done:!0}}([i,a])}}}(this,(function(i){switch(i.label){case 0:return[4,null===(t=this._connection)||void 0===t?void 0:t.SendAndWaitForResponseAsync(new Ee,5e3,!1)];case 1:if(null==(o=i.sent()))return[2,Promise.resolve([])];if((null==o?void 0:o.Status)==ae.OK)return null!=o.Data?(r=[],o.Data.forEach((function(e){var t=new Se;t.AccessLevel=e.AccessLevel,t.Email=e.Email,t.Gender=e.Gender,t.Guid=e.Guid,t.IsAccountOnline=e.IsAccountOnline,t.Name=e.Name,t.IsActive=e.IsActive,t.IsBanned=e.IsBanned,t.Phone=e.Phone,t.Surname=e.Surname,r.push(t)})),[2,r]):[2,Promise.resolve([])];if((null==o?void 0:o.Status)==ae.NoData)return[2,Promise.resolve([])];throw null===(n=s.Log)||void 0===n||n.Debug(e,"Failed to retrieve users, error: ".concat(o.Status)),new Error("Failed to retrieve users, error: ".concat(o.Status))}}))},new((i=void 0)||(i=Promise))((function(e,t){function n(e){try{c(a.next(e))}catch(e){t(e)}}function s(e){try{c(a.throw(e))}catch(e){t(e)}}function c(t){var o;t.done?e(t.value):(o=t.value,o instanceof i?o:new i((function(e){e(o)}))).then(n,s)}c((a=a.apply(o,r||[])).next())}))},e.prototype.GetUserAsync=function(e){return new Promise((function(e,t){e(null)}))},e.prototype.CreateUserAsync=function(e){return new Promise((function(t,n){t(e)}))},e.prototype.UpdateUserAsync=function(e){return new Promise((function(t,n){t(e)}))},e.prototype.DeleteUserAsync=function(e){return new Promise((function(e,t){e()}))},e}(),Ee=function(e){function t(){var t=e.call(this)||this;return t.Resource="/users/list",t.Method=ce.Get,t}return Te(t,e),t}(ye);!function(e){e[e.NoTasksExecuting=0]="NoTasksExecuting",e[e.ExecutingTasks=1]="ExecutingTasks"}(be||(be={})),function(e){e[e.Default=0]="Default",e[e.Monostable=1]="Monostable",e[e.Bistable=2]="Bistable",e[e.Gate=3]="Gate",e[e.Gateway=4]="Gateway"}(we||(we={}));var Pe,ke=function(){function e(){this._type=Pe.Unknown,this._interfaceType=""}return Object.defineProperty(e.prototype,"Type",{get:function(){return this._type},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"InterfaceType",{get:function(){return this._interfaceType},set:function(e){this._interfaceType=e,this._type=e},enumerable:!1,configurable:!0}),e}();!function(e){e.Unknown="Unknown",e.SetBlindPosition="IBlindPosition",e.SetBlindMicroventilation="IMicroventilation",e.SetChannelOff="IChannelOff",e.SetChannelOn="IChannelOn",e.TogleState="IChannelSwitchState",e.SetLightBrightnessDynamicly="IDynamicLightBrightness",e.SetLightBrightness="ILightBrightness",e.SetLightColor="ILightColor",e.SetLightWarmth="ILightTemperature",e.PairDevice="IPair",e.UnpairDevice="IUnpair",e.IdentifyDevice="IIdentifyDevice",e.ChaChannelsState="IGetDeviceState",e.GetPowerMeasurements="IGetPowerMeasurements",e.GetAvailableData="IGetAvailableData",e.MultipleDataRequest="IMultipleDataRequest",e.SetBlindOpenCloseTime="ISetBlindOpenCloseTime",e.SetTemperature="IChangeTemperature",e.SetGatePosition="IGatePosition",e.SetGatewayPosition="IGatewayPosition",e.SetFacadePosition="IFacadePosition"}(Pe||(Pe={}));var Ie,De,Re,Ae,Oe=function(){function e(){this._type=Ie.Unknown,this._interfaceType=""}return Object.defineProperty(e.prototype,"Type",{get:function(){return this._type},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"InterfaceType",{get:function(){return this._interfaceType},set:function(e){this._interfaceType=e,this._type=e},enumerable:!1,configurable:!0}),e}();!function(e){e.Unknown="Unknown",e.BatteryState="IBatteryState",e.BinarySensorState="IBinarySensor",e.BlindOpenCloseTime="IBlindOpenCloseTime",e.BlindPosition="IBlindPosition",e.BlindRemoteButtonState="IBlindsControlButton",e.MeasuredBrightness="IBrightness",e.RemoteButtonState="IButtonState",e.ChannelOnOffState="IChannelOnOff",e.DoorBellState="IDoorBell",e.FacadeRemoteButtonState="IFacadeControlButton",e.FacadePosition="IFacadeState",e.FloodSensorState="IFloodSensor",e.GatePosition="IGatePosition",e.GatewayPosition="IGatewayPosition",e.HumiditySensorState="IHumiditySensor",e.LightBrightness="ILightBrightness",e.LightColor="ILightColor",e.LightWarmth="ILightTemperature",e.LightTreshold="ILightTreshold",e.MovementSensorState="IMovementSensor",e.OnlineCamera="IOnlineCamera",e.OvercurrentProtectionState="IOvercurrentProtection",e.OvercurrentProtectionThreshold="IOvercurrentProtectionThreshold",e.ReedPosition="IReedPosition",e.SignalStrength="ISignalStrength",e.SmokeSensorState="ISmokeSensor",e.MeasuredTemperature="ITemperature",e.VibrationSensorState="IVibrationSensor",e.MeasuredWindSpeed="IWindSpeed",e.WindTreshold="IWindTreshold",e.MeasuredEnergy="IEnergy",e.MeasuredDistance="DistanceSensor",e.BlindCalibration="BlindCalibration",e.ConfigurationState="ConfigurationState",e.CurrentWindThreshold="CurrentWindThreshold",e.WindSpeedState="WindSpeed"}(Ie||(Ie={})),function(e){e[e.NotResponding=0]="NotResponding",e[e.Working=1]="Working",e[e.Broken=2]="Broken",e[e.FirmareUpgradeMode=3]="FirmareUpgradeMode"}(De||(De={})),function(e){e[e.TwoWay=1]="TwoWay",e[e.OneWay=2]="OneWay",e[e.ConditionalTwoWay=3]="ConditionalTwoWay"}(Re||(Re={})),function(e){e[e.Unknown=-1]="Unknown",e[e.Multipurpose=0]="Multipurpose",e[e.Controller=1]="Controller",e[e.Driver=2]="Driver",e[e.Receiver=3]="Receiver",e[e.Remote=4]="Remote",e[e.Sensor=5]="Sensor",e[e.Scene=6]="Scene"}(Ae||(Ae={}));var Ne,xe=function(){this.DeviceGuid="",this.Channel=0,this.Status=be.NoTasksExecuting};!function(e){e[e.Unknown=0]="Unknown",e[e.Executed=1]="Executed",e[e.ResponseTimeout=2]="ResponseTimeout",e[e.TaskRepeatedAndExecuted=3]="TaskRepeatedAndExecuted",e[e.TaskRepeatedResponseTimeout=4]="TaskRepeatedResponseTimeout",e[e.FlowControlNotAvailable=5]="FlowControlNotAvailable",e[e.ExecutionError=6]="ExecutionError"}(Ne||(Ne={}));var Ge,$e=function(){var e=function(t,n){return e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])},e(t,n)};return function(t,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function o(){this.constructor=t}e(t,n),t.prototype=null===n?Object.create(n):(o.prototype=n.prototype,new o)}}(),Ue=function(){function e(){this._type="",this._data=null,this._typeAsEnum=Ie.Unknown}return Object.defineProperty(e.prototype,"Data",{get:function(){return this._data},set:function(e){this._data=e},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"Type",{get:function(){return this._type},set:function(e){this._type=e},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"TypeAsEnum",{get:function(){return this._typeAsEnum},set:function(e){this._typeAsEnum=e},enumerable:!1,configurable:!0}),e}();!function(e){e[e.Confident=0]="Confident",e[e.Unconfident=1]="Unconfident"}(Ge||(Ge={}));var Le,Me=function(e){function n(n){var o=e.call(this)||this;return o.TypeAsEnum=Ie.ChannelOnOffState,o.Type=(0,t.$)(We),o.Data=n.state,o}return $e(n,e),n}(Ue),We=function(){this.Channel=0,this.StateReliability=Ge.Unconfident,this.State=Le.Unknown,this.Time=""};!function(e){e[e.On=0]="On",e[e.Off=1]="Off",e[e.Unknown=2]="Unknown"}(Le||(Le={}));var je,Be=function(e){function n(n){var o=e.call(this)||this;return o.TypeAsEnum=Ie.DoorBellState,o.Type=(0,t.$)(Fe),o.Data=n.state,o}return $e(n,e),n}(Ue),Fe=function(){this.Channel=0,this.StateReliability=Ge.Unconfident,this.State=je.Relased,this.Time=""};!function(e){e[e.Pressed=0]="Pressed",e[e.Relased=1]="Relased",e[e.PressedAndRelased=2]="PressedAndRelased"}(je||(je={}));var He,qe=function(e){function n(n){var o=e.call(this)||this;return o.TypeAsEnum=Ie.ReedPosition,o.Type=(0,t.$)(ze),o.Data=n.state,o}return $e(n,e),n}(Ue),ze=function(){this.Channel=0,this.StateReliability=Ge.Unconfident,this.State=!1,this.Time=""},Ve=function(e){function n(n){var o=e.call(this)||this;return o.TypeAsEnum=Ie.BlindPosition,o.Type=(0,t.$)(Ke),o.Data=n.state,o}return $e(n,e),n}(Ue),Ke=function(){this.Channel=0,this.StateReliability=Ge.Unconfident,this.Position=0,this.RawPosition=0,this.Time=""},Je=function(e){function n(n){var o=e.call(this)||this;return o.TypeAsEnum=Ie.RemoteButtonState,o.Type=(0,t.$)(Xe),o.Data=n.state,o}return $e(n,e),n}(Ue),Xe=function(){this.Channel=0,this.StateReliability=Ge.Unconfident,this.State=He.Relased,this.Time=""};!function(e){e[e.Pressed=1]="Pressed",e[e.Relased=2]="Relased",e[e.PressedAndRelased=3]="PressedAndRelased"}(He||(He={}));var Qe,Ye=function(e){function n(n){var o=e.call(this)||this;return o.TypeAsEnum=Ie.LightColor,o.Type=(0,t.$)(Ze),o.Data=n.state,o}return $e(n,e),n}(Ue),Ze=function(){this.Channel=0,this.StateReliability=Ge.Unconfident,this.R=0,this.G=0,this.B=0,this.Time=""},et=function(e){function n(n){var o=e.call(this)||this;return o.TypeAsEnum=Ie.LightWarmth,o.Type=(0,t.$)(tt),o.Data=n.state,o}return $e(n,e),n}(Ue),tt=function(){this.Channel=0,this.StateReliability=Ge.Unconfident,this.Temperature=0,this.Time=""},nt=function(e){function n(n){var o=e.call(this)||this;return o.TypeAsEnum=Ie.LightBrightness,o.Type=(0,t.$)(ot),o.Data=n.state,o}return $e(n,e),n}(Ue),ot=function(){this.Channel=0,this.StateReliability=Ge.Unconfident,this.Brightness=0,this.Time=""},rt=function(e){function n(n){var o=e.call(this)||this;return o.TypeAsEnum=Ie.MeasuredTemperature,o.Type=(0,t.$)(it),o.Data=n.state,o}return $e(n,e),n}(Ue),it=function(){this.Channel=0,this.StateReliability=Ge.Unconfident,this.Temperature=0,this.Type=Qe.InsideTemperature,this.Time=""};!function(e){e[e.AirTemperature=0]="AirTemperature",e[e.InsideTemperature=1]="InsideTemperature",e[e.OutsideTemperature=2]="OutsideTemperature",e[e.FloorTemperature=3]="FloorTemperature",e[e.SafetyTemperature=4]="SafetyTemperature",e[e.SetTemperature=5]="SetTemperature"}(Qe||(Qe={}));var st,at=function(e){function n(n){var o=e.call(this)||this;return o.TypeAsEnum=Ie.BatteryState,o.Type=(0,t.$)(ct),o.Data=n.state,o}return $e(n,e),n}(Ue),ct=function(){this.Channel=0,this.StateReliability=Ge.Unconfident,this.State=st.Half,this.Percentage=-1,this.Time=""};!function(e){e[e.Full=0]="Full",e[e.Empty=1]="Empty",e[e.Half=2]="Half",e[e.Percentage=3]="Percentage",e[e.Low=4]="Low",e[e.ExternalPower=5]="ExternalPower"}(st||(st={}));var ut,lt=function(e){function n(n){var o=e.call(this)||this;return o.TypeAsEnum=Ie.MeasuredBrightness,o.Type=(0,t.$)(ht),o.Data=n.state,o}return $e(n,e),n}(Ue),ht=function(){this.Channel=0,this.StateReliability=Ge.Unconfident,this.Brightness=0,this.Time=""},dt=function(e){function n(n){var o=e.call(this)||this;return o.TypeAsEnum=Ie.MeasuredEnergy,o.Type=(0,t.$)(pt),o.Data=n.state,o}return $e(n,e),n}(Ue),pt=function(){this.Channel=0,this.StateReliability=Ge.Unconfident,this.Voltage=0,this.Current=0,this.PhaseShift=0,this.ActivePower=0,this.ReactivePower=0,this.ApparentPower=0,this.PowerFactor=0,this.ActiveEnergy=0,this.ReactiveEnergy=0,this.Frequency=0,this.Time=""},ft=function(e){function n(n){var o=e.call(this)||this;return o.TypeAsEnum=Ie.MeasuredDistance,o.Type=(0,t.$)(gt),o.Data=n.state,o}return $e(n,e),n}(Ue),gt=function(){this.Channel=0,this.StateReliability=Ge.Unconfident,this.Distance=0,this.DetectedObject=ut.No,this.Time=""};!function(e){e[e.No=0]="No",e[e.Yes=1]="Yes"}(ut||(ut={}));var vt,_t=function(e){function n(n){var o=e.call(this)||this;return o.TypeAsEnum=Ie.MovementSensorState,o.Type=(0,t.$)(yt),o.Data=n.state,o}return $e(n,e),n}(Ue),yt=function(){this.Channel=0,this.StateReliability=Ge.Unconfident,this.Intensity=0,this.Movement=vt.No,this.Time=""};!function(e){e[e.No=0]="No",e[e.Yes=1]="Yes"}(vt||(vt={}));var mt,bt=function(e){function n(n){var o=e.call(this)||this;return o.TypeAsEnum=Ie.BlindRemoteButtonState,o.Type=(0,t.$)(wt),o.Data=n.state,o}return $e(n,e),n}(Ue),wt=function(){this.Channel=0,this.StateReliability=Ge.Unconfident,this.State=mt.StopReleased,this.Time=""};!function(e){e[e.OpenPressed=1]="OpenPressed",e[e.OpenReleased=2]="OpenReleased",e[e.StopPressed=3]="StopPressed",e[e.StopReleased=4]="StopReleased",e[e.ClosePressed=5]="ClosePressed",e[e.CloseReleased=6]="CloseReleased"}(mt||(mt={}));var St,Tt=function(e){function n(n){var o=e.call(this)||this;return o.TypeAsEnum=Ie.FacadeRemoteButtonState,o.Type=(0,t.$)(Ct),o.Data=n.state,o}return $e(n,e),n}(Ue),Ct=function(){this.Channel=0,this.StateReliability=Ge.Unconfident,this.State=St.StopReleased,this.Time=""};!function(e){e[e.OpenPressed=1]="OpenPressed",e[e.OpenReleased=2]="OpenReleased",e[e.StopPressed=3]="StopPressed",e[e.StopReleased=4]="StopReleased",e[e.ClosePressed=5]="ClosePressed",e[e.CloseReleased=6]="CloseReleased"}(St||(St={}));var Et,Pt=function(e){function n(n){var o=e.call(this)||this;return o.TypeAsEnum=Ie.SignalStrength,o.Type=(0,t.$)(kt),o.Data=n.state,o}return $e(n,e),n}(Ue),kt=function(){this.Channel=0,this.StateReliability=Ge.Unconfident,this.Quality=Et.Unknown,this.MeasurementTime="",this.DidLastTaskSucceded=!1,this.Percentage=0,this.SuccededExecutionsPercentage=0,this.SuccededTransmissionsPercentage=0,this.Time=""};!function(e){e[e.Unknown=0]="Unknown",e[e.Excellent=1]="Excellent",e[e.Good=2]="Good",e[e.Acceptable=3]="Acceptable",e[e.Low=4]="Low",e[e.Terrible=5]="Terrible",e[e.NoLink=6]="NoLink"}(Et||(Et={}));var It,Dt=function(e){function n(n){var o=e.call(this)||this;return o.TypeAsEnum=Ie.GatePosition,o.Type=(0,t.$)(Rt),o.Data=n.state,o}return $e(n,e),n}(Ue),Rt=function(){this.Channel=0,this.StateReliability=Ge.Unconfident,this.PositionType=It.Unknown,this.Position=0,this.Time=""};!function(e){e[e.Unknown=0]="Unknown",e[e.Open=1]="Open",e[e.PartiallyOpen=2]="PartiallyOpen",e[e.Close=3]="Close",e[e.On=4]="On",e[e.Off=5]="Off"}(It||(It={}));var At,Ot=function(e){function n(n){var o=e.call(this)||this;return o.TypeAsEnum=Ie.GatewayPosition,o.Type=(0,t.$)(Nt),o.Data=n.state,o}return $e(n,e),n}(Ue),Nt=function(){this.Channel=0,this.StateReliability=Ge.Unconfident,this.PositionType=At.Unknown,this.Position=0,this.Time=""};!function(e){e[e.Unknown=0]="Unknown",e[e.Open=1]="Open",e[e.PartiallyOpen=2]="PartiallyOpen",e[e.Close=3]="Close",e[e.On=4]="On",e[e.Off=5]="Off"}(At||(At={}));var xt,Gt=function(e){function n(n){var o=e.call(this)||this;return o.TypeAsEnum=Ie.BlindCalibration,o.Type=(0,t.$)($t),o.Data=n.state,o}return $e(n,e),n}(Ue),$t=function(){this.Channel=0,this.StateReliability=Ge.Unconfident,this.CalibrationStatus=xt.AutoLernIdle,this.Time=""};!function(e){e[e.AutoLernIdle=0]="AutoLernIdle",e[e.AutoLernInProgress=1]="AutoLernInProgress",e[e.AutoLernSuccessfull=2]="AutoLernSuccessfull",e[e.AutoLernCancelled=4]="AutoLernCancelled"}(xt||(xt={}));var Ut,Lt=function(e){function n(n){var o=e.call(this)||this;return o.TypeAsEnum=Ie.HumiditySensorState,o.Type=(0,t.$)(Mt),o.Data=n.state,o}return $e(n,e),n}(Ue),Mt=function(){this.Channel=0,this.StateReliability=Ge.Unconfident,this.Type=Ut.AirHumidity,this.Humidity=0,this.Time=""};!function(e){e[e.AirHumidity=0]="AirHumidity",e[e.InsideHumidity=1]="InsideHumidity",e[e.OutsideHumidity=2]="OutsideHumidity",e[e.SafetyHumidity=3]="SafetyHumidity",e[e.SetHumidity=4]="SetHumidity"}(Ut||(Ut={}));var Wt,jt=function(e){function n(n){var o=e.call(this)||this;return o.TypeAsEnum=Ie.VibrationSensorState,o.Type=(0,t.$)(Bt),o.Data=n.state,o}return $e(n,e),n}(Ue),Bt=function(){this.Channel=0,this.StateReliability=Ge.Unconfident,this.Vibration=Wt.No,this.Acceleration_X=0,this.Acceleration_Y=0,this.Acceleration_Z=0,this.AccelerationModule=0,this.Time=""};!function(e){e[e.No=0]="No",e[e.Yes=1]="Yes"}(Wt||(Wt={}));var Ft,Ht=function(e){function n(n){var o=e.call(this)||this;return o.TypeAsEnum=Ie.BinarySensorState,o.Type=(0,t.$)(qt),o.Data=n.state,o}return $e(n,e),n}(Ue),qt=function(){this.Channel=0,this.StateReliability=Ge.Unconfident,this.State=Ft.Low,this.Time=""};!function(e){e[e.High=1]="High",e[e.Low=0]="Low"}(Ft||(Ft={}));var zt,Vt=function(e){function n(n){var o=e.call(this)||this;return o.TypeAsEnum=Ie.ConfigurationState,o.Type=(0,t.$)(Kt),o.Data=n.state,o}return $e(n,e),n}(Ue),Kt=function(){this.Channel=0,this.StateReliability=Ge.Unconfident,this.Configuration=zt.Unknown,this.Time=""};!function(e){e[e.Unknown=0]="Unknown",e[e.OngoingConfiguration=1]="OngoingConfiguration",e[e.NotConfigured=2]="NotConfigured",e[e.Configured=3]="Configured",e[e.PartiallyConfigured=4]="PartiallyConfigured"}(zt||(zt={}));var Jt,Xt=function(e){function n(n){var o=e.call(this)||this;return o.TypeAsEnum=Ie.BlindOpenCloseTime,o.Type=(0,t.$)(Qt),o.Data=n.state,o}return $e(n,e),n}(Ue),Qt=function(){this.Channel=0,this.StateReliability=Ge.Unconfident,this.Vibration=Wt.No,this.CloseTime=0,this.OpenTime=0,this.HallCounter=0,this.Time=""},Yt=function(e){function n(n){var o=e.call(this)||this;return o.TypeAsEnum=Ie.OvercurrentProtectionState,o.Type=(0,t.$)(Zt),o.Data=n.state,o}return $e(n,e),n}(Ue),Zt=function(){this.Channel=0,this.StateReliability=Ge.Unconfident,this.Triggered=!1,this.Time=""},en=function(e){function n(n){var o=e.call(this)||this;return o.TypeAsEnum=Ie.OvercurrentProtectionThreshold,o.Type=(0,t.$)(tn),o.Data=n.state,o}return $e(n,e),n}(Ue),tn=function(){this.Channel=0,this.StateReliability=Ge.Unconfident,this.Current=0,this.Time=""},nn=function(e){function n(n){var o=e.call(this)||this;return o.TypeAsEnum=Ie.FacadePosition,o.Type=(0,t.$)(on),o.Data=n.state,o}return $e(n,e),n}(Ue),on=function(){this.Channel=0,this.StateReliability=Ge.Unconfident,this.Position=0,this.Tilt=0,this.Time=""},rn=function(e){function n(n){var o=e.call(this)||this;return o.TypeAsEnum=Ie.CurrentWindThreshold,o.Type=(0,t.$)(sn),o.Data=n.state,o}return $e(n,e),n}(Ue),sn=function(){this.Channel=0,this.StateReliability=Ge.Unconfident,this.WindThreshold=Jt.Unknown,this.Time=""};!function(e){e[e.Unknown=0]="Unknown",e[e.Below=1]="Below",e[e.Exceeded=2]="Exceeded",e[e.Inactive=3]="Inactive"}(Jt||(Jt={}));var an,cn=function(e){function n(n){var o=e.call(this)||this;return o.TypeAsEnum=Ie.CurrentWindThreshold,o.Type=(0,t.$)(un),o.Data=n.state,o}return $e(n,e),n}(Ue),un=function(){this.Channel=0,this.StateReliability=Ge.Unconfident,this.LightThreshold=an.Unknown,this.Value=0,this.Time=""};!function(e){e[e.Unknown=0]="Unknown",e[e.Below=1]="Below",e[e.Exceeded=2]="Exceeded"}(an||(an={}));var ln,hn=function(e){function n(n){var o=e.call(this)||this;return o.TypeAsEnum=Ie.WindSpeedState,o.Type=(0,t.$)(dn),o.Data=n.state,o}return $e(n,e),n}(Ue),dn=function(){this.Channel=0,this.StateReliability=Ge.Unconfident,this.Value=0,this.Time=""},pn=function(){function e(){this._number=0,this._name="",this._iconName="",this._states=[],this._mode=we.Default,this._channelGroups=[],this._isHidden=!1,this._availableTasksTypes=[],this._availableResponseTypes=[],this._onTasksExecutionChangedEvent=new r}return Object.defineProperty(e.prototype,"Number",{get:function(){return this._number},set:function(e){this._number=e},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"Name",{get:function(){return this._name},set:function(e){this._name=e},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"IconName",{get:function(){return this._iconName},set:function(e){this._iconName=e},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"States",{get:function(){return this._states},set:function(e){this._states=e},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"State",{set:function(e){throw new Error("Method not implemented.")},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"Mode",{get:function(){return this._mode},set:function(e){this._mode=e},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ChannelGroups",{get:function(){return this._channelGroups},set:function(e){this._channelGroups=e},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"IsHidden",{get:function(){return this._isHidden},set:function(e){this._isHidden=e},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"AvailableTaskTypes",{get:function(){return this._availableTasksTypes},set:function(e){this._availableTasksTypes=e},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"AvailableResponseTypes",{get:function(){return this._availableResponseTypes},set:function(e){this._availableResponseTypes=e},enumerable:!1,configurable:!0}),e.prototype.OnTasksExecutionChangeEvent=function(){return this._onTasksExecutionChangedEvent},e.prototype.ExecuteTaskAsync=function(e){throw new Error("Method not implemented.")},e}(),fn=function(){function e(){var e=this;this._onDeviceStateChangedEvent=new r,this._onDeviceTasksExecutionChangedOnChannelsEvent=new r,this._serialNumber=null,this._model=null,this._modelGuid=null,this._manufacturerGuid=null,this._isVirtual=!1,this._isEnabled=!1,this._deviceState=De.Working,this._deviceType=Ae.Unknown,this._communicationWay=Re.OneWay,this._availableTasksTypes=[],this._availableResponseTypes=[],this._channels=[];var t=Mn.Get(On),n=this._onDeviceStateChangedEvent,o=this._onDeviceTasksExecutionChangedOnChannelsEvent;t.OnDeviceStateChangedEvent().Subscribe((function(t){t[0].Guid==e._guid&&n.Invoke(t[1])})),t.OnDevicesTasksExecutionChangeEvent().Subscribe((function(t){o.Invoke(t.filter((function(t){return t.DeviceGuid==e._guid})).map((function(e){return e.Channel})))}))}return e.prototype.OnDeviceTasksExecutionChangedOnChannelsEvent=function(){return this._onDeviceTasksExecutionChangedOnChannelsEvent},e.prototype.OnDeviceStateChangedEvent=function(){return this._onDeviceStateChangedEvent},Object.defineProperty(e.prototype,"Guid",{get:function(){return null==this._guid?"":this._guid},set:function(e){this._guid=e},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"Name",{get:function(){return null==this._name?"":this._name},set:function(e){this._name=e},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ChannelsAmount",{get:function(){return null==this._channelsAmount?0:this._channelsAmount},set:function(e){this._channelsAmount=e},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"SerialNumber",{get:function(){return this._serialNumber},set:function(e){this._serialNumber=e},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"Model",{get:function(){return this._model},set:function(e){this._model=e},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ModelGuid",{get:function(){return this._modelGuid},set:function(e){this._modelGuid=e},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ManufacturerGuid",{get:function(){return this._manufacturerGuid},set:function(e){this._manufacturerGuid=e},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"IsVirtual",{get:function(){return this._isVirtual},set:function(e){this._isVirtual=e},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"IsEnabled",{get:function(){return this._isEnabled},set:function(e){this._isEnabled=e},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"DeviceState",{get:function(){return this._deviceState},set:function(e){this._deviceState=e},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"DeviceType",{get:function(){return this._deviceType},set:function(e){this._deviceType=e},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"CommunicationWay",{get:function(){return this._communicationWay},set:function(e){this._communicationWay=e},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"AvailableTaskTypes",{get:function(){return this._availableTasksTypes},set:function(e){this._availableTasksTypes=e},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"AvailableResponseTypes",{get:function(){return this._availableResponseTypes},set:function(e){this._availableResponseTypes=e},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"Channels",{get:function(){return this._channels},enumerable:!1,configurable:!0}),e.prototype.ChangeDeviceNameAsync=function(e){throw new Error("Method not implemented.")},e.prototype.ExecuteTaskAsync=function(e,t){throw new Error("Method not implemented.")},e}();!function(e){e[e.Unknown=0]="Unknown",e[e.WrongAuthData=1]="WrongAuthData",e[e.NoResponseFromController=2]="NoResponseFromController"}(ln||(ln={}));var gn,vn=function(){var e=function(t,n){return e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])},e(t,n)};return function(t,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function o(){this.constructor=t}e(t,n),t.prototype=null===n?Object.create(n):(o.prototype=n.prototype,new o)}}(),_n=function(e,t,n,o){return new(n||(n=Promise))((function(r,i){function s(e){try{c(o.next(e))}catch(e){i(e)}}function a(e){try{c(o.throw(e))}catch(e){i(e)}}function c(e){var t;e.done?r(e.value):(t=e.value,t instanceof n?t:new n((function(e){e(t)}))).then(s,a)}c((o=o.apply(e,t||[])).next())}))},yn=function(e,t){var n,o,r,i,s={label:0,sent:function(){if(1&r[0])throw r[1];return r[1]},trys:[],ops:[]};return i={next:a(0),throw:a(1),return:a(2)},"function"==typeof Symbol&&(i[Symbol.iterator]=function(){return this}),i;function a(i){return function(a){return function(i){if(n)throw new TypeError("Generator is already executing.");for(;s;)try{if(n=1,o&&(r=2&i[0]?o.return:i[0]?o.throw||((r=o.return)&&r.call(o),0):o.next)&&!(r=r.call(o,i[1])).done)return r;switch(o=0,r&&(i=[2&i[0],r.value]),i[0]){case 0:case 1:r=i;break;case 4:return s.label++,{value:i[1],done:!1};case 5:s.label++,o=i[1],i=[0];continue;case 7:i=s.ops.pop(),s.trys.pop();continue;default:if(!((r=(r=s.trys).length>0&&r[r.length-1])||6!==i[0]&&2!==i[0])){s=0;continue}if(3===i[0]&&(!r||i[1]>r[0]&&i[1]<r[3])){s.label=i[1];break}if(6===i[0]&&s.label<r[1]){s.label=r[1],r=i;break}if(r&&s.label<r[2]){s.label=r[2],s.ops.push(i);break}r[2]&&s.ops.pop(),s.trys.pop();continue}i=t.call(e,s)}catch(e){i=[6,e],o=0}finally{n=r=0}if(5&i[0])throw i[1];return{value:i[0]?i[1]:void 0,done:!0}}([i,a])}}},mn=function(){function e(){this._onUserLoggedInEvent=new r,this._onUserLoggedOutEvent=new r,this._serviceName=(0,t.$)(e),this._user=null}return e.prototype.OnUserLoggedInEvent=function(){return this._onUserLoggedInEvent},e.prototype.OnUserLoggedOutEvent=function(){return this._onUserLoggedOutEvent},Object.defineProperty(e.prototype,"User",{get:function(){return this._user},enumerable:!1,configurable:!0}),e.prototype.UserLogOutAsync=function(){var e,t;return _n(this,void 0,void 0,(function(){var n;return yn(this,(function(o){switch(o.label){case 0:return(n=new ye).Resource="/users/user/logout",n.Method=ce.Put,[4,Mn.Get(ge).SendAndWaitForResponseAsync(n,5e3,!1)];case 1:return o.sent().Status==ae.OK?(this._onUserLoggedOutEvent.Invoke(this._user),null===(e=s.Log)||void 0===e||e.Debug("User has been logged out.")):null===(t=s.Log)||void 0===t||t.Debug("Failed to logout user!"),[2]}}))}))},e.prototype.UserLogInAsync=function(e,t){var n,o;return _n(this,void 0,void 0,(function(){var r,i;return yn(this,(function(a){switch(a.label){case 0:return[4,Mn.Get(ge).SendAndWaitForResponseAsync(new wn(e,t),5e3,!1)];case 1:return r=a.sent(),null===(n=s.Log)||void 0===n||n.Debug("Did logging in succeded?: ".concat(r.Status==ae.OK)),r.Status==ae.OK&&null!=r.Data?(i=new Se,this._user=i,i.AccessLevel=r.Data.AccessLevel,i.Email=r.Data.Email,i.Gender=r.Data.Gender,i.Guid=r.Data.Guid,i.IsAccountOnline=r.Data.IsAccountOnline,i.Name=r.Data.Name,i.IsActive=r.Data.IsActive,i.IsBanned=r.Data.IsBanned,i.Phone=r.Data.Phone,i.Surname=r.Data.Surname,this._onUserLoggedInEvent.Invoke(this._user),[2,i]):(null===(o=s.Log)||void 0===o||o.Debug("User login response: ".concat(r.Data)),[2,ln.WrongAuthData])}}))}))},e.prototype.GetServiceName=function(){return this._serviceName},e}(),bn=function(e,t){this.Email="",this.Password="",this.Email=e,this.Password=t},wn=function(e){function t(t,n){var o=e.call(this)||this;return o.Data=new bn(t,n),o.Resource="/users/user/login",o.Method=ce.Put,o}return vn(t,e),t}(ye),Sn=function(){var e=function(t,n){return e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])},e(t,n)};return function(t,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function o(){this.constructor=t}e(t,n),t.prototype=null===n?Object.create(n):(o.prototype=n.prototype,new o)}}(),Tn=function(e,t,n,o){return new(n||(n=Promise))((function(r,i){function s(e){try{c(o.next(e))}catch(e){i(e)}}function a(e){try{c(o.throw(e))}catch(e){i(e)}}function c(e){var t;e.done?r(e.value):(t=e.value,t instanceof n?t:new n((function(e){e(t)}))).then(s,a)}c((o=o.apply(e,t||[])).next())}))},Cn=function(e,t){var n,o,r,i,s={label:0,sent:function(){if(1&r[0])throw r[1];return r[1]},trys:[],ops:[]};return i={next:a(0),throw:a(1),return:a(2)},"function"==typeof Symbol&&(i[Symbol.iterator]=function(){return this}),i;function a(i){return function(a){return function(i){if(n)throw new TypeError("Generator is already executing.");for(;s;)try{if(n=1,o&&(r=2&i[0]?o.return:i[0]?o.throw||((r=o.return)&&r.call(o),0):o.next)&&!(r=r.call(o,i[1])).done)return r;switch(o=0,r&&(i=[2&i[0],r.value]),i[0]){case 0:case 1:r=i;break;case 4:return s.label++,{value:i[1],done:!1};case 5:s.label++,o=i[1],i=[0];continue;case 7:i=s.ops.pop(),s.trys.pop();continue;default:if(!((r=(r=s.trys).length>0&&r[r.length-1])||6!==i[0]&&2!==i[0])){s=0;continue}if(3===i[0]&&(!r||i[1]>r[0]&&i[1]<r[3])){s.label=i[1];break}if(6===i[0]&&s.label<r[1]){s.label=r[1],r=i;break}if(r&&s.label<r[2]){s.label=r[2],s.ops.push(i);break}r[2]&&s.ops.pop(),s.trys.pop();continue}i=t.call(e,s)}catch(e){i=[6,e],o=0}finally{n=r=0}if(5&i[0])throw i[1];return{value:i[0]?i[1]:void 0,done:!0}}([i,a])}}},En=function(){function e(){var n=this;this._connection=null,this._session=null,this._serviceName=(0,t.$)(e),this._onEnteredConfigurationEvent=new de,this._onExitedConfigurationEvent=new de,this._onConfigurationTimeCheckedEvent=new r,this._configurationTime=new Date,this._appEnteredConfigurationMode=!1,this._connection=Mn.Get(ge),this._session=Mn.Get(mn),this._connection.OnDataReceivedEvent().Subscribe((function(e){"/info/configuration/mode/entry"==e.Resource?n._appEnteredConfigurationMode||n._onEnteredConfigurationEvent.Invoke():"/info/configuration/mode/exit"==e.Resource&&(n._appEnteredConfigurationMode||n._onExitedConfigurationEvent.Invoke())}))}return e.prototype.GetServiceName=function(){return this._serviceName},e.prototype.EnterConfigurationModeAsync=function(){var e;return Tn(this,void 0,void 0,(function(){return Cn(this,(function(t){switch(t.label){case 0:return this._appEnteredConfigurationMode=!0,[4,null===(e=this._connection)||void 0===e?void 0:e.SendAndWaitForResponseAsync(new Pn,5e3,!1)];case 1:return t.sent(),[2]}}))}))},e.prototype.ExitConfigurationModeAsync=function(){var e;return Tn(this,void 0,void 0,(function(){return Cn(this,(function(t){switch(t.label){case 0:return[4,null===(e=this._connection)||void 0===e?void 0:e.SendAndWaitForResponseAsync(new kn,5e3,!1)];case 1:return t.sent(),this._appEnteredConfigurationMode=!1,[2]}}))}))},e.prototype.OnEnteredConfigurationEvent=function(){return this._onEnteredConfigurationEvent},e.prototype.OnExitedConfigurationEvent=function(){return this._onExitedConfigurationEvent},e.prototype.OnConfigurationTimeCheckedEvent=function(){return this._onConfigurationTimeCheckedEvent},e.prototype.GetLastConfigurationChangeTimeAsync=function(){var e;return Tn(this,void 0,void 0,(function(){var t;return Cn(this,(function(n){switch(n.label){case 0:return[4,null===(e=this._connection)||void 0===e?void 0:e.SendAndWaitForResponseAsync(new In,5e3,!1)];case 1:if(null==(t=n.sent())||(null==t?void 0:t.Status)!=ae.OK)throw new Error("Failed to get last configuration change time");return this._configurationTime=new Date(t.Data),[2,this._configurationTime]}}))}))},e}(),Pn=function(e){function t(){var t=e.call(this)||this;return t.Resource="/system/configuration/mode/entry",t.Method=ce.Put,t}return Sn(t,e),t}(ye),kn=function(e){function t(){var t=e.call(this)||this;return t.Resource="/system/configuration/mode/exit",t.Method=ce.Put,t}return Sn(t,e),t}(ye),In=function(e){function t(){var t=e.call(this)||this;return t.Resource="/system/configuration/change/time",t.Method=ce.Get,t}return Sn(t,e),t}(ye),Dn=function(){var e=function(t,n){return e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])},e(t,n)};return function(t,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function o(){this.constructor=t}e(t,n),t.prototype=null===n?Object.create(n):(o.prototype=n.prototype,new o)}}(),Rn=function(e,t,n,o){return new(n||(n=Promise))((function(r,i){function s(e){try{c(o.next(e))}catch(e){i(e)}}function a(e){try{c(o.throw(e))}catch(e){i(e)}}function c(e){var t;e.done?r(e.value):(t=e.value,t instanceof n?t:new n((function(e){e(t)}))).then(s,a)}c((o=o.apply(e,t||[])).next())}))},An=function(e,t){var n,o,r,i,s={label:0,sent:function(){if(1&r[0])throw r[1];return r[1]},trys:[],ops:[]};return i={next:a(0),throw:a(1),return:a(2)},"function"==typeof Symbol&&(i[Symbol.iterator]=function(){return this}),i;function a(i){return function(a){return function(i){if(n)throw new TypeError("Generator is already executing.");for(;s;)try{if(n=1,o&&(r=2&i[0]?o.return:i[0]?o.throw||((r=o.return)&&r.call(o),0):o.next)&&!(r=r.call(o,i[1])).done)return r;switch(o=0,r&&(i=[2&i[0],r.value]),i[0]){case 0:case 1:r=i;break;case 4:return s.label++,{value:i[1],done:!1};case 5:s.label++,o=i[1],i=[0];continue;case 7:i=s.ops.pop(),s.trys.pop();continue;default:if(!((r=(r=s.trys).length>0&&r[r.length-1])||6!==i[0]&&2!==i[0])){s=0;continue}if(3===i[0]&&(!r||i[1]>r[0]&&i[1]<r[3])){s.label=i[1];break}if(6===i[0]&&s.label<r[1]){s.label=r[1],r=i;break}if(r&&s.label<r[2]){s.label=r[2],s.ops.push(i);break}r[2]&&s.ops.pop(),s.trys.pop();continue}i=t.call(e,s)}catch(e){i=[6,e],o=0}finally{n=r=0}if(5&i[0])throw i[1];return{value:i[0]?i[1]:void 0,done:!0}}([i,a])}}},On=function(){function e(){var n=this;this._devices=[],this._serviceName=(0,t.$)(e),this._onDevicesTasksChangedEvent=new r,this._onDeviceFoundEvent=new r,this._onDeviceRegisteredEvent=new r,this._onDeviceRemovedEvent=new r,this._onDeviceStateChangedEvent=new r,this._connection=null,this._fastStatesSync=!1,this._connection=Mn.Get(ge),this._connection.OnConnectionStateChangedEvent().Subscribe((function(e){ie.Connected})),this._connection.OnDataReceivedEvent().Subscribe((function(e){if("/info/devices/tasks"===e.Resource)n.ParseDeviceTaskInfo(e.Data);else if("/devices/blinds/times"===e.Resource);else if("/info/devices/device/found"===e.Resource)n.MapApiDevices(e.Data).forEach((function(e){var t;null===(t=s.Log)||void 0===t||t.Debug("Found device: ".concat(e.Name," guid: ").concat(e.Guid)),n._onDeviceFoundEvent.Invoke(e)}));else if("/info/devices/device/state/changed"===e.Resource){var t=e.Data,o=n._devices.filter((function(e){return e.Guid==t.DeviceGuid}));if(o.length>0){var r=o[0],i=n.MapApiDeviceStateToDeviceState(r,t);null!=i&&n._onDeviceStateChangedEvent.Invoke([r,i])}}else"/info/devices/device/registered"===e.Resource?n.MapApiDevices(e.Data).forEach((function(e){var t;null===(t=s.Log)||void 0===t||t.Debug("Registered device: ".concat(e.Name," guid: ").concat(e.Guid)),n._onDeviceRegisteredEvent.Invoke(e)})):"/info/devices/device/removed"===e.Resource&&n.MapApiDevices(e.Data).forEach((function(e){var t;null===(t=s.Log)||void 0===t||t.Debug("Removed device: ".concat(e.Name," guid: ").concat(e.Guid)),n._onDeviceRemovedEvent.Invoke(e)}))}))}return e.prototype.GetCurrentlyRunningTaksAsync=function(){var e;return Rn(this,void 0,void 0,(function(){var t;return An(this,(function(n){switch(n.label){case 0:return[4,null===(e=this._connection)||void 0===e?void 0:e.SendAndWaitForResponseAsync(new Un,15e3,!1)];case 1:return(null==(t=n.sent())?void 0:t.Status)==ae.OK&&null!=t.Data&&this.ParseDeviceTaskInfo(t.Data),[2]}}))}))},e.prototype.ParseDeviceTaskInfo=function(e){var t=[];e.forEach((function(e){var n=e.split(";"),o=new xe;o.DeviceGuid=n[0],o.Channel=Number(n[1]),o.Status=be.ExecutingTasks,t.push(o)})),this._onDevicesTasksChangedEvent.Invoke(t)},e.prototype.MapApiDeviceStateToDeviceState=function(e,t){var n;switch(t.state,t.DataType){case"ChannelOnOff":return new Me(t);case"DoorBell":return new Be(t);case"ReedPosition":return new qe(t);case"BlindPosition":return new Ve(t);case"ButtonState":return new Je(t);case"LightColor":return new Ye(t);case"LightTemperature":return new et(t);case"LightBrightness":return new nt(t);case"TemperatureSensor":case"TemperatureState":case"MeasuredTemperature":return new rt(t);case"BatteryState":return new at(t);case"MeasuredBrightness":case"DeviceBrightnessState":return new lt(t);case"EnergyMeasuredPower":case"EnergyMeasuredCurrent":case"EnergyMeasuredVoltage":break;case"Energy":return new dt(t);case"DistanceSensor":return new ft(t);case"MovementSensor":return new _t(t);case"BlindsControlButton":return new bt(t);case"FacadeControlButton":return new Tt(t);case"SignalStrength":return new Pt(t);case"GatePosition":return new Dt(t);case"GatewayPosition":return new Ot(t);case"IBlindCalibrationStatus":case"BlindCalibration":return new Gt(t);case"HumiditySensor":return new Lt(t);case"VibrationSensor":return new jt(t);case"DigitalInputSensor":return new Ht(t);case"ConfigurationState":return new Vt(t);case"BlindOpenCloseTime":case"IBlindOpenCloseTime":return new Xt(t);case"IOvercurrentProtection":case"OvercurrentProtection":return new Yt(t);case"IOvercurrentProtectionThreshold":case"OvercurrentProtectionThreshold":return new en(t);case"FacadePosition":case"FacadeState":return new nn(t);case"CurrentWindThreshold":return new rn(t);case"CurrentLightThreshold":return new cn(t);case"WindSpeed":return new hn(t);default:null===(n=s.Log)||void 0===n||n.Debug("Not supported device state ".concat(t.DataType))}return null},e.prototype.GetServiceName=function(){return this._serviceName},e.prototype.SyncDevicesStatesAsync=function(){var e;return Rn(this,void 0,void 0,(function(){var t;return An(this,(function(n){switch(n.label){case 0:return this._fastStatesSync?[4,null===(e=this._connection)||void 0===e?void 0:e.SendAndWaitForResponseAsync(new xn,15e3,!1)]:[3,2];case 1:return[2,(null==(t=n.sent())?void 0:t.Status)==ae.OK];case 2:throw new Error("Precise, slow states synchronization is not implemented yet")}}))}))},e.prototype.OnDevicesTasksExecutionChangeEvent=function(){return this._onDevicesTasksChangedEvent},e.prototype.OnDeviceStateChangedEvent=function(){return this._onDeviceStateChangedEvent},e.prototype.OnDeviceRegisteredEvent=function(){return this._onDeviceRegisteredEvent},e.prototype.OnDeviceRemovedEvent=function(){return this._onDeviceRemovedEvent},e.prototype.OnDeviceFoundEvent=function(){return this._onDeviceFoundEvent},e.prototype.MapApiDevices=function(e){var t=[];return null==e?[]:(e.forEach((function(e){var n,o,r,i,a=new fn;a.Guid=e.Guid,a.Name=e.DeviceName,a.ChannelsAmount=e.ChannelsNumber,a.DeviceType=e.DeviceType,a.CommunicationWay=e.CommunicationWay,a.DeviceState=e.DeviceState,a.IsEnabled=e.IsEnabled,a.IsVirtual=e.IsVirtual,a.SerialNumber=e.DeviceSerialNumber,a.ManufacturerGuid=e.ManufacturerGuid,a.ModelGuid=e.DeviceModelGuid,a.Model=e.DeviceModel,a.Name=e.DeviceName;try{null===(n=e.AvailableTasks)||void 0===n||n.forEach((function(e){var t=new ke;t.InterfaceType=e,a.AvailableTaskTypes.push(t)})),null===(o=e.AvailableResponses)||void 0===o||o.forEach((function(e){var t=new Oe;t.InterfaceType=e,a.AvailableResponseTypes.push(t)})),null===(r=e.ChannelsConfiguration)||void 0===r||r.forEach((function(e){var t,n,o;try{var r=new pn;a.Channels.push(r),r.Number=e.Channel,r.Name=e.ChannelName,r.ChannelGroups=e.GroupsGuids,r.IconName=e.IconName,r.IsHidden=e.Hidden,null===(t=e.AvailableResponses)||void 0===t||t.forEach((function(e){var t=new Oe;t.InterfaceType=e,r.AvailableResponseTypes.push(t)})),null===(n=e.AvailableTasks)||void 0===n||n.forEach((function(e){var t=new ke;t.InterfaceType=e,r.AvailableTaskTypes.push(t)}))}catch(e){null===(o=s.Log)||void 0===o||o.Error(e)}}))}catch(e){null===(i=s.Log)||void 0===i||i.Error(e)}t.push(a)})),this._devices=t,t)},e.prototype.GetDevicesAsync=function(){var t,n;return Rn(this,void 0,void 0,(function(){var o;return An(this,(function(r){switch(r.label){case 0:return[4,null===(t=this._connection)||void 0===t?void 0:t.SendAndWaitForResponseAsync(new Nn,5e3,!0)];case 1:return null==(o=r.sent())?[2,[]]:o.Status==ae.OK&&null!=o.Data?[2,this.MapApiDevices(o.Data)]:(null===(n=s.Log)||void 0===n||n.Error(e,"Failed to get devices. ".concat(o.Status," ").concat(o.Data)),[2,[]])}}))}))},e.prototype.GetDevice=function(e){return this._devices.find((function(t){return t.Guid===e}))},e.prototype.FindDevicesAsync=function(){var e;return Rn(this,void 0,void 0,(function(){return An(this,(function(t){switch(t.label){case 0:return[4,null===(e=this._connection)||void 0===e?void 0:e.SendAndWaitForResponseAsync(new Gn,35e3,!1)];case 1:return t.sent(),[2]}}))}))},e.prototype.StopSearchingForDevices=function(){var e;return Rn(this,void 0,void 0,(function(){return An(this,(function(t){switch(t.label){case 0:return[4,null===(e=this._connection)||void 0===e?void 0:e.SendAndWaitForResponseAsync(new $n,5e3,!1)];case 1:return t.sent(),[2]}}))}))},e.prototype.RegisterDeviceAsync=function(e){var t;return Rn(this,void 0,void 0,(function(){var n,o;return An(this,(function(r){switch(r.label){case 0:return(n=new Ln).Data=e.Guid,[4,null===(t=this._connection)||void 0===t?void 0:t.SendAndWaitForResponseAsync(n,1e4,!1)];case 1:return(null==(o=r.sent())?void 0:o.Status)==ae.OK&&(this._devices.push(e),Mn.Get(En)),[2]}}))}))},e.prototype.RemoveDeviceAsync=function(e){throw new Error("Method not implemented.")},e}(),Nn=function(e){function t(){var t=e.call(this)||this;return t.Resource="/devices/list",t.Method=ce.Get,t}return Dn(t,e),t}(ye),xn=function(e){function t(){var t=e.call(this)||this;return t.Resource="/devices/channels/states",t.Method=ce.Get,t}return Dn(t,e),t}(ye),Gn=function(e){function t(){var t=e.call(this)||this;return t.Resource="/devices/search",t.Method=ce.Post,t}return Dn(t,e),t}(ye),$n=function(e){function t(){var t=e.call(this)||this;return t.Resource="/devices/search/stop",t.Method=ce.Post,t}return Dn(t,e),t}(ye),Un=(Dn((function(){var e=gn.call(this)||this;return e.Resource="/devices/found/list",e.Method=ce.Get,e}),gn=ye),function(e){function t(){var t=e.call(this)||this;return t.Resource="/devices/tasks",t.Method=ce.Get,t}return Dn(t,e),t}(ye)),Ln=function(e){function t(){var t=e.call(this)||this;return t.Resource="/devices/device/pair",t.Method=ce.Put,t}return Dn(t,e),t}(ye),Mn=function(){function e(){}return e.Init=function(){if(!s.IsInitialized){var e=s.Instance;try{e.RegisterService(new a),e.RegisterService(new ve),e.RegisterService(new ge),e.RegisterService(new mn),e.RegisterService(new En),e.RegisterService(new Ce),e.RegisterService(new On)}catch(e){console.error(e)}}},e.GetAsync=function(e,t){return s.Instance.GetServiceAsync(e,t)},e.GetWithTimeoutAsync=function(e,t){return s.Instance.GetServiceWithTimeoutAsync(e,t)},e.Get=function(e){return s.Instance.GetService(e)},e.Version=1,e}()})()})();
1
+ (()=>{"use strict";var e={714:(e,t,n)=>{t.$=void 0;var o=n(898);Object.defineProperty(t,"$",{enumerable:!0,get:function(){return o.nameof}})},898:(e,t)=>{function n(e){return e.replace(/[?!]/g,"")}Object.defineProperty(t,"__esModule",{value:!0}),t.nameof=void 0,t.nameof=function(e,t){var o=e.toString();if(o.startsWith("class ")&&!o.startsWith("class =>"))return n(o.substring("class ".length,o.indexOf(" {")));if(o.includes("=>"))return n(o.substring(o.indexOf(".")+1));var r=o.match(/function\s*\(\w+\)\s*\{[\r\n\s]*return\s+\w+\.((\w+\.)*(\w+))/i);if(r)return t&&t.lastProp?r[3]:r[1];if(o.startsWith("function "))return n(o.substring("function ".length,o.indexOf("(")));throw new Error("ts-simple-nameof: Invalid function.")}}},t={};function n(o){var r=t[o];if(void 0!==r)return r.exports;var i=t[o]={exports:{}};return e[o](i,i.exports,n),i.exports}n.d=(e,t)=>{for(var o in t)n.o(t,o)&&!n.o(e,o)&&Object.defineProperty(e,o,{enumerable:!0,get:t[o]})},n.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(e){if("object"==typeof window)return window}}(),n.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t);var o={};(()=>{n.d(o,{V:()=>Qu});var e,t=n(714),r=function(){function e(){this.handlers=[]}return e.prototype.Subscribe=function(e){this.handlers.push(e)},e.prototype.Unsubscribe=function(e){this.handlers=this.handlers.filter((function(t){return t!==e}))},e.prototype.Invoke=function(e){this.handlers.slice(0).forEach((function(t){var n;try{t(e)}catch(e){null===(n=s.Log)||void 0===n||n.Error(e)}}))},e}();!function(e){e[e.Debug=0]="Debug",e[e.Info=1]="Info",e[e.Warning=2]="Warning",e[e.Error=3]="Error"}(e||(e={}));var i=function(){function n(){this._logLevel=e.Debug}return Object.defineProperty(n.prototype,"LogLevel",{get:function(){return this._logLevel},set:function(e){this._logLevel=e},enumerable:!1,configurable:!0}),n.prototype.GetServiceName=function(){return(0,t.$)(n)},n.prototype.GetTimeStamp=function(){var e=new Date;return"".concat(e.getHours(),":").concat(e.getMinutes(),":").concat(e.getSeconds(),".").concat(e.getMilliseconds()," | ")},n.prototype.Warning=function(n,o){switch(this._logLevel){case e.Warning:case e.Info:case e.Debug:break;default:return}null!=n&&("string"==typeof n||n instanceof String)?null==o?console.warn("".concat(this.GetTimeStamp(),"[WARN] ").concat(n)):console.warn("".concat(this.GetTimeStamp(),"[WARN] [").concat(n,"] ").concat(o)):null!=n&&n instanceof Object&&console.warn("".concat(this.GetTimeStamp(),"[WARN] [").concat((0,t.$)(n),"] ").concat(o))},n.prototype.Error=function(e,n){null!=e&&("string"==typeof e||e instanceof String)?null==n?console.error("".concat(this.GetTimeStamp(),"[ERROR] ").concat(e)):console.error("".concat(this.GetTimeStamp(),"[ERROR] [").concat(e,"] ").concat(n)):null!=e&&e instanceof Object&&console.error("".concat(this.GetTimeStamp(),"[ERROR] [").concat((0,t.$)(e),"] ").concat(n))},n.prototype.Info=function(n,o){switch(this._logLevel){case e.Info:case e.Debug:break;default:return}null!=n&&("string"==typeof n||n instanceof String)?null==o?console.info("".concat(this.GetTimeStamp(),"[INFO] ").concat(n)):console.info("".concat(this.GetTimeStamp(),"[INFO] [").concat(n,"] ").concat(o)):null!=n&&n instanceof Object&&console.info("".concat(this.GetTimeStamp(),"[INFO] [").concat((0,t.$)(n),"] ").concat(o))},n.prototype.Debug=function(n,o){this._logLevel===e.Debug&&(null!=n&&("string"==typeof n||n instanceof String)?null==o?console.debug("".concat(this.GetTimeStamp(),"[DEBUG] ").concat(n)):console.debug("".concat(this.GetTimeStamp(),"[DEBUG] [").concat(n,"] ").concat(o)):null!=n&&n instanceof Object&&console.debug("".concat(this.GetTimeStamp(),"[DEBUG] [").concat((0,t.$)(n),"] ").concat(o)))},n.prototype.Log=function(e,n){null!=e&&("string"==typeof e||e instanceof String)?null==n?console.log("".concat(this.GetTimeStamp(),"[LOG] ").concat(e)):console.log("".concat(this.GetTimeStamp(),"[LOG] [").concat(e,"] ").concat(n)):null!=e&&e instanceof Object&&console.log("".concat(this.GetTimeStamp(),"[LOG] [").concat((0,t.$)(e),"] ").concat(n))},n}(),s=function(){function e(){this._services={},this._serviceRegistrationEvent=new r}return Object.defineProperty(e,"Instance",{get:function(){return null!=e._instance||(e._instance=new e,this.Log=new i,this.Log.Warning("Initializing DependencyContainer"),e._instance.RegisterService(this.Log),this.IsInitialized=!0),e._instance},enumerable:!1,configurable:!0}),e.prototype.RegisterService=function(t){var n;null===(n=e.Log)||void 0===n||n.Debug(e,"Registering new service: ".concat(t.GetServiceName())),this._services[t.GetServiceName()]=t},e.prototype.GetService=function(n){var o,r=(0,t.$)(n);return null===(o=e.Log)||void 0===o||o.Debug(e,"Getting service [".concat(r,"] by GetService<T>()")),this._services[r]},e.prototype.GetServiceAsync=function(n,o){var r,i,s=this,a=(0,t.$)(n);return null===(r=e.Log)||void 0===r||r.Debug(e,"Waiting for service availability [".concat(a,"] by GetServiceAsync<T>()")),this._services.hasOwnProperty(a)?(null===(i=e.Log)||void 0===i||i.Debug(e,"Got service [".concat(a,"] by GetServiceAsync<T>()")),Promise.resolve(this._services[a])):new Promise((function(t,n){var r=function(n){var o;(null==n?void 0:n.GetServiceName())===a&&(null===(o=e.Log)||void 0===o||o.Debug(e,"Got service [".concat(a,"] by GetServiceAsync<T>()")),s._serviceRegistrationEvent.Unsubscribe(r),t(n))},i=function(){var t;s._serviceRegistrationEvent.Unsubscribe(r),null==o||o.CancellationEvent.Unsubscribe(i),null===(t=e.Log)||void 0===t||t.Debug(e,"Cancelled service [".concat(a,"] retrieval by GetServiceAsync<T>()")),n(new Error("Operation cancelled!"))};null==o||o.CancellationEvent.Subscribe(i),s._serviceRegistrationEvent.Subscribe(r)}))},e.prototype.GetServiceWithTimeoutAsync=function(n,o){var r,i,s=this,a=(0,t.$)(n);return null===(r=e.Log)||void 0===r||r.Debug(e,"Waiting for service[".concat(a,"] availability by GetServiceWithTimeoutAsync<T>()")),this._services.hasOwnProperty(a)?(null===(i=e.Log)||void 0===i||i.Debug(e,"Got service [".concat(a,"] by GetServiceWithTimeoutAsync<T>()")),Promise.resolve(this._services[a])):new Promise((function(t,n){var r=0,i=function(n){var o;(null==n?void 0:n.GetClassName())===a&&(null===(o=e.Log)||void 0===o||o.Debug(e,"Got service [".concat(a,"] by GetServiceWithTimeoutAsync<T>()")),window.clearTimeout(r),s._serviceRegistrationEvent.Unsubscribe(i),t(n))};r=window.setTimeout((function(){var t;window.clearTimeout(r),s._serviceRegistrationEvent.Unsubscribe(i),null===(t=e.Log)||void 0===t||t.Error(e,"Failed to get service [".concat(a,"] in time by GetServiceWithTimeoutAsync<T>()")),n(new Error("Operation cancelled!"))}),o),s._serviceRegistrationEvent.Subscribe(i)}))},e.IsInitialized=!1,e}(),a=function(){function e(){}return e.prototype.GetServiceName=function(){return(0,t.$)(e)},e.prototype.GetResourceName=function(e,t){return"_exalus_".concat(e,"_").concat(t)},e.prototype.Remove=function(e,t){localStorage.removeItem(this.GetResourceName(e,t))},e.prototype.DropStorage=function(e){var t="_exalus_".concat(e);for(var n in localStorage)(null==n?void 0:n.startsWith(t))&&localStorage.removeItem(n)},e.prototype.Save=function(e,t,n){localStorage.setItem(this.GetResourceName(e,t),JSON.stringify(n))},e.prototype.Read=function(e,t){var n=localStorage.getItem(this.GetResourceName(e,t));return null==n?null:JSON.parse(n)},e}();const c=[0,2e3,1e4,3e4,null];class l{constructor(e){this._retryDelays=void 0!==e?[...e,null]:c}nextRetryDelayInMilliseconds(e){return this._retryDelays[e.previousRetryCount]}}class u extends Error{constructor(e,t){const n=new.target.prototype;super(`${e}: Status code '${t}'`),this.statusCode=t,this.__proto__=n}}class h extends Error{constructor(e="A timeout occurred."){const t=new.target.prototype;super(e),this.__proto__=t}}class f extends Error{constructor(e="An abort occurred."){const t=new.target.prototype;super(e),this.__proto__=t}}class d extends Error{constructor(e,t){const n=new.target.prototype;super(e),this.transport=t,this.errorType="UnsupportedTransportError",this.__proto__=n}}class p extends Error{constructor(e,t){const n=new.target.prototype;super(e),this.transport=t,this.errorType="DisabledTransportError",this.__proto__=n}}class y extends Error{constructor(e,t){const n=new.target.prototype;super(e),this.transport=t,this.errorType="FailedToStartTransportError",this.__proto__=n}}class g extends Error{constructor(e){const t=new.target.prototype;super(e),this.errorType="FailedToNegotiateWithServerError",this.__proto__=t}}class w extends Error{constructor(e,t){const n=new.target.prototype;super(e),this.innerErrors=t,this.__proto__=n}}class v{constructor(e,t,n){this.statusCode=e,this.statusText=t,this.content=n}}class m{get(e,t){return this.send({...t,method:"GET",url:e})}post(e,t){return this.send({...t,method:"POST",url:e})}delete(e,t){return this.send({...t,method:"DELETE",url:e})}getCookieString(e){return""}}var _,b,S,T,E;!function(e){e[e.Trace=0]="Trace",e[e.Debug=1]="Debug",e[e.Information=2]="Information",e[e.Warning=3]="Warning",e[e.Error=4]="Error",e[e.Critical=5]="Critical",e[e.None=6]="None"}(_||(_={}));class C{constructor(){}log(e,t){}}C.instance=new C;class A{static isRequired(e,t){if(null==e)throw new Error(`The '${t}' argument is required.`)}static isNotEmpty(e,t){if(!e||e.match(/^\s*$/))throw new Error(`The '${t}' argument should not be empty.`)}static isIn(e,t,n){if(!(e in t))throw new Error(`Unknown ${n} value: ${e}.`)}}class k{static get isBrowser(){return"object"==typeof window&&"object"==typeof window.document}static get isWebWorker(){return"object"==typeof self&&"importScripts"in self}static get isReactNative(){return"object"==typeof window&&void 0===window.document}static get isNode(){return!this.isBrowser&&!this.isWebWorker&&!this.isReactNative}}function P(e,t){let n="";return D(e)?(n=`Binary data of length ${e.byteLength}`,t&&(n+=`. Content: '${function(e){const t=new Uint8Array(e);let n="";return t.forEach((e=>{n+=`0x${e<16?"0":""}${e.toString(16)} `})),n.substr(0,n.length-1)}(e)}'`)):"string"==typeof e&&(n=`String data of length ${e.length}`,t&&(n+=`. Content: '${e}'`)),n}function D(e){return e&&"undefined"!=typeof ArrayBuffer&&(e instanceof ArrayBuffer||e.constructor&&"ArrayBuffer"===e.constructor.name)}async function I(e,t,n,o,r,i,s){let a={};if(r){const e=await r();e&&(a={Authorization:`Bearer ${e}`})}const[c,l]=N();a[c]=l,e.log(_.Trace,`(${t} transport) sending data. ${P(i,s.logMessageContent)}.`);const u=D(i)?"arraybuffer":"text",h=await n.post(o,{content:i,headers:{...a,...s.headers},responseType:u,timeout:s.timeout,withCredentials:s.withCredentials});e.log(_.Trace,`(${t} transport) request complete. Response status: ${h.statusCode}.`)}class O{constructor(e,t){this._subject=e,this._observer=t}dispose(){const e=this._subject.observers.indexOf(this._observer);e>-1&&this._subject.observers.splice(e,1),0===this._subject.observers.length&&this._subject.cancelCallback&&this._subject.cancelCallback().catch((e=>{}))}}class R{constructor(e){this._minLevel=e,this.out=console}log(e,t){if(e>=this._minLevel){const n=`[${(new Date).toISOString()}] ${_[e]}: ${t}`;switch(e){case _.Critical:case _.Error:this.out.error(n);break;case _.Warning:this.out.warn(n);break;case _.Information:this.out.info(n);break;default:this.out.log(n)}}}}function N(){let e="X-SignalR-User-Agent";return k.isNode&&(e="User-Agent"),[e,x("6.0.6",M(),k.isNode?"NodeJS":"Browser",G())]}function x(e,t,n,o){let r="Microsoft SignalR/";const i=e.split(".");return r+=`${i[0]}.${i[1]}`,r+=` (${e}; `,r+=t&&""!==t?`${t}; `:"Unknown OS; ",r+=`${n}`,r+=o?`; ${o}`:"; Unknown Runtime Version",r+=")",r}function M(){if(!k.isNode)return"";switch(process.platform){case"win32":return"Windows NT";case"darwin":return"macOS";case"linux":return"Linux";default:return process.platform}}function G(){if(k.isNode)return process.versions.node}function F(e){return e.stack?e.stack:e.message?e.message:`${e}`}class B extends m{constructor(e){if(super(),this._logger=e,"undefined"==typeof fetch){const e=require;this._jar=new(e("tough-cookie").CookieJar),this._fetchType=e("node-fetch"),this._fetchType=e("fetch-cookie")(this._fetchType,this._jar)}else this._fetchType=fetch.bind(function(){if("undefined"!=typeof globalThis)return globalThis;if("undefined"!=typeof self)return self;if("undefined"!=typeof window)return window;if(void 0!==n.g)return n.g;throw new Error("could not find global")}());if("undefined"==typeof AbortController){const e=require;this._abortControllerType=e("abort-controller")}else this._abortControllerType=AbortController}async send(e){if(e.abortSignal&&e.abortSignal.aborted)throw new f;if(!e.method)throw new Error("No method defined.");if(!e.url)throw new Error("No url defined.");const t=new this._abortControllerType;let n;e.abortSignal&&(e.abortSignal.onabort=()=>{t.abort(),n=new f});let o,r=null;if(e.timeout){const o=e.timeout;r=setTimeout((()=>{t.abort(),this._logger.log(_.Warning,"Timeout from HTTP request."),n=new h}),o)}try{o=await this._fetchType(e.url,{body:e.content,cache:"no-cache",credentials:!0===e.withCredentials?"include":"same-origin",headers:{"Content-Type":"text/plain;charset=UTF-8","X-Requested-With":"XMLHttpRequest",...e.headers},method:e.method,mode:"cors",redirect:"follow",signal:t.signal})}catch(e){if(n)throw n;throw this._logger.log(_.Warning,`Error from HTTP request. ${e}.`),e}finally{r&&clearTimeout(r),e.abortSignal&&(e.abortSignal.onabort=null)}if(!o.ok){const e=await L(o,"text");throw new u(e||o.statusText,o.status)}const i=L(o,e.responseType),s=await i;return new v(o.status,o.statusText,s)}getCookieString(e){let t="";return k.isNode&&this._jar&&this._jar.getCookies(e,((e,n)=>t=n.join("; "))),t}}function L(e,t){let n;switch(t){case"arraybuffer":n=e.arrayBuffer();break;case"text":default:n=e.text();break;case"blob":case"document":case"json":throw new Error(`${t} is not supported.`)}return n}class U extends m{constructor(e){super(),this._logger=e}send(e){return e.abortSignal&&e.abortSignal.aborted?Promise.reject(new f):e.method?e.url?new Promise(((t,n)=>{const o=new XMLHttpRequest;o.open(e.method,e.url,!0),o.withCredentials=void 0===e.withCredentials||e.withCredentials,o.setRequestHeader("X-Requested-With","XMLHttpRequest"),o.setRequestHeader("Content-Type","text/plain;charset=UTF-8");const r=e.headers;r&&Object.keys(r).forEach((e=>{o.setRequestHeader(e,r[e])})),e.responseType&&(o.responseType=e.responseType),e.abortSignal&&(e.abortSignal.onabort=()=>{o.abort(),n(new f)}),e.timeout&&(o.timeout=e.timeout),o.onload=()=>{e.abortSignal&&(e.abortSignal.onabort=null),o.status>=200&&o.status<300?t(new v(o.status,o.statusText,o.response||o.responseText)):n(new u(o.response||o.responseText||o.statusText,o.status))},o.onerror=()=>{this._logger.log(_.Warning,`Error from HTTP request. ${o.status}: ${o.statusText}.`),n(new u(o.statusText,o.status))},o.ontimeout=()=>{this._logger.log(_.Warning,"Timeout from HTTP request."),n(new h)},o.send(e.content||"")})):Promise.reject(new Error("No url defined.")):Promise.reject(new Error("No method defined."))}}class $ extends m{constructor(e){if(super(),"undefined"!=typeof fetch||k.isNode)this._httpClient=new B(e);else{if("undefined"==typeof XMLHttpRequest)throw new Error("No usable HttpClient found.");this._httpClient=new U(e)}}send(e){return e.abortSignal&&e.abortSignal.aborted?Promise.reject(new f):e.method?e.url?this._httpClient.send(e):Promise.reject(new Error("No url defined.")):Promise.reject(new Error("No method defined."))}getCookieString(e){return this._httpClient.getCookieString(e)}}class W{}W.Authorization="Authorization",W.Cookie="Cookie",function(e){e[e.None=0]="None",e[e.WebSockets=1]="WebSockets",e[e.ServerSentEvents=2]="ServerSentEvents",e[e.LongPolling=4]="LongPolling"}(b||(b={})),function(e){e[e.Text=1]="Text",e[e.Binary=2]="Binary"}(S||(S={}));class j{constructor(){this._isAborted=!1,this.onabort=null}abort(){this._isAborted||(this._isAborted=!0,this.onabort&&this.onabort())}get signal(){return this}get aborted(){return this._isAborted}}class H{constructor(e,t,n,o){this._httpClient=e,this._accessTokenFactory=t,this._logger=n,this._pollAbort=new j,this._options=o,this._running=!1,this.onreceive=null,this.onclose=null}get pollAborted(){return this._pollAbort.aborted}async connect(e,t){if(A.isRequired(e,"url"),A.isRequired(t,"transferFormat"),A.isIn(t,S,"transferFormat"),this._url=e,this._logger.log(_.Trace,"(LongPolling transport) Connecting."),t===S.Binary&&"undefined"!=typeof XMLHttpRequest&&"string"!=typeof(new XMLHttpRequest).responseType)throw new Error("Binary protocols over XmlHttpRequest not implementing advanced features are not supported.");const[n,o]=N(),r={[n]:o,...this._options.headers},i={abortSignal:this._pollAbort.signal,headers:r,timeout:1e5,withCredentials:this._options.withCredentials};t===S.Binary&&(i.responseType="arraybuffer");const s=await this._getAccessToken();this._updateHeaderToken(i,s);const a=`${e}&_=${Date.now()}`;this._logger.log(_.Trace,`(LongPolling transport) polling: ${a}.`);const c=await this._httpClient.get(a,i);200!==c.statusCode?(this._logger.log(_.Error,`(LongPolling transport) Unexpected response code: ${c.statusCode}.`),this._closeError=new u(c.statusText||"",c.statusCode),this._running=!1):this._running=!0,this._receiving=this._poll(this._url,i)}async _getAccessToken(){return this._accessTokenFactory?await this._accessTokenFactory():null}_updateHeaderToken(e,t){e.headers||(e.headers={}),t?e.headers[W.Authorization]=`Bearer ${t}`:e.headers[W.Authorization]&&delete e.headers[W.Authorization]}async _poll(e,t){try{for(;this._running;){const n=await this._getAccessToken();this._updateHeaderToken(t,n);try{const n=`${e}&_=${Date.now()}`;this._logger.log(_.Trace,`(LongPolling transport) polling: ${n}.`);const o=await this._httpClient.get(n,t);204===o.statusCode?(this._logger.log(_.Information,"(LongPolling transport) Poll terminated by server."),this._running=!1):200!==o.statusCode?(this._logger.log(_.Error,`(LongPolling transport) Unexpected response code: ${o.statusCode}.`),this._closeError=new u(o.statusText||"",o.statusCode),this._running=!1):o.content?(this._logger.log(_.Trace,`(LongPolling transport) data received. ${P(o.content,this._options.logMessageContent)}.`),this.onreceive&&this.onreceive(o.content)):this._logger.log(_.Trace,"(LongPolling transport) Poll timed out, reissuing.")}catch(e){this._running?e instanceof h?this._logger.log(_.Trace,"(LongPolling transport) Poll timed out, reissuing."):(this._closeError=e,this._running=!1):this._logger.log(_.Trace,`(LongPolling transport) Poll errored after shutdown: ${e.message}`)}}}finally{this._logger.log(_.Trace,"(LongPolling transport) Polling complete."),this.pollAborted||this._raiseOnClose()}}async send(e){return this._running?I(this._logger,"LongPolling",this._httpClient,this._url,this._accessTokenFactory,e,this._options):Promise.reject(new Error("Cannot send until the transport is connected"))}async stop(){this._logger.log(_.Trace,"(LongPolling transport) Stopping polling."),this._running=!1,this._pollAbort.abort();try{await this._receiving,this._logger.log(_.Trace,`(LongPolling transport) sending DELETE request to ${this._url}.`);const e={},[t,n]=N();e[t]=n;const o={headers:{...e,...this._options.headers},timeout:this._options.timeout,withCredentials:this._options.withCredentials},r=await this._getAccessToken();this._updateHeaderToken(o,r),await this._httpClient.delete(this._url,o),this._logger.log(_.Trace,"(LongPolling transport) DELETE request sent.")}finally{this._logger.log(_.Trace,"(LongPolling transport) Stop finished."),this._raiseOnClose()}}_raiseOnClose(){if(this.onclose){let e="(LongPolling transport) Firing onclose event.";this._closeError&&(e+=" Error: "+this._closeError),this._logger.log(_.Trace,e),this.onclose(this._closeError)}}}class q{constructor(e,t,n,o){this._httpClient=e,this._accessTokenFactory=t,this._logger=n,this._options=o,this.onreceive=null,this.onclose=null}async connect(e,t){if(A.isRequired(e,"url"),A.isRequired(t,"transferFormat"),A.isIn(t,S,"transferFormat"),this._logger.log(_.Trace,"(SSE transport) Connecting."),this._url=e,this._accessTokenFactory){const t=await this._accessTokenFactory();t&&(e+=(e.indexOf("?")<0?"?":"&")+`access_token=${encodeURIComponent(t)}`)}return new Promise(((n,o)=>{let r,i=!1;if(t===S.Text){if(k.isBrowser||k.isWebWorker)r=new this._options.EventSource(e,{withCredentials:this._options.withCredentials});else{const t=this._httpClient.getCookieString(e),n={};n.Cookie=t;const[o,i]=N();n[o]=i,r=new this._options.EventSource(e,{withCredentials:this._options.withCredentials,headers:{...n,...this._options.headers}})}try{r.onmessage=e=>{if(this.onreceive)try{this._logger.log(_.Trace,`(SSE transport) data received. ${P(e.data,this._options.logMessageContent)}.`),this.onreceive(e.data)}catch(e){return void this._close(e)}},r.onerror=e=>{i?this._close():o(new Error("EventSource failed to connect. The connection could not be found on the server, either the connection ID is not present on the server, or a proxy is refusing/buffering the connection. If you have multiple servers check that sticky sessions are enabled."))},r.onopen=()=>{this._logger.log(_.Information,`SSE connected to ${this._url}`),this._eventSource=r,i=!0,n()}}catch(e){return void o(e)}}else o(new Error("The Server-Sent Events transport only supports the 'Text' transfer format"))}))}async send(e){return this._eventSource?I(this._logger,"SSE",this._httpClient,this._url,this._accessTokenFactory,e,this._options):Promise.reject(new Error("Cannot send until the transport is connected"))}stop(){return this._close(),Promise.resolve()}_close(e){this._eventSource&&(this._eventSource.close(),this._eventSource=void 0,this.onclose&&this.onclose(e))}}class z{constructor(e,t,n,o,r,i){this._logger=n,this._accessTokenFactory=t,this._logMessageContent=o,this._webSocketConstructor=r,this._httpClient=e,this.onreceive=null,this.onclose=null,this._headers=i}async connect(e,t){if(A.isRequired(e,"url"),A.isRequired(t,"transferFormat"),A.isIn(t,S,"transferFormat"),this._logger.log(_.Trace,"(WebSockets transport) Connecting."),this._accessTokenFactory){const t=await this._accessTokenFactory();t&&(e+=(e.indexOf("?")<0?"?":"&")+`access_token=${encodeURIComponent(t)}`)}return new Promise(((n,o)=>{let r;e=e.replace(/^http/,"ws");const i=this._httpClient.getCookieString(e);let s=!1;if(k.isNode){const t={},[n,o]=N();t[n]=o,i&&(t[W.Cookie]=`${i}`),r=new this._webSocketConstructor(e,void 0,{headers:{...t,...this._headers}})}r||(r=new this._webSocketConstructor(e)),t===S.Binary&&(r.binaryType="arraybuffer"),r.onopen=t=>{this._logger.log(_.Information,`WebSocket connected to ${e}.`),this._webSocket=r,s=!0,n()},r.onerror=e=>{let t=null;t="undefined"!=typeof ErrorEvent&&e instanceof ErrorEvent?e.error:"There was an error with the transport",this._logger.log(_.Information,`(WebSockets transport) ${t}.`)},r.onmessage=e=>{if(this._logger.log(_.Trace,`(WebSockets transport) data received. ${P(e.data,this._logMessageContent)}.`),this.onreceive)try{this.onreceive(e.data)}catch(e){return void this._close(e)}},r.onclose=e=>{if(s)this._close(e);else{let t=null;t="undefined"!=typeof ErrorEvent&&e instanceof ErrorEvent?e.error:"WebSocket failed to connect. The connection could not be found on the server, either the endpoint may not be a SignalR endpoint, the connection ID is not present on the server, or there is a proxy blocking WebSockets. If you have multiple servers check that sticky sessions are enabled.",o(new Error(t))}}}))}send(e){return this._webSocket&&this._webSocket.readyState===this._webSocketConstructor.OPEN?(this._logger.log(_.Trace,`(WebSockets transport) sending data. ${P(e,this._logMessageContent)}.`),this._webSocket.send(e),Promise.resolve()):Promise.reject("WebSocket is not in the OPEN state")}stop(){return this._webSocket&&this._close(void 0),Promise.resolve()}_close(e){this._webSocket&&(this._webSocket.onclose=()=>{},this._webSocket.onmessage=()=>{},this._webSocket.onerror=()=>{},this._webSocket.close(),this._webSocket=void 0),this._logger.log(_.Trace,"(WebSockets transport) socket closed."),this.onclose&&(!this._isCloseEvent(e)||!1!==e.wasClean&&1e3===e.code?e instanceof Error?this.onclose(e):this.onclose():this.onclose(new Error(`WebSocket closed with status code: ${e.code} (${e.reason||"no reason given"}).`)))}_isCloseEvent(e){return e&&"boolean"==typeof e.wasClean&&"number"==typeof e.code}}class V{constructor(e,t={}){var n;if(this._stopPromiseResolver=()=>{},this.features={},this._negotiateVersion=1,A.isRequired(e,"url"),this._logger=void 0===(n=t.logger)?new R(_.Information):null===n?C.instance:void 0!==n.log?n:new R(n),this.baseUrl=this._resolveUrl(e),(t=t||{}).logMessageContent=void 0!==t.logMessageContent&&t.logMessageContent,"boolean"!=typeof t.withCredentials&&void 0!==t.withCredentials)throw new Error("withCredentials option was not a 'boolean' or 'undefined' value");t.withCredentials=void 0===t.withCredentials||t.withCredentials,t.timeout=void 0===t.timeout?1e5:t.timeout;let o=null,r=null;if(k.isNode){const e=require;o=e("ws"),r=e("eventsource")}k.isNode||"undefined"==typeof WebSocket||t.WebSocket?k.isNode&&!t.WebSocket&&o&&(t.WebSocket=o):t.WebSocket=WebSocket,k.isNode||"undefined"==typeof EventSource||t.EventSource?k.isNode&&!t.EventSource&&void 0!==r&&(t.EventSource=r):t.EventSource=EventSource,this._httpClient=t.httpClient||new $(this._logger),this._connectionState="Disconnected",this._connectionStarted=!1,this._options=t,this.onreceive=null,this.onclose=null}async start(e){if(e=e||S.Binary,A.isIn(e,S,"transferFormat"),this._logger.log(_.Debug,`Starting connection with transfer format '${S[e]}'.`),"Disconnected"!==this._connectionState)return Promise.reject(new Error("Cannot start an HttpConnection that is not in the 'Disconnected' state."));if(this._connectionState="Connecting",this._startInternalPromise=this._startInternal(e),await this._startInternalPromise,"Disconnecting"===this._connectionState){const e="Failed to start the HttpConnection before stop() was called.";return this._logger.log(_.Error,e),await this._stopPromise,Promise.reject(new Error(e))}if("Connected"!==this._connectionState){const e="HttpConnection.startInternal completed gracefully but didn't enter the connection into the connected state!";return this._logger.log(_.Error,e),Promise.reject(new Error(e))}this._connectionStarted=!0}send(e){return"Connected"!==this._connectionState?Promise.reject(new Error("Cannot send data if the connection is not in the 'Connected' State.")):(this._sendQueue||(this._sendQueue=new K(this.transport)),this._sendQueue.send(e))}async stop(e){return"Disconnected"===this._connectionState?(this._logger.log(_.Debug,`Call to HttpConnection.stop(${e}) ignored because the connection is already in the disconnected state.`),Promise.resolve()):"Disconnecting"===this._connectionState?(this._logger.log(_.Debug,`Call to HttpConnection.stop(${e}) ignored because the connection is already in the disconnecting state.`),this._stopPromise):(this._connectionState="Disconnecting",this._stopPromise=new Promise((e=>{this._stopPromiseResolver=e})),await this._stopInternal(e),void await this._stopPromise)}async _stopInternal(e){this._stopError=e;try{await this._startInternalPromise}catch(e){}if(this.transport){try{await this.transport.stop()}catch(e){this._logger.log(_.Error,`HttpConnection.transport.stop() threw error '${e}'.`),this._stopConnection()}this.transport=void 0}else this._logger.log(_.Debug,"HttpConnection.transport is undefined in HttpConnection.stop() because start() failed.")}async _startInternal(e){let t=this.baseUrl;this._accessTokenFactory=this._options.accessTokenFactory;try{if(this._options.skipNegotiation){if(this._options.transport!==b.WebSockets)throw new Error("Negotiation can only be skipped when using the WebSocket transport directly.");this.transport=this._constructTransport(b.WebSockets),await this._startTransport(t,e)}else{let n=null,o=0;do{if(n=await this._getNegotiationResponse(t),"Disconnecting"===this._connectionState||"Disconnected"===this._connectionState)throw new Error("The connection was stopped during negotiation.");if(n.error)throw new Error(n.error);if(n.ProtocolVersion)throw new Error("Detected a connection attempt to an ASP.NET SignalR Server. This client only supports connecting to an ASP.NET Core SignalR Server. See https://aka.ms/signalr-core-differences for details.");if(n.url&&(t=n.url),n.accessToken){const e=n.accessToken;this._accessTokenFactory=()=>e}o++}while(n.url&&o<100);if(100===o&&n.url)throw new Error("Negotiate redirection limit exceeded.");await this._createTransport(t,this._options.transport,n,e)}this.transport instanceof H&&(this.features.inherentKeepAlive=!0),"Connecting"===this._connectionState&&(this._logger.log(_.Debug,"The HttpConnection connected successfully."),this._connectionState="Connected")}catch(e){return this._logger.log(_.Error,"Failed to start the connection: "+e),this._connectionState="Disconnected",this.transport=void 0,this._stopPromiseResolver(),Promise.reject(e)}}async _getNegotiationResponse(e){const t={};if(this._accessTokenFactory){const e=await this._accessTokenFactory();e&&(t[W.Authorization]=`Bearer ${e}`)}const[n,o]=N();t[n]=o;const r=this._resolveNegotiateUrl(e);this._logger.log(_.Debug,`Sending negotiation request: ${r}.`);try{const e=await this._httpClient.post(r,{content:"",headers:{...t,...this._options.headers},timeout:this._options.timeout,withCredentials:this._options.withCredentials});if(200!==e.statusCode)return Promise.reject(new Error(`Unexpected status code returned from negotiate '${e.statusCode}'`));const n=JSON.parse(e.content);return(!n.negotiateVersion||n.negotiateVersion<1)&&(n.connectionToken=n.connectionId),n}catch(e){let t="Failed to complete negotiation with the server: "+e;return e instanceof u&&404===e.statusCode&&(t+=" Either this is not a SignalR endpoint or there is a proxy blocking the connection."),this._logger.log(_.Error,t),Promise.reject(new g(t))}}_createConnectUrl(e,t){return t?e+(-1===e.indexOf("?")?"?":"&")+`id=${t}`:e}async _createTransport(e,t,n,o){let r=this._createConnectUrl(e,n.connectionToken);if(this._isITransport(t))return this._logger.log(_.Debug,"Connection was provided an instance of ITransport, using that directly."),this.transport=t,await this._startTransport(r,o),void(this.connectionId=n.connectionId);const i=[],s=n.availableTransports||[];let a=n;for(const n of s){const s=this._resolveTransportOrError(n,t,o);if(s instanceof Error)i.push(`${n.transport} failed:`),i.push(s);else if(this._isITransport(s)){if(this.transport=s,!a){try{a=await this._getNegotiationResponse(e)}catch(e){return Promise.reject(e)}r=this._createConnectUrl(e,a.connectionToken)}try{return await this._startTransport(r,o),void(this.connectionId=a.connectionId)}catch(e){if(this._logger.log(_.Error,`Failed to start the transport '${n.transport}': ${e}`),a=void 0,i.push(new y(`${n.transport} failed: ${e}`,b[n.transport])),"Connecting"!==this._connectionState){const e="Failed to select transport before stop() was called.";return this._logger.log(_.Debug,e),Promise.reject(new Error(e))}}}}return i.length>0?Promise.reject(new w(`Unable to connect to the server with any of the available transports. ${i.join(" ")}`,i)):Promise.reject(new Error("None of the transports supported by the client are supported by the server."))}_constructTransport(e){switch(e){case b.WebSockets:if(!this._options.WebSocket)throw new Error("'WebSocket' is not supported in your environment.");return new z(this._httpClient,this._accessTokenFactory,this._logger,this._options.logMessageContent,this._options.WebSocket,this._options.headers||{});case b.ServerSentEvents:if(!this._options.EventSource)throw new Error("'EventSource' is not supported in your environment.");return new q(this._httpClient,this._accessTokenFactory,this._logger,this._options);case b.LongPolling:return new H(this._httpClient,this._accessTokenFactory,this._logger,this._options);default:throw new Error(`Unknown transport: ${e}.`)}}_startTransport(e,t){return this.transport.onreceive=this.onreceive,this.transport.onclose=e=>this._stopConnection(e),this.transport.connect(e,t)}_resolveTransportOrError(e,t,n){const o=b[e.transport];if(null==o)return this._logger.log(_.Debug,`Skipping transport '${e.transport}' because it is not supported by this client.`),new Error(`Skipping transport '${e.transport}' because it is not supported by this client.`);if(!function(e,t){return!e||0!=(t&e)}(t,o))return this._logger.log(_.Debug,`Skipping transport '${b[o]}' because it was disabled by the client.`),new p(`'${b[o]}' is disabled by the client.`,o);if(!(e.transferFormats.map((e=>S[e])).indexOf(n)>=0))return this._logger.log(_.Debug,`Skipping transport '${b[o]}' because it does not support the requested transfer format '${S[n]}'.`),new Error(`'${b[o]}' does not support ${S[n]}.`);if(o===b.WebSockets&&!this._options.WebSocket||o===b.ServerSentEvents&&!this._options.EventSource)return this._logger.log(_.Debug,`Skipping transport '${b[o]}' because it is not supported in your environment.'`),new d(`'${b[o]}' is not supported in your environment.`,o);this._logger.log(_.Debug,`Selecting transport '${b[o]}'.`);try{return this._constructTransport(o)}catch(e){return e}}_isITransport(e){return e&&"object"==typeof e&&"connect"in e}_stopConnection(e){if(this._logger.log(_.Debug,`HttpConnection.stopConnection(${e}) called while in state ${this._connectionState}.`),this.transport=void 0,e=this._stopError||e,this._stopError=void 0,"Disconnected"!==this._connectionState){if("Connecting"===this._connectionState)throw this._logger.log(_.Warning,`Call to HttpConnection.stopConnection(${e}) was ignored because the connection is still in the connecting state.`),new Error(`HttpConnection.stopConnection(${e}) was called while the connection is still in the connecting state.`);if("Disconnecting"===this._connectionState&&this._stopPromiseResolver(),e?this._logger.log(_.Error,`Connection disconnected with error '${e}'.`):this._logger.log(_.Information,"Connection disconnected."),this._sendQueue&&(this._sendQueue.stop().catch((e=>{this._logger.log(_.Error,`TransportSendQueue.stop() threw error '${e}'.`)})),this._sendQueue=void 0),this.connectionId=void 0,this._connectionState="Disconnected",this._connectionStarted){this._connectionStarted=!1;try{this.onclose&&this.onclose(e)}catch(t){this._logger.log(_.Error,`HttpConnection.onclose(${e}) threw error '${t}'.`)}}}else this._logger.log(_.Debug,`Call to HttpConnection.stopConnection(${e}) was ignored because the connection is already in the disconnected state.`)}_resolveUrl(e){if(0===e.lastIndexOf("https://",0)||0===e.lastIndexOf("http://",0))return e;if(!k.isBrowser)throw new Error(`Cannot resolve '${e}'.`);const t=window.document.createElement("a");return t.href=e,this._logger.log(_.Information,`Normalizing '${e}' to '${t.href}'.`),t.href}_resolveNegotiateUrl(e){const t=e.indexOf("?");let n=e.substring(0,-1===t?e.length:t);return"/"!==n[n.length-1]&&(n+="/"),n+="negotiate",n+=-1===t?"":e.substring(t),-1===n.indexOf("negotiateVersion")&&(n+=-1===t?"?":"&",n+="negotiateVersion="+this._negotiateVersion),n}}class K{constructor(e){this._transport=e,this._buffer=[],this._executing=!0,this._sendBufferedData=new J,this._transportResult=new J,this._sendLoopPromise=this._sendLoop()}send(e){return this._bufferData(e),this._transportResult||(this._transportResult=new J),this._transportResult.promise}stop(){return this._executing=!1,this._sendBufferedData.resolve(),this._sendLoopPromise}_bufferData(e){if(this._buffer.length&&typeof this._buffer[0]!=typeof e)throw new Error(`Expected data to be of type ${typeof this._buffer} but was of type ${typeof e}`);this._buffer.push(e),this._sendBufferedData.resolve()}async _sendLoop(){for(;;){if(await this._sendBufferedData.promise,!this._executing){this._transportResult&&this._transportResult.reject("Connection stopped.");break}this._sendBufferedData=new J;const e=this._transportResult;this._transportResult=void 0;const t="string"==typeof this._buffer[0]?this._buffer.join(""):K._concatBuffers(this._buffer);this._buffer.length=0;try{await this._transport.send(t),e.resolve()}catch(t){e.reject(t)}}}static _concatBuffers(e){const t=e.map((e=>e.byteLength)).reduce(((e,t)=>e+t)),n=new Uint8Array(t);let o=0;for(const t of e)n.set(new Uint8Array(t),o),o+=t.byteLength;return n.buffer}}class J{constructor(){this.promise=new Promise(((e,t)=>[this._resolver,this._rejecter]=[e,t]))}resolve(){this._resolver()}reject(e){this._rejecter(e)}}class Y{static write(e){return`${e}${Y.RecordSeparator}`}static parse(e){if(e[e.length-1]!==Y.RecordSeparator)throw new Error("Message is incomplete.");const t=e.split(Y.RecordSeparator);return t.pop(),t}}Y.RecordSeparatorCode=30,Y.RecordSeparator=String.fromCharCode(Y.RecordSeparatorCode);class X{writeHandshakeRequest(e){return Y.write(JSON.stringify(e))}parseHandshakeResponse(e){let t,n;if(D(e)){const o=new Uint8Array(e),r=o.indexOf(Y.RecordSeparatorCode);if(-1===r)throw new Error("Message is incomplete.");const i=r+1;t=String.fromCharCode.apply(null,Array.prototype.slice.call(o.slice(0,i))),n=o.byteLength>i?o.slice(i).buffer:null}else{const o=e,r=o.indexOf(Y.RecordSeparator);if(-1===r)throw new Error("Message is incomplete.");const i=r+1;t=o.substring(0,i),n=o.length>i?o.substring(i):null}const o=Y.parse(t),r=JSON.parse(o[0]);if(r.type)throw new Error("Expected a handshake response from the server.");return[n,r]}}!function(e){e[e.Invocation=1]="Invocation",e[e.StreamItem=2]="StreamItem",e[e.Completion=3]="Completion",e[e.StreamInvocation=4]="StreamInvocation",e[e.CancelInvocation=5]="CancelInvocation",e[e.Ping=6]="Ping",e[e.Close=7]="Close"}(T||(T={}));class Q{constructor(){this.observers=[]}next(e){for(const t of this.observers)t.next(e)}error(e){for(const t of this.observers)t.error&&t.error(e)}complete(){for(const e of this.observers)e.complete&&e.complete()}subscribe(e){return this.observers.push(e),new O(this,e)}}!function(e){e.Disconnected="Disconnected",e.Connecting="Connecting",e.Connected="Connected",e.Disconnecting="Disconnecting",e.Reconnecting="Reconnecting"}(E||(E={}));class Z{constructor(e,t,n,o){this._nextKeepAlive=0,this._freezeEventListener=()=>{this._logger.log(_.Warning,"The page is being frozen, this will likely lead to the connection being closed and messages being lost. For more information see the docs at https://docs.microsoft.com/aspnet/core/signalr/javascript-client#bsleep")},A.isRequired(e,"connection"),A.isRequired(t,"logger"),A.isRequired(n,"protocol"),this.serverTimeoutInMilliseconds=3e4,this.keepAliveIntervalInMilliseconds=15e3,this._logger=t,this._protocol=n,this.connection=e,this._reconnectPolicy=o,this._handshakeProtocol=new X,this.connection.onreceive=e=>this._processIncomingData(e),this.connection.onclose=e=>this._connectionClosed(e),this._callbacks={},this._methods={},this._closedCallbacks=[],this._reconnectingCallbacks=[],this._reconnectedCallbacks=[],this._invocationId=0,this._receivedHandshakeResponse=!1,this._connectionState=E.Disconnected,this._connectionStarted=!1,this._cachedPingMessage=this._protocol.writeMessage({type:T.Ping})}static create(e,t,n,o){return new Z(e,t,n,o)}get state(){return this._connectionState}get connectionId(){return this.connection&&this.connection.connectionId||null}get baseUrl(){return this.connection.baseUrl||""}set baseUrl(e){if(this._connectionState!==E.Disconnected&&this._connectionState!==E.Reconnecting)throw new Error("The HubConnection must be in the Disconnected or Reconnecting state to change the url.");if(!e)throw new Error("The HubConnection url must be a valid url.");this.connection.baseUrl=e}start(){return this._startPromise=this._startWithStateTransitions(),this._startPromise}async _startWithStateTransitions(){if(this._connectionState!==E.Disconnected)return Promise.reject(new Error("Cannot start a HubConnection that is not in the 'Disconnected' state."));this._connectionState=E.Connecting,this._logger.log(_.Debug,"Starting HubConnection.");try{await this._startInternal(),k.isBrowser&&window.document.addEventListener("freeze",this._freezeEventListener),this._connectionState=E.Connected,this._connectionStarted=!0,this._logger.log(_.Debug,"HubConnection connected successfully.")}catch(e){return this._connectionState=E.Disconnected,this._logger.log(_.Debug,`HubConnection failed to start successfully because of error '${e}'.`),Promise.reject(e)}}async _startInternal(){this._stopDuringStartError=void 0,this._receivedHandshakeResponse=!1;const e=new Promise(((e,t)=>{this._handshakeResolver=e,this._handshakeRejecter=t}));await this.connection.start(this._protocol.transferFormat);try{const t={protocol:this._protocol.name,version:this._protocol.version};if(this._logger.log(_.Debug,"Sending handshake request."),await this._sendMessage(this._handshakeProtocol.writeHandshakeRequest(t)),this._logger.log(_.Information,`Using HubProtocol '${this._protocol.name}'.`),this._cleanupTimeout(),this._resetTimeoutPeriod(),this._resetKeepAliveInterval(),await e,this._stopDuringStartError)throw this._stopDuringStartError}catch(e){throw this._logger.log(_.Debug,`Hub handshake failed with error '${e}' during start(). Stopping HubConnection.`),this._cleanupTimeout(),this._cleanupPingTimer(),await this.connection.stop(e),e}}async stop(){const e=this._startPromise;this._stopPromise=this._stopInternal(),await this._stopPromise;try{await e}catch(e){}}_stopInternal(e){return this._connectionState===E.Disconnected?(this._logger.log(_.Debug,`Call to HubConnection.stop(${e}) ignored because it is already in the disconnected state.`),Promise.resolve()):this._connectionState===E.Disconnecting?(this._logger.log(_.Debug,`Call to HttpConnection.stop(${e}) ignored because the connection is already in the disconnecting state.`),this._stopPromise):(this._connectionState=E.Disconnecting,this._logger.log(_.Debug,"Stopping HubConnection."),this._reconnectDelayHandle?(this._logger.log(_.Debug,"Connection stopped during reconnect delay. Done reconnecting."),clearTimeout(this._reconnectDelayHandle),this._reconnectDelayHandle=void 0,this._completeClose(),Promise.resolve()):(this._cleanupTimeout(),this._cleanupPingTimer(),this._stopDuringStartError=e||new Error("The connection was stopped before the hub handshake could complete."),this.connection.stop(e)))}stream(e,...t){const[n,o]=this._replaceStreamingParams(t),r=this._createStreamInvocation(e,t,o);let i;const s=new Q;return s.cancelCallback=()=>{const e=this._createCancelInvocation(r.invocationId);return delete this._callbacks[r.invocationId],i.then((()=>this._sendWithProtocol(e)))},this._callbacks[r.invocationId]=(e,t)=>{t?s.error(t):e&&(e.type===T.Completion?e.error?s.error(new Error(e.error)):s.complete():s.next(e.item))},i=this._sendWithProtocol(r).catch((e=>{s.error(e),delete this._callbacks[r.invocationId]})),this._launchStreams(n,i),s}_sendMessage(e){return this._resetKeepAliveInterval(),this.connection.send(e)}_sendWithProtocol(e){return this._sendMessage(this._protocol.writeMessage(e))}send(e,...t){const[n,o]=this._replaceStreamingParams(t),r=this._sendWithProtocol(this._createInvocation(e,t,!0,o));return this._launchStreams(n,r),r}invoke(e,...t){const[n,o]=this._replaceStreamingParams(t),r=this._createInvocation(e,t,!1,o);return new Promise(((e,t)=>{this._callbacks[r.invocationId]=(n,o)=>{o?t(o):n&&(n.type===T.Completion?n.error?t(new Error(n.error)):e(n.result):t(new Error(`Unexpected message type: ${n.type}`)))};const o=this._sendWithProtocol(r).catch((e=>{t(e),delete this._callbacks[r.invocationId]}));this._launchStreams(n,o)}))}on(e,t){e&&t&&(e=e.toLowerCase(),this._methods[e]||(this._methods[e]=[]),-1===this._methods[e].indexOf(t)&&this._methods[e].push(t))}off(e,t){if(!e)return;e=e.toLowerCase();const n=this._methods[e];if(n)if(t){const o=n.indexOf(t);-1!==o&&(n.splice(o,1),0===n.length&&delete this._methods[e])}else delete this._methods[e]}onclose(e){e&&this._closedCallbacks.push(e)}onreconnecting(e){e&&this._reconnectingCallbacks.push(e)}onreconnected(e){e&&this._reconnectedCallbacks.push(e)}_processIncomingData(e){if(this._cleanupTimeout(),this._receivedHandshakeResponse||(e=this._processHandshakeResponse(e),this._receivedHandshakeResponse=!0),e){const t=this._protocol.parseMessages(e,this._logger);for(const e of t)switch(e.type){case T.Invocation:this._invokeClientMethod(e);break;case T.StreamItem:case T.Completion:{const t=this._callbacks[e.invocationId];if(t){e.type===T.Completion&&delete this._callbacks[e.invocationId];try{t(e)}catch(e){this._logger.log(_.Error,`Stream callback threw error: ${F(e)}`)}}break}case T.Ping:break;case T.Close:{this._logger.log(_.Information,"Close message received from server.");const t=e.error?new Error("Server returned an error on close: "+e.error):void 0;!0===e.allowReconnect?this.connection.stop(t):this._stopPromise=this._stopInternal(t);break}default:this._logger.log(_.Warning,`Invalid message type: ${e.type}.`)}}this._resetTimeoutPeriod()}_processHandshakeResponse(e){let t,n;try{[n,t]=this._handshakeProtocol.parseHandshakeResponse(e)}catch(e){const t="Error parsing handshake response: "+e;this._logger.log(_.Error,t);const n=new Error(t);throw this._handshakeRejecter(n),n}if(t.error){const e="Server returned handshake error: "+t.error;this._logger.log(_.Error,e);const n=new Error(e);throw this._handshakeRejecter(n),n}return this._logger.log(_.Debug,"Server handshake complete."),this._handshakeResolver(),n}_resetKeepAliveInterval(){this.connection.features.inherentKeepAlive||(this._nextKeepAlive=(new Date).getTime()+this.keepAliveIntervalInMilliseconds,this._cleanupPingTimer())}_resetTimeoutPeriod(){if(!(this.connection.features&&this.connection.features.inherentKeepAlive||(this._timeoutHandle=setTimeout((()=>this.serverTimeout()),this.serverTimeoutInMilliseconds),void 0!==this._pingServerHandle))){let e=this._nextKeepAlive-(new Date).getTime();e<0&&(e=0),this._pingServerHandle=setTimeout((async()=>{if(this._connectionState===E.Connected)try{await this._sendMessage(this._cachedPingMessage)}catch{this._cleanupPingTimer()}}),e)}}serverTimeout(){this.connection.stop(new Error("Server timeout elapsed without receiving a message from the server."))}_invokeClientMethod(e){const t=this._methods[e.target.toLowerCase()];if(t){try{t.forEach((t=>t.apply(this,e.arguments)))}catch(t){this._logger.log(_.Error,`A callback for the method ${e.target.toLowerCase()} threw error '${t}'.`)}if(e.invocationId){const e="Server requested a response, which is not supported in this version of the client.";this._logger.log(_.Error,e),this._stopPromise=this._stopInternal(new Error(e))}}else this._logger.log(_.Warning,`No client method with the name '${e.target}' found.`)}_connectionClosed(e){this._logger.log(_.Debug,`HubConnection.connectionClosed(${e}) called while in state ${this._connectionState}.`),this._stopDuringStartError=this._stopDuringStartError||e||new Error("The underlying connection was closed before the hub handshake could complete."),this._handshakeResolver&&this._handshakeResolver(),this._cancelCallbacksWithError(e||new Error("Invocation canceled due to the underlying connection being closed.")),this._cleanupTimeout(),this._cleanupPingTimer(),this._connectionState===E.Disconnecting?this._completeClose(e):this._connectionState===E.Connected&&this._reconnectPolicy?this._reconnect(e):this._connectionState===E.Connected&&this._completeClose(e)}_completeClose(e){if(this._connectionStarted){this._connectionState=E.Disconnected,this._connectionStarted=!1,k.isBrowser&&window.document.removeEventListener("freeze",this._freezeEventListener);try{this._closedCallbacks.forEach((t=>t.apply(this,[e])))}catch(t){this._logger.log(_.Error,`An onclose callback called with error '${e}' threw error '${t}'.`)}}}async _reconnect(e){const t=Date.now();let n=0,o=void 0!==e?e:new Error("Attempting to reconnect due to a unknown error."),r=this._getNextRetryDelay(n++,0,o);if(null===r)return this._logger.log(_.Debug,"Connection not reconnecting because the IRetryPolicy returned null on the first reconnect attempt."),void this._completeClose(e);if(this._connectionState=E.Reconnecting,e?this._logger.log(_.Information,`Connection reconnecting because of error '${e}'.`):this._logger.log(_.Information,"Connection reconnecting."),0!==this._reconnectingCallbacks.length){try{this._reconnectingCallbacks.forEach((t=>t.apply(this,[e])))}catch(t){this._logger.log(_.Error,`An onreconnecting callback called with error '${e}' threw error '${t}'.`)}if(this._connectionState!==E.Reconnecting)return void this._logger.log(_.Debug,"Connection left the reconnecting state in onreconnecting callback. Done reconnecting.")}for(;null!==r;){if(this._logger.log(_.Information,`Reconnect attempt number ${n} will start in ${r} ms.`),await new Promise((e=>{this._reconnectDelayHandle=setTimeout(e,r)})),this._reconnectDelayHandle=void 0,this._connectionState!==E.Reconnecting)return void this._logger.log(_.Debug,"Connection left the reconnecting state during reconnect delay. Done reconnecting.");try{if(await this._startInternal(),this._connectionState=E.Connected,this._logger.log(_.Information,"HubConnection reconnected successfully."),0!==this._reconnectedCallbacks.length)try{this._reconnectedCallbacks.forEach((e=>e.apply(this,[this.connection.connectionId])))}catch(e){this._logger.log(_.Error,`An onreconnected callback called with connectionId '${this.connection.connectionId}; threw error '${e}'.`)}return}catch(e){if(this._logger.log(_.Information,`Reconnect attempt failed because of error '${e}'.`),this._connectionState!==E.Reconnecting)return this._logger.log(_.Debug,`Connection moved to the '${this._connectionState}' from the reconnecting state during reconnect attempt. Done reconnecting.`),void(this._connectionState===E.Disconnecting&&this._completeClose());o=e instanceof Error?e:new Error(e.toString()),r=this._getNextRetryDelay(n++,Date.now()-t,o)}}this._logger.log(_.Information,`Reconnect retries have been exhausted after ${Date.now()-t} ms and ${n} failed attempts. Connection disconnecting.`),this._completeClose()}_getNextRetryDelay(e,t,n){try{return this._reconnectPolicy.nextRetryDelayInMilliseconds({elapsedMilliseconds:t,previousRetryCount:e,retryReason:n})}catch(n){return this._logger.log(_.Error,`IRetryPolicy.nextRetryDelayInMilliseconds(${e}, ${t}) threw error '${n}'.`),null}}_cancelCallbacksWithError(e){const t=this._callbacks;this._callbacks={},Object.keys(t).forEach((n=>{const o=t[n];try{o(null,e)}catch(t){this._logger.log(_.Error,`Stream 'error' callback called with '${e}' threw error: ${F(t)}`)}}))}_cleanupPingTimer(){this._pingServerHandle&&(clearTimeout(this._pingServerHandle),this._pingServerHandle=void 0)}_cleanupTimeout(){this._timeoutHandle&&clearTimeout(this._timeoutHandle)}_createInvocation(e,t,n,o){if(n)return 0!==o.length?{arguments:t,streamIds:o,target:e,type:T.Invocation}:{arguments:t,target:e,type:T.Invocation};{const n=this._invocationId;return this._invocationId++,0!==o.length?{arguments:t,invocationId:n.toString(),streamIds:o,target:e,type:T.Invocation}:{arguments:t,invocationId:n.toString(),target:e,type:T.Invocation}}}_launchStreams(e,t){if(0!==e.length){t||(t=Promise.resolve());for(const n in e)e[n].subscribe({complete:()=>{t=t.then((()=>this._sendWithProtocol(this._createCompletionMessage(n))))},error:e=>{let o;o=e instanceof Error?e.message:e&&e.toString?e.toString():"Unknown error",t=t.then((()=>this._sendWithProtocol(this._createCompletionMessage(n,o))))},next:e=>{t=t.then((()=>this._sendWithProtocol(this._createStreamItemMessage(n,e))))}})}}_replaceStreamingParams(e){const t=[],n=[];for(let o=0;o<e.length;o++){const r=e[o];if(this._isObservable(r)){const i=this._invocationId;this._invocationId++,t[i]=r,n.push(i.toString()),e.splice(o,1)}}return[t,n]}_isObservable(e){return e&&e.subscribe&&"function"==typeof e.subscribe}_createStreamInvocation(e,t,n){const o=this._invocationId;return this._invocationId++,0!==n.length?{arguments:t,invocationId:o.toString(),streamIds:n,target:e,type:T.StreamInvocation}:{arguments:t,invocationId:o.toString(),target:e,type:T.StreamInvocation}}_createCancelInvocation(e){return{invocationId:e,type:T.CancelInvocation}}_createStreamItemMessage(e,t){return{invocationId:e,item:t,type:T.StreamItem}}_createCompletionMessage(e,t,n){return t?{error:t,invocationId:e,type:T.Completion}:{invocationId:e,result:n,type:T.Completion}}}class ee{constructor(){this.name="json",this.version=1,this.transferFormat=S.Text}parseMessages(e,t){if("string"!=typeof e)throw new Error("Invalid input for JSON hub protocol. Expected a string.");if(!e)return[];null===t&&(t=C.instance);const n=Y.parse(e),o=[];for(const e of n){const n=JSON.parse(e);if("number"!=typeof n.type)throw new Error("Invalid payload.");switch(n.type){case T.Invocation:this._isInvocationMessage(n);break;case T.StreamItem:this._isStreamItemMessage(n);break;case T.Completion:this._isCompletionMessage(n);break;case T.Ping:case T.Close:break;default:t.log(_.Information,"Unknown message type '"+n.type+"' ignored.");continue}o.push(n)}return o}writeMessage(e){return Y.write(JSON.stringify(e))}_isInvocationMessage(e){this._assertNotEmptyString(e.target,"Invalid payload for Invocation message."),void 0!==e.invocationId&&this._assertNotEmptyString(e.invocationId,"Invalid payload for Invocation message.")}_isStreamItemMessage(e){if(this._assertNotEmptyString(e.invocationId,"Invalid payload for StreamItem message."),void 0===e.item)throw new Error("Invalid payload for StreamItem message.")}_isCompletionMessage(e){if(e.result&&e.error)throw new Error("Invalid payload for Completion message.");!e.result&&e.error&&this._assertNotEmptyString(e.error,"Invalid payload for Completion message."),this._assertNotEmptyString(e.invocationId,"Invalid payload for Completion message.")}_assertNotEmptyString(e,t){if("string"!=typeof e||""===e)throw new Error(t)}}const te={trace:_.Trace,debug:_.Debug,info:_.Information,information:_.Information,warn:_.Warning,warning:_.Warning,error:_.Error,critical:_.Critical,none:_.None};class ne{configureLogging(e){if(A.isRequired(e,"logging"),void 0!==e.log)this.logger=e;else if("string"==typeof e){const t=function(e){const t=te[e.toLowerCase()];if(void 0!==t)return t;throw new Error(`Unknown log level: ${e}`)}(e);this.logger=new R(t)}else this.logger=new R(e);return this}withUrl(e,t){return A.isRequired(e,"url"),A.isNotEmpty(e,"url"),this.url=e,this.httpConnectionOptions="object"==typeof t?{...this.httpConnectionOptions,...t}:{...this.httpConnectionOptions,transport:t},this}withHubProtocol(e){return A.isRequired(e,"protocol"),this.protocol=e,this}withAutomaticReconnect(e){if(this.reconnectPolicy)throw new Error("A reconnectPolicy has already been set.");return e?Array.isArray(e)?this.reconnectPolicy=new l(e):this.reconnectPolicy=e:this.reconnectPolicy=new l,this}build(){const e=this.httpConnectionOptions||{};if(void 0===e.logger&&(e.logger=this.logger),!this.url)throw new Error("The 'HubConnectionBuilder.withUrl' method must be called before building the connection.");const t=new V(this.url,e);return Z.create(t,this.logger||C.instance,this.protocol||new ee,this.reconnectPolicy)}}var oe,re,ie,se=function(e,t){this.serialNumber=e,this.pin=t,this.SerialNumber=e,this.PIN=t};!function(e){e[e.ByCloud=0]="ByCloud",e[e.LocalNetwork=1]="LocalNetwork",e[e.P2P=2]="P2P"}(oe||(oe={})),function(e){e[e.FailedToConnect=0]="FailedToConnect",e[e.AuthorizationFailed=1]="AuthorizationFailed",e[e.FailedToConnectToServer=2]="FailedToConnectToServer",e[e.Connected=3]="Connected"}(re||(re={})),function(e){e[e.Disconnected=0]="Disconnected",e[e.Connecting=1]="Connecting",e[e.Connected=3]="Connected",e[e.Disconnecting=4]="Disconnecting",e[e.Failed=5]="Failed",e[e.Reconnecting=6]="Reconnecting"}(ie||(ie={}));var ae,ce,le,ue,he,fe=function(){function e(){this._log=Qu.Get(i),this.handlers=[]}return e.prototype.Subscribe=function(e){this.handlers.push(e)},e.prototype.Unsubscribe=function(e){this.handlers=this.handlers.filter((function(t){return t!==e}))},e.prototype.Invoke=function(){var e=this;this.handlers.slice(0).forEach((function(t){try{t()}catch(t){e._log.Error(t)}}))},e}(),de=function(e,t,n,o){return new(n||(n=Promise))((function(r,i){function s(e){try{c(o.next(e))}catch(e){i(e)}}function a(e){try{c(o.throw(e))}catch(e){i(e)}}function c(e){var t;e.done?r(e.value):(t=e.value,t instanceof n?t:new n((function(e){e(t)}))).then(s,a)}c((o=o.apply(e,t||[])).next())}))},pe=function(e,t){var n,o,r,i,s={label:0,sent:function(){if(1&r[0])throw r[1];return r[1]},trys:[],ops:[]};return i={next:a(0),throw:a(1),return:a(2)},"function"==typeof Symbol&&(i[Symbol.iterator]=function(){return this}),i;function a(i){return function(a){return function(i){if(n)throw new TypeError("Generator is already executing.");for(;s;)try{if(n=1,o&&(r=2&i[0]?o.return:i[0]?o.throw||((r=o.return)&&r.call(o),0):o.next)&&!(r=r.call(o,i[1])).done)return r;switch(o=0,r&&(i=[2&i[0],r.value]),i[0]){case 0:case 1:r=i;break;case 4:return s.label++,{value:i[1],done:!1};case 5:s.label++,o=i[1],i=[0];continue;case 7:i=s.ops.pop(),s.trys.pop();continue;default:if(!((r=(r=s.trys).length>0&&r[r.length-1])||6!==i[0]&&2!==i[0])){s=0;continue}if(3===i[0]&&(!r||i[1]>r[0]&&i[1]<r[3])){s.label=i[1];break}if(6===i[0]&&s.label<r[1]){s.label=r[1],r=i;break}if(r&&s.label<r[2]){s.label=r[2],s.ops.push(i);break}r[2]&&s.ops.pop(),s.trys.pop();continue}i=t.call(e,s)}catch(e){i=[6,e],o=0}finally{n=r=0}if(5&i[0])throw i[1];return{value:i[0]?i[1]:void 0,done:!0}}([i,a])}}},ye=function(){function e(){this._defaultPacketsBrokerAddress="br1.tr7.pl",this._serversBrokerAddress="https://broker.tr7.pl",this._address="br1.tr7.pl",this._isEstabilished=!1,this._timeout=5e3,this._dataReceivedEvent=new r,this._pongReceivedEvent=new fe,this._authorizationReceivedEvent=new r,this._registrationReceivedEvent=new r,this._connectionStateChangedEvent=new r,this._errorOccuredEvent=new r,this._log=Qu.Get(i)}return e.prototype.InitializeConnection=function(){if(this._log.Debug(e,"Initializing Exalus Cloud connection service"),this._connection)throw new Error("Connection already initialized");if(!this._address)throw new Error("Domain is not set");if(!this._serialId)throw new Error("SerialId is not set");if(!this._PIN)throw new Error("PIN is not set");this._connection=(new ne).withUrl("https://".concat(this._address,"/broker")).build()},e.prototype.GetServiceName=function(){return(0,t.$)(e)},e.prototype.SetServersBrokerAddress=function(e){this._serversBrokerAddress=e},e.prototype.SetDefaultPacketsBrokerAddress=function(e){this._defaultPacketsBrokerAddress=e,this._address=e},e.prototype.GetServerAddressAsync=function(){return de(this,void 0,void 0,(function(){var t,n,o;return pe(this,(function(r){switch(r.label){case 0:return r.trys.push([0,5,,6]),[4,fetch("".concat(this._serversBrokerAddress,"/api/connections/broker/whichserver/").concat(this._serialId))];case 1:return(t=r.sent()).ok?[4,t.text()]:[3,3];case 2:return n=r.sent(),this._log.Debug(e,"Got server address: ".concat(n)),[2,n];case 3:return this._log.Error(e,"Failed to get server address, status: ".concat(t.status)),[2,null];case 4:return[3,6];case 5:return o=r.sent(),this._log.Error(e,o),[2,null];case 6:return[2]}}))}))},e.prototype.ConnectAsync=function(e){return de(this,void 0,void 0,(function(){return pe(this,(function(t){switch(t.label){case 0:return this._address=e,[4,this.connectAsync()];case 1:return[2,t.sent()]}}))}))},e.prototype.AuthorizeAsync=function(e){var t=this;return new Promise((function(n,o){return de(t,void 0,void 0,(function(){var t,o,r,i,s=this;return pe(this,(function(a){switch(a.label){case 0:return t=0,o=function(e){window.clearTimeout(t),s._authorizationReceivedEvent.Unsubscribe(o),n(e)},r=function(){window.clearTimeout(t),s._authorizationReceivedEvent.Unsubscribe(o),n(!1)},t=window.setTimeout(r,2e3),this._authorizationReceivedEvent.Subscribe(o),[4,null===(i=this._connection)||void 0===i?void 0:i.send("AuthorizeTo",e.SerialNumber,e.PIN)];case 1:return a.sent(),[2]}}))}))}))},e.prototype.ConnectAndAuthorizeAsync=function(e){return de(this,void 0,void 0,(function(){var t,n;return pe(this,(function(o){switch(o.label){case 0:return this._isEstabilished?[2,Promise.resolve(re.Connected)]:(this._isEstabilished=!0,this._serialId=e.SerialNumber,this._PIN=e.PIN,[4,this.GetServerAddressAsync()]);case 1:return null==(t=o.sent())?[2,Promise.resolve(re.FailedToConnectToServer)]:(this._address=t,[4,this.connectAsync()]);case 2:return(n=o.sent())!=re.Connected?[2,n]:[4,this.AuthorizeAsync(e)];case 3:return[2,o.sent()?re.Connected:re.AuthorizationFailed]}}))}))},e.prototype.connectAsync=function(){var t,n,o,r,i,s,a;return de(this,void 0,void 0,(function(){var c,l,u=this;return pe(this,(function(h){switch(h.label){case 0:return this.InitializeConnection(),[4,null===(t=this._connection)||void 0===t?void 0:t.start()];case 1:switch(h.sent(),null===(n=this._connection)||void 0===n||n.on("Pong",(function(){u._log.Debug(e,"Pong received <-"),u._pongReceivedEvent.Invoke()})),null===(o=this._connection)||void 0===o||o.on("Registration",(function(e){var t;null===(t=u._registrationReceivedEvent)||void 0===t||t.Invoke(e)})),null===(r=this._connection)||void 0===r||r.on("Authorization",(function(t){var n;u._log.Debug(e,"Received authorization response: ".concat(t)),null===(n=u._authorizationReceivedEvent)||void 0===n||n.Invoke(t)})),null===(i=this._connection)||void 0===i||i.on("SendError",(function(t,n){return de(u,void 0,void 0,(function(){return pe(this,(function(o){switch(o.label){case 0:return t.startsWith("NotAuthorized:")?(this._log.Warning(e,"Failed to authorize!"),[4,this.AuthorizeAsync(new se(this._serialId,this._PIN))]):[3,2];case 1:return o.sent(),[3,3];case 2:this._log.Error(e,"Server returned error: ".concat(t," ").concat(n)),this._errorOccuredEvent.Invoke([t,n]),o.label=3;case 3:return[2]}}))}))})),c=this._dataReceivedEvent,null===(s=this._connection)||void 0===s||s.on("Data",(function(t,n){var o=JSON.parse(n);u._log.Debug(e,"Received data:\n".concat(JSON.stringify(o,null,2))),c.Invoke(o)})),l=this._connectionStateChangedEvent,null===(a=this._connection)||void 0===a?void 0:a.state){case E.Connected:return l.Invoke(ie.Connected),[2,re.Connected];case E.Connecting:return l.Invoke(ie.Connecting),[2,re.Connected];case E.Disconnected:return l.Invoke(ie.Disconnected),[2,re.FailedToConnect];case E.Disconnecting:return l.Invoke(ie.Disconnecting),[2,re.FailedToConnect];case E.Reconnecting:return l.Invoke(ie.Reconnecting),[2,re.FailedToConnect]}return[2,re.FailedToConnect]}}))}))},e.prototype.DisconnectAsync=function(){var e;return de(this,void 0,void 0,(function(){return pe(this,(function(t){switch(t.label){case 0:return[4,null===(e=this._connection)||void 0===e?void 0:e.stop()];case 1:return t.sent(),[2]}}))}))},e.prototype.IsConnected=function(){var e;return(null===(e=this._connection)||void 0===e?void 0:e.state)===E.Connected},e.prototype.SendAndWaitForResponseAsync=function(t,n,o,r){var i=this;void 0===r&&(r=!1);var s=0,a=new Date,c=a.getDate();if(!this.IsConnected())throw new Error("Connection is not established");return new Promise((function(o,l){return de(i,void 0,void 0,(function(){var i,u,f=this;return pe(this,(function(d){switch(d.label){case 0:return i=function(n){if((null==n?void 0:n.TransactionId)==t.TransactionId){window.clearTimeout(s),f._dataReceivedEvent.Unsubscribe(i);var l=c-a.getDate();r&&f._log.Debug(e,"Received response for: ".concat(null==n?void 0:n.Resource," ").concat(null==n?void 0:n.Method," id: ").concat(null==n?void 0:n.TransactionId," in ").concat(l,"ms")),o(n)}},this._dataReceivedEvent.Subscribe(i),[4,this.SendAsync(t,r)];case 1:return d.sent()?s=window.setTimeout((function(){f._dataReceivedEvent.Unsubscribe(i);var n="Response timeout, resource: ".concat(t.Resource," method: ").concat(t.Method," transaction id: ").concat(t.TransactionId);f._log.Error(e,n),l(new h(n))}),n):(u="Failed to send request, resource: ".concat(t.Resource," method: ").concat(t.Method," transaction id: ").concat(t.TransactionId),l(new Error(u))),[2]}}))}))}))},e.prototype.SendAsync=function(t,n){var o=this;if(void 0===n&&(n=!1),!this.IsConnected())throw new Error("Connection is not established");return new Promise((function(r){var i;n&&o._log.Debug(e,"Send DataFrame ".concat(t.Resource," ").concat(t.Method," transaction id: ").concat(t.TransactionId," ")),null===(i=o._connection)||void 0===i||i.invoke("SendTo",o._serialId,t).then((function(){r(!0)})).catch((function(t){o._log.Error(e,t),r(!1)}))}))},e.prototype.OnDataReceivedEvent=function(){return this._dataReceivedEvent},e.prototype.OnConnectionStateChangedEvent=function(){return this._connectionStateChangedEvent},e.prototype.OnErrorOccuredEvent=function(){return this._errorOccuredEvent},e}(),ge=function(){function e(){this._log=Qu.Get(i),this._serviceName=(0,t.$)(a),e._localStorageService=Qu.Get(a)}return e.prototype.GetServiceName=function(){return this._serviceName},e.prototype.GetResourceName=function(e){return"".concat(e.Resource,"_").concat(e.Method)},e.prototype.Cache=function(t){var n,o=JSON.stringify(t);this._log.Debug("Caching request: ".concat(t.Resource," ").concat(t.Method,"\n").concat(o)),null===(n=e._localStorageService)||void 0===n||n.Save(e,this.GetResourceName(t),o)},e.prototype.GetCache=function(t){var n,o=null===(n=e._localStorageService)||void 0===n?void 0:n.Read(e,this.GetResourceName(t));return null==o&&this._log.Debug("Got request response from cache: ".concat(t.Resource," ").concat(t.Method,"\n").concat(o)),o},e.prototype.ClearCache=function(){var t;null===(t=e._localStorageService)||void 0===t||t.DropStorage(e),this._log.Debug("Clearing cache for ".concat(this.GetServiceName()))},e.prototype.Remove=function(t){var n;null===(n=e._localStorageService)||void 0===n||n.Remove(e,this.GetResourceName(t)),this._log.Debug("Clearing cache for cache: ".concat(t.Resource," ").concat(t.Method))},e._localStorageService=null,e}(),we=function(){function e(){}return e.GenerateUUID=function(){var e=(new Date).getTime(),t="undefined"!=typeof performance&&performance.now&&1e3*performance.now()||0;return"xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx".replace(/[xy]/g,(function(n){var o=16*Math.random();return e>0?(o=(e+o)%16|0,e=Math.floor(e/16)):(o=(t+o)%16|0,t=Math.floor(t/16)),("x"===n?o:3&o|8).toString(16)}))},e}(),ve=function(){this.TransactionId=we.GenerateUUID()};!function(e){e[e.OK=0]="OK",e[e.UnknownError=1]="UnknownError",e[e.FatalError=2]="FatalError",e[e.WrongData=3]="WrongData",e[e.ResourceDoesNotExists=4]="ResourceDoesNotExists",e[e.NoPermissionToPerformThisOperation=5]="NoPermissionToPerformThisOperation",e[e.SessionHasAlreadyLoggedOnUser=6]="SessionHasAlreadyLoggedOnUser",e[e.OperationNotPermitted=7]="OperationNotPermitted",e[e.NoPermissionsToCallGivenResource=8]="NoPermissionsToCallGivenResource",e[e.ResourceIsNotAvailable=9]="ResourceIsNotAvailable",e[e.Error=10]="Error",e[e.NoData=11]="NoData",e[e.NotSupportedMethod=12]="NotSupportedMethod",e[e.UserIsNotLoggedIn=13]="UserIsNotLoggedIn",e[e.MultiDataResponseStart=14]="MultiDataResponseStart",e[e.MultiDataResponse=15]="MultiDataResponse",e[e.MultiDataResponseStop=16]="MultiDataResponseStop"}(ae||(ae={})),function(e){e[e.Get=0]="Get",e[e.Post=1]="Post",e[e.Delete=2]="Delete",e[e.Put=3]="Put",e[e.Options=4]="Options",e[e.Head=5]="Head"}(ce||(ce={})),function(e){e[e.Any=0]="Any",e[e.Guest=10]="Guest",e[e.Standard=20]="Standard",e[e.Admin=30]="Admin",e[e.Installator=40]="Installator",e[e.Support=50]="Support"}(le||(le={})),function(e){e[e.Unknown=0]="Unknown",e[e.Men=1]="Men",e[e.Woman=2]="Woman",e[e.Other=3]="Other"}(ue||(ue={})),function(e){e[e.En_Us=0]="En_Us",e[e.Pl_Pl=1]="Pl_Pl"}(he||(he={}));var me,_e,be,Se=function(){function e(){this._guid="",this._cloudGuid="",this._name="",this._surname="",this._phone="",this._email="",this._isAccountOnline=!0,this._isAccountActive=!0,this._isAccountBanned=!0,this._notificationChannels=[],this._gender=ue.Unknown,this._accessLevel=le.Any,this._localization=he.En_Us}return Object.defineProperty(e.prototype,"Guid",{get:function(){return this._guid},set:function(e){this._guid=e},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"CloudGuid",{get:function(){return this._cloudGuid},set:function(e){this._cloudGuid=e},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"Name",{get:function(){return this._name},set:function(e){this._name=e},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"Surname",{get:function(){return this._surname},set:function(e){this._surname=e},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"Phone",{get:function(){return this._phone},set:function(e){this._phone=e},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"AccessLevel",{get:function(){return this._accessLevel},set:function(e){this._accessLevel=e},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"Email",{get:function(){return this._email},set:function(e){this._email=e},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"IsAccountOnline",{get:function(){return this._isAccountOnline},set:function(e){this._isAccountOnline=e},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"IsActive",{get:function(){return this._isAccountActive},set:function(e){this._isAccountActive=e},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"IsBanned",{get:function(){return this._isAccountBanned},set:function(e){this._isAccountBanned=e},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"NotificationChannels",{get:function(){return this._notificationChannels},set:function(e){this._notificationChannels=e},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"Gender",{get:function(){return this._gender},set:function(e){this._gender=e},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"Localization",{get:function(){return this._localization},set:function(e){this._localization=e},enumerable:!1,configurable:!0}),e}(),Te=(me=function(e,t){return me=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])},me(e,t)},function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Class extends value "+String(t)+" is not a constructor or null");function n(){this.constructor=e}me(e,t),e.prototype=null===t?Object.create(t):(n.prototype=t.prototype,new n)}),Ee=function(){function e(){this._connection=null,this._serviceName=(0,t.$)(e),this._connection=Qu.Get(ye)}return e.prototype.GetServiceName=function(){return this._serviceName},e.prototype.GetUsersAsync=function(){var t,n,o,r,i,a;return o=this,r=void 0,a=function(){var o,r;return function(e,t){var n,o,r,i,s={label:0,sent:function(){if(1&r[0])throw r[1];return r[1]},trys:[],ops:[]};return i={next:a(0),throw:a(1),return:a(2)},"function"==typeof Symbol&&(i[Symbol.iterator]=function(){return this}),i;function a(i){return function(a){return function(i){if(n)throw new TypeError("Generator is already executing.");for(;s;)try{if(n=1,o&&(r=2&i[0]?o.return:i[0]?o.throw||((r=o.return)&&r.call(o),0):o.next)&&!(r=r.call(o,i[1])).done)return r;switch(o=0,r&&(i=[2&i[0],r.value]),i[0]){case 0:case 1:r=i;break;case 4:return s.label++,{value:i[1],done:!1};case 5:s.label++,o=i[1],i=[0];continue;case 7:i=s.ops.pop(),s.trys.pop();continue;default:if(!((r=(r=s.trys).length>0&&r[r.length-1])||6!==i[0]&&2!==i[0])){s=0;continue}if(3===i[0]&&(!r||i[1]>r[0]&&i[1]<r[3])){s.label=i[1];break}if(6===i[0]&&s.label<r[1]){s.label=r[1],r=i;break}if(r&&s.label<r[2]){s.label=r[2],s.ops.push(i);break}r[2]&&s.ops.pop(),s.trys.pop();continue}i=t.call(e,s)}catch(e){i=[6,e],o=0}finally{n=r=0}if(5&i[0])throw i[1];return{value:i[0]?i[1]:void 0,done:!0}}([i,a])}}}(this,(function(i){switch(i.label){case 0:return[4,null===(t=this._connection)||void 0===t?void 0:t.SendAndWaitForResponseAsync(new Ce,5e3,!1)];case 1:if(null==(o=i.sent()))return[2,Promise.resolve([])];if((null==o?void 0:o.Status)==ae.OK)return null!=o.Data?(r=[],o.Data.forEach((function(e){var t=new Se;t.AccessLevel=e.AccessLevel,t.Email=e.Email,t.Gender=e.Gender,t.Guid=e.Guid,t.IsAccountOnline=e.IsAccountOnline,t.Name=e.Name,t.IsActive=e.IsActive,t.IsBanned=e.IsBanned,t.Phone=e.Phone,t.Surname=e.Surname,r.push(t)})),[2,r]):[2,Promise.resolve([])];if((null==o?void 0:o.Status)==ae.NoData)return[2,Promise.resolve([])];throw null===(n=s.Log)||void 0===n||n.Debug(e,"Failed to retrieve users, error: ".concat(o.Status)),new Error("Failed to retrieve users, error: ".concat(o.Status))}}))},new((i=void 0)||(i=Promise))((function(e,t){function n(e){try{c(a.next(e))}catch(e){t(e)}}function s(e){try{c(a.throw(e))}catch(e){t(e)}}function c(t){var o;t.done?e(t.value):(o=t.value,o instanceof i?o:new i((function(e){e(o)}))).then(n,s)}c((a=a.apply(o,r||[])).next())}))},e.prototype.GetUserAsync=function(e){return new Promise((function(e,t){e(null)}))},e.prototype.CreateUserAsync=function(e){return new Promise((function(t,n){t(e)}))},e.prototype.UpdateUserAsync=function(e){return new Promise((function(t,n){t(e)}))},e.prototype.DeleteUserAsync=function(e){return new Promise((function(e,t){e()}))},e}(),Ce=function(e){function t(){var t=e.call(this)||this;return t.Resource="/users/list",t.Method=ce.Get,t}return Te(t,e),t}(ve);!function(e){e[e.NoTasksExecuting=0]="NoTasksExecuting",e[e.ExecutingTasks=1]="ExecutingTasks"}(_e||(_e={})),function(e){e[e.Default=0]="Default",e[e.Monostable=1]="Monostable",e[e.Bistable=2]="Bistable",e[e.Gate=3]="Gate",e[e.Gateway=4]="Gateway"}(be||(be={}));var Ae,ke=function(){function e(){this._type=Ae.Unknown,this._interfaceType=""}return Object.defineProperty(e.prototype,"Type",{get:function(){return this._type},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"InterfaceType",{get:function(){return this._interfaceType},set:function(e){this._interfaceType=e,this._type=e},enumerable:!1,configurable:!0}),e}();!function(e){e.Unknown="Unknown",e.SetBlindPosition="IBlindPosition",e.SetBlindPositionSimple="IBlindPositionSimple",e.SetBlindMicroventilation="IMicroventilation",e.TurnOff="IChannelOff",e.TurnOn="IChannelOn",e.TogleState="IChannelSwitchState",e.SetLightBrightnessDynamicly="IDynamicLightBrightness",e.SetLightBrightness="ILightBrightness",e.SetLightColor="ILightColor",e.SetLightTemperature="ILightTemperature",e.PairDevice="IPair",e.UnpairDevice="IUnpair",e.IdentifyDevice="IIdentifyDevice",e.GetChannelsState="IGetDeviceState",e.GetPowerMeasurements="IGetPowerMeasurements",e.GetAvailableData="IGetAvailableData",e.MultipleDataRequest="IMultipleDataRequest",e.SetBlindOpenCloseTime="ISetBlindOpenCloseTime",e.SetTemperature="IChangeTemperature",e.ChangeGatePositionPulse="IGatePulse",e.ChangeGatewayPositionPulse="IGatewayPulse",e.SetFacadePosition="IFacadePosition"}(Ae||(Ae={}));var Pe,De,Ie,Oe,Re=function(){function e(){this._type=Pe.Unknown,this._interfaceType=""}return Object.defineProperty(e.prototype,"Type",{get:function(){return this._type},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"InterfaceType",{get:function(){return this._interfaceType},set:function(e){this._interfaceType=e,this._type=e},enumerable:!1,configurable:!0}),e}();!function(e){e.Unknown="Unknown",e.BatteryState="IBatteryState",e.BinarySensorState="IBinarySensor",e.BlindOpenCloseTime="IBlindOpenCloseTime",e.BlindPosition="IBlindPosition",e.BlindRemoteButtonState="IBlindsControlButton",e.MeasuredBrightness="IBrightness",e.RemoteButtonState="IButtonState",e.ChannelOnOffState="IChannelOnOff",e.DoorBellState="IDoorBell",e.FacadeRemoteButtonState="IFacadeControlButton",e.FacadePosition="IFacadeState",e.FloodSensorState="IFloodSensor",e.GatePosition="IGatePosition",e.GatewayPosition="IGatewayPosition",e.HumiditySensorState="IHumiditySensor",e.LightBrightness="ILightBrightness",e.LightColor="ILightColor",e.LightWarmth="ILightTemperature",e.LightTreshold="ILightTreshold",e.MovementSensorState="IMovementSensor",e.OnlineCamera="IOnlineCamera",e.OvercurrentProtectionState="IOvercurrentProtection",e.OvercurrentProtectionThreshold="IOvercurrentProtectionThreshold",e.ReedPosition="IReedPosition",e.SignalStrength="ISignalStrength",e.SmokeSensorState="ISmokeSensor",e.MeasuredTemperature="ITemperature",e.VibrationSensorState="IVibrationSensor",e.MeasuredWindSpeed="IWindSpeed",e.WindTreshold="IWindTreshold",e.MeasuredEnergy="IEnergy",e.MeasuredDistance="DistanceSensor",e.BlindCalibration="BlindCalibration",e.ConfigurationState="ConfigurationState",e.CurrentWindThreshold="CurrentWindThreshold",e.WindSpeedState="WindSpeed"}(Pe||(Pe={})),function(e){e[e.NotResponding=0]="NotResponding",e[e.Working=1]="Working",e[e.Broken=2]="Broken",e[e.FirmareUpgradeMode=3]="FirmareUpgradeMode"}(De||(De={})),function(e){e[e.TwoWay=1]="TwoWay",e[e.OneWay=2]="OneWay",e[e.ConditionalTwoWay=3]="ConditionalTwoWay"}(Ie||(Ie={})),function(e){e[e.Unknown=-1]="Unknown",e[e.Multipurpose=0]="Multipurpose",e[e.Controller=1]="Controller",e[e.Driver=2]="Driver",e[e.Receiver=3]="Receiver",e[e.Remote=4]="Remote",e[e.Sensor=5]="Sensor",e[e.Scene=6]="Scene"}(Oe||(Oe={}));var Ne,xe=function(){this.DeviceGuid="",this.Channel=0,this.Status=_e.NoTasksExecuting};!function(e){e[e.Unknown=0]="Unknown",e[e.Executed=1]="Executed",e[e.ResponseTimeout=2]="ResponseTimeout",e[e.TaskRepeatedAndExecuted=3]="TaskRepeatedAndExecuted",e[e.TaskRepeatedResponseTimeout=4]="TaskRepeatedResponseTimeout",e[e.FlowControlNotAvailable=5]="FlowControlNotAvailable",e[e.ExecutionError=6]="ExecutionError"}(Ne||(Ne={}));var Me,Ge=function(){var e=function(t,n){return e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])},e(t,n)};return function(t,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function o(){this.constructor=t}e(t,n),t.prototype=null===n?Object.create(n):(o.prototype=n.prototype,new o)}}(),Fe=function(){function e(){this._type="",this._data=null,this._typeAsEnum=Pe.Unknown}return Object.defineProperty(e.prototype,"Data",{get:function(){return this._data},set:function(e){this._data=e},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"Type",{get:function(){return this._type},set:function(e){this._type=e},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"TypeAsEnum",{get:function(){return this._typeAsEnum},set:function(e){this._typeAsEnum=e},enumerable:!1,configurable:!0}),e}();!function(e){e[e.Confident=0]="Confident",e[e.Unconfident=1]="Unconfident"}(Me||(Me={}));var Be,Le=function(e){function n(n){var o=e.call(this)||this;return o.TypeAsEnum=Pe.ChannelOnOffState,o.Type=(0,t.$)(Ue),o.Data=n.state,o}return Ge(n,e),n}(Fe),Ue=function(){this.Channel=0,this.StateReliability=Me.Unconfident,this.State=Be.Unknown,this.Time=""};!function(e){e[e.On=0]="On",e[e.Off=1]="Off",e[e.Unknown=2]="Unknown"}(Be||(Be={}));var $e,We=function(e){function n(n){var o=e.call(this)||this;return o.TypeAsEnum=Pe.DoorBellState,o.Type=(0,t.$)(je),o.Data=n.state,o}return Ge(n,e),n}(Fe),je=function(){this.Channel=0,this.StateReliability=Me.Unconfident,this.State=$e.Relased,this.Time=""};!function(e){e[e.Pressed=0]="Pressed",e[e.Relased=1]="Relased",e[e.PressedAndRelased=2]="PressedAndRelased"}($e||($e={}));var He,qe=function(e){function n(n){var o=e.call(this)||this;return o.TypeAsEnum=Pe.ReedPosition,o.Type=(0,t.$)(ze),o.Data=n.state,o}return Ge(n,e),n}(Fe),ze=function(){this.Channel=0,this.StateReliability=Me.Unconfident,this.State=!1,this.Time=""},Ve=function(e){function n(n){var o=e.call(this)||this;return o.TypeAsEnum=Pe.BlindPosition,o.Type=(0,t.$)(Ke),o.Data=n.state,o}return Ge(n,e),n}(Fe),Ke=function(){this.Channel=0,this.StateReliability=Me.Unconfident,this.Position=0,this.RawPosition=0,this.Time=""},Je=function(e){function n(n){var o=e.call(this)||this;return o.TypeAsEnum=Pe.RemoteButtonState,o.Type=(0,t.$)(Ye),o.Data=n.state,o}return Ge(n,e),n}(Fe),Ye=function(){this.Channel=0,this.StateReliability=Me.Unconfident,this.State=He.Relased,this.Time=""};!function(e){e[e.Pressed=1]="Pressed",e[e.Relased=2]="Relased",e[e.PressedAndRelased=3]="PressedAndRelased"}(He||(He={}));var Xe,Qe=function(e){function n(n){var o=e.call(this)||this;return o.TypeAsEnum=Pe.LightColor,o.Type=(0,t.$)(Ze),o.Data=n.state,o}return Ge(n,e),n}(Fe),Ze=function(){this.Channel=0,this.StateReliability=Me.Unconfident,this.R=0,this.G=0,this.B=0,this.Time=""},et=function(e){function n(n){var o=e.call(this)||this;return o.TypeAsEnum=Pe.LightWarmth,o.Type=(0,t.$)(tt),o.Data=n.state,o}return Ge(n,e),n}(Fe),tt=function(){this.Channel=0,this.StateReliability=Me.Unconfident,this.Temperature=0,this.Time=""},nt=function(e){function n(n){var o=e.call(this)||this;return o.TypeAsEnum=Pe.LightBrightness,o.Type=(0,t.$)(ot),o.Data=n.state,o}return Ge(n,e),n}(Fe),ot=function(){this.Channel=0,this.StateReliability=Me.Unconfident,this.Brightness=0,this.Time=""},rt=function(e){function n(n){var o=e.call(this)||this;return o.TypeAsEnum=Pe.MeasuredTemperature,o.Type=(0,t.$)(it),o.Data=n.state,o}return Ge(n,e),n}(Fe),it=function(){this.Channel=0,this.StateReliability=Me.Unconfident,this.Temperature=0,this.Type=Xe.InsideTemperature,this.Time=""};!function(e){e[e.AirTemperature=0]="AirTemperature",e[e.InsideTemperature=1]="InsideTemperature",e[e.OutsideTemperature=2]="OutsideTemperature",e[e.FloorTemperature=3]="FloorTemperature",e[e.SafetyTemperature=4]="SafetyTemperature",e[e.SetTemperature=5]="SetTemperature"}(Xe||(Xe={}));var st,at=function(e){function n(n){var o=e.call(this)||this;return o.TypeAsEnum=Pe.BatteryState,o.Type=(0,t.$)(ct),o.Data=n.state,o}return Ge(n,e),n}(Fe),ct=function(){this.Channel=0,this.StateReliability=Me.Unconfident,this.State=st.Half,this.Percentage=-1,this.Time=""};!function(e){e[e.Full=0]="Full",e[e.Empty=1]="Empty",e[e.Half=2]="Half",e[e.Percentage=3]="Percentage",e[e.Low=4]="Low",e[e.ExternalPower=5]="ExternalPower"}(st||(st={}));var lt,ut=function(e){function n(n){var o=e.call(this)||this;return o.TypeAsEnum=Pe.MeasuredBrightness,o.Type=(0,t.$)(ht),o.Data=n.state,o}return Ge(n,e),n}(Fe),ht=function(){this.Channel=0,this.StateReliability=Me.Unconfident,this.Brightness=0,this.Time=""},ft=function(e){function n(n){var o=e.call(this)||this;return o.TypeAsEnum=Pe.MeasuredEnergy,o.Type=(0,t.$)(dt),o.Data=n.state,o}return Ge(n,e),n}(Fe),dt=function(){this.Channel=0,this.StateReliability=Me.Unconfident,this.Voltage=0,this.Current=0,this.PhaseShift=0,this.ActivePower=0,this.ReactivePower=0,this.ApparentPower=0,this.PowerFactor=0,this.ActiveEnergy=0,this.ReactiveEnergy=0,this.Frequency=0,this.Time=""},pt=function(e){function n(n){var o=e.call(this)||this;return o.TypeAsEnum=Pe.MeasuredDistance,o.Type=(0,t.$)(yt),o.Data=n.state,o}return Ge(n,e),n}(Fe),yt=function(){this.Channel=0,this.StateReliability=Me.Unconfident,this.Distance=0,this.DetectedObject=lt.No,this.Time=""};!function(e){e[e.No=0]="No",e[e.Yes=1]="Yes"}(lt||(lt={}));var gt,wt=function(e){function n(n){var o=e.call(this)||this;return o.TypeAsEnum=Pe.MovementSensorState,o.Type=(0,t.$)(vt),o.Data=n.state,o}return Ge(n,e),n}(Fe),vt=function(){this.Channel=0,this.StateReliability=Me.Unconfident,this.Intensity=0,this.Movement=gt.No,this.Time=""};!function(e){e[e.No=0]="No",e[e.Yes=1]="Yes"}(gt||(gt={}));var mt,_t=function(e){function n(n){var o=e.call(this)||this;return o.TypeAsEnum=Pe.BlindRemoteButtonState,o.Type=(0,t.$)(bt),o.Data=n.state,o}return Ge(n,e),n}(Fe),bt=function(){this.Channel=0,this.StateReliability=Me.Unconfident,this.State=mt.StopReleased,this.Time=""};!function(e){e[e.OpenPressed=1]="OpenPressed",e[e.OpenReleased=2]="OpenReleased",e[e.StopPressed=3]="StopPressed",e[e.StopReleased=4]="StopReleased",e[e.ClosePressed=5]="ClosePressed",e[e.CloseReleased=6]="CloseReleased"}(mt||(mt={}));var St,Tt=function(e){function n(n){var o=e.call(this)||this;return o.TypeAsEnum=Pe.FacadeRemoteButtonState,o.Type=(0,t.$)(Et),o.Data=n.state,o}return Ge(n,e),n}(Fe),Et=function(){this.Channel=0,this.StateReliability=Me.Unconfident,this.State=St.StopReleased,this.Time=""};!function(e){e[e.OpenPressed=1]="OpenPressed",e[e.OpenReleased=2]="OpenReleased",e[e.StopPressed=3]="StopPressed",e[e.StopReleased=4]="StopReleased",e[e.ClosePressed=5]="ClosePressed",e[e.CloseReleased=6]="CloseReleased"}(St||(St={}));var Ct,At=function(e){function n(n){var o=e.call(this)||this;return o.TypeAsEnum=Pe.SignalStrength,o.Type=(0,t.$)(kt),o.Data=n.state,o}return Ge(n,e),n}(Fe),kt=function(){this.Channel=0,this.StateReliability=Me.Unconfident,this.Quality=Ct.Unknown,this.MeasurementTime="",this.DidLastTaskSucceded=!1,this.Percentage=0,this.SuccededExecutionsPercentage=0,this.SuccededTransmissionsPercentage=0,this.Time=""};!function(e){e[e.Unknown=0]="Unknown",e[e.Excellent=1]="Excellent",e[e.Good=2]="Good",e[e.Acceptable=3]="Acceptable",e[e.Low=4]="Low",e[e.Terrible=5]="Terrible",e[e.NoLink=6]="NoLink"}(Ct||(Ct={}));var Pt,Dt=function(e){function n(n){var o=e.call(this)||this;return o.TypeAsEnum=Pe.GatePosition,o.Type=(0,t.$)(It),o.Data=n.state,o}return Ge(n,e),n}(Fe),It=function(){this.Channel=0,this.StateReliability=Me.Unconfident,this.PositionType=Pt.Unknown,this.Position=0,this.Time=""};!function(e){e[e.Unknown=0]="Unknown",e[e.Open=1]="Open",e[e.PartiallyOpen=2]="PartiallyOpen",e[e.Close=3]="Close",e[e.On=4]="On",e[e.Off=5]="Off"}(Pt||(Pt={}));var Ot,Rt=function(e){function n(n){var o=e.call(this)||this;return o.TypeAsEnum=Pe.GatewayPosition,o.Type=(0,t.$)(Nt),o.Data=n.state,o}return Ge(n,e),n}(Fe),Nt=function(){this.Channel=0,this.StateReliability=Me.Unconfident,this.PositionType=Ot.Unknown,this.Position=0,this.Time=""};!function(e){e[e.Unknown=0]="Unknown",e[e.Open=1]="Open",e[e.PartiallyOpen=2]="PartiallyOpen",e[e.Close=3]="Close",e[e.On=4]="On",e[e.Off=5]="Off"}(Ot||(Ot={}));var xt,Mt=function(e){function n(n){var o=e.call(this)||this;return o.TypeAsEnum=Pe.BlindCalibration,o.Type=(0,t.$)(Gt),o.Data=n.state,o}return Ge(n,e),n}(Fe),Gt=function(){this.Channel=0,this.StateReliability=Me.Unconfident,this.CalibrationStatus=xt.AutoLernIdle,this.Time=""};!function(e){e[e.AutoLernIdle=0]="AutoLernIdle",e[e.AutoLernInProgress=1]="AutoLernInProgress",e[e.AutoLernSuccessfull=2]="AutoLernSuccessfull",e[e.AutoLernCancelled=4]="AutoLernCancelled"}(xt||(xt={}));var Ft,Bt=function(e){function n(n){var o=e.call(this)||this;return o.TypeAsEnum=Pe.HumiditySensorState,o.Type=(0,t.$)(Lt),o.Data=n.state,o}return Ge(n,e),n}(Fe),Lt=function(){this.Channel=0,this.StateReliability=Me.Unconfident,this.Type=Ft.AirHumidity,this.Humidity=0,this.Time=""};!function(e){e[e.AirHumidity=0]="AirHumidity",e[e.InsideHumidity=1]="InsideHumidity",e[e.OutsideHumidity=2]="OutsideHumidity",e[e.SafetyHumidity=3]="SafetyHumidity",e[e.SetHumidity=4]="SetHumidity"}(Ft||(Ft={}));var Ut,$t=function(e){function n(n){var o=e.call(this)||this;return o.TypeAsEnum=Pe.VibrationSensorState,o.Type=(0,t.$)(Wt),o.Data=n.state,o}return Ge(n,e),n}(Fe),Wt=function(){this.Channel=0,this.StateReliability=Me.Unconfident,this.Vibration=Ut.No,this.Acceleration_X=0,this.Acceleration_Y=0,this.Acceleration_Z=0,this.AccelerationModule=0,this.Time=""};!function(e){e[e.No=0]="No",e[e.Yes=1]="Yes"}(Ut||(Ut={}));var jt,Ht=function(e){function n(n){var o=e.call(this)||this;return o.TypeAsEnum=Pe.BinarySensorState,o.Type=(0,t.$)(qt),o.Data=n.state,o}return Ge(n,e),n}(Fe),qt=function(){this.Channel=0,this.StateReliability=Me.Unconfident,this.State=jt.Low,this.Time=""};!function(e){e[e.High=1]="High",e[e.Low=0]="Low"}(jt||(jt={}));var zt,Vt=function(e){function n(n){var o=e.call(this)||this;return o.TypeAsEnum=Pe.ConfigurationState,o.Type=(0,t.$)(Kt),o.Data=n.state,o}return Ge(n,e),n}(Fe),Kt=function(){this.Channel=0,this.StateReliability=Me.Unconfident,this.Configuration=zt.Unknown,this.Time=""};!function(e){e[e.Unknown=0]="Unknown",e[e.OngoingConfiguration=1]="OngoingConfiguration",e[e.NotConfigured=2]="NotConfigured",e[e.Configured=3]="Configured",e[e.PartiallyConfigured=4]="PartiallyConfigured"}(zt||(zt={}));var Jt,Yt=function(e){function n(n){var o=e.call(this)||this;return o.TypeAsEnum=Pe.BlindOpenCloseTime,o.Type=(0,t.$)(Xt),o.Data=n.state,o}return Ge(n,e),n}(Fe),Xt=function(){this.Channel=0,this.StateReliability=Me.Unconfident,this.Vibration=Ut.No,this.CloseTime=0,this.OpenTime=0,this.HallCounter=0,this.Time=""},Qt=function(e){function n(n){var o=e.call(this)||this;return o.TypeAsEnum=Pe.OvercurrentProtectionState,o.Type=(0,t.$)(Zt),o.Data=n.state,o}return Ge(n,e),n}(Fe),Zt=function(){this.Channel=0,this.StateReliability=Me.Unconfident,this.Triggered=!1,this.Time=""},en=function(e){function n(n){var o=e.call(this)||this;return o.TypeAsEnum=Pe.OvercurrentProtectionThreshold,o.Type=(0,t.$)(tn),o.Data=n.state,o}return Ge(n,e),n}(Fe),tn=function(){this.Channel=0,this.StateReliability=Me.Unconfident,this.Current=0,this.Time=""},nn=function(e){function n(n){var o=e.call(this)||this;return o.TypeAsEnum=Pe.FacadePosition,o.Type=(0,t.$)(on),o.Data=n.state,o}return Ge(n,e),n}(Fe),on=function(){this.Channel=0,this.StateReliability=Me.Unconfident,this.Position=0,this.Tilt=0,this.Time=""},rn=function(e){function n(n){var o=e.call(this)||this;return o.TypeAsEnum=Pe.CurrentWindThreshold,o.Type=(0,t.$)(sn),o.Data=n.state,o}return Ge(n,e),n}(Fe),sn=function(){this.Channel=0,this.StateReliability=Me.Unconfident,this.WindThreshold=Jt.Unknown,this.Time=""};!function(e){e[e.Unknown=0]="Unknown",e[e.Below=1]="Below",e[e.Exceeded=2]="Exceeded",e[e.Inactive=3]="Inactive"}(Jt||(Jt={}));var an,cn=function(e){function n(n){var o=e.call(this)||this;return o.TypeAsEnum=Pe.CurrentWindThreshold,o.Type=(0,t.$)(ln),o.Data=n.state,o}return Ge(n,e),n}(Fe),ln=function(){this.Channel=0,this.StateReliability=Me.Unconfident,this.LightThreshold=an.Unknown,this.Value=0,this.Time=""};!function(e){e[e.Unknown=0]="Unknown",e[e.Below=1]="Below",e[e.Exceeded=2]="Exceeded"}(an||(an={}));var un,hn,fn=function(e){function n(n){var o=e.call(this)||this;return o.TypeAsEnum=Pe.WindSpeedState,o.Type=(0,t.$)(dn),o.Data=n.state,o}return Ge(n,e),n}(Fe),dn=function(){this.Channel=0,this.StateReliability=Me.Unconfident,this.Value=0,this.Time=""},pn=function(){function e(e,t){this._type=un.Unknown,this._data="",this._type=e,this._data=t}return Object.defineProperty(e.prototype,"Type",{get:function(){return this._type},set:function(e){this._type=e},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"Data",{get:function(){return this._data},set:function(e){this._data=e},enumerable:!1,configurable:!0}),e}();!function(e){e[e.UnknownError=-5]="UnknownError",e[e.NoPermissions=-4]="NoPermissions",e[e.WrongData=-3]="WrongData",e[e.ControllerResponseTimeout=-2]="ControllerResponseTimeout",e[e.Failed=-1]="Failed",e[e.Unknown=0]="Unknown",e[e.Changed=1]="Changed"}(un||(un={})),function(e){e[e.ControllerResponseTimeout=-4]="ControllerResponseTimeout",e[e.DeviceNotFound=-3]="DeviceNotFound",e[e.DeviceResponseTimeout=-2]="DeviceResponseTimeout",e[e.Failed=-1]="Failed",e[e.Unknown=0]="Unknown",e[e.Executed=1]="Executed"}(hn||(hn={}));var yn,gn=function(){var e=function(t,n){return e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])},e(t,n)};return function(t,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function o(){this.constructor=t}e(t,n),t.prototype=null===n?Object.create(n):(o.prototype=n.prototype,new o)}}(),wn=function(){function e(){this._device=null,this._number=0,this._name="",this._iconName="",this._states=[],this._mode=be.Default,this._channelGroups=[],this._isHidden=!1,this._availableTasksTypes=[],this._availableResponseTypes=[],this._onTasksExecutionChangedEvent=new r}return e.prototype.SetDevice=function(e){var t=this;this._device=e,this._device.OnDeviceStateChangedEvent().Subscribe((function(e){e.Data.Channel==t._number&&(t._states=t._states.where((function(t){return t.TypeAsEnum!=e.TypeAsEnum})).toArray(),t._states.push(e))}))},e.prototype.GetChannelConfigurationData=function(){var e=new vn;return e.Channel=this._number,e.ChannelName=this._name,e.Configuration=this._mode,e.GroupsGuids=this._channelGroups,e.Hidden=this._isHidden,e.IconName=this._iconName,e},e.prototype.HideAsync=function(){var e=this.GetChannelConfigurationData();return e.Hidden=!0,this.ChangeConfigurationAsync(e)},e.prototype.ShowAsync=function(){var e=this.GetChannelConfigurationData();return e.Hidden=!1,this.ChangeConfigurationAsync(e)},e.prototype.ChangeNameAsync=function(e){var t=this.GetChannelConfigurationData();return t.ChannelName=e,this.ChangeConfigurationAsync(t)},e.prototype.ChangeIconNameAsync=function(e){var t=this.GetChannelConfigurationData();return t.IconName=e,this.ChangeConfigurationAsync(t)},e.prototype.ChangeGroupsAsync=function(e){var t=this.GetChannelConfigurationData();return t.GroupsGuids=e,this.ChangeConfigurationAsync(t)},e.prototype.ChangeConfigurationAsync=function(e){var t,n,o,r,i;return n=this,o=void 0,i=function(){var n;return function(e,t){var n,o,r,i,s={label:0,sent:function(){if(1&r[0])throw r[1];return r[1]},trys:[],ops:[]};return i={next:a(0),throw:a(1),return:a(2)},"function"==typeof Symbol&&(i[Symbol.iterator]=function(){return this}),i;function a(i){return function(a){return function(i){if(n)throw new TypeError("Generator is already executing.");for(;s;)try{if(n=1,o&&(r=2&i[0]?o.return:i[0]?o.throw||((r=o.return)&&r.call(o),0):o.next)&&!(r=r.call(o,i[1])).done)return r;switch(o=0,r&&(i=[2&i[0],r.value]),i[0]){case 0:case 1:r=i;break;case 4:return s.label++,{value:i[1],done:!1};case 5:s.label++,o=i[1],i=[0];continue;case 7:i=s.ops.pop(),s.trys.pop();continue;default:if(!((r=(r=s.trys).length>0&&r[r.length-1])||6!==i[0]&&2!==i[0])){s=0;continue}if(3===i[0]&&(!r||i[1]>r[0]&&i[1]<r[3])){s.label=i[1];break}if(6===i[0]&&s.label<r[1]){s.label=r[1],r=i;break}if(r&&s.label<r[2]){s.label=r[2],s.ops.push(i);break}r[2]&&s.ops.pop(),s.trys.pop();continue}i=t.call(e,s)}catch(e){i=[6,e],o=0}finally{n=r=0}if(5&i[0])throw i[1];return{value:i[0]?i[1]:void 0,done:!0}}([i,a])}}}(this,(function(o){switch(o.label){case 0:return o.trys.push([0,2,,3]),[4,Qu.Get(ye).SendAndWaitForResponseAsync(new mn(e),5e3,!1)];case 1:switch((n=o.sent()).Status){case ae.OK:return[2,new pn(un.Changed,"")];case ae.WrongData:if("DeviceNotFound"===n.Data)return null===(t=s.Log)||void 0===t||t.Error("Failed to change channel configuration, referenced device does not exist!"),[2,new pn(un.WrongData,"DeviceNotFound")];break;case ae.FatalError:return[2,new pn(un.UnknownError,"")]}return[3,3];case 2:return o.sent().message.includes("timeout")?[2,new pn(un.ControllerResponseTimeout,"")]:[3,3];case 3:return[2,new pn(un.Unknown,"")]}}))},new((r=void 0)||(r=Promise))((function(e,t){function s(e){try{c(i.next(e))}catch(e){t(e)}}function a(e){try{c(i.throw(e))}catch(e){t(e)}}function c(t){var n;t.done?e(t.value):(n=t.value,n instanceof r?n:new r((function(e){e(n)}))).then(s,a)}c((i=i.apply(n,o||[])).next())}))},Object.defineProperty(e.prototype,"Number",{get:function(){return this._number},set:function(e){this._number=e},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"Name",{get:function(){return this._name},set:function(e){this._name=e},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"IconName",{get:function(){return this._iconName},set:function(e){this._iconName=e},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"States",{get:function(){return this._states},set:function(e){this._states=e},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"State",{set:function(e){throw new Error("Method not implemented.")},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"Mode",{get:function(){return this._mode},set:function(e){this._mode=e},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ChannelGroups",{get:function(){return this._channelGroups},set:function(e){this._channelGroups=e},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"IsHidden",{get:function(){return this._isHidden},set:function(e){this._isHidden=e},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"AvailableTaskTypes",{get:function(){return this._availableTasksTypes},set:function(e){this._availableTasksTypes=e},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"AvailableResponseTypes",{get:function(){return this._availableResponseTypes},set:function(e){this._availableResponseTypes=e},enumerable:!1,configurable:!0}),e.prototype.OnTasksExecutionChangeEvent=function(){return this._onTasksExecutionChangedEvent},e.prototype.ExecuteTaskAsync=function(e){return null!=this._device?Qu.Get(Mn).ExecuteDeviceTaskAsync(this._device,e):Promise.resolve(hn.Failed)},e}(),vn=function(){this.Channel=0,this.ChannelName="",this.Configuration=be.Default,this.GroupsGuids=[],this.IconName="",this.Hidden=!1},mn=function(e){function t(t){var n=e.call(this)||this;return n.Resource="/devices/device/channel/configuration",n.Method=ce.Put,n.Data=t,n}return gn(t,e),t}(ve),_n=function(){var e=function(t,n){return e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])},e(t,n)};return function(t,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function o(){this.constructor=t}e(t,n),t.prototype=null===n?Object.create(n):(o.prototype=n.prototype,new o)}}(),bn=function(){function e(){var e=this;this._onDeviceStateChangedEvent=new r,this._onDeviceTasksExecutionChangedOnChannelsEvent=new r,this._serialNumber=null,this._model=null,this._modelGuid=null,this._manufacturerGuid=null,this._isVirtual=!1,this._isEnabled=!1,this._deviceState=De.Working,this._deviceType=Oe.Unknown,this._communicationWay=Ie.OneWay,this._availableTasksTypes=[],this._availableResponseTypes=[],this._channels=[];var t=Qu.Get(Mn),n=this._onDeviceStateChangedEvent,o=this._onDeviceTasksExecutionChangedOnChannelsEvent;t.OnDeviceStateChangedEvent().Subscribe((function(t){t[0].Guid==e._guid&&n.Invoke(t[1])})),t.OnDevicesTasksExecutionChangeEvent().Subscribe((function(t){o.Invoke(t.filter((function(t){return t.DeviceGuid==e._guid})).map((function(e){return e.Channel})))}))}return e.prototype.RemoveDeviceAsync=function(){return Qu.Get(Mn).RemoveDeviceAsync(this)},e.prototype.ExecuteDeviceTaskAsync=function(e){return Qu.Get(Mn).ExecuteDeviceTaskAsync(this,e)},e.prototype.OnDeviceTasksExecutionChangedOnChannelsEvent=function(){return this._onDeviceTasksExecutionChangedOnChannelsEvent},e.prototype.OnDeviceStateChangedEvent=function(){return this._onDeviceStateChangedEvent},Object.defineProperty(e.prototype,"Guid",{get:function(){return null==this._guid?"":this._guid},set:function(e){this._guid=e},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"Name",{get:function(){return null==this._name?"":this._name},set:function(e){this._name=e},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ChannelsAmount",{get:function(){return null==this._channelsAmount?0:this._channelsAmount},set:function(e){this._channelsAmount=e},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"SerialNumber",{get:function(){return this._serialNumber},set:function(e){this._serialNumber=e},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"Model",{get:function(){return this._model},set:function(e){this._model=e},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ModelGuid",{get:function(){return this._modelGuid},set:function(e){this._modelGuid=e},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ManufacturerGuid",{get:function(){return this._manufacturerGuid},set:function(e){this._manufacturerGuid=e},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"IsVirtual",{get:function(){return this._isVirtual},set:function(e){this._isVirtual=e},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"IsEnabled",{get:function(){return this._isEnabled},set:function(e){this._isEnabled=e},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"DeviceState",{get:function(){return this._deviceState},set:function(e){this._deviceState=e},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"DeviceType",{get:function(){return this._deviceType},set:function(e){this._deviceType=e},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"CommunicationWay",{get:function(){return this._communicationWay},set:function(e){this._communicationWay=e},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"AvailableTaskTypes",{get:function(){return this._availableTasksTypes},set:function(e){this._availableTasksTypes=e},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"AvailableResponseTypes",{get:function(){return this._availableResponseTypes},set:function(e){this._availableResponseTypes=e},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"Channels",{get:function(){return this._channels},enumerable:!1,configurable:!0}),e.prototype.ChangeDeviceNameAsync=function(e){return t=this,n=void 0,r=function(){var t;return function(e,t){var n,o,r,i,s={label:0,sent:function(){if(1&r[0])throw r[1];return r[1]},trys:[],ops:[]};return i={next:a(0),throw:a(1),return:a(2)},"function"==typeof Symbol&&(i[Symbol.iterator]=function(){return this}),i;function a(i){return function(a){return function(i){if(n)throw new TypeError("Generator is already executing.");for(;s;)try{if(n=1,o&&(r=2&i[0]?o.return:i[0]?o.throw||((r=o.return)&&r.call(o),0):o.next)&&!(r=r.call(o,i[1])).done)return r;switch(o=0,r&&(i=[2&i[0],r.value]),i[0]){case 0:case 1:r=i;break;case 4:return s.label++,{value:i[1],done:!1};case 5:s.label++,o=i[1],i=[0];continue;case 7:i=s.ops.pop(),s.trys.pop();continue;default:if(!((r=(r=s.trys).length>0&&r[r.length-1])||6!==i[0]&&2!==i[0])){s=0;continue}if(3===i[0]&&(!r||i[1]>r[0]&&i[1]<r[3])){s.label=i[1];break}if(6===i[0]&&s.label<r[1]){s.label=r[1],r=i;break}if(r&&s.label<r[2]){s.label=r[2],s.ops.push(i);break}r[2]&&s.ops.pop(),s.trys.pop();continue}i=t.call(e,s)}catch(e){i=[6,e],o=0}finally{n=r=0}if(5&i[0])throw i[1];return{value:i[0]?i[1]:void 0,done:!0}}([i,a])}}}(this,(function(n){switch(n.label){case 0:return n.trys.push([0,2,,3]),[4,Qu.Get(ye).SendAndWaitForResponseAsync(new Sn(this,e),5e3,!1)];case 1:switch((t=n.sent()).Status){case ae.OK:return[2,new pn(un.Changed,"")];case ae.WrongData:if("DeviceNotFound"==t.Data)return[2,new pn(un.Failed,"DeviceNotFound")];break;case ae.NoPermissionsToCallGivenResource:return[2,new pn(un.NoPermissions,"")]}return[3,3];case 2:return n.sent().message.includes("timeout")?[2,new pn(un.ControllerResponseTimeout,"")]:[2,new pn(un.UnknownError,"")];case 3:return[2,new pn(un.Unknown,"")]}}))},new((o=void 0)||(o=Promise))((function(e,i){function s(e){try{c(r.next(e))}catch(e){i(e)}}function a(e){try{c(r.throw(e))}catch(e){i(e)}}function c(t){var n;t.done?e(t.value):(n=t.value,n instanceof o?n:new o((function(e){e(n)}))).then(s,a)}c((r=r.apply(t,n||[])).next())}));var t,n,o,r},e.prototype.ExecuteTaskAsync=function(e){return Qu.Get(Mn).ExecuteDeviceTaskAsync(this,e)},e}(),Sn=function(e){function t(t,n){var o=e.call(this)||this;o.Resource="/devices/device/name",o.Method=ce.Put;var r=new Tn;return r.DeviceGuid=t.Guid,r.Name=n,o.Data=r,o}return _n(t,e),t}(ve),Tn=function(){this.DeviceGuid="",this.Name=""};!function(e){e[e.TurnOn=0]="TurnOn",e[e.TurnOff=1]="TurnOff",e[e.ToggleState=2]="ToggleState",e[e.SetBlindPosition=3]="SetBlindPosition",e[e.SetLightColor=4]="SetLightColor",e[e.SetLightTemperature=5]="SetLightTemperature",e[e.SetLightBrightness=6]="SetLightBrightness",e[e.SetTemperature=7]="SetTemperature",e[e.GetState=8]="GetState",e[e.TurnOnWithTimeout=9]="TurnOnWithTimeout",e[e.SetLightBrightnessDynamicly=10]="SetLightBrightnessDynamicly",e[e.IdentifyDevice=11]="IdentifyDevice",e[e.SetBlindOpenCloseTime=12]="SetBlindOpenCloseTime",e[e.SetBlindMicroventilation=13]="SetBlindMicroventilation",e[e.GatewayPulse=25]="GatewayPulse",e[e.GatePulse=26]="GatePulse",e[e.SetFacadePositionAndTilt=29]="SetFacadePositionAndTilt"}(yn||(yn={}));var En,Cn,An,kn=function(){function e(){this._taskType=Ae.GetChannelsState,this._featureType=yn.GetState,this._channel=0,this._guid="",this._deviceGuid=""}return Object.defineProperty(e.prototype,"TaskType",{get:function(){return this._taskType},set:function(e){this._taskType=e},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"FeatureType",{get:function(){return this._featureType},set:function(e){this._featureType=e},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"Guid",{get:function(){return this._guid},set:function(e){this._guid=e},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"DeviceGuid",{get:function(){return this._deviceGuid},set:function(e){this._deviceGuid=e},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"Channel",{get:function(){return this._channel},set:function(e){this._channel=e},enumerable:!1,configurable:!0}),e}(),Pn=function(){var e=function(t,n){return e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])},e(t,n)};return function(t,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function o(){this.constructor=t}e(t,n),t.prototype=null===n?Object.create(n):(o.prototype=n.prototype,new o)}}();Pn((function(){var e=Cn.call(this)||this;return e.Temperature=0,e.FeatureType=yn.SetTemperature,e.TaskType=Ae.SetTemperature,e}),Cn=kn),function(e){Pn((function(){var t=e.call(this)||this;return t.FeatureType=yn.TurnOff,t.TaskType=Ae.TurnOff,t}),e)}(kn),function(e){Pn((function(){var t=e.call(this)||this;return t.FeatureType=yn.TurnOn,t.TaskType=Ae.TurnOn,t}),e)}(kn),function(e){Pn((function(){var t=e.call(this)||this;return t.Brightness=0,t.FeatureType=yn.SetLightBrightness,t.TaskType=Ae.SetLightBrightness,t}),e)}(kn),function(e){Pn((function(){var t=e.call(this)||this;return t.FeatureType=yn.ToggleState,t.TaskType=Ae.TogleState,t}),e)}(kn),function(e){Pn((function(){var t=e.call(this)||this;return t.R=0,t.G=0,t.B=0,t.FeatureType=yn.SetLightColor,t.TaskType=Ae.SetLightColor,t}),e)}(kn),function(e){Pn((function(){var t=e.call(this)||this;return t.Temperature=0,t.FeatureType=yn.SetLightTemperature,t.TaskType=Ae.SetLightTemperature,t}),e)}(kn),function(e){Pn((function(){var t=e.call(this)||this;return t.Action=En.Stop,t.Position=0,t.FeatureType=yn.SetBlindPosition,t.TaskType=Ae.SetBlindPosition,t}),e)}(kn),function(e){e[e.Open=0]="Open",e[e.Close=1]="Close",e[e.Stop=2]="Stop",e[e.Percentage=3]="Percentage"}(En||(En={})),function(e){Pn((function(){var t=e.call(this)||this;return t.Action=An.Stop,t.Position=0,t.FeatureType=yn.SetBlindPosition,t.TaskType=Ae.SetBlindPositionSimple,t}),e)}(kn),function(e){e[e.Open=0]="Open",e[e.Close=1]="Close",e[e.Stop=2]="Stop"}(An||(An={})),function(e){Pn((function(){var t=e.call(this)||this;return t.Brightness=0,t.FeatureType=yn.SetLightBrightnessDynamicly,t.TaskType=Ae.SetLightBrightnessDynamicly,t}),e)}(kn),function(e){Pn((function(){var t=e.call(this)||this;return t.FeatureType=yn.IdentifyDevice,t.TaskType=Ae.IdentifyDevice,t}),e)}(kn),function(e){Pn((function(){var t=e.call(this)||this;return t.Data=new In,t.FeatureType=yn.SetBlindOpenCloseTime,t.TaskType=Ae.SetBlindOpenCloseTime,t}),e)}(kn);var Dn,In=function(){this.Channel=0,this.CloseTime=0,this.OpenTime=0};(function(e){Pn((function(){var t=e.call(this)||this;return t.FeatureType=yn.GetState,t.TaskType=Ae.GetChannelsState,t}),e)})(kn),function(e){Pn((function(){var t=e.call(this)||this;return t.Position=0,t.FeatureType=yn.SetBlindMicroventilation,t.TaskType=Ae.SetBlindMicroventilation,t}),e)}(kn),function(e){Pn((function(){var t=e.call(this)||this;return t.FeatureType=yn.GatePulse,t.TaskType=Ae.ChangeGatewayPositionPulse,t}),e)}(kn),function(e){Pn((function(){var t=e.call(this)||this;return t.FeatureType=yn.GatewayPulse,t.TaskType=Ae.ChangeGatewayPositionPulse,t}),e)}(kn),function(e){Pn((function(){var t=e.call(this)||this;return t.FacadeAction=Dn.Stop,t.Tilt=0,t.Position=0,t.FeatureType=yn.SetFacadePositionAndTilt,t.TaskType=Ae.SetFacadePosition,t}),e)}(kn),function(e){e[e.Open=0]="Open",e[e.Close=1]="Close",e[e.Stop=2]="Stop",e[e.Percentage=3]="Percentage",e[e.Tilt=4]="Tilt",e[e.TiltAndPercentage=5]="TiltAndPercentage"}(Dn||(Dn={}));var On,Rn=function(){var e=function(t,n){return e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])},e(t,n)};return function(t,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function o(){this.constructor=t}e(t,n),t.prototype=null===n?Object.create(n):(o.prototype=n.prototype,new o)}}(),Nn=function(e,t,n,o){return new(n||(n=Promise))((function(r,i){function s(e){try{c(o.next(e))}catch(e){i(e)}}function a(e){try{c(o.throw(e))}catch(e){i(e)}}function c(e){var t;e.done?r(e.value):(t=e.value,t instanceof n?t:new n((function(e){e(t)}))).then(s,a)}c((o=o.apply(e,t||[])).next())}))},xn=function(e,t){var n,o,r,i,s={label:0,sent:function(){if(1&r[0])throw r[1];return r[1]},trys:[],ops:[]};return i={next:a(0),throw:a(1),return:a(2)},"function"==typeof Symbol&&(i[Symbol.iterator]=function(){return this}),i;function a(i){return function(a){return function(i){if(n)throw new TypeError("Generator is already executing.");for(;s;)try{if(n=1,o&&(r=2&i[0]?o.return:i[0]?o.throw||((r=o.return)&&r.call(o),0):o.next)&&!(r=r.call(o,i[1])).done)return r;switch(o=0,r&&(i=[2&i[0],r.value]),i[0]){case 0:case 1:r=i;break;case 4:return s.label++,{value:i[1],done:!1};case 5:s.label++,o=i[1],i=[0];continue;case 7:i=s.ops.pop(),s.trys.pop();continue;default:if(!((r=(r=s.trys).length>0&&r[r.length-1])||6!==i[0]&&2!==i[0])){s=0;continue}if(3===i[0]&&(!r||i[1]>r[0]&&i[1]<r[3])){s.label=i[1];break}if(6===i[0]&&s.label<r[1]){s.label=r[1],r=i;break}if(r&&s.label<r[2]){s.label=r[2],s.ops.push(i);break}r[2]&&s.ops.pop(),s.trys.pop();continue}i=t.call(e,s)}catch(e){i=[6,e],o=0}finally{n=r=0}if(5&i[0])throw i[1];return{value:i[0]?i[1]:void 0,done:!0}}([i,a])}}},Mn=function(){function e(){var n=this;this._devices=[],this._serviceName=(0,t.$)(e),this._onDevicesTasksChangedEvent=new r,this._onDeviceFoundEvent=new r,this._onDeviceRegisteredEvent=new r,this._onDeviceRemovedEvent=new r,this._onDeviceStateChangedEvent=new r,this._connection=null,this._fastStatesSync=!1,this._connection=Qu.Get(ye),this._connection.OnConnectionStateChangedEvent().Subscribe((function(e){return Nn(n,void 0,void 0,(function(){var t;return xn(this,(function(n){switch(n.label){case 0:return e===ie.Connected?[3,1]:[3,3];case 1:return t=this,[4,this.GetDevicesAsync()];case 2:return t._devices=n.sent(),[3,3];case 3:return[2]}}))}))})),this._connection.OnDataReceivedEvent().Subscribe((function(e){if("/info/devices/tasks"===e.Resource)n.ParseDeviceTaskInfo(e.Data);else if("/devices/blinds/times"===e.Resource);else if("/info/devices/device/found"===e.Resource)n.MapApiDevices(e.Data).forEach((function(e){var t;null===(t=s.Log)||void 0===t||t.Debug("Found device: ".concat(e.Name," guid: ").concat(e.Guid)),n._onDeviceFoundEvent.Invoke(e)}));else if("/info/devices/device/state/changed"===e.Resource){var t=e.Data,o=n._devices.filter((function(e){return e.Guid==t.DeviceGuid}));if(o.length>0){var r=o[0],i=n.MapApiDeviceStateToDeviceState(r,t);null!=i&&n._onDeviceStateChangedEvent.Invoke([r,i])}}else"/info/devices/device/registered"===e.Resource?n.MapApiDevices(e.Data).forEach((function(e){var t;null===(t=s.Log)||void 0===t||t.Debug("Registered device: ".concat(e.Name," guid: ").concat(e.Guid)),n._onDeviceRegisteredEvent.Invoke(e)})):"/info/devices/device/removed"===e.Resource&&n.MapApiDevices(e.Data).forEach((function(e){var t;null===(t=s.Log)||void 0===t||t.Debug("Removed device: ".concat(e.Name," guid: ").concat(e.Guid)),n._onDeviceRemovedEvent.Invoke(e)}))}))}return e.prototype.GetCurrentlyRunningTaksAsync=function(){var e;return Nn(this,void 0,void 0,(function(){var t;return xn(this,(function(n){switch(n.label){case 0:return[4,null===(e=this._connection)||void 0===e?void 0:e.SendAndWaitForResponseAsync(new Un,15e3,!1)];case 1:return(null==(t=n.sent())?void 0:t.Status)==ae.OK&&null!=t.Data&&this.ParseDeviceTaskInfo(t.Data),[2]}}))}))},e.prototype.ParseDeviceTaskInfo=function(e){var t=[];e.forEach((function(e){var n=e.split(";"),o=new xe;o.DeviceGuid=n[0],o.Channel=Number(n[1]),o.Status=_e.ExecutingTasks,t.push(o)})),this._onDevicesTasksChangedEvent.Invoke(t)},e.prototype.MapApiDeviceStateToDeviceState=function(e,t){var n;switch(t.state,t.DataType){case"ChannelOnOff":return new Le(t);case"DoorBell":return new We(t);case"ReedPosition":return new qe(t);case"BlindPosition":return new Ve(t);case"ButtonState":return new Je(t);case"LightColor":return new Qe(t);case"LightTemperature":return new et(t);case"LightBrightness":return new nt(t);case"TemperatureSensor":case"TemperatureState":case"MeasuredTemperature":return new rt(t);case"BatteryState":return new at(t);case"MeasuredBrightness":case"DeviceBrightnessState":return new ut(t);case"EnergyMeasuredPower":case"EnergyMeasuredCurrent":case"EnergyMeasuredVoltage":break;case"Energy":return new ft(t);case"DistanceSensor":return new pt(t);case"MovementSensor":return new wt(t);case"BlindsControlButton":return new _t(t);case"FacadeControlButton":return new Tt(t);case"SignalStrength":return new At(t);case"GatePosition":return new Dt(t);case"GatewayPosition":return new Rt(t);case"IBlindCalibrationStatus":case"BlindCalibration":return new Mt(t);case"HumiditySensor":return new Bt(t);case"VibrationSensor":return new $t(t);case"DigitalInputSensor":return new Ht(t);case"ConfigurationState":return new Vt(t);case"BlindOpenCloseTime":case"IBlindOpenCloseTime":return new Yt(t);case"IOvercurrentProtection":case"OvercurrentProtection":return new Qt(t);case"IOvercurrentProtectionThreshold":case"OvercurrentProtectionThreshold":return new en(t);case"FacadePosition":case"FacadeState":return new nn(t);case"CurrentWindThreshold":return new rn(t);case"CurrentLightThreshold":return new cn(t);case"WindSpeed":return new fn(t);default:null===(n=s.Log)||void 0===n||n.Debug("Not supported device state ".concat(t.DataType))}return null},e.prototype.GetServiceName=function(){return this._serviceName},e.prototype.SyncDevicesStatesAsync=function(){var e;return Nn(this,void 0,void 0,(function(){var t;return xn(this,(function(n){switch(n.label){case 0:return this._fastStatesSync?[4,null===(e=this._connection)||void 0===e?void 0:e.SendAndWaitForResponseAsync(new Fn,15e3,!1)]:[3,2];case 1:return[2,(null==(t=n.sent())?void 0:t.Status)==ae.OK];case 2:throw new Error("Precise, slow states synchronization is not implemented yet")}}))}))},e.prototype.OnDevicesTasksExecutionChangeEvent=function(){return this._onDevicesTasksChangedEvent},e.prototype.OnDeviceStateChangedEvent=function(){return this._onDeviceStateChangedEvent},e.prototype.OnDeviceRegisteredEvent=function(){return this._onDeviceRegisteredEvent},e.prototype.OnDeviceRemovedEvent=function(){return this._onDeviceRemovedEvent},e.prototype.OnDeviceFoundEvent=function(){return this._onDeviceFoundEvent},e.prototype.MapApiDevices=function(e){var t=[];return null==e?[]:(e.forEach((function(e){var n,o,r,i,a=new bn;a.Guid=e.Guid,a.Name=e.DeviceName,a.ChannelsAmount=e.ChannelsNumber,a.DeviceType=e.DeviceType,a.CommunicationWay=e.CommunicationWay,a.DeviceState=e.DeviceState,a.IsEnabled=e.IsEnabled,a.IsVirtual=e.IsVirtual,a.SerialNumber=e.DeviceSerialNumber,a.ManufacturerGuid=e.ManufacturerGuid,a.ModelGuid=e.DeviceModelGuid,a.Model=e.DeviceModel,a.Name=e.DeviceName;try{null===(n=e.AvailableTasks)||void 0===n||n.forEach((function(e){var t=new ke;if(a.CommunicationWay==Ie.OneWay)"IBlindPosition"===e&&(t.InterfaceType="IBlindPositionSimple");else switch(e){case"IGatePosition":t.InterfaceType="IGatePulse";break;case"IGatewayPosition":t.InterfaceType="IGatewayPulse";break;default:t.InterfaceType=e}a.AvailableTaskTypes.push(t)})),null===(o=e.AvailableResponses)||void 0===o||o.forEach((function(e){var t=new Re;t.InterfaceType=e,a.AvailableResponseTypes.push(t)})),null===(r=e.ChannelsConfiguration)||void 0===r||r.forEach((function(e){var t,n,o;try{var r=new wn;a.Channels.push(r),r.Number=e.Channel,r.Name=e.ChannelName,r.ChannelGroups=e.GroupsGuids,r.IconName=e.IconName,r.IsHidden=e.Hidden,null===(t=e.AvailableResponses)||void 0===t||t.forEach((function(e){var t=new Re;t.InterfaceType=e,r.AvailableResponseTypes.push(t)})),null===(n=e.AvailableTasks)||void 0===n||n.forEach((function(e){var t=new ke;t.InterfaceType=e,r.AvailableTaskTypes.push(t)}))}catch(e){null===(o=s.Log)||void 0===o||o.Error(e)}}))}catch(e){null===(i=s.Log)||void 0===i||i.Error(e)}t.push(a)})),this._devices=t,t)},e.prototype.GetDevicesAsync=function(){var t,n;return Nn(this,void 0,void 0,(function(){var o;return xn(this,(function(r){switch(r.label){case 0:return[4,null===(t=this._connection)||void 0===t?void 0:t.SendAndWaitForResponseAsync(new Gn,5e3,!0)];case 1:return null==(o=r.sent())?[2,[]]:o.Status==ae.OK&&null!=o.Data?[2,this.MapApiDevices(o.Data)]:(null===(n=s.Log)||void 0===n||n.Error(e,"Failed to get devices. ".concat(o.Status," ").concat(o.Data)),[2,[]])}}))}))},e.prototype.GetDevice=function(e){return this._devices.find((function(t){return t.Guid===e}))},e.prototype.FindDevicesAsync=function(){var e;return Nn(this,void 0,void 0,(function(){return xn(this,(function(t){switch(t.label){case 0:return[4,null===(e=this._connection)||void 0===e?void 0:e.SendAndWaitForResponseAsync(new Bn,35e3,!1)];case 1:return t.sent(),[2]}}))}))},e.prototype.StopSearchingForDevices=function(){var e;return Nn(this,void 0,void 0,(function(){return xn(this,(function(t){switch(t.label){case 0:return[4,null===(e=this._connection)||void 0===e?void 0:e.SendAndWaitForResponseAsync(new Ln,5e3,!1)];case 1:return t.sent(),[2]}}))}))},e.prototype.RegisterDeviceAsync=function(e){var t;return Nn(this,void 0,void 0,(function(){var n,o;return xn(this,(function(r){switch(r.label){case 0:return(n=new $n).Data=e.Guid,[4,null===(t=this._connection)||void 0===t?void 0:t.SendAndWaitForResponseAsync(n,1e4,!1)];case 1:return(null==(o=r.sent())?void 0:o.Status)==ae.OK?(this._devices.push(e),this._onDeviceRegisteredEvent.Invoke(e),[2,hn.Executed]):[2,hn.Failed]}}))}))},e.prototype.RemoveDeviceAsync=function(e){var t;return Nn(this,void 0,void 0,(function(){var n,o;return xn(this,(function(r){switch(r.label){case 0:return(n=new Wn).Data=e.Guid,[4,null===(t=this._connection)||void 0===t?void 0:t.SendAndWaitForResponseAsync(n,35e3,!1)];case 1:return(null==(o=r.sent())?void 0:o.Status)==ae.OK?(this._devices=this._devices.where((function(t){return t.Guid==e.Guid})).toArray(),this._onDeviceRemovedEvent.Invoke(e),[2,hn.Executed]):[2,hn.Failed]}}))}))},e.prototype.ExecuteDeviceTaskAsync=function(e,t){var n,o,r,i;return Nn(this,void 0,void 0,(function(){var e,a,c,l,u,h;return xn(this,(function(f){switch(f.label){case 0:switch(e=new Hn,(a=t).FeatureType){case yn.SetTemperature:e.Data=t.Temperature;break;case yn.SetLightBrightness:e.Data=t.Brightness;break;case yn.SetLightColor:e=new qn,c=t,e.R=c.R,e.G=c.G,e.B=c.B;break;case yn.SetLightTemperature:e.Data=t.Temperature;break;case yn.SetBlindPosition:switch(t.Action){case En.Open:e.Data=101;break;case En.Close:e.Data=102;break;case En.Stop:e.Data=103;break;case En.Percentage:e.Data=t.Position}break;case yn.SetLightBrightnessDynamicly:e.Data=t.Brightness;break;case yn.SetBlindOpenCloseTime:e.Data=t.Data;break;case yn.SetBlindMicroventilation:e.Data=t.Position;break;case yn.SetFacadePositionAndTilt:e=new zn,l=t,e.FacadeAction=l.FacadeAction,e.Tilt=l.Tilt,e.Position=l.Position}e.Channel=t.Channel,e.DeviceGuid=t.DeviceGuid,e.ControlFeature=a.FeatureType,f.label=1;case 1:return f.trys.push([1,3,,4]),[4,null===(n=this._connection)||void 0===n?void 0:n.SendAndWaitForResponseAsync(new jn(e),15e3,!1)];case 2:switch(null==(u=f.sent())?void 0:u.Status){case ae.OK:return[2,hn.Executed];case ae.WrongData:switch(u.Data){case"DeviceNotFound":return[2,hn.DeviceNotFound];case"DeviceResponseTimeout":return[2,hn.DeviceResponseTimeout]}break;case ae.Error:return null===(o=s.Log)||void 0===o||o.Error("Unknown error occured when trying to execute task on device. Error code: ".concat(u.Data)),[2,hn.Failed]}return[3,4];case 3:return(h=f.sent()).message.includes("timeout")?(null===(r=s.Log)||void 0===r||r.Error("Failed to get controller response in time.\n".concat(h)),[2,hn.ControllerResponseTimeout]):(null===(i=s.Log)||void 0===i||i.Error("Unknown error occured when trying to execute task on device.\n".concat(h)),[2,hn.Failed]);case 4:return[2,hn.Unknown]}}))}))},e}(),Gn=function(e){function t(){var t=e.call(this)||this;return t.Resource="/devices/list",t.Method=ce.Get,t}return Rn(t,e),t}(ve),Fn=function(e){function t(){var t=e.call(this)||this;return t.Resource="/devices/channels/states",t.Method=ce.Get,t}return Rn(t,e),t}(ve),Bn=function(e){function t(){var t=e.call(this)||this;return t.Resource="/devices/search",t.Method=ce.Post,t}return Rn(t,e),t}(ve),Ln=function(e){function t(){var t=e.call(this)||this;return t.Resource="/devices/search/stop",t.Method=ce.Post,t}return Rn(t,e),t}(ve),Un=(function(e){Rn((function(){var t=e.call(this)||this;return t.Resource="/devices/found/list",t.Method=ce.Get,t}),e)}(ve),function(e){function t(){var t=e.call(this)||this;return t.Resource="/devices/tasks",t.Method=ce.Get,t}return Rn(t,e),t}(ve)),$n=function(e){function t(){var t=e.call(this)||this;return t.Resource="/devices/device/pair",t.Method=ce.Put,t}return Rn(t,e),t}(ve),Wn=function(e){function t(){var t=e.call(this)||this;return t.Resource="/devices/device/unpair",t.Method=ce.Put,t}return Rn(t,e),t}(ve),jn=function(e){function t(t){var n=e.call(this)||this;return n.Resource="/devices/device/control",n.Method=ce.Post,n.Data=new Hn,n}return Rn(t,e),t}(ve),Hn=function(){this.DeviceGuid="",this.Channel=0,this.ControlFeature=yn.GetState},qn=function(e){function t(){var t=null!==e&&e.apply(this,arguments)||this;return t.R=0,t.G=0,t.B=0,t}return Rn(t,e),t}(Hn),zn=function(e){function t(){var t=null!==e&&e.apply(this,arguments)||this;return t.FacadeAction=Dn.Stop,t.Tilt=0,t.Position=0,t}return Rn(t,e),t}(Hn);!function(e){e[e.Unknown=0]="Unknown",e[e.WrongAuthData=1]="WrongAuthData",e[e.NoResponseFromController=2]="NoResponseFromController"}(On||(On={}));var Vn=function(){var e=function(t,n){return e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])},e(t,n)};return function(t,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function o(){this.constructor=t}e(t,n),t.prototype=null===n?Object.create(n):(o.prototype=n.prototype,new o)}}(),Kn=function(e,t,n,o){return new(n||(n=Promise))((function(r,i){function s(e){try{c(o.next(e))}catch(e){i(e)}}function a(e){try{c(o.throw(e))}catch(e){i(e)}}function c(e){var t;e.done?r(e.value):(t=e.value,t instanceof n?t:new n((function(e){e(t)}))).then(s,a)}c((o=o.apply(e,t||[])).next())}))},Jn=function(e,t){var n,o,r,i,s={label:0,sent:function(){if(1&r[0])throw r[1];return r[1]},trys:[],ops:[]};return i={next:a(0),throw:a(1),return:a(2)},"function"==typeof Symbol&&(i[Symbol.iterator]=function(){return this}),i;function a(i){return function(a){return function(i){if(n)throw new TypeError("Generator is already executing.");for(;s;)try{if(n=1,o&&(r=2&i[0]?o.return:i[0]?o.throw||((r=o.return)&&r.call(o),0):o.next)&&!(r=r.call(o,i[1])).done)return r;switch(o=0,r&&(i=[2&i[0],r.value]),i[0]){case 0:case 1:r=i;break;case 4:return s.label++,{value:i[1],done:!1};case 5:s.label++,o=i[1],i=[0];continue;case 7:i=s.ops.pop(),s.trys.pop();continue;default:if(!((r=(r=s.trys).length>0&&r[r.length-1])||6!==i[0]&&2!==i[0])){s=0;continue}if(3===i[0]&&(!r||i[1]>r[0]&&i[1]<r[3])){s.label=i[1];break}if(6===i[0]&&s.label<r[1]){s.label=r[1],r=i;break}if(r&&s.label<r[2]){s.label=r[2],s.ops.push(i);break}r[2]&&s.ops.pop(),s.trys.pop();continue}i=t.call(e,s)}catch(e){i=[6,e],o=0}finally{n=r=0}if(5&i[0])throw i[1];return{value:i[0]?i[1]:void 0,done:!0}}([i,a])}}},Yn=function(){function e(){this._onUserLoggedInEvent=new r,this._onUserLoggedOutEvent=new r,this._serviceName=(0,t.$)(e),this._user=null}return e.prototype.OnUserLoggedInEvent=function(){return this._onUserLoggedInEvent},e.prototype.OnUserLoggedOutEvent=function(){return this._onUserLoggedOutEvent},Object.defineProperty(e.prototype,"User",{get:function(){return this._user},enumerable:!1,configurable:!0}),e.prototype.UserLogOutAsync=function(){var e,t;return Kn(this,void 0,void 0,(function(){var n;return Jn(this,(function(o){switch(o.label){case 0:return(n=new ve).Resource="/users/user/logout",n.Method=ce.Put,[4,Qu.Get(ye).SendAndWaitForResponseAsync(n,5e3,!1)];case 1:return o.sent().Status==ae.OK?(this._onUserLoggedOutEvent.Invoke(this._user),null===(e=s.Log)||void 0===e||e.Debug("User has been logged out.")):null===(t=s.Log)||void 0===t||t.Debug("Failed to logout user!"),[2]}}))}))},e.prototype.UserLogInAsync=function(e,t){var n,o;return Kn(this,void 0,void 0,(function(){var r,i;return Jn(this,(function(a){switch(a.label){case 0:return[4,Qu.Get(ye).SendAndWaitForResponseAsync(new Qn(e,t),5e3,!1)];case 1:return r=a.sent(),null===(n=s.Log)||void 0===n||n.Debug("Did logging in succeded?: ".concat(r.Status==ae.OK)),r.Status==ae.OK&&null!=r.Data?(i=new Se,this._user=i,i.AccessLevel=r.Data.AccessLevel,i.Email=r.Data.Email,i.Gender=r.Data.Gender,i.Guid=r.Data.Guid,i.IsAccountOnline=r.Data.IsAccountOnline,i.Name=r.Data.Name,i.IsActive=r.Data.IsActive,i.IsBanned=r.Data.IsBanned,i.Phone=r.Data.Phone,i.Surname=r.Data.Surname,this._onUserLoggedInEvent.Invoke(this._user),[2,i]):(null===(o=s.Log)||void 0===o||o.Debug("User login response: ".concat(r.Data)),[2,On.WrongAuthData])}}))}))},e.prototype.GetServiceName=function(){return this._serviceName},e}(),Xn=function(e,t){this.Email="",this.Password="",this.Email=e,this.Password=t},Qn=function(e){function t(t,n){var o=e.call(this)||this;return o.Data=new Xn(t,n),o.Resource="/users/user/login",o.Method=ce.Put,o}return Vn(t,e),t}(ve),Zn=function(){var e=function(t,n){return e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])},e(t,n)};return function(t,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function o(){this.constructor=t}e(t,n),t.prototype=null===n?Object.create(n):(o.prototype=n.prototype,new o)}}(),eo=function(e,t,n,o){return new(n||(n=Promise))((function(r,i){function s(e){try{c(o.next(e))}catch(e){i(e)}}function a(e){try{c(o.throw(e))}catch(e){i(e)}}function c(e){var t;e.done?r(e.value):(t=e.value,t instanceof n?t:new n((function(e){e(t)}))).then(s,a)}c((o=o.apply(e,t||[])).next())}))},to=function(e,t){var n,o,r,i,s={label:0,sent:function(){if(1&r[0])throw r[1];return r[1]},trys:[],ops:[]};return i={next:a(0),throw:a(1),return:a(2)},"function"==typeof Symbol&&(i[Symbol.iterator]=function(){return this}),i;function a(i){return function(a){return function(i){if(n)throw new TypeError("Generator is already executing.");for(;s;)try{if(n=1,o&&(r=2&i[0]?o.return:i[0]?o.throw||((r=o.return)&&r.call(o),0):o.next)&&!(r=r.call(o,i[1])).done)return r;switch(o=0,r&&(i=[2&i[0],r.value]),i[0]){case 0:case 1:r=i;break;case 4:return s.label++,{value:i[1],done:!1};case 5:s.label++,o=i[1],i=[0];continue;case 7:i=s.ops.pop(),s.trys.pop();continue;default:if(!((r=(r=s.trys).length>0&&r[r.length-1])||6!==i[0]&&2!==i[0])){s=0;continue}if(3===i[0]&&(!r||i[1]>r[0]&&i[1]<r[3])){s.label=i[1];break}if(6===i[0]&&s.label<r[1]){s.label=r[1],r=i;break}if(r&&s.label<r[2]){s.label=r[2],s.ops.push(i);break}r[2]&&s.ops.pop(),s.trys.pop();continue}i=t.call(e,s)}catch(e){i=[6,e],o=0}finally{n=r=0}if(5&i[0])throw i[1];return{value:i[0]?i[1]:void 0,done:!0}}([i,a])}}},no=function(){function e(){var n=this;this._connection=null,this._session=null,this._localStorage=null,this._serviceName=(0,t.$)(e),this._onEnteredConfigurationEvent=new fe,this._onExitedConfigurationEvent=new fe,this._onConfigurationTimeCheckedEvent=new r,this._configurationTime=new Date,this._appEnteredConfigurationMode=!1,this._connection=Qu.Get(ye),this._session=Qu.Get(Yn),this._localStorage=Qu.Get(a),this._connection.OnDataReceivedEvent().Subscribe((function(e){"/info/configuration/mode/entry"==e.Resource?n._appEnteredConfigurationMode||n._onEnteredConfigurationEvent.Invoke():"/info/configuration/mode/exit"==e.Resource&&(n._appEnteredConfigurationMode||n._onExitedConfigurationEvent.Invoke())}))}return e.prototype.GetServiceName=function(){return this._serviceName},e.prototype.GetLastKnownConfigurationChangeTime=function(){var t,n=null===(t=this._localStorage)||void 0===t?void 0:t.Read(e,"last_configuration_time");return null!=n?new Date(n):new Date},e.prototype.SaveLastConfigurationChangeTime=function(t){var n;null===(n=this._localStorage)||void 0===n||n.Save(e,"last_configuration_time",t.toString())},e.prototype.EnterConfigurationModeAsync=function(){var e;return eo(this,void 0,void 0,(function(){return to(this,(function(t){switch(t.label){case 0:return this._appEnteredConfigurationMode=!0,[4,null===(e=this._connection)||void 0===e?void 0:e.SendAndWaitForResponseAsync(new oo,5e3,!1)];case 1:return t.sent(),[2]}}))}))},e.prototype.ExitConfigurationModeAsync=function(){var e;return eo(this,void 0,void 0,(function(){return to(this,(function(t){switch(t.label){case 0:return[4,null===(e=this._connection)||void 0===e?void 0:e.SendAndWaitForResponseAsync(new ro,5e3,!1)];case 1:return t.sent(),this._appEnteredConfigurationMode=!1,[2]}}))}))},e.prototype.OnEnteredConfigurationEvent=function(){return this._onEnteredConfigurationEvent},e.prototype.OnExitedConfigurationEvent=function(){return this._onExitedConfigurationEvent},e.prototype.OnConfigurationTimeCheckedEvent=function(){return this._onConfigurationTimeCheckedEvent},e.prototype.GetLastConfigurationChangeTimeAsync=function(){var e;return eo(this,void 0,void 0,(function(){var t;return to(this,(function(n){switch(n.label){case 0:return[4,null===(e=this._connection)||void 0===e?void 0:e.SendAndWaitForResponseAsync(new io,5e3,!1)];case 1:if(null==(t=n.sent())||(null==t?void 0:t.Status)!=ae.OK)throw new Error("Failed to get last configuration change time");return this._configurationTime=new Date(t.Data),[2,this._configurationTime]}}))}))},e.prototype.CheckIfConfigurationHasChangedAsync=function(){return eo(this,void 0,void 0,(function(){var e;return to(this,(function(t){switch(t.label){case 0:return[4,this.GetLastConfigurationChangeTimeAsync()];case 1:return e=t.sent(),this.GetLastKnownConfigurationChangeTime().toString()!=e.toString()?(this.SaveLastConfigurationChangeTime(e),this._onConfigurationTimeCheckedEvent.Invoke(e),[2,!0]):[2,!1]}}))}))},e}(),oo=function(e){function t(){var t=e.call(this)||this;return t.Resource="/system/configuration/mode/entry",t.Method=ce.Put,t}return Zn(t,e),t}(ve),ro=function(e){function t(){var t=e.call(this)||this;return t.Resource="/system/configuration/mode/exit",t.Method=ce.Put,t}return Zn(t,e),t}(ve),io=function(e){function t(){var t=e.call(this)||this;return t.Resource="/system/configuration/change/time",t.Method=ce.Get,t}return Zn(t,e),t}(ve);class so extends RangeError{constructor(e){super(`${e} was out of range. Must be non-negative and less than the size of the collection.`),this.paramName=e,this.name="ArgumentOutOfRangeException",this.stack=this.stack||(new Error).stack}}const ao=Object.freeze({MoreThanOneElement:"Sequence contains more than one element",MoreThanOneMatchingElement:"Sequence contains more than one matching element",NoElements:"Sequence contains no elements",NoMatch:"Sequence contains no matching element"});class co extends Error{constructor(e){super(e),this.name="InvalidOperationException",this.stack=this.stack||(new Error).stack}}const lo=(e,t)=>e===t;class uo extends Array{}class ho{constructor(e){this.iterator=e}[Symbol.asyncIterator](){return this.iterator()}}class fo{constructor(e){this.dataFunc=e}[Symbol.asyncIterator](){const{dataFunc:e}=this;return async function*(){if(1===e.type)for(const t of e.generator())yield t;else for(const t of await e.generator())yield t}()}}class po{constructor(e){this.iterator=e}[Symbol.iterator](){return this.iterator()}}const yo=e=>{var t;const n=uo.prototype,o=e.prototype,r=Object.getOwnPropertyNames(n);for(const e of r)o[e]=null!==(t=o[e])&&void 0!==t?t:n[e]},go=(e,t,n,o)=>{if(o){if(!n)throw new ReferenceError("TAccumulate function is undefined");return mo(e,t,n,o)}return n?vo(e,t,n):wo(e,t)},wo=(e,t)=>{let n;for(const o of e)n=n?t(n,o):o;if(void 0===n)throw new co(ao.NoElements);return n},vo=(e,t,n)=>{let o=t;for(const t of e)o=n(o,t);return o},mo=(e,t,n,o)=>{let r=t;for(const t of e)r=n(r,t);return o(r)},_o=(e,t)=>{for(const n of e)if(!1===t(n))return!1;return!0},bo=async(e,t)=>{for(const n of e)if(!1===await t(n))return!1;return!0},So=(e,t)=>t?Eo(e,t):To(e),To=e=>{for(const t of e)return!0;return!1},Eo=(e,t)=>{for(const n of e)if(!0===t(n))return!0;return!1},Co=async(e,t)=>{for(const n of e)if(!0===await t(n))return!0;return!1},Ao=e=>{if(Array.isArray(e)){if(0===e.length)throw new co(ao.NoElements);return new ho((async function*(){for await(const t of e)yield t}))}return new ho(e)},ko=e=>Ao((async function*(){for(const t of e)yield t})),Po=(e,t)=>new fo({generator:t,type:e}),Do=e=>Po(0,(async()=>{const t=[];for(const n of e)t.push(n);return t})),Io=(e,t)=>{let n=0,o=0;if(t)for(const r of e)n+=t(r),o+=1;else for(const t of e)n+=t,o+=1;if(0===o)throw new co(ao.NoElements);return n/o},Oo=async(e,t)=>{let n=0,o=0;for(const r of e)n+=await t(r),o+=1;if(0===o)throw new co(ao.NoElements);return n/o},Ro=(e,t)=>{if(t<1)throw new so("index");return new po((function*(){let n=[];for(const o of e)n.push(o),n.length===t&&(yield n,n=[]);n.length&&(yield n)}))},No=(e,t)=>new po((function*(){yield*e,yield*t})),xo=(e,t,n=lo)=>{for(const o of e)if(n(t,o))return!0;return!1},Mo=async(e,t,n)=>{for(const o of e)if(await n(t,o))return!0;return!1},Go=(e,t)=>t?Bo(e,t):Fo(e),Fo=e=>{let t=0;for(const n of e)t++;return t},Bo=(e,t)=>{let n=0;for(const o of e)!0===t(o)&&n++;return n},Lo=async(e,t)=>{let n=0;for(const o of e)!0===await t(o)&&n++;return n},Uo=(e,t)=>new po((function*(){let n=!1;for(const t of e)n=!0,yield t;n||(yield t)})),$o=(e,t=lo)=>new po((function*(){const n=[];for(const o of e)n.find((e=>t(e,o)))||(n.push(o),yield o)})),Wo=(e,t)=>Ao((async function*(){const n=[];e:for(const o of e){for(const e of n)if(await t(e,o))continue e;n.push(o),yield o}})),jo=(e,t)=>new po((function*(){for(const n of e)t(n),yield n})),Ho=(e,t)=>Ao((async function*(){for(const n of e)await t(n),yield n})),qo=(e,t)=>{if(t<0)throw new so("index");let n=0;for(const o of e)if(t===n++)return o;throw new so("index")},zo=(e,t)=>{let n=0;for(const o of e)if(t===n++)return o;return null},Vo=(e,t,n=lo)=>new po((function*(){const o=[...t];for(const t of e){let e=!1;for(let r=0;r<o.length;r++)if(!0===n(t,o[r])){e=!0;break}!1===e&&(yield t)}})),Ko=(e,t,n)=>Ao((async function*(){const o=[...t];for(const t of e){let e=!1;for(let r=0;r<o.length;r++){const i=o[r];if(!0===await n(t,i)){e=!0;break}}!1===e&&(yield t)}})),Jo=(e,t)=>t?Xo(e,t):Yo(e),Yo=e=>{const t=e[Symbol.iterator]().next();if(!0===t.done)throw new co(ao.NoElements);return t.value},Xo=(e,t)=>{for(const n of e)if(!0===t(n))return n;throw new co(ao.NoMatch)},Qo=async(e,t)=>{for(const n of e)if(!0===await t(n))return n;throw new co(ao.NoMatch)},Zo=(e,t)=>t?tr(e,t):er(e),er=e=>e[Symbol.iterator]().next().value||null,tr=(e,t)=>{for(const n of e)if(!0===t(n))return n;return null},nr=async(e,t)=>{for(const n of e)if(!0===await t(n))return n;return null};class or extends uo{constructor(e,t){super(1),this.key=e,this[0]=t}}const rr=(e,t,n)=>{let o;return o=n?((e,t,n)=>function*(){const o=new Array;for(const r of e){const e=t(r);let i=!1;for(let t=0;t<o.length;t++){const s=o[t];if(n(s.key,e)){s.push(r),i=!0;break}}!1===i&&o.push(new or(e,r))}for(const e of o)yield e})(e,t,n):((e,t)=>function*(){const n={};for(const o of e){const e=t(o),r=n[e];r?r.push(o):n[e]=new or(e,o)}for(const e in n)yield n[e]})(e,t),new po(o)},ir=(e,t,n)=>n?ar(e,t,n):sr(e,t),sr=(e,t)=>Ao((async function*(){const n={};for(const o of e){const e=await t(o),r=n[e];r?r.push(o):n[e]=new or(e,o)}for(const e in n)yield n[e]})),ar=(e,t,n)=>Ao((async function*(){const o=new Array;for(const r of e){const e=await t(r);let i=!1;for(let t=0;t<o.length;t++){const s=o[t];if(!0===await n(s.key,e)){s.push(r),i=!0;break}}!1===i&&o.push(new or(e,r))}for(const e of o)yield e})),cr=(e,t,n,o)=>o?((e,t,n,o)=>new po((function*(){const r=new Array;for(const i of e){const e=t(i);let s=!1;for(let t=0;t<r.length;t++){const a=r[t];if(o(a.key,e)){a.push(n(i)),s=!0;break}}if(!1===s){const t=n(i);r.push(new or(e,t))}}for(const e of r)yield e})))(e,t,n,o):((e,t,n)=>new po((function*(){const o={};for(const r of e){const e=t(r),i=o[e],s=n(r);i?i.push(s):o[e]=new or(e,s)}for(const e in o)yield o[e]})))(e,t,n),lr=(e,t,n,o,r,i)=>{const s=i?ur(e,t,n,o,r,i):hr(e,t,n,o,r);return new po(s)},ur=(e,t,n,o,r,i)=>function*(){var s;const a=[];for(const e of t){const t=o(e),n=a.find((e=>i(e.key,t)));n?n.values.push(e):a.push({key:t,values:[e]})}for(const t of e){const e=n(t),o=null!==(s=a.find((t=>i(t.key,e))))&&void 0!==s?s:{key:e,values:[]};yield r(t,o.values)}},hr=(e,t,n,o,r)=>function*(){var i;const s=new Map;for(const e of t){const t=o(e),n=s.get(t);n?n.push(e):s.set(t,[e])}for(const t of e){const e=n(t),o=null!==(i=s.get(e))&&void 0!==i?i:[];yield r(t,o)}},fr=(e,t,n,o,r,i)=>{const s=i?dr(e,t,n,o,r,i):pr(e,t,n,o,r);return Ao(s)},dr=(e,t,n,o,r,i)=>async function*(){var s;const a=[];for(const e of t){const t=await o(e),n=a.find((e=>i(e.key,t)));n?n.values.push(e):a.push({key:t,values:[e]})}for(const t of e){const e=await n(t),o=null!==(s=a.find((t=>i(t.key,e))))&&void 0!==s?s:{key:e,values:[]};yield r(t,o.values)}},pr=(e,t,n,o,r)=>async function*(){var i;const s=new Map;for(const e of t){const t=await o(e),n=s.get(t);n?n.push(e):s.set(t,[e])}for(const t of e){const e=await n(t),o=null!==(i=s.get(e))&&void 0!==i?i:[];yield r(t,o)}},yr=(e,t,n=lo)=>new po((function*(){const o=[...e.distinct(n)];if(0===o.length)return;const r=[...t];for(let e=0;e<o.length;e++){const t=o[e];for(let e=0;e<r.length;e++)if(!0===n(t,r[e])){yield t;break}}})),gr=(e,t,n)=>Ao((async function*(){const o=[];for await(const t of e.distinctAsync(n))o.push(t);if(0===o.length)return;const r=[...t];for(let e=0;e<o.length;e++){const t=o[e];for(let e=0;e<r.length;e++){const o=r[e];if(!0===await n(t,o)){yield t;break}}}})),wr=(e,t,n,o,r,i=lo)=>new po((function*(){const s=[...t];for(const t of e){const e=n(t);for(const n of s){const s=o(n);!0===i(e,s)&&(yield r(t,n))}}})),vr=(e,t)=>t?_r(e,t):mr(e),mr=e=>{let t;for(const n of e)t=n;if(!t)throw new co(ao.NoElements);return t},_r=(e,t)=>{let n;for(const o of e)!0===t(o)&&(n=o);if(!n)throw new co(ao.NoMatch);return n},br=async(e,t)=>{let n;for(const o of e)!0===await t(o)&&(n=o);if(!n)throw new co(ao.NoMatch);return n},Sr=(e,t)=>t?Er(e,t):Tr(e),Tr=e=>{let t=null;for(const n of e)t=n;return t},Er=(e,t)=>{let n=null;for(const o of e)!0===t(o)&&(n=o);return n},Cr=async(e,t)=>{let n=null;for(const o of e)!0===await t(o)&&(n=o);return n},Ar=(e,t)=>t?Pr(e,t):kr(e),kr=e=>{let t=null;for(const n of e)t=Math.max(t||Number.NEGATIVE_INFINITY,n);if(null===t)throw new co(ao.NoElements);return t},Pr=(e,t)=>{let n=null;for(const o of e)n=Math.max(n||Number.NEGATIVE_INFINITY,t(o));if(null===n)throw new co(ao.NoElements);return n},Dr=async(e,t)=>{let n=null;for(const o of e)n=Math.max(n||Number.NEGATIVE_INFINITY,await t(o));if(null===n)throw new co(ao.NoElements);return n},Ir=(e,t)=>t?Rr(e,t):Or(e),Or=e=>{let t=null;for(const n of e)t=Math.min(t||Number.POSITIVE_INFINITY,n);if(null===t)throw new co(ao.NoElements);return t},Rr=(e,t)=>{let n=null;for(const o of e)n=Math.min(n||Number.POSITIVE_INFINITY,t(o));if(null===n)throw new co(ao.NoElements);return n},Nr=async(e,t)=>{let n=null;for(const o of e)n=Math.min(n||Number.POSITIVE_INFINITY,await t(o));if(null===n)throw new co(ao.NoElements);return n},xr=(e,t)=>{const n="string"==typeof t?e=>typeof e===t:e=>e instanceof t;return new po((function*(){for(const t of e)n(t)&&(yield t)}))};async function*Mr(e,t,n,o){const r=await(async(e,t)=>{const n=new Map;for(const o of e){const e=await t(o),r=n.get(e);r?r.push(o):n.set(e,[o])}return n})(e,t),i=[...r.keys()].sort(o||void 0);if(n)for(let e=0;e<i.length;e++)yield r.get(i[e]);else for(let e=i.length-1;e>=0;e--)yield r.get(i[e])}function*Gr(e,t,n,o){const r=((e,t)=>{const n=new Map;for(const o of e){const e=t(o),r=n.get(e);r?r.push(o):n.set(e,[o])}return n})(e,t),i=[...r.keys()].sort(o||void 0);if(n)for(let e=0;e<i.length;e++)yield r.get(i[e]);else for(let e=i.length-1;e>=0;e--)yield r.get(i[e])}class Fr extends ho{constructor(e){super((async function*(){for await(const t of e())yield*t})),this.orderedPairs=e}static generateAsync(e,t,n,o){let r;return r=e instanceof Fr?async function*(){for await(const r of e.orderedPairs())yield*Mr(r,t,n,o)}:()=>async function*(e,t,n,o){const r=await(async(e,t)=>{const n=new Map;for await(const o of e){const e=await t(o),r=n.get(e);r?r.push(o):n.set(e,[o])}return n})(e,t),i=[...r.keys()].sort(o||void 0);if(n)for(let e=0;e<i.length;e++)yield r.get(i[e]);else for(let e=i.length-1;e>=0;e--)yield r.get(i[e])}(e,t,n,o),new Fr(r)}static generate(e,t,n,o){let r;return r=e instanceof Fr?async function*(){for await(const r of e.orderedPairs())yield*Gr(r,t,n,o)}:()=>async function*(e,t,n,o){const r=await(async(e,t)=>{const n=new Map;for await(const o of e){const e=t(o),r=n.get(e);r?r.push(o):n.set(e,[o])}return n})(e,t),i=[...r.keys()].sort(o||void 0);if(n)for(let e=0;e<i.length;e++)yield r.get(i[e]);else for(let e=i.length-1;e>=0;e--)yield r.get(i[e])}(e,t,n,o),new Fr(r)}thenBy(e,t){return Fr.generate(this,e,!0,t)}thenByAsync(e,t){return Fr.generateAsync(this,e,!0,t)}thenByDescending(e,t){return Fr.generate(this,e,!1,t)}thenByDescendingAsync(e,t){return Fr.generateAsync(this,e,!1,t)}}function*Br(e,t,n,o){const r=((e,t)=>{const n=new Map;for(const o of e){const e=t(o),r=n.get(e);r?r.push(o):n.set(e,[o])}return n})(e,t),i=[...r.keys()].sort(o||void 0);if(n)for(let e=0;e<i.length;e++)yield r.get(i[e]);else for(let e=i.length-1;e>=0;e--)yield r.get(i[e])}async function*Lr(e,t,n,o){const r=await(async(e,t)=>{const n=new Map;for(const o of e){const e=await t(o),r=n.get(e);r?r.push(o):n.set(e,[o])}return n})(e,t),i=[...r.keys()].sort(o||void 0);if(n)for(let e=0;e<i.length;e++)yield r.get(i[e]);else for(let e=i.length-1;e>=0;e--)yield r.get(i[e])}class Ur extends po{constructor(e){super((function*(){for(const t of e())yield*t})),this.orderedPairs=e}static generate(e,t,n,o){let r;return r=e instanceof Ur?function*(){for(const r of e.orderedPairs())yield*Br(r,t,n,o)}:()=>Br(e,t,n,o),new Ur(r)}static generateAsync(e,t,n,o){let r;return r=e instanceof Ur?async function*(){for(const r of e.orderedPairs())yield*Lr(r,t,n,o)}:()=>Lr(e,t,n,o),new Fr(r)}thenBy(e,t){return Ur.generate(this,e,!0,t)}thenByAsync(e,t){return Ur.generateAsync(this,e,!0,t)}thenByDescending(e,t){return Ur.generate(this,e,!1,t)}thenByDescendingAsync(e,t){return Ur.generateAsync(this,e,!1,t)}}const $r=(e,t,n)=>Ur.generate(e,t,!0,n),Wr=(e,t,n)=>Ur.generateAsync(e,t,!0,n),jr=(e,t,n)=>Ur.generate(e,t,!1,n),Hr=(e,t,n)=>Ur.generateAsync(e,t,!1,n),qr=(e,t)=>{const n=[],o=[];for(const r of e)!0===t(r)?o.push(r):n.push(r);return[o,n]},zr=async(e,t)=>{const n=[],o=[];for(const r of e)!0===await t(r)?o.push(r):n.push(r);return[o,n]},Vr=e=>new po((function*(){const t=[...e];for(let e=t.length-1;e>=0;e--)yield t[e]})),Kr=(e,t)=>{if("function"==typeof t){const{length:n}=t;return 1===n?Jr(e,t):Yr(e,t)}return Xr(e,t)},Jr=(e,t)=>new po((function*(){for(const n of e)yield t(n)})),Yr=(e,t)=>new po((function*(){let n=0;for(const o of e)yield t(o,n),n++})),Xr=(e,t)=>new po((function*(){for(const n of e)yield n[t]})),Qr=(e,t)=>"function"==typeof t?1===t.length?Zr(e,t):ei(e,t):ti(e,t),Zr=(e,t)=>Ao((async function*(){for(const n of e)yield t(n)})),ei=(e,t)=>Ao((async function*(){let n=0;for(const o of e)yield t(o,n),n++})),ti=(e,t)=>Ao((async function*(){for(const n of e)yield n[t]})),ni=(e,t)=>"function"==typeof t?1===t.length?oi(e,t):ri(e,t):ii(e,t),oi=(e,t)=>new po((function*(){for(const n of e)for(const e of t(n))yield e})),ri=(e,t)=>new po((function*(){let n=0;for(const o of e){for(const e of t(o,n))yield e;n++}})),ii=(e,t)=>new po((function*(){for(const n of e)for(const e of n[t])yield e})),si=(e,t)=>1===t.length?ai(e,t):ci(e,t),ai=(e,t)=>Ao((async function*(){for(const n of e){const e=await t(n);for(const t of e)yield t}})),ci=(e,t)=>Ao((async function*(){let n=0;for(const o of e){const e=await t(o,n);for(const t of e)yield t;n++}})),li=(e,t,n=lo)=>{const o=e[Symbol.iterator](),r=t[Symbol.iterator]();let i=o.next(),s=r.next();for(;!i.done&&!s.done;){if(!n(i.value,s.value))return!1;i=o.next(),s=r.next()}return!0===i.done&&!0===s.done},ui=async(e,t,n)=>{const o=e[Symbol.iterator](),r=t[Symbol.iterator]();let i=o.next(),s=r.next();for(;!i.done&&!s.done;){if(!1===await n(i.value,s.value))return!1;i=o.next(),s=r.next()}return!0===i.done&&!0===s.done},hi=(e,t)=>t?di(e,t):fi(e),fi=e=>{let t=!1,n=null;for(const o of e){if(!0===t)throw new co(ao.MoreThanOneElement);t=!0,n=o}if(!1===t)throw new co(ao.NoElements);return n},di=(e,t)=>{let n=!1,o=null;for(const r of e)if(t(r)){if(!0===n)throw new co(ao.MoreThanOneMatchingElement);n=!0,o=r}if(!1===n)throw new co(ao.NoMatch);return o},pi=async(e,t)=>{let n=!1,o=null;for(const r of e)if(await t(r)){if(!0===n)throw new co(ao.MoreThanOneMatchingElement);n=!0,o=r}if(!1===n)throw new co(ao.NoMatch);return o},yi=(e,t)=>t?wi(e,t):gi(e),gi=e=>{let t=!1,n=null;for(const o of e){if(!0===t)throw new co(ao.MoreThanOneElement);t=!0,n=o}return n},wi=(e,t)=>{let n=!1,o=null;for(const r of e)if(t(r)){if(!0===n)throw new co(ao.MoreThanOneMatchingElement);n=!0,o=r}return o},vi=async(e,t)=>{let n=!1,o=null;for(const r of e)if(await t(r)){if(!0===n)throw new co(ao.MoreThanOneElement);n=!0,o=r}return o},mi=(e,t)=>new po((function*(){let n=0;for(const o of e)n++>=t&&(yield o)})),_i=(e,t)=>1===t.length?bi(e,t):Si(e,t),bi=(e,t)=>new po((function*(){let n=!0;for(const o of e)!1===n?yield o:!1===t(o)&&(n=!1,yield o)})),Si=(e,t)=>new po((function*(){let n=0,o=!0;for(const r of e)!1===o?yield r:!1===t(r,n)&&(o=!1,yield r),n++})),Ti=(e,t)=>1===t.length?Ei(e,t):Ci(e,t),Ei=(e,t)=>Ao((async function*(){let n=!0;for(const o of e)!1===n?yield o:!1===await t(o)&&(n=!1,yield o)})),Ci=(e,t)=>Ao((async function*(){let n=0,o=!0;for(const r of e)!1===o?yield r:!1===await t(r,n)&&(o=!1,yield r),n++})),Ai=(e,t)=>t?Pi(e,t):ki(e),ki=e=>{let t=0;for(const n of e)t+=n;return t},Pi=(e,t)=>{let n=0;for(const o of e)n+=t(o);return n},Di=async(e,t)=>{let n=0;for(const o of e)n+=await t(o);return n},Ii=(e,t)=>new po((function*(){let n=t>0?t:0;for(const t of e){if(0==n--)break;yield t}})),Oi=(e,t)=>1===t.length?Ri(e,t):Ni(e,t),Ri=(e,t)=>new po((function*(){for(const n of e){if(!t(n))break;yield n}})),Ni=(e,t)=>new po((function*(){let n=0;for(const o of e){if(!t(o,n++))break;yield o}})),xi=(e,t)=>1===t.length?Mi(e,t):Gi(e,t),Mi=(e,t)=>Ao((async function*(){for(const n of e){if(!await t(n))break;yield n}})),Gi=(e,t)=>Ao((async function*(){let n=0;for(const o of e){if(!await t(o,n++))break;yield o}})),Fi=e=>[...e],Bi=(e,t)=>{const n=new Map;for(const o of e){const e=t(o),r=n.get(e);void 0===r?n.set(e,[o]):r.push(o)}return n},Li=async(e,t)=>{const n=new Map;for(const o of e){const e=await t(o),r=n.get(e);void 0===r?n.set(e,[o]):r.push(o)}return n},Ui=(e,t)=>{const n={};for(const o of e)n[t(o)]=o;return n},$i=async(e,t)=>{const n={};for(const o of e)n[await t(o)]=o;return n},Wi=e=>new Set(e),ji=(e,t,n)=>n?qi(e,t,n):Hi(e,t),Hi=(e,t)=>new po((function*(){const n=new Set;for(const t of e)!1===n.has(t)&&(yield t,n.add(t));for(const e of t)!1===n.has(e)&&(yield e,n.add(e))})),qi=(e,t,n)=>new po((function*(){const o=[];for(const r of[e,t])for(const e of r){let t=!1;for(const r of o)if(!0===n(e,r)){t=!0;break}!1===t&&(yield e,o.push(e))}})),zi=(e,t,n)=>Ao((async function*(){const o=[];for(const r of[e,t])for(const e of r){let t=!1;for(const r of o)if(!0===await n(e,r)){t=!0;break}!1===t&&(yield e,o.push(e))}})),Vi=(e,t)=>1===t.length?Ki(e,t):Ji(e,t),Ki=(e,t)=>new po((function*(){for(const n of e)!0===t(n)&&(yield n)})),Ji=(e,t)=>new po((function*(){let n=0;for(const o of e)!0===t(o,n++)&&(yield o)})),Yi=(e,t)=>1===t.length?Xi(e,t):Qi(e,t),Xi=(e,t)=>Ao((async function*(){for(const n of e)!0===await t(n)&&(yield n)})),Qi=(e,t)=>Ao((async function*(){let n=0;for(const o of e)!0===await t(o,n++)&&(yield o)})),Zi=(e,t,n)=>n?ts(e,t,n):es(e,t),es=(e,t)=>new po((function*(){const n=e[Symbol.iterator](),o=t[Symbol.iterator]();for(;;){const e=n.next(),t=o.next();if(e.done||t.done)break;yield[e.value,t.value]}})),ts=(e,t,n)=>new po((function*(){const o=e[Symbol.iterator](),r=t[Symbol.iterator]();for(;;){const e=o.next(),t=r.next();if(e.done||t.done)break;yield n(e.value,t.value)}})),ns=(e,t,n)=>Ao((async function*(){const o=e[Symbol.iterator](),r=t[Symbol.iterator]();for(;;){const e=o.next(),t=r.next();if(e.done||t.done)break;yield n(e.value,t.value)}})),os=e=>{const t=e.prototype,n=(e,n)=>{const o=function(...t){return e(this,...t)};Object.defineProperty(o,"length",{value:e.length-1}),t[n]=o};n(go,"aggregate"),n(_o,"all"),n(bo,"allAsync"),n(So,"any"),n(Co,"anyAsync"),n(ko,"asAsync"),n(Do,"asParallel"),n(Io,"average"),n(Oo,"averageAsync"),n(Ro,"chunk"),n(No,"concatenate"),n(xo,"contains"),n(Mo,"containsAsync"),n(Go,"count"),n(Lo,"countAsync"),n(Uo,"defaultIfEmpty"),n($o,"distinct"),n(Wo,"distinctAsync"),n(jo,"each"),n(Ho,"eachAsync"),n(qo,"elementAt"),n(zo,"elementAtOrDefault"),n(Vo,"except"),n(Ko,"exceptAsync"),n(Jo,"first"),n(Qo,"firstAsync"),n(Zo,"firstOrDefault"),n(nr,"firstOrDefaultAsync"),n(rr,"groupBy"),n(ir,"groupByAsync"),n(cr,"groupByWithSel"),n(lr,"groupJoin"),n(fr,"groupJoinAsync"),n(yr,"intersect"),n(gr,"intersectAsync"),n(wr,"joinByKey"),n(vr,"last"),n(br,"lastAsync"),n(Sr,"lastOrDefault"),n(Cr,"lastOrDefaultAsync"),n(Ar,"max"),n(Dr,"maxAsync"),n(Ir,"min"),n(Nr,"minAsync"),n(xr,"ofType"),n($r,"orderBy"),n(Wr,"orderByAsync"),n(jr,"orderByDescending"),n(Hr,"orderByDescendingAsync"),n(Vr,"reverse"),n(Kr,"select"),n(Qr,"selectAsync"),n(ni,"selectMany"),n(si,"selectManyAsync"),n(li,"sequenceEquals"),n(ui,"sequenceEqualsAsync"),n(hi,"single"),n(pi,"singleAsync"),n(yi,"singleOrDefault"),n(vi,"singleOrDefaultAsync"),n(mi,"skip"),n(_i,"skipWhile"),n(Ti,"skipWhileAsync"),n(Ai,"sum"),n(Di,"sumAsync"),n(Ii,"take"),n(Oi,"takeWhile"),n(xi,"takeWhileAsync"),n(Fi,"toArray"),n(Bi,"toMap"),n(Li,"toMapAsync"),n(Ui,"toObject"),n($i,"toObjectAsync"),n(qr,"partition"),n(zr,"partitionAsync"),n(Wi,"toSet"),n(ji,"union"),n(zi,"unionAsync"),n(Vi,"where"),n(Yi,"whereAsync"),n(Zi,"zip"),n(ns,"zipAsync")},rs=(e,t,n,o)=>{if(o){if(!n)throw new ReferenceError("TAccumulate function is undefined");return as(e,t,n,o)}return n?ss(e,t,n):is(e,t)},is=async(e,t)=>{let n;for await(const o of e)n=n?t(n,o):o;if(void 0===n)throw new co(ao.NoElements);return n},ss=async(e,t,n)=>{let o=t;for await(const t of e)o=n(o,t);return o},as=async(e,t,n,o)=>{let r=t;for await(const t of e)r=n(r,t);return o(r)},cs=async(e,t)=>{for await(const n of e)if(!1===t(n))return!1;return!0},ls=async(e,t)=>{for await(const n of e)if(!1===await t(n))return!1;return!0},us=(e,t)=>t?fs(e,t):hs(e),hs=async e=>{for await(const t of e)return!0;return!1},fs=async(e,t)=>{for await(const n of e)if(!0===t(n))return!0;return!1},ds=async(e,t)=>{for await(const n of e)if(!0===await t(n))return!0;return!1},ps=e=>Po(0,(async()=>{const t=[];for await(const n of e)t.push(n);return t})),ys=async(e,t)=>{let n=0,o=0;if(t)for await(const r of e)n+=t(r),o+=1;else for await(const t of e)n+=t,o+=1;if(0===o)throw new co(ao.NoElements);return n/o},gs=async(e,t)=>{let n=0,o=0;for await(const r of e)n+=await t(r),o+=1;if(0===o)throw new co(ao.NoElements);return n/o},ws=(e,t)=>{if(t<1)throw new so("index");return new ho((async function*(){let n=[];for await(const o of e)n.push(o),n.length===t&&(yield n,n=[]);n.length&&(yield n)}))},vs=(e,t)=>new ho((async function*(){yield*e,yield*t})),ms=async(e,t,n=lo)=>{for await(const o of e)if(n(t,o))return!0;return!1},_s=async(e,t,n)=>{for await(const o of e)if(await n(t,o))return!0;return!1},bs=(e,t)=>t?Ts(e,t):Ss(e),Ss=async e=>{let t=0;for await(const n of e)t++;return t},Ts=async(e,t)=>{let n=0;for await(const o of e)!0===t(o)&&n++;return n},Es=async(e,t)=>{let n=0;for await(const o of e)!0===await t(o)&&n++;return n},Cs=(e,t)=>new ho((async function*(){let n=!1;for await(const t of e)n=!0,yield t;n||(yield t)})),As=(e,t=lo)=>new ho((async function*(){const n=[];for await(const o of e)n.find((e=>t(e,o)))||(n.push(o),yield o)})),ks=(e,t)=>new ho((async function*(){const n=[];e:for await(const o of e){for(const e of n)if(await t(e,o))continue e;n.push(o),yield o}})),Ps=(e,t)=>new ho((async function*(){for await(const n of e)t(n),yield n})),Ds=(e,t)=>new ho((async function*(){for await(const n of e)await t(n),yield n})),Is=async(e,t)=>{if(t<0)throw new so("index");let n=0;for await(const o of e)if(t===n++)return o;throw new so("index")},Os=async(e,t)=>{let n=0;for await(const o of e)if(t===n++)return o;return null},Rs=(e,t,n=lo)=>new ho((async function*(){const o=[];for await(const e of t)o.push(e);for await(const t of e){let e=!1;for(let r=0;r<o.length;r++){const i=o[r];if(!0===n(t,i)){e=!0;break}}!1===e&&(yield t)}})),Ns=(e,t,n)=>new ho((async function*(){const o=[];for await(const e of t)o.push(e);for await(const t of e){let e=!1;for(let r=0;r<o.length;r++){const i=o[r];if(!0===await n(t,i)){e=!0;break}}!1===e&&(yield t)}})),xs=(e,t)=>t?Gs(e,t):Ms(e),Ms=async e=>{const t=await e[Symbol.asyncIterator]().next();if(!0===t.done)throw new co(ao.NoElements);return t.value},Gs=async(e,t)=>{for await(const n of e)if(!0===t(n))return n;throw new co(ao.NoMatch)},Fs=async(e,t)=>{for await(const n of e)if(!0===await t(n))return n;throw new co(ao.NoMatch)},Bs=(e,t)=>t?Us(e,t):Ls(e),Ls=async e=>(await e[Symbol.asyncIterator]().next()).value||null,Us=async(e,t)=>{for await(const n of e)if(!0===t(n))return n;return null},$s=async(e,t)=>{for await(const n of e)if(!0===await t(n))return n;return null},Ws=(e,t,n)=>n?js(e,t,n):Hs(e,t),js=(e,t,n)=>new ho((async function*(){const o=new Array;for await(const r of e){const e=t(r);let i=!1;for(let t=0;t<o.length;t++){const s=o[t];if(n(s.key,e)){s.push(r),i=!0;break}}!1===i&&o.push(new or(e,r))}for(const e of o)yield e})),Hs=(e,t)=>new ho((async function*(){const n={};for await(const o of e){const e=t(o),r=n[e];r?r.push(o):n[e]=new or(e,o)}for(const e in n)yield n[e]})),qs=(e,t,n)=>n?Vs(e,t,n):zs(e,t),zs=(e,t)=>new ho((async function*(){const n={};for await(const o of e){const e=await t(o),r=n[e];r?r.push(o):n[e]=new or(e,o)}for(const e in n)yield n[e]})),Vs=(e,t,n)=>new ho((async function*(){const o=new Array;for await(const r of e){const e=await t(r);let i=!1;for(let t=0;t<o.length;t++){const s=o[t];if(!0===await n(s.key,e)){s.push(r),i=!0;break}}!1===i&&o.push(new or(e,r))}for(const e of o)yield e})),Ks=(e,t,n,o)=>o?Ys(e,t,n,o):Js(e,t,n),Js=(e,t,n)=>new ho((async function*(){const o={};for await(const r of e){const e=t(r),i=o[e],s=n(r);i?i.push(s):o[e]=new or(e,s)}for(const e in o)yield o[e]})),Ys=(e,t,n,o)=>new ho((async function*(){const r=new Array;for await(const i of e){const e=t(i);let s=!1;for(let t=0;t<r.length;t++){const a=r[t];if(o(a.key,e)){a.push(n(i)),s=!0;break}}if(!1===s){const t=n(i);r.push(new or(e,t))}}for(const e of r)yield e})),Xs=(e,t,n,o,r,i)=>{const s=i?Qs(e,t,n,o,r,i):Zs(e,t,n,o,r);return new ho(s)},Qs=(e,t,n,o,r,i)=>async function*(){var s;const a=[];for await(const e of t){const t=o(e),n=a.find((e=>i(e.key,t)));n?n.values.push(e):a.push({key:t,values:[e]})}for await(const t of e){const e=n(t),o=null!==(s=a.find((t=>i(t.key,e))))&&void 0!==s?s:{key:e,values:[]};yield r(t,o.values)}},Zs=(e,t,n,o,r)=>async function*(){var i;const s=new Map;for await(const e of t){const t=o(e),n=s.get(t);n?n.push(e):s.set(t,[e])}for await(const t of e){const e=n(t),o=null!==(i=s.get(e))&&void 0!==i?i:[];yield r(t,o)}},ea=(e,t,n,o,r,i)=>{const s=i?ta(e,t,n,o,r,i):na(e,t,n,o,r);return new ho(s)},ta=(e,t,n,o,r,i)=>async function*(){var s;const a=[];for await(const e of t){const t=await o(e),n=a.find((e=>i(e.key,t)));n?n.values.push(e):a.push({key:t,values:[e]})}for await(const t of e){const e=await n(t),o=null!==(s=a.find((t=>i(t.key,e))))&&void 0!==s?s:{key:e,values:[]};yield r(t,o.values)}},na=(e,t,n,o,r)=>async function*(){var i;const s=new Map;for await(const e of t){const t=await o(e),n=s.get(t);n?n.push(e):s.set(t,[e])}for await(const t of e){const e=await n(t),o=null!==(i=s.get(e))&&void 0!==i?i:[];yield r(t,o)}},oa=(e,t,n=lo)=>new ho((async function*(){const o=await e.distinct(n).toArray();if(0===o.length)return;const r=await t.toArray();for(let e=0;e<o.length;e++){const t=o[e];for(let e=0;e<r.length;e++){const o=r[e];if(!0===n(t,o)){yield t;break}}}})),ra=(e,t,n)=>new ho((async function*(){const o=await e.distinctAsync(n).toArray();if(0===o.length)return;const r=await t.toArray();for(let e=0;e<o.length;e++){const t=o[e];for(let e=0;e<r.length;e++){const o=r[e];if(!0===await n(t,o)){yield t;break}}}})),ia=(e,t,n,o,r,i=lo)=>new ho((async function*(){const s=[];for await(const e of t)s.push(e);for await(const t of e){const e=n(t);for(const n of s){const s=o(n);!0===i(e,s)&&(yield r(t,n))}}})),sa=(e,t)=>t?ca(e,t):aa(e),aa=async e=>{let t=null;for await(const n of e)t=n;if(!t)throw new co(ao.NoElements);return t},ca=async(e,t)=>{let n=null;for await(const o of e)!0===t(o)&&(n=o);if(!n)throw new co(ao.NoMatch);return n},la=async(e,t)=>{let n=null;for await(const o of e)!0===await t(o)&&(n=o);if(!n)throw new co(ao.NoMatch);return n},ua=(e,t)=>t?fa(e,t):ha(e),ha=async e=>{let t=null;for await(const n of e)t=n;return t},fa=async(e,t)=>{let n=null;for await(const o of e)!0===t(o)&&(n=o);return n},da=async(e,t)=>{let n=null;for await(const o of e)!0===await t(o)&&(n=o);return n},pa=(e,t)=>t?ga(e,t):ya(e),ya=async e=>{let t=null;for await(const n of e)t=Math.max(t||Number.NEGATIVE_INFINITY,n);if(null===t)throw new co(ao.NoElements);return t},ga=async(e,t)=>{let n=null;for await(const o of e)n=Math.max(n||Number.NEGATIVE_INFINITY,t(o));if(null===n)throw new co(ao.NoElements);return n},wa=async(e,t)=>{let n=null;for await(const o of e)n=Math.max(n||Number.NEGATIVE_INFINITY,await t(o));if(null===n)throw new co(ao.NoElements);return n},va=(e,t)=>t?_a(e,t):ma(e),ma=async e=>{let t=null;for await(const n of e)t=Math.min(t||Number.POSITIVE_INFINITY,n);if(null===t)throw new co(ao.NoElements);return t},_a=async(e,t)=>{let n=null;for await(const o of e)n=Math.min(n||Number.POSITIVE_INFINITY,t(o));if(null===n)throw new co(ao.NoElements);return n},ba=async(e,t)=>{let n=null;for await(const o of e)n=Math.min(n||Number.POSITIVE_INFINITY,await t(o));if(null===n)throw new co(ao.NoElements);return n},Sa=(e,t)=>{const n="string"==typeof t?e=>typeof e===t:e=>e instanceof t;return new ho((async function*(){for await(const t of e)n(t)&&(yield t)}))},Ta=(e,t,n)=>Fr.generate(e,t,!0,n),Ea=(e,t,n)=>Fr.generateAsync(e,t,!0,n),Ca=(e,t,n)=>Fr.generate(e,t,!1,n),Aa=(e,t,n)=>Fr.generateAsync(e,t,!1,n),ka=async(e,t)=>{const n=[],o=[];for await(const r of e)!0===t(r)?o.push(r):n.push(r);return[o,n]},Pa=async(e,t)=>{const n=[],o=[];for await(const r of e)!0===await t(r)?o.push(r):n.push(r);return[o,n]},Da=e=>new ho((async function*(){const t=[];for await(const n of e)t.push(n);for(let e=t.length-1;e>=0;e--)yield t[e]})),Ia=(e,t)=>"function"==typeof t?1===t.length?Oa(e,t):Ra(e,t):Na(e,t),Oa=(e,t)=>new ho((async function*(){for await(const n of e)yield t(n)})),Ra=(e,t)=>new ho((async function*(){let n=0;for await(const o of e)yield t(o,n),n++})),Na=(e,t)=>new ho((async function*(){for await(const n of e)yield n[t]})),xa=(e,t)=>"string"==typeof t?Ga(e,t):Ma(e,t),Ma=(e,t)=>new ho((async function*(){for await(const n of e)yield t(n)})),Ga=(e,t)=>new ho((async function*(){for await(const n of e)yield n[t]})),Fa=(e,t)=>"function"==typeof t?1===t.length?Ba(e,t):La(e,t):Ua(e,t),Ba=(e,t)=>new ho((async function*(){for await(const n of e)for(const e of t(n))yield e})),La=(e,t)=>new ho((async function*(){let n=0;for await(const o of e){for(const e of t(o,n))yield e;n++}})),Ua=(e,t)=>new ho((async function*(){for await(const n of e)for(const e of n[t])yield e})),$a=(e,t)=>1===t.length?new ho((async function*(){for await(const n of e){const e=await t(n);for(const t of e)yield t}})):new ho((async function*(){let n=0;for await(const o of e){const e=await t(o,n);for(const t of e)yield t;n++}})),Wa=async(e,t,n=lo)=>{const o=e[Symbol.asyncIterator](),r=t[Symbol.asyncIterator]();let i=await Promise.all([o.next(),r.next()]),s=i[0],a=i[1];for(;!s.done&&!a.done;){if(!n(s.value,a.value))return!1;i=await Promise.all([o.next(),r.next()]),s=i[0],a=i[1]}return!0===s.done&&!0===a.done},ja=async(e,t,n)=>{const o=e[Symbol.asyncIterator](),r=t[Symbol.asyncIterator]();let i=await Promise.all([o.next(),r.next()]),s=i[0],a=i[1];for(;!s.done&&!a.done;){if(!1===await n(s.value,a.value))return!1;i=await Promise.all([o.next(),r.next()]),s=i[0],a=i[1]}return!0===s.done&&!0===a.done},Ha=(e,t)=>t?za(e,t):qa(e),qa=async e=>{let t=!1,n=null;for await(const o of e){if(!0===t)throw new co(ao.MoreThanOneElement);t=!0,n=o}if(!1===t)throw new co(ao.NoElements);return n},za=async(e,t)=>{let n=!1,o=null;for await(const r of e)if(t(r)){if(!0===n)throw new co(ao.MoreThanOneMatchingElement);n=!0,o=r}if(!1===n)throw new co(ao.NoMatch);return o},Va=async(e,t)=>{let n=!1,o=null;for await(const r of e)if(await t(r)){if(!0===n)throw new co(ao.MoreThanOneMatchingElement);n=!0,o=r}if(!1===n)throw new co(ao.NoMatch);return o},Ka=(e,t)=>t?Ya(e,t):Ja(e),Ja=async e=>{let t=!1,n=null;for await(const o of e){if(!0===t)throw new co(ao.MoreThanOneElement);t=!0,n=o}return n},Ya=async(e,t)=>{let n=!1,o=null;for await(const r of e)if(t(r)){if(!0===n)throw new co(ao.MoreThanOneMatchingElement);n=!0,o=r}return o},Xa=async(e,t)=>{let n=!1,o=null;for await(const r of e)if(await t(r)){if(!0===n)throw new co(ao.MoreThanOneMatchingElement);n=!0,o=r}return o},Qa=(e,t)=>new ho((async function*(){let n=0;for await(const o of e)n++>=t&&(yield o)})),Za=(e,t)=>1===t.length?ec(e,t):tc(e,t),ec=(e,t)=>new ho((async function*(){let n=!0;for await(const o of e)!1===n?yield o:!1===t(o)&&(n=!1,yield o)})),tc=(e,t)=>new ho((async function*(){let n=0,o=!0;for await(const r of e)!1===o?yield r:!1===t(r,n)&&(o=!1,yield r),n++})),nc=(e,t)=>1===t.length?oc(e,t):rc(e,t),oc=(e,t)=>new ho((async function*(){let n=!0;for await(const o of e)!1===n?yield o:!1===await t(o)&&(n=!1,yield o)})),rc=(e,t)=>new ho((async function*(){let n=0,o=!0;for await(const r of e)!1===o?yield r:!1===await t(r,n)&&(o=!1,yield r),n++})),ic=(e,t)=>t?ac(e,t):sc(e),sc=async e=>{let t=0;for await(const n of e)t+=n;return t},ac=async(e,t)=>{let n=0;for await(const o of e)n+=t(o);return n},cc=async(e,t)=>{let n=0;for await(const o of e)n+=await t(o);return n},lc=(e,t)=>new ho((async function*(){let n=t>0?t:0;for await(const t of e){if(0==n--)break;yield t}})),uc=(e,t)=>1===t.length?hc(e,t):fc(e,t),hc=(e,t)=>new ho((async function*(){for await(const n of e){if(!t(n))break;yield n}})),fc=(e,t)=>new ho((async function*(){let n=0;for await(const o of e){if(!t(o,n++))break;yield o}})),dc=(e,t)=>1===t.length?pc(e,t):yc(e,t),pc=(e,t)=>new ho((async function*(){for await(const n of e){if(!await t(n))break;yield n}})),yc=(e,t)=>new ho((async function*(){let n=0;for await(const o of e){if(!await t(o,n++))break;yield o}})),gc=async e=>{const t=[];for await(const n of e)t.push(n);return t},wc=async(e,t)=>{const n=new Map;for await(const o of e){const e=t(o),r=n.get(e);void 0===r?n.set(e,[o]):r.push(o)}return n},vc=async(e,t)=>{const n=new Map;for await(const o of e){const e=await t(o),r=n.get(e);void 0===r?n.set(e,[o]):r.push(o)}return n},mc=async(e,t)=>{const n={};for await(const o of e)n[t(o)]=o;return n},_c=async(e,t)=>{const n={};for await(const o of e)n[await t(o)]=o;return n},bc=async e=>{const t=new Set;for await(const n of e)t.add(n);return t},Sc=(e,t,n)=>n?Ec(e,t,n):Tc(e,t),Tc=(e,t)=>new ho((async function*(){const n=new Set;for await(const t of e)!1===n.has(t)&&(yield t,n.add(t));for await(const e of t)!1===n.has(e)&&(yield e,n.add(e))})),Ec=(e,t,n)=>new ho((async function*(){const o=[];for(const r of[e,t])for await(const e of r){let t=!1;for(const r of o)if(!0===n(e,r)){t=!0;break}!1===t&&(yield e,o.push(e))}})),Cc=(e,t,n)=>new ho((async function*(){const o=[];for(const r of[e,t])for await(const e of r){let t=!1;for(const r of o)if(!0===await n(e,r)){t=!0;break}!1===t&&(yield e,o.push(e))}})),Ac=(e,t)=>1===t.length?kc(e,t):Pc(e,t),kc=(e,t)=>new ho((async function*(){for await(const n of e)!0===t(n)&&(yield n)})),Pc=(e,t)=>new ho((async function*(){let n=0;for await(const o of e)!0===t(o,n++)&&(yield o)})),Dc=(e,t)=>1===t.length?Ic(e,t):Oc(e,t),Ic=(e,t)=>new ho((async function*(){for await(const n of e)!0===await t(n)&&(yield n)})),Oc=(e,t)=>new ho((async function*(){let n=0;for await(const o of e)!0===await t(o,n++)&&(yield o)})),Rc=(e,t,n)=>n?xc(e,t,n):Nc(e,t),Nc=(e,t)=>new ho((async function*(){const n=e[Symbol.asyncIterator](),o=t[Symbol.asyncIterator]();for(;;){const[e,t]=await Promise.all([n.next(),o.next()]);if(e.done||t.done)break;yield[e.value,t.value]}})),xc=(e,t,n)=>new ho((async function*(){const o=e[Symbol.asyncIterator](),r=t[Symbol.asyncIterator]();for(;;){const[e,t]=await Promise.all([o.next(),r.next()]);if(e.done||t.done)break;yield n(e.value,t.value)}})),Mc=(e,t,n)=>new ho((async function*(){const o=e[Symbol.asyncIterator](),r=t[Symbol.asyncIterator]();for(;;){const e=await Promise.all([o.next(),r.next()]),t=e[0],i=e[1];if(t.done||i.done)break;yield n(t.value,i.value)}})),Gc=(e,t,n,o)=>{if(o){if(!n)throw new ReferenceError("TAccumulate function is undefined");return Lc(e,t,n,o)}return n?Bc(e,t,n):Fc(e,t)},Fc=async(e,t)=>{let n;for await(const o of e)n=n?t(n,o):o;if(void 0===n)throw new co(ao.NoElements);return n},Bc=async(e,t,n)=>{let o=t;for await(const t of e)o=n(o,t);return o},Lc=async(e,t,n,o)=>{let r=t;for await(const t of e)r=n(r,t);return o(r)},Uc=(e,t)=>{const n=e.dataFunc;switch(n.type){case 0:return{generator:()=>n.generator().then((e=>{const n=new Array(e.length);for(let o=0;o<e.length;o++)n[o]=t(e[o]);return n})),type:0};case 1:return{generator:()=>{const e=n.generator(),o=new Array(e.length);for(let n=0;n<e.length;n++)o[n]=e[n].then(t);return o},type:1};case 2:return{generator:async()=>{const e=await n.generator(),o=new Array(e.length);for(let n=0;n<e.length;n++)o[n]=e[n].then(t);return o},type:2}}},$c=(e,t)=>{const n=Uc(e,(e=>{if(!t(e))throw new Error(String(!1));return!0}));switch(n.type){case 0:return n.generator().then((()=>!0),(()=>!1));case 1:return Promise.all(n.generator()).then((()=>!0),(()=>!1));case 2:return n.generator().then(Promise.all.bind(Promise)).then((()=>!0),(()=>!1))}},Wc=(e,t)=>{const n=e.dataFunc;switch(n.type){case 0:return{generator:async()=>{const e=await n.generator(),o=new Array(e.length);for(let n=0;n<e.length;n++)o[n]=t(e[n]);return o},type:2};case 1:return{generator:()=>n.generator().map((async e=>{const n=await e;return await t(n)})),type:1};case 2:return{generator:async()=>(await n.generator()).map((e=>e.then(t))),type:2}}},jc=(e,t)=>{const n=Wc(e,(async e=>{if(!1===await t(e))throw new Error(String(!1));return!0}));switch(n.type){case 1:return Promise.all(n.generator()).then((()=>!0),(()=>!1));case 2:return n.generator().then(Promise.all.bind(Promise)).then((()=>!0),(()=>!1))}},Hc=(e,t)=>t?zc(e,t):qc(e),qc=async e=>{const t=e.dataFunc;let n;switch(t.type){case 1:return n=t.generator(),0!==n.length;case 0:case 2:return n=await t.generator(),0!==n.length}},zc=async(e,t)=>{const n=Uc(e,t);let o;switch(n.type){case 0:return o=await n.generator(),o.includes(!0);case 1:return o=await Promise.all(n.generator()),o.includes(!0);case 2:return o=await Promise.all(await n.generator()),o.includes(!0)}},Vc=async(e,t)=>{const n=Wc(e,t);let o;switch(n.type){case 1:return o=n.generator(),0!==o.length&&new Promise(((e,t)=>{let n=0;for(const r of o)r.then((t=>{n++,t?e(!0):n===o.length&&e(!1)}),t)}));case 2:return o=await n.generator(),0===Promise.length?!1:(await Promise.all(o)).includes(!0)}},Kc=e=>Ao((async function*(){for await(const t of e)yield t})),Jc=async e=>{switch(e.type){case 0:return await e.generator();case 1:return await Promise.all(e.generator());case 2:const t=await e.generator();return await Promise.all(t)}},Yc=async(e,t)=>{let n;n=t?Uc(e,t):e.dataFunc;const o=await Jc(n);if(0===o.length)throw new co(ao.NoElements);let r=0;for(const e of o)r+=e;return r/o.length},Xc=async(e,t)=>{const n=Wc(e,t),o=await Jc(n);if(0===o.length)throw new co(ao.NoElements);let r=0;for(const e of o)r+=e;return r/o.length},Qc=(e,t)=>{if(t<1)throw new so("index");let n;switch(e.dataFunc.type){case 1:const o=e.dataFunc.generator;n={type:1,generator:()=>{const e=[];let n=[];for(const r of o())n.push(r),n.length===t&&(e.push(Promise.all(n)),n=[]);return n.length&&e.push(Promise.all(n)),e}};break;case 2:const r=e.dataFunc.generator;n={type:2,generator:async()=>{const e=[];let n=[];for(const o of await r())n.push(o),n.length===t&&(e.push(Promise.all(n)),n=[]);return n.length&&e.push(Promise.all(n)),e}};break;case 0:const i=e.dataFunc.generator;n={type:0,generator:async()=>{const e=[];let n=[];for(const o of await i())n.push(o),n.length===t&&(e.push(n),n=[]);return n.length&&e.push(n),e}}}return new fo(n)},Zc=(e,t)=>new fo({generator:async()=>{const[n,o]=await Promise.all([e.toArray(),t.toArray()]);return[...n,...o]},type:0}),el=async(e,t,n=lo)=>{let o;switch(o=Uc(e,n?e=>n(t,e):e=>e===t),o.type){case 0:return(await o.generator()).some((e=>e));case 1:return(await Promise.all(o.generator())).some((e=>e));case 2:return(await Promise.all(await o.generator())).some((e=>e))}},tl=async(e,t,n)=>{const o=Wc(e,(e=>n(t,e)));switch(o.type){case 1:return(await Promise.all(o.generator())).some((e=>e));case 2:return(await Promise.all(await o.generator())).some((e=>e))}},nl=(e,t)=>t?rl(e,t):ol(e),ol=async e=>{const t=e.dataFunc;switch(t.type){case 0:case 2:return(await e.toArray()).length;case 1:return t.generator().length}},rl=async(e,t)=>{const n=await e.toArray();let o=0;for(let e=0;e<n.length;e++)!0===t(n[e])&&o++;return o},il=async(e,t)=>{const n=Wc(e,t);let o;switch(n.type){case 1:o=Promise.all(n.generator());break;case 2:o=Promise.all(await n.generator())}let r=0;for(const e of await o)e&&r++;return r},sl=(e,t)=>{const n=e.dataFunc,o=t instanceof Promise;let r;switch(n.type){case 0:r={generator:()=>n.generator().then((e=>e.length?e:o?t.then((e=>[e])):[t])),type:n.type};break;case 1:r={generator:()=>{const e=n.generator();return e.length?e:o?[t]:[Promise.resolve(t)]},type:n.type};break;case 2:r={generator:async()=>{const e=await n.generator();return e.length?e:o?[t]:[Promise.resolve(t)]},type:n.type}}return new fo(r)},al=(e,t=lo)=>new fo({generator:async()=>{const n=[];for(const o of await e.toArray())n.find((e=>t(e,o)))||n.push(o);return n},type:0}),cl=(e,t)=>new fo({generator:async()=>{const n=[];e:for(const o of await e.toArray()){for(const e of n)if(await t(e,o))continue e;n.push(o)}return n},type:0}),ll=(e,t)=>new fo(Uc(e,(e=>(t(e),e)))),ul=(e,t)=>{const n=Wc(e,(async e=>(await t(e),e)));return new fo(n)},hl=async(e,t)=>{if(t<0)throw new so("index");const n=e.dataFunc;switch(n.type){case 0:{const e=await n.generator();if(t>=e.length)throw new so("index");return e[t]}case 1:{const e=n.generator();if(t>=e.length)throw new so("index");return await e[t]}case 2:{const e=await n.generator();if(t>=e.length)throw new so("index");return await e[t]}}},fl=async(e,t)=>{const n=e.dataFunc;switch(n.type){case 0:{const e=await n.generator();return t>=e.length?null:e[t]}case 1:{const e=n.generator();return t>=e.length?null:await e[t]}case 2:{const e=await n.generator();return t>=e.length?null:await e[t]}}},dl=(e,t,n=lo)=>new fo({generator:async()=>{const[o,r]=await Promise.all([e.toArray(),t.toArray()]),i=[];for(const e of o){let t=!1;for(let o=0;o<r.length;o++){const i=r[o];if(!0===n(e,i)){t=!0;break}}!1===t&&i.push(e)}return i},type:0}),pl=(e,t,n)=>new fo({generator:async()=>{const[o,r]=await Promise.all([e.toArray(),t.toArray()]),i=[];for(const e of o){let t=!1;for(let o=0;o<r.length;o++){const i=r[o];if(!0===await n(e,i)){t=!0;break}}!1===t&&i.push(e)}return i},type:0}),yl=e=>Jc(e.dataFunc),gl=(e,t)=>t?vl(e,t):wl(e),wl=async e=>{const t=e.dataFunc;switch(t.type){case 0:{const e=await t.generator();if(0===e.length)throw new co(ao.NoElements);return e[0]}case 1:{const e=t.generator();if(0===e.length)throw new co(ao.NoElements);return await e[0]}case 2:{const e=await t.generator();if(0===e.length)throw new co(ao.NoElements);return await e[0]}}},vl=async(e,t)=>{const n=await yl(e);for(const e of n)if(!0===t(e))return e;throw new co(ao.NoMatch)},ml=async(e,t)=>{const n=await yl(e);for(const e of n)if(!0===await t(e))return e;throw new co(ao.NoMatch)},_l=(e,t)=>t?Sl(e,t):bl(e),bl=async e=>{const t=e.dataFunc;switch(t.type){case 0:{const e=await t.generator();return 0===e.length?null:e[0]}case 1:{const e=t.generator();return 0===e.length?null:await e[0]}case 2:{const e=await t.generator();return 0===e.length?null:await e[0]}}},Sl=async(e,t)=>{const n=await yl(e);for(const e of n)if(!0===t(e))return e;return null},Tl=async(e,t)=>{const n=await yl(e);for(const e of n)if(!0===await t(e))return e;return null},El=(e,t,n)=>n?Al(e,t,n):Cl(e,t),Cl=(e,t)=>new fo({generator:async()=>{const n={};for(const o of await e.toArray()){const e=t(o),r=n[e];r?r.push(o):n[e]=new or(e,o)}const o=new Array;for(const e in n)o.push(n[e]);return o},type:0}),Al=(e,t,n)=>new fo({generator:async()=>{const o=new Array;for(const r of await e.toArray()){const e=t(r);let i=!1;for(let t=0;t<o.length;t++){const s=o[t];if(n(s.key,e)){s.push(r),i=!0;break}}!1===i&&o.push(new or(e,r))}const r=new Array;for(const e of o)r.push(e);return r},type:0}),kl=(e,t,n)=>n?Pl(e,t,n):Dl(e,t),Pl=(e,t,n)=>new fo({generator:async()=>{const o=Wc(e,(async e=>[await t(e),e]));let r;switch(o.type){case 1:r=await Promise.all(o.generator());break;case 2:r=await Promise.all(await o.generator())}const i=new Array;for(const[e,t]of r){let o=!1;for(let r=0;r<i.length;r++){const s=i[r];if(!0===await n(s.key,e)){s.push(t),o=!0;break}}!1===o&&i.push(new or(e,t))}const s=new Array;for(const e of i)s.push(e);return s},type:0}),Dl=(e,t)=>new fo({generator:async()=>{const n=Wc(e,(async e=>[await t(e),e]));let o;switch(n.type){case 1:o=await Promise.all(n.generator());break;case 2:o=await Promise.all(await n.generator())}const r={};for(const[e,t]of o){const n=r[e];n?n.push(t):r[e]=new or(e,t)}const i=new Array;for(const e in r)i.push(r[e]);return i},type:0}),Il=(e,t,n,o)=>o?Ol(e,t,n,o):Rl(e,t,n),Ol=(e,t,n,o)=>new fo({generator:async()=>{const r=new Array;for await(const i of e){const e=t(i);let s=!1;for(let t=0;t<r.length;t++){const a=r[t];if(o(a.key,e)){a.push(n(i)),s=!0;break}}if(!1===s){const t=n(i);r.push(new or(e,t))}}const i=new Array;for(const e of r)i.push(e);return i},type:0}),Rl=(e,t,n)=>new fo({generator:async()=>{const o={};for(const r of await e.toArray()){const e=t(r),i=o[e],s=n(r);i?i.push(s):o[e]=new or(e,s)}const r=new Array;for(const e in o)r.push(o[e]);return r},type:0}),Nl=(e,t,n,o,r,i)=>{const s=i?xl(e,t,n,o,r,i):Ml(e,t,n,o,r);return new fo({generator:s,type:0})},xl=(e,t,n,o,r,i)=>async()=>{const s=[];for await(const e of t){const t=o(e),n=s.find((e=>i(e.key,t)));n?n.values.push(e):s.push({key:t,values:[e]})}return(await e.toArray()).map((e=>{var t;const o=n(e),a=null!==(t=s.find((e=>i(e.key,o))))&&void 0!==t?t:{key:o,values:[]};return r(e,a.values)}))},Ml=(e,t,n,o,r)=>async()=>{const i=new Map;for await(const e of t){const t=o(e),n=i.get(t);n?n.push(e):i.set(t,[e])}return(await e.toArray()).map((e=>{var t;const o=n(e),s=null!==(t=i.get(o))&&void 0!==t?t:[];return r(e,s)}))},Gl=(e,t,n,o,r,i)=>{const s=i?Fl(e,t,n,o,r,i):Bl(e,t,n,o,r);return new fo({generator:s,type:0})},Fl=(e,t,n,o,r,i)=>async()=>{const s=[];for await(const e of t){const t=await o(e),n=s.find((e=>i(e.key,t)));n?n.values.push(e):s.push({key:t,values:[e]})}const a=(await e.toArray()).map((async e=>{var t;const o=await n(e),a=null!==(t=s.find((e=>i(e.key,o))))&&void 0!==t?t:{key:o,values:[]};return r(e,a.values)}));return await Promise.all(a)},Bl=(e,t,n,o,r)=>async()=>{const i=new Map;for await(const e of t){const t=await o(e),n=i.get(t);n?n.push(e):i.set(t,[e])}const s=(await e.toArray()).map((async e=>{var t;const o=await n(e),s=null!==(t=i.get(o))&&void 0!==t?t:[];return r(e,s)}));return await Promise.all(s)},Ll=(e,t,n=lo)=>new fo({generator:async()=>{const o=await e.distinct(n).toArray();if(0===o.length)return[];const r=await t.toArray(),i=new Array;for(let e=0;e<o.length;e++){const t=o[e];for(let e=0;e<r.length;e++){const o=r[e];if(!0===n(t,o)){i.push(t);break}}}return i},type:0}),Ul=(e,t,n)=>new fo({generator:async()=>{const o=await e.distinctAsync(n).toArray();if(0===o.length)return[];const r=await t.toArray(),i=new Array;for(let e=0;e<o.length;e++){const t=o[e];for(let e=0;e<r.length;e++){const o=r[e];if(!0===await n(t,o)){i.push(t);break}}}return i},type:0}),$l=(e,t,n,o,r,i=lo)=>new fo({generator:async()=>{const[s,a]=await Promise.all([t.toArray(),e.toArray()]),c=new Array;for(const e of a){const t=n(e);for(const n of s){const s=o(n);!0===i(t,s)&&c.push(r(e,n))}}return c},type:0}),Wl=(e,t)=>t?Hl(e,t):jl(e),jl=async e=>{const t=e.dataFunc;switch(t.type){case 0:{const e=await t.generator();if(0===e.length)throw new co(ao.NoElements);return e[e.length-1]}case 1:{const e=t.generator();if(0===e.length)throw new co(ao.NoElements);return await e[e.length-1]}case 2:{const e=await t.generator();if(0===e.length)throw new co(ao.NoElements);return await e[e.length-1]}}},Hl=async(e,t)=>{const n=e.dataFunc;switch(n.type){case 0:{const e=await n.generator();for(let n=e.length-1;n>=0;n--){const o=e[n];if(t(o))return o}break}case 1:{const e=n.generator();for(let n=e.length-1;n>=0;n--){const o=await e[n];if(t(o))return o}break}case 2:{const e=await n.generator();for(let n=e.length-1;n>=0;n--){const o=await e[n];if(t(o))return o}break}}throw new co(ao.NoMatch)},ql=async(e,t)=>{const n=e.dataFunc;switch(n.type){case 0:{const e=await n.generator();for(let n=e.length-1;n>=0;n--){const o=e[n];if(!0===await t(o))return o}break}case 1:{const e=n.generator();for(let n=e.length-1;n>=0;n--){const o=await e[n];if(!0===await t(o))return o}break}case 2:{const e=await n.generator();for(let n=e.length-1;n>=0;n--){const o=await e[n];if(!0===await t(o))return o}break}}throw new co(ao.NoMatch)},zl=(e,t)=>t?Kl(e,t):Vl(e),Vl=async e=>{const t=e.dataFunc;switch(t.type){case 0:{const e=await t.generator();return 0===e.length?null:e[e.length-1]}case 1:{const e=t.generator();return 0===e.length?null:await e[e.length-1]}case 2:{const e=await t.generator();return 0===e.length?null:await e[e.length-1]}}},Kl=async(e,t)=>{const n=e.dataFunc;switch(n.type){case 0:{const e=await n.generator();for(let n=e.length-1;n>=0;n--){const o=e[n];if(t(o))return o}break}case 1:{const e=n.generator();for(let n=e.length-1;n>=0;n--){const o=await e[n];if(t(o))return o}break}case 2:{const e=await n.generator();for(let n=e.length-1;n>=0;n--){const o=await e[n];if(t(o))return o}break}}return null},Jl=async(e,t)=>{const n=e.dataFunc;switch(n.type){case 0:{const e=await n.generator();for(let n=e.length-1;n>=0;n--){const o=e[n];if(!0===await t(o))return o}break}case 1:{const e=n.generator();for(let n=e.length-1;n>=0;n--){const o=await e[n];if(!0===await t(o))return o}break}case 2:{const e=await n.generator();for(let n=e.length-1;n>=0;n--){const o=await e[n];if(!0===await t(o))return o}break}}return null},Yl=async(e,t)=>{let n;n=t?Uc(e,t):e.dataFunc;const o=await Jc(n);if(0===o.length)throw new co(ao.NoElements);return Math.max.apply(null,o)},Xl=async(e,t)=>{const n=Wc(e,t),o=await Jc(n);if(0===o.length)throw new co(ao.NoElements);return Math.max.apply(null,o)},Ql=async(e,t)=>{let n;n=t?Uc(e,t):e.dataFunc;const o=await Jc(n);if(0===o.length)throw new co(ao.NoElements);return Math.min.apply(null,o)},Zl=async(e,t)=>{const n=Wc(e,t),o=await Jc(n);if(0===o.length)throw new co(ao.NoElements);return Math.min.apply(null,o)},eu=(e,t)=>{const n="string"==typeof t?e=>[typeof e===t,e]:e=>[e instanceof t,e];return new fo({generator:async()=>{const t=Uc(e,n),o=await Jc(t),r=[];for(const[e,t]of o)e&&r.push(t);return r},type:0})};async function*tu(e,t,n,o){const r=await(async(e,t)=>{const n=new Map;for(const o of e){const e=await t(o),r=n.get(e);r?r.push(o):n.set(e,[o])}return n})(e,t),i=[...r.keys()].sort(o||void 0);if(n)for(let e=0;e<i.length;e++)yield r.get(i[e]);else for(let e=i.length-1;e>=0;e--)yield r.get(i[e])}async function*nu(e,t,n,o){const r=((e,t)=>{const n=new Map;for(const o of e){const e=t(o),r=n.get(e);r?r.push(o):n.set(e,[o])}return n})(e,t),i=[...r.keys()].sort(o||void 0);if(n)for(let e=0;e<i.length;e++)yield r.get(i[e]);else for(let e=i.length-1;e>=0;e--)yield r.get(i[e])}class ou extends fo{constructor(e){super({generator:async()=>{const t=e(),n=[];for await(const e of t)n.push(...e);return n},type:0}),this.orderedPairs=e}static generateAsync(e,t,n,o){let r;return r=e instanceof ou?async function*(){for await(const r of e.orderedPairs())yield*tu(r,t,n,o)}:()=>async function*(e,t,n,o){const r=await(async(e,t)=>{const n=new Map;for await(const o of e){const e=await t(o),r=n.get(e);r?r.push(o):n.set(e,[o])}return n})(e,t),i=[...r.keys()].sort(o||void 0);if(n)for(let e=0;e<i.length;e++)yield r.get(i[e]);else for(let e=i.length-1;e>=0;e--)yield r.get(i[e])}(e,t,n,o),new ou(r)}static generate(e,t,n,o){let r;return r=e instanceof ou?async function*(){for await(const r of e.orderedPairs())yield*nu(r,t,n,o)}:()=>async function*(e,t,n,o){const r=await(async(e,t)=>{const n=new Map;for await(const o of e){const e=t(o),r=n.get(e);r?r.push(o):n.set(e,[o])}return n})(e,t),i=[...r.keys()].sort(o||void 0);if(n)for(let e=0;e<i.length;e++)yield r.get(i[e]);else for(let e=i.length-1;e>=0;e--)yield r.get(i[e])}(e,t,n,o),new ou(r)}thenBy(e,t){return ou.generate(this,e,!0,t)}thenByAsync(e,t){return ou.generateAsync(this,e,!0,t)}thenByDescending(e,t){return ou.generate(this,e,!1,t)}thenByDescendingAsync(e,t){return ou.generateAsync(this,e,!1,t)}}const ru=(e,t,n)=>ou.generate(e,t,!0,n),iu=(e,t,n)=>ou.generateAsync(e,t,!0,n),su=(e,t,n)=>ou.generate(e,t,!1,n),au=(e,t,n)=>ou.generateAsync(e,t,!1,n),cu=async(e,t)=>{const n=Uc(e,(e=>[t(e),e])),o=await Jc(n),r=[],i=[];for(const[e,t]of o)e?i.push(t):r.push(t);return[i,r]},lu=async(e,t)=>{const n=Wc(e,(async e=>[await t(e),e])),o=await Jc(n),r=[],i=[];for(const[e,t]of o)e?i.push(t):r.push(t);return[i,r]},uu=e=>{const t=e.dataFunc;switch(t.type){case 1:return new fo({generator:()=>t.generator().reverse(),type:t.type});case 2:case 0:return new fo({generator:async()=>(await t.generator()).reverse(),type:t.type})}},hu=(e,t)=>{const n=e.dataFunc;switch(n.type){case 0:return{generator:()=>n.generator().then((e=>{const n=new Array(e.length);for(let o=0;o<e.length;o++)n[o]=t(e[o],o);return n})),type:0};case 1:return{generator:()=>{const e=n.generator(),o=new Array(e.length);for(let n=0;n<e.length;n++)o[n]=e[n].then((e=>t(e,n)));return o},type:1};case 2:return{generator:async()=>{const e=await n.generator(),o=new Array(e.length);for(let n=0;n<e.length;n++)o[n]=e[n].then((e=>t(e,n)));return o},type:2}}},fu=(e,t)=>"function"==typeof t?1===t.length?new fo(Uc(e,t)):new fo(hu(e,t)):new fo(Uc(e,(e=>e[t]))),du=(e,t)=>{const n=e.dataFunc;switch(n.type){case 0:return{generator:async()=>{const e=await n.generator(),o=new Array(e.length);for(let n=0;n<e.length;n++)o[n]=t(e[n],n);return o},type:2};case 1:return{generator:()=>n.generator().map(((e,n)=>e.then((e=>t(e,n))))),type:1};case 2:return{generator:async()=>(await n.generator()).map(((e,n)=>e.then((e=>t(e,n))))),type:2}}},pu=(e,t)=>{let n;return n="function"==typeof t?1===t.length?Wc(e,t):du(e,t):Wc(e,(e=>e[t])),new fo(n)},yu=(e,t)=>new fo({generator:async()=>{let n;n="function"==typeof t?1===t.length?Uc(e,t):hu(e,t):Uc(e,(e=>e[t]));const o=[];switch(n.type){case 0:for(const e of await n.generator())for(const t of e)o.push(t);break;case 1:for(const e of n.generator())for(const t of await e)o.push(t);break;case 2:for(const e of await n.generator())for(const t of await e)o.push(t)}return o},type:0}),gu=(e,t)=>new fo({generator:async()=>{let n;n=1===t.length?Wc(e,t):du(e,t);const o=[];switch(n.type){case 1:for(const e of n.generator())for(const t of await e)o.push(t);break;case 2:for(const e of await n.generator())for(const t of await e)o.push(t)}return o},type:0}),wu=async(e,t,n=lo)=>{const o=await e.toArray(),r=await t.toArray();if(o.length!==r.length)return!1;for(let e=0;e<o.length;e++)if(!1===n(o[e],r[e]))return!1;return!0},vu=async(e,t,n)=>{const o=await e.toArray(),r=await t.toArray();if(o.length!==r.length)return!1;for(let e=0;e<o.length;e++){const t=o[e],i=r[e];if(!1===await n(t,i))return!1}return!0},mu=(e,t)=>t?bu(e,t):_u(e),_u=async e=>{const t=e.dataFunc;switch(t.type){case 0:{const e=await t.generator();if(e.length>1)throw new co(ao.MoreThanOneElement);if(0===e.length)throw new co(ao.NoElements);return e[0]}case 1:{const e=t.generator();if(e.length>1)throw new co(ao.MoreThanOneElement);if(0===e.length)throw new co(ao.NoElements);return e[0]}case 2:{const e=await t.generator();if(e.length>1)throw new co(ao.MoreThanOneElement);if(0===e.length)throw new co(ao.NoElements);return await e[0]}}},bu=async(e,t)=>{const n=await yl(e);let o=!1,r=null;for(const e of n)if(t(e)){if(!0===o)throw new co(ao.MoreThanOneMatchingElement);o=!0,r=e}if(!1===o)throw new co(ao.NoMatch);return r},Su=async(e,t)=>{const n=await yl(e);let o=!1,r=null;for(const e of n)if(!0===await t(e)){if(!0===o)throw new co(ao.MoreThanOneMatchingElement);o=!0,r=e}if(!1===o)throw new co(ao.NoMatch);return r},Tu=(e,t)=>t?Cu(e,t):Eu(e),Eu=async e=>{const t=e.dataFunc;switch(t.type){case 0:{const e=await t.generator();if(e.length>1)throw new co(ao.MoreThanOneElement);return 0===e.length?null:e[0]}case 1:{const e=t.generator();if(e.length>1)throw new co(ao.MoreThanOneElement);return 0===e.length?null:e[0]}case 2:{const e=await t.generator();if(e.length>1)throw new co(ao.MoreThanOneElement);return 0===e.length?null:await e[0]}}},Cu=async(e,t)=>{const n=await yl(e);let o=!1,r=null;for(const e of n)if(t(e)){if(!0===o)throw new co(ao.MoreThanOneElement);o=!0,r=e}return r},Au=async(e,t)=>{const n=await yl(e);let o=!1,r=null;for(const e of n)if(!0===await t(e)){if(!0===o)throw new co(ao.MoreThanOneElement);o=!0,r=e}return r},ku=(e,t)=>{const n=e.dataFunc;switch(n.type){case 0:return new fo({generator:async()=>(await n.generator()).slice(t),type:0});case 1:return new fo({generator:()=>n.generator().slice(t),type:1});case 2:return new fo({generator:async()=>(await n.generator()).slice(t),type:2})}},Pu=(e,t)=>new fo({generator:async()=>{const n=await e.toArray();let o=0;for(;o<n.length;o++){const e=n[o];if(!1===t(e,o))break}const r=[];for(;o<n.length;o++)r.push(n[o]);return r},type:0}),Du=(e,t)=>new fo({generator:async()=>{const n=await e.toArray();let o=0;for(;o<n.length;o++){const e=n[o];if(!1===await t(e,o))break}const r=[];for(;o<n.length;o++)r.push(n[o]);return r},type:0}),Iu=(e,t)=>t?Ru(e,t):Ou(e),Ou=async e=>{let t=0;for(const n of await e.toArray())t+=n;return t},Ru=async(e,t)=>{let n=0;for(const o of await e.toArray())n+=t(o);return n},Nu=async(e,t)=>{const n=Wc(e,t),o=await Jc(n);let r=0;for(const e of o)r+=e;return r},xu=(e,t)=>{const n=t>0?t:0,o=e.dataFunc;switch(o.type){case 1:return new fo({generator:()=>o.generator().splice(0,n),type:1});case 2:return new fo({generator:()=>o.generator().then((e=>e.splice(0,n))),type:2});default:return new fo({generator:()=>o.generator().then((e=>e.splice(0,n))),type:0})}},Mu=(e,t)=>new fo({generator:async()=>{const n=await e.toArray(),o=new Array;if(1===t.length)for(const e of n){if(!0!==t(e))break;o.push(e)}else for(let e=0;e<n.length;e++){const r=n[e];if(!0!==t(r,e))break;o.push(r)}return o},type:0}),Gu=(e,t)=>new fo({generator:async()=>{const n=await e.toArray(),o=new Array;if(1===t.length){const e=t;for(const t of n){if(!0!==await e(t))break;o.push(t)}}else for(let e=0;e<n.length;e++){const r=n[e];if(!0!==await t(r,e))break;o.push(r)}return o},type:0}),Fu=async(e,t)=>{const n=new Map,o=Uc(e,(e=>[t(e),e])),r=await Jc(o);for(const[e,t]of r){const o=n.get(e);void 0===o?n.set(e,[t]):o.push(t)}return n},Bu=async(e,t)=>{const n=new Map,o=Wc(e,(async e=>[await t(e),e])),r=await Jc(o);for(const[e,t]of r){const o=n.get(e);void 0===o?n.set(e,[t]):o.push(t)}return n},Lu=async(e,t)=>{const n=e.dataFunc,o=await Jc(n),r={};for(const e of o)r[t(e)]=e;return r},Uu=async(e,t)=>{const n=Wc(e,(async e=>[await t(e),e])),o=await Jc(n),r={};for(const[e,t]of o)r[e]=t;return r},$u=async e=>{const t=e.dataFunc,n=await Jc(t);return new Set(n)},Wu=(e,t,n)=>n?Hu(e,t,n):ju(e,t),ju=(e,t)=>new fo({generator:async()=>{const n=new Set,o=t.toArray();for await(const t of e)!1===n.has(t)&&n.add(t);const r=await o;for(const e of r)!1===n.has(e)&&n.add(e);return[...n.keys()]},type:0}),Hu=(e,t,n)=>new fo({generator:async()=>{const o=[],r=await Promise.all([e.toArray(),t.toArray()]);for(const e of r)for(const t of e){let e=!1;for(const r of o)if(!0===n(t,r)){e=!0;break}!1===e&&o.push(t)}return o},type:0}),qu=(e,t,n)=>new fo({generator:async()=>{const o=[],r=await Promise.all([e.toArray(),t.toArray()]);for(const e of r)for(const t of e){let e=!1;for(const r of o)if(!0===await n(t,r)){e=!0;break}!1===e&&o.push(t)}return o},type:0}),zu=(e,t)=>new fo({generator:async()=>(await e.toArray()).filter(t),type:0}),Vu=(e,t)=>new fo({generator:async()=>{const n=du(e,(async(e,n)=>[await t(e,n),e])),o=await Jc(n),r=[];for(const[e,t]of o)e&&r.push(t);return r},type:0}),Ku=(e,t,n)=>n?Yu(e,t,n):Ju(e,t),Ju=(e,t)=>new fo({generator:async()=>{const[n,o]=await Promise.all([e.toArray(),t.toArray()]),r=n.length<o.length?n.length:o.length,i=new Array(r);for(let e=0;e<r;e++){const t=n[e],r=o[e];i[e]=[t,r]}return i},type:0}),Yu=(e,t,n)=>new fo({generator:async()=>{const[o,r]=await Promise.all([e.toArray(),t.toArray()]),i=o.length<r.length?o.length:r.length,s=new Array(i);for(let e=0;e<i;e++){const t=o[e],i=r[e];s[e]=n(t,i)}return s},type:0}),Xu=(e,t,n)=>new fo({generator:async()=>{const[o,r]=await Promise.all([e.toArray(),t.toArray()]),i=o.length<r.length?o.length:r.length,s=new Array(i);for(let e=0;e<i;e++){const t=o[e],i=r[e];s[e]=n(t,i)}return Promise.all(s)},type:0});os(po),(e=>{const t=e.prototype,n=(e,n)=>{const o=function(...t){return e(this,...t)};Object.defineProperty(o,"length",{value:e.length-1}),t[n]=o};n(rs,"aggregate"),n(cs,"all"),n(ls,"allAsync"),n(us,"any"),n(ds,"anyAsync"),n(ps,"asParallel"),n(ys,"average"),n(gs,"averageAsync"),n(ws,"chunk"),n(vs,"concatenate"),n(ms,"contains"),n(_s,"containsAsync"),n(bs,"count"),n(Es,"countAsync"),n(Cs,"defaultIfEmpty"),n(As,"distinct"),n(ks,"distinctAsync"),n(Ps,"each"),n(Ds,"eachAsync"),n(Is,"elementAt"),n(Os,"elementAtOrDefault"),n(Rs,"except"),n(Ns,"exceptAsync"),n(xs,"first"),n(Fs,"firstAsync"),n(Bs,"firstOrDefault"),n($s,"firstOrDefaultAsync"),n(Ws,"groupBy"),n(qs,"groupByAsync"),n(Ks,"groupByWithSel"),n(Xs,"groupJoin"),n(ea,"groupJoinAsync"),n(oa,"intersect"),n(ra,"intersectAsync"),n(ia,"joinByKey"),n(sa,"last"),n(la,"lastAsync"),n(ua,"lastOrDefault"),n(da,"lastOrDefaultAsync"),n(pa,"max"),n(wa,"maxAsync"),n(va,"min"),n(ba,"minAsync"),n(Sa,"ofType"),n(Ta,"orderBy"),n(Ea,"orderByAsync"),n(Ca,"orderByDescending"),n(Aa,"orderByDescendingAsync"),n(ka,"partition"),n(Pa,"partitionAsync"),n(Da,"reverse"),n(Ia,"select"),n(xa,"selectAsync"),n(Fa,"selectMany"),n($a,"selectManyAsync"),n(Wa,"sequenceEquals"),n(ja,"sequenceEqualsAsync"),n(Ha,"single"),n(Va,"singleAsync"),n(Ka,"singleOrDefault"),n(Xa,"singleOrDefaultAsync"),n(Qa,"skip"),n(Za,"skipWhile"),n(nc,"skipWhileAsync"),n(ic,"sum"),n(cc,"sumAsync"),n(lc,"take"),n(uc,"takeWhile"),n(dc,"takeWhileAsync"),n(gc,"toArray"),n(wc,"toMap"),n(vc,"toMapAsync"),n(mc,"toObject"),n(_c,"toObjectAsync"),n(bc,"toSet"),n(Sc,"union"),n(Cc,"unionAsync"),n(Ac,"where"),n(Dc,"whereAsync"),n(Rc,"zip"),n(Mc,"zipAsync")})(ho),(e=>{const t=e.prototype,n=(e,n)=>{const o=function(...t){return e(this,...t)};Object.defineProperty(o,"length",{value:e.length-1}),t[n]=o};n(Gc,"aggregate"),n($c,"all"),n(jc,"allAsync"),n(Hc,"any"),n(Vc,"anyAsync"),n(Kc,"asAsync"),n(Yc,"average"),n(Xc,"averageAsync"),n(Qc,"chunk"),n(Zc,"concatenate"),n(el,"contains"),n(tl,"containsAsync"),n(nl,"count"),n(il,"countAsync"),n(sl,"defaultIfEmpty"),n(al,"distinct"),n(cl,"distinctAsync"),n(ll,"each"),n(ul,"eachAsync"),n(hl,"elementAt"),n(fl,"elementAtOrDefault"),n(dl,"except"),n(pl,"exceptAsync"),n(gl,"first"),n(ml,"firstAsync"),n(_l,"firstOrDefault"),n(Tl,"firstOrDefaultAsync"),n(El,"groupBy"),n(kl,"groupByAsync"),n(Il,"groupByWithSel"),n(Nl,"groupJoin"),n(Gl,"groupJoinAsync"),n(Nl,"groupJoin"),n(Gl,"groupJoinAsync"),n(Ll,"intersect"),n(Ul,"intersectAsync"),n($l,"joinByKey"),n(Wl,"last"),n(ql,"lastAsync"),n(zl,"lastOrDefault"),n(Jl,"lastOrDefaultAsync"),n(Yl,"max"),n(Xl,"maxAsync"),n(Ql,"min"),n(Zl,"minAsync"),n(eu,"ofType"),n(ru,"orderBy"),n(iu,"orderByAsync"),n(su,"orderByDescending"),n(au,"orderByDescendingAsync"),n(cu,"partition"),n(lu,"partitionAsync"),n(uu,"reverse"),n(fu,"select"),n(pu,"selectAsync"),n(yu,"selectMany"),n(gu,"selectManyAsync"),n(wu,"sequenceEquals"),n(vu,"sequenceEqualsAsync"),n(mu,"single"),n(Su,"singleAsync"),n(Tu,"singleOrDefault"),n(Au,"singleOrDefaultAsync"),n(ku,"skip"),n(Pu,"skipWhile"),n(Du,"skipWhileAsync"),n(Iu,"sum"),n(Nu,"sumAsync"),n(xu,"take"),n(Mu,"takeWhile"),n(Gu,"takeWhileAsync"),n(yl,"toArray"),n(Fu,"toMap"),n(Bu,"toMapAsync"),n(Lu,"toObject"),n(Uu,"toObjectAsync"),n($u,"toSet"),n(Wu,"union"),n(qu,"unionAsync"),n(zu,"where"),n(Vu,"whereAsync"),n(Ku,"zip"),n(Xu,"zipAsync")})(fo),(()=>{var e;const{prototype:t}=uo,n=Object.getOwnPropertyNames(po.prototype);for(const o of n)t[o]=null!==(e=t[o])&&void 0!==e?e:po.prototype[o];t.all=function(e){return this.every(e)},t.any=function(e){return e?this.some(e):0!==this.length},t.count=function(e){if(e){let t=0;for(let n=0;n<this.length;n++)!0===e(this[n])&&t++;return t}return this.length},t.elementAt=function(e){if(e<0||e>=this.length)throw new so("index");return this[e]},t.elementAtOrDefault=function(e){return this[e]||null},t.first=function(e){if(e){const t=this.find(e);if(void 0===t)throw new co(ao.NoMatch);return t}if(0===this.length)throw new co(ao.NoElements);return this[0]},t.firstOrDefault=function(e){if(e){const t=this.find(e);return void 0===t?null:t}return 0===this.length?null:this[0]},t.last=function(e){if(e){for(let t=this.length-1;t>=0;t--){const n=this[t];if(!0===e(n))return n}throw new co(ao.NoMatch)}if(0===this.length)throw new co(ao.NoElements);return this[this.length-1]},t.lastOrDefault=function(e){if(e){for(let t=this.length-1;t>=0;t--){const n=this[t];if(!0===e(n))return n}return null}return 0===this.length?null:this[this.length-1]},t.max=function(e){if(0===this.length)throw new co(ao.NoElements);if(e){let t=Number.NEGATIVE_INFINITY;for(let n=0;n<this.length;n++)t=Math.max(e(this[n]),t);return t}return Math.max.apply(null,this)},t.min=function(e){if(0===this.length)throw new co(ao.NoElements);if(e){let t=Number.POSITIVE_INFINITY;for(let n=0;n<this.length;n++)t=Math.min(e(this[n]),t);return t}return Math.min.apply(null,this)},t.reverse=function(){return Array.prototype.reverse.apply(this),this}})(),os(Map),os(Set),(()=>{var e;const t=String.prototype,n=Object.getOwnPropertyNames(po.prototype);for(const o of n)t[o]=null!==(e=t[o])&&void 0!==e?e:po.prototype[o];t.first=function(e){if(e){for(let t=0;t<this.length;t++){const n=this[t];if(!0===e(n))return n}throw new co(ao.NoMatch)}if(0===this.length)throw new co(ao.NoElements);return this[0]},t.firstOrDefault=function(e){if(e){for(let t=0;t<this.length;t++){const n=this[t];if(!0===e(n))return n}return null}return 0===this.length?null:this[0]},t.count=function(e){if(e){let t=0;for(let n=0;n<this.length;n++)!0===e(this[n])&&t++;return t}return this.length},t.elementAt=function(e){if(e<0||e>=this.length)throw new so("index");return this[e]},t.elementAtOrDefault=function(e){return this[e]||null},t.last=function(e){if(e){for(let t=this.length-1;t>=0;t--){const n=this[t];if(!0===e(n))return n}throw new co(ao.NoMatch)}if(0===this.length)throw new co(ao.NoElements);return this[this.length-1]},t.lastOrDefault=function(e){if(e){for(let t=this.length-1;t>=0;t--){const n=this[t];if(!0===e(n))return n}return null}return 0===this.length?null:this[this.length-1]},t.reverse=function(){const e=this;return new po((function*(){for(let t=e.length-1;t>=0;t--)yield e[t]}))}})(),yo(Array),yo(Int8Array),yo(Int16Array),yo(Int32Array),yo(Uint8Array),yo(Uint8ClampedArray),yo(Uint16Array),yo(Uint32Array),yo(Float32Array),yo(Float64Array);var Qu=function(){function e(){}return e.Init=function(){if(!s.IsInitialized){var e=s.Instance;try{e.RegisterService(new a),e.RegisterService(new ge),e.RegisterService(new ye),e.RegisterService(new Yn),e.RegisterService(new no),e.RegisterService(new Ee),e.RegisterService(new Mn)}catch(e){console.error(e)}}},e.GetAsync=function(e,t){return s.Instance.GetServiceAsync(e,t)},e.GetWithTimeoutAsync=function(e,t){return s.Instance.GetServiceWithTimeoutAsync(e,t)},e.Get=function(e){return s.Instance.GetService(e)},e.Version=1,e}()})()})();
2
2
  //# sourceMappingURL=exalushome-library-bundle.js.map