homebridge-config-ui-x 5.9.1-beta.1 → 5.9.1-beta.2

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 (340) hide show
  1. package/CHANGELOG.md +7 -3
  2. package/dist/app.controller.d.ts +1 -1
  3. package/dist/app.controller.js +14 -12
  4. package/dist/app.controller.js.map +1 -1
  5. package/dist/app.gateway.js +7 -10
  6. package/dist/app.gateway.js.map +1 -1
  7. package/dist/app.module.js +40 -43
  8. package/dist/app.module.js.map +1 -1
  9. package/dist/app.service.js +4 -7
  10. package/dist/app.service.js.map +1 -1
  11. package/dist/bin/base-platform.d.ts +1 -1
  12. package/dist/bin/base-platform.js +11 -17
  13. package/dist/bin/base-platform.js.map +1 -1
  14. package/dist/bin/fork.js +7 -45
  15. package/dist/bin/fork.js.map +1 -1
  16. package/dist/bin/hb-service.js +224 -243
  17. package/dist/bin/hb-service.js.map +1 -1
  18. package/dist/bin/platforms/darwin.d.ts +1 -1
  19. package/dist/bin/platforms/darwin.js +61 -65
  20. package/dist/bin/platforms/darwin.js.map +1 -1
  21. package/dist/bin/platforms/freebsd.d.ts +1 -1
  22. package/dist/bin/platforms/freebsd.js +42 -47
  23. package/dist/bin/platforms/freebsd.js.map +1 -1
  24. package/dist/bin/platforms/linux.d.ts +1 -1
  25. package/dist/bin/platforms/linux.js +127 -132
  26. package/dist/bin/platforms/linux.js.map +1 -1
  27. package/dist/bin/platforms/win32.d.ts +1 -1
  28. package/dist/bin/platforms/win32.js +30 -36
  29. package/dist/bin/platforms/win32.js.map +1 -1
  30. package/dist/bin/standalone.js +15 -53
  31. package/dist/bin/standalone.js.map +1 -1
  32. package/dist/core/auth/auth.controller.d.ts +3 -3
  33. package/dist/core/auth/auth.controller.js +40 -39
  34. package/dist/core/auth/auth.controller.js.map +1 -1
  35. package/dist/core/auth/auth.dto.js +17 -18
  36. package/dist/core/auth/auth.dto.js.map +1 -1
  37. package/dist/core/auth/auth.module.js +28 -31
  38. package/dist/core/auth/auth.module.js.map +1 -1
  39. package/dist/core/auth/auth.service.d.ts +3 -3
  40. package/dist/core/auth/auth.service.js +65 -62
  41. package/dist/core/auth/auth.service.js.map +1 -1
  42. package/dist/core/auth/guards/admin.guard.js +4 -7
  43. package/dist/core/auth/guards/admin.guard.js.map +1 -1
  44. package/dist/core/auth/guards/custom.guard.js +6 -9
  45. package/dist/core/auth/guards/custom.guard.js.map +1 -1
  46. package/dist/core/auth/guards/ws-admin-guard.d.ts +1 -1
  47. package/dist/core/auth/guards/ws-admin-guard.js +13 -11
  48. package/dist/core/auth/guards/ws-admin-guard.js.map +1 -1
  49. package/dist/core/auth/guards/ws.guard.d.ts +1 -1
  50. package/dist/core/auth/guards/ws.guard.js +13 -11
  51. package/dist/core/auth/guards/ws.guard.js.map +1 -1
  52. package/dist/core/auth/jwt.strategy.d.ts +3 -2
  53. package/dist/core/auth/jwt.strategy.js +21 -16
  54. package/dist/core/auth/jwt.strategy.js.map +1 -1
  55. package/dist/core/config/config.interfaces.js +1 -2
  56. package/dist/core/config/config.module.js +8 -10
  57. package/dist/core/config/config.module.js.map +1 -1
  58. package/dist/core/config/config.service.d.ts +2 -2
  59. package/dist/core/config/config.service.js +88 -82
  60. package/dist/core/config/config.service.js.map +1 -1
  61. package/dist/core/config/config.startup.d.ts +1 -1
  62. package/dist/core/config/config.startup.js +23 -28
  63. package/dist/core/config/config.startup.js.map +1 -1
  64. package/dist/core/feature-flags/feature-flags.registry.js +1 -4
  65. package/dist/core/feature-flags/feature-flags.registry.js.map +1 -1
  66. package/dist/core/homebridge-ipc/homebridge-ipc.module.js +11 -14
  67. package/dist/core/homebridge-ipc/homebridge-ipc.module.js.map +1 -1
  68. package/dist/core/homebridge-ipc/homebridge-ipc.service.d.ts +2 -2
  69. package/dist/core/homebridge-ipc/homebridge-ipc.service.js +24 -19
  70. package/dist/core/homebridge-ipc/homebridge-ipc.service.js.map +1 -1
  71. package/dist/core/logger/logger.module.js +8 -10
  72. package/dist/core/logger/logger.module.js.map +1 -1
  73. package/dist/core/logger/logger.service.js +13 -23
  74. package/dist/core/logger/logger.service.js.map +1 -1
  75. package/dist/core/node-pty/node-pty.module.js +7 -10
  76. package/dist/core/node-pty/node-pty.module.js.map +1 -1
  77. package/dist/core/node-pty/node-pty.service.js +6 -11
  78. package/dist/core/node-pty/node-pty.service.js.map +1 -1
  79. package/dist/core/node-version.constants.js +4 -11
  80. package/dist/core/node-version.constants.js.map +1 -1
  81. package/dist/core/scheduler/scheduler.module.js +7 -10
  82. package/dist/core/scheduler/scheduler.module.js.map +1 -1
  83. package/dist/core/scheduler/scheduler.service.js +9 -14
  84. package/dist/core/scheduler/scheduler.service.js.map +1 -1
  85. package/dist/core/spa/spa-html.service.js +9 -15
  86. package/dist/core/spa/spa-html.service.js.map +1 -1
  87. package/dist/core/spa/spa.filter.d.ts +1 -1
  88. package/dist/core/spa/spa.filter.js +11 -16
  89. package/dist/core/spa/spa.filter.js.map +1 -1
  90. package/dist/core/ssl/ssl-cert-generator.service.js +34 -36
  91. package/dist/core/ssl/ssl-cert-generator.service.js.map +1 -1
  92. package/dist/env-setup.d.ts +1 -0
  93. package/dist/env-setup.js +7 -0
  94. package/dist/env-setup.js.map +1 -0
  95. package/dist/globalDefaults.d.ts +1 -0
  96. package/dist/globalDefaults.js +1 -0
  97. package/dist/index.d.ts +1 -1
  98. package/dist/index.js +16 -19
  99. package/dist/index.js.map +1 -1
  100. package/dist/main.d.ts +5 -3
  101. package/dist/main.js +44 -51
  102. package/dist/main.js.map +1 -1
  103. package/dist/modules/accessories/accessories.controller.d.ts +2 -2
  104. package/dist/modules/accessories/accessories.controller.js +27 -29
  105. package/dist/modules/accessories/accessories.controller.js.map +1 -1
  106. package/dist/modules/accessories/accessories.dto.js +11 -13
  107. package/dist/modules/accessories/accessories.dto.js.map +1 -1
  108. package/dist/modules/accessories/accessories.gateway.d.ts +1 -1
  109. package/dist/modules/accessories/accessories.gateway.js +18 -16
  110. package/dist/modules/accessories/accessories.gateway.js.map +1 -1
  111. package/dist/modules/accessories/accessories.module.js +17 -20
  112. package/dist/modules/accessories/accessories.module.js.map +1 -1
  113. package/dist/modules/accessories/accessories.service.d.ts +2 -2
  114. package/dist/modules/accessories/accessories.service.js +37 -35
  115. package/dist/modules/accessories/accessories.service.js.map +1 -1
  116. package/dist/modules/backup/backup.controller.d.ts +2 -2
  117. package/dist/modules/backup/backup.controller.js +68 -67
  118. package/dist/modules/backup/backup.controller.js.map +1 -1
  119. package/dist/modules/backup/backup.gateway.d.ts +2 -2
  120. package/dist/modules/backup/backup.gateway.js +25 -21
  121. package/dist/modules/backup/backup.gateway.js.map +1 -1
  122. package/dist/modules/backup/backup.module.js +22 -25
  123. package/dist/modules/backup/backup.module.js.map +1 -1
  124. package/dist/modules/backup/backup.service.d.ts +5 -5
  125. package/dist/modules/backup/backup.service.js +143 -133
  126. package/dist/modules/backup/backup.service.js.map +1 -1
  127. package/dist/modules/child-bridges/child-bridges.gateway.d.ts +2 -2
  128. package/dist/modules/child-bridges/child-bridges.gateway.js +23 -21
  129. package/dist/modules/child-bridges/child-bridges.gateway.js.map +1 -1
  130. package/dist/modules/child-bridges/child-bridges.interfaces.js +1 -2
  131. package/dist/modules/child-bridges/child-bridges.module.js +19 -22
  132. package/dist/modules/child-bridges/child-bridges.module.js.map +1 -1
  133. package/dist/modules/child-bridges/child-bridges.service.d.ts +3 -3
  134. package/dist/modules/child-bridges/child-bridges.service.js +15 -11
  135. package/dist/modules/child-bridges/child-bridges.service.js.map +1 -1
  136. package/dist/modules/config-editor/config-editor.controller.d.ts +6 -6
  137. package/dist/modules/config-editor/config-editor.controller.js +94 -95
  138. package/dist/modules/config-editor/config-editor.controller.js.map +1 -1
  139. package/dist/modules/config-editor/config-editor.module.js +21 -24
  140. package/dist/modules/config-editor/config-editor.module.js.map +1 -1
  141. package/dist/modules/config-editor/config-editor.service.d.ts +6 -6
  142. package/dist/modules/config-editor/config-editor.service.js +65 -57
  143. package/dist/modules/config-editor/config-editor.service.js.map +1 -1
  144. package/dist/modules/custom-plugins/custom-plugins.module.js +10 -13
  145. package/dist/modules/custom-plugins/custom-plugins.module.js.map +1 -1
  146. package/dist/modules/custom-plugins/homebridge-deconz/homebridge-deconz.controller.d.ts +1 -1
  147. package/dist/modules/custom-plugins/homebridge-deconz/homebridge-deconz.controller.js +21 -19
  148. package/dist/modules/custom-plugins/homebridge-deconz/homebridge-deconz.controller.js.map +1 -1
  149. package/dist/modules/custom-plugins/homebridge-deconz/homebridge-deconz.module.js +14 -17
  150. package/dist/modules/custom-plugins/homebridge-deconz/homebridge-deconz.module.js.map +1 -1
  151. package/dist/modules/custom-plugins/homebridge-deconz/homebridge-deconz.service.d.ts +1 -1
  152. package/dist/modules/custom-plugins/homebridge-deconz/homebridge-deconz.service.js +18 -15
  153. package/dist/modules/custom-plugins/homebridge-deconz/homebridge-deconz.service.js.map +1 -1
  154. package/dist/modules/custom-plugins/homebridge-hue/homebridge-hue.controller.d.ts +1 -1
  155. package/dist/modules/custom-plugins/homebridge-hue/homebridge-hue.controller.js +21 -19
  156. package/dist/modules/custom-plugins/homebridge-hue/homebridge-hue.controller.js.map +1 -1
  157. package/dist/modules/custom-plugins/homebridge-hue/homebridge-hue.module.js +14 -17
  158. package/dist/modules/custom-plugins/homebridge-hue/homebridge-hue.module.js.map +1 -1
  159. package/dist/modules/custom-plugins/homebridge-hue/homebridge-hue.service.d.ts +1 -1
  160. package/dist/modules/custom-plugins/homebridge-hue/homebridge-hue.service.js +18 -15
  161. package/dist/modules/custom-plugins/homebridge-hue/homebridge-hue.service.js.map +1 -1
  162. package/dist/modules/custom-plugins/plugins-settings-ui/plugins-settings-ui.controller.d.ts +1 -1
  163. package/dist/modules/custom-plugins/plugins-settings-ui/plugins-settings-ui.controller.js +18 -19
  164. package/dist/modules/custom-plugins/plugins-settings-ui/plugins-settings-ui.controller.js.map +1 -1
  165. package/dist/modules/custom-plugins/plugins-settings-ui/plugins-settings-ui.gateway.d.ts +1 -1
  166. package/dist/modules/custom-plugins/plugins-settings-ui/plugins-settings-ui.gateway.js +15 -13
  167. package/dist/modules/custom-plugins/plugins-settings-ui/plugins-settings-ui.gateway.js.map +1 -1
  168. package/dist/modules/custom-plugins/plugins-settings-ui/plugins-settings-ui.module.js +18 -21
  169. package/dist/modules/custom-plugins/plugins-settings-ui/plugins-settings-ui.module.js.map +1 -1
  170. package/dist/modules/custom-plugins/plugins-settings-ui/plugins-settings-ui.service.d.ts +4 -4
  171. package/dist/modules/custom-plugins/plugins-settings-ui/plugins-settings-ui.service.js +47 -41
  172. package/dist/modules/custom-plugins/plugins-settings-ui/plugins-settings-ui.service.js.map +1 -1
  173. package/dist/modules/log/log.gateway.d.ts +2 -2
  174. package/dist/modules/log/log.gateway.js +15 -13
  175. package/dist/modules/log/log.gateway.js.map +1 -1
  176. package/dist/modules/log/log.interfaces.js +1 -2
  177. package/dist/modules/log/log.module.js +14 -17
  178. package/dist/modules/log/log.module.js.map +1 -1
  179. package/dist/modules/log/log.service.d.ts +3 -3
  180. package/dist/modules/log/log.service.js +47 -43
  181. package/dist/modules/log/log.service.js.map +1 -1
  182. package/dist/modules/platform-tools/docker/docker.controller.d.ts +1 -1
  183. package/dist/modules/platform-tools/docker/docker.controller.js +24 -25
  184. package/dist/modules/platform-tools/docker/docker.controller.js.map +1 -1
  185. package/dist/modules/platform-tools/docker/docker.module.js +14 -17
  186. package/dist/modules/platform-tools/docker/docker.module.js.map +1 -1
  187. package/dist/modules/platform-tools/docker/docker.service.d.ts +2 -2
  188. package/dist/modules/platform-tools/docker/docker.service.js +20 -16
  189. package/dist/modules/platform-tools/docker/docker.service.js.map +1 -1
  190. package/dist/modules/platform-tools/hb-service/hb-service.controller.d.ts +2 -2
  191. package/dist/modules/platform-tools/hb-service/hb-service.controller.js +35 -36
  192. package/dist/modules/platform-tools/hb-service/hb-service.controller.js.map +1 -1
  193. package/dist/modules/platform-tools/hb-service/hb-service.dto.js +20 -19
  194. package/dist/modules/platform-tools/hb-service/hb-service.dto.js.map +1 -1
  195. package/dist/modules/platform-tools/hb-service/hb-service.module.js +14 -17
  196. package/dist/modules/platform-tools/hb-service/hb-service.module.js.map +1 -1
  197. package/dist/modules/platform-tools/hb-service/hb-service.service.d.ts +3 -3
  198. package/dist/modules/platform-tools/hb-service/hb-service.service.js +37 -30
  199. package/dist/modules/platform-tools/hb-service/hb-service.service.js.map +1 -1
  200. package/dist/modules/platform-tools/linux/linux.controller.d.ts +1 -1
  201. package/dist/modules/platform-tools/linux/linux.controller.js +23 -21
  202. package/dist/modules/platform-tools/linux/linux.controller.js.map +1 -1
  203. package/dist/modules/platform-tools/linux/linux.module.js +14 -17
  204. package/dist/modules/platform-tools/linux/linux.module.js.map +1 -1
  205. package/dist/modules/platform-tools/linux/linux.service.d.ts +2 -2
  206. package/dist/modules/platform-tools/linux/linux.service.js +18 -14
  207. package/dist/modules/platform-tools/linux/linux.service.js.map +1 -1
  208. package/dist/modules/platform-tools/platform-tools.module.js +12 -15
  209. package/dist/modules/platform-tools/platform-tools.module.js.map +1 -1
  210. package/dist/modules/platform-tools/terminal/terminal.controller.d.ts +1 -1
  211. package/dist/modules/platform-tools/terminal/terminal.controller.js +15 -13
  212. package/dist/modules/platform-tools/terminal/terminal.controller.js.map +1 -1
  213. package/dist/modules/platform-tools/terminal/terminal.gateway.d.ts +2 -2
  214. package/dist/modules/platform-tools/terminal/terminal.gateway.js +17 -15
  215. package/dist/modules/platform-tools/terminal/terminal.gateway.js.map +1 -1
  216. package/dist/modules/platform-tools/terminal/terminal.interfaces.js +1 -2
  217. package/dist/modules/platform-tools/terminal/terminal.module.js +18 -21
  218. package/dist/modules/platform-tools/terminal/terminal.module.js.map +1 -1
  219. package/dist/modules/platform-tools/terminal/terminal.service.d.ts +4 -4
  220. package/dist/modules/platform-tools/terminal/terminal.service.js +33 -28
  221. package/dist/modules/platform-tools/terminal/terminal.service.js.map +1 -1
  222. package/dist/modules/plugins/plugins.controller.d.ts +6 -6
  223. package/dist/modules/plugins/plugins.controller.js +51 -52
  224. package/dist/modules/plugins/plugins.controller.js.map +1 -1
  225. package/dist/modules/plugins/plugins.dto.js +26 -24
  226. package/dist/modules/plugins/plugins.dto.js.map +1 -1
  227. package/dist/modules/plugins/plugins.gateway.d.ts +3 -3
  228. package/dist/modules/plugins/plugins.gateway.js +38 -34
  229. package/dist/modules/plugins/plugins.gateway.js.map +1 -1
  230. package/dist/modules/plugins/plugins.interfaces.js +1 -2
  231. package/dist/modules/plugins/plugins.module.js +23 -26
  232. package/dist/modules/plugins/plugins.module.js.map +1 -1
  233. package/dist/modules/plugins/plugins.service.d.ts +9 -7
  234. package/dist/modules/plugins/plugins.service.js +230 -202
  235. package/dist/modules/plugins/plugins.service.js.map +1 -1
  236. package/dist/modules/server/server.controller.d.ts +4 -4
  237. package/dist/modules/server/server.controller.js +208 -205
  238. package/dist/modules/server/server.controller.js.map +1 -1
  239. package/dist/modules/server/server.dto.js +13 -16
  240. package/dist/modules/server/server.dto.js.map +1 -1
  241. package/dist/modules/server/server.module.js +23 -26
  242. package/dist/modules/server/server.module.js.map +1 -1
  243. package/dist/modules/server/server.service.d.ts +6 -6
  244. package/dist/modules/server/server.service.js +202 -224
  245. package/dist/modules/server/server.service.js.map +1 -1
  246. package/dist/modules/setup-wizard/setup-wizard.controller.d.ts +2 -2
  247. package/dist/modules/setup-wizard/setup-wizard.controller.js +19 -20
  248. package/dist/modules/setup-wizard/setup-wizard.controller.js.map +1 -1
  249. package/dist/modules/setup-wizard/setup-wizard.gateway.d.ts +2 -2
  250. package/dist/modules/setup-wizard/setup-wizard.gateway.js +25 -21
  251. package/dist/modules/setup-wizard/setup-wizard.gateway.js.map +1 -1
  252. package/dist/modules/setup-wizard/setup-wizard.guard.d.ts +1 -1
  253. package/dist/modules/setup-wizard/setup-wizard.guard.js +11 -9
  254. package/dist/modules/setup-wizard/setup-wizard.guard.js.map +1 -1
  255. package/dist/modules/setup-wizard/setup-wizard.module.js +12 -15
  256. package/dist/modules/setup-wizard/setup-wizard.module.js.map +1 -1
  257. package/dist/modules/status/status.controller.d.ts +5 -5
  258. package/dist/modules/status/status.controller.js +40 -36
  259. package/dist/modules/status/status.controller.js.map +1 -1
  260. package/dist/modules/status/status.gateway.d.ts +9 -9
  261. package/dist/modules/status/status.gateway.js +51 -47
  262. package/dist/modules/status/status.gateway.js.map +1 -1
  263. package/dist/modules/status/status.interfaces.js +2 -5
  264. package/dist/modules/status/status.interfaces.js.map +1 -1
  265. package/dist/modules/status/status.module.js +26 -29
  266. package/dist/modules/status/status.module.js.map +1 -1
  267. package/dist/modules/status/status.service.d.ts +7 -7
  268. package/dist/modules/status/status.service.js +100 -88
  269. package/dist/modules/status/status.service.js.map +1 -1
  270. package/dist/modules/users/users.controller.d.ts +2 -2
  271. package/dist/modules/users/users.controller.js +59 -60
  272. package/dist/modules/users/users.controller.js.map +1 -1
  273. package/dist/modules/users/users.dto.js +51 -45
  274. package/dist/modules/users/users.dto.js.map +1 -1
  275. package/dist/modules/users/users.module.js +14 -17
  276. package/dist/modules/users/users.module.js.map +1 -1
  277. package/dist/self-check.js +25 -25
  278. package/dist/self-check.js.map +1 -1
  279. package/package.json +6 -7
  280. package/public/{chunk-732XLY23.js → chunk-2SCTALGY.js} +1 -1
  281. package/public/{chunk-TGZNYEGN.js → chunk-425ZEUU6.js} +1 -1
  282. package/public/{chunk-BTBGWLKK.js → chunk-4T6CM7M3.js} +1 -1
  283. package/public/{chunk-325LPX6W.js → chunk-7SKTJO5M.js} +1 -1
  284. package/public/{chunk-QK4V5DVW.js → chunk-ATMY4YI2.js} +1 -1
  285. package/public/{chunk-YH6MRXGX.js → chunk-AZIRJR4B.js} +1 -1
  286. package/public/{chunk-2CNQY2E7.js → chunk-B2XE365J.js} +1 -1
  287. package/public/{chunk-O4SS7KVP.js → chunk-BMKJTHFC.js} +1 -1
  288. package/public/{chunk-2KEG7SYT.js → chunk-CGYD722J.js} +1 -1
  289. package/public/{chunk-FM6ZYPKR.js → chunk-CQREAKPC.js} +4 -4
  290. package/public/{chunk-WLGXJQPD.js → chunk-FGNMMSZH.js} +1 -1
  291. package/public/{chunk-TOYVIOBH.js → chunk-FTKWC2Q2.js} +1 -1
  292. package/public/{chunk-2LXNPXT5.js → chunk-HFW5E2OW.js} +1 -1
  293. package/public/chunk-IIDLQ7XY.js +1 -0
  294. package/public/{chunk-UNGEHXRN.js → chunk-INX52LH2.js} +1 -1
  295. package/public/{chunk-73TX7DHV.js → chunk-JD5JQTN5.js} +1 -1
  296. package/public/{chunk-EVND2DL5.js → chunk-JFRCT5V7.js} +1 -1
  297. package/public/{chunk-X5AKILHJ.js → chunk-JPCV77W6.js} +1 -1
  298. package/public/{chunk-3XDYZNNE.js → chunk-K7D2P3SM.js} +1 -1
  299. package/public/chunk-L66ATRVT.js +1 -0
  300. package/public/{chunk-2UOYBCTN.js → chunk-LARQLRNL.js} +1 -1
  301. package/public/{chunk-L5I3DZ23.js → chunk-LHCMU3MO.js} +1 -1
  302. package/public/{chunk-ZJJ3EOBP.js → chunk-LZQVKA4S.js} +1 -1
  303. package/public/{chunk-BLT2YCDN.js → chunk-M7QUT5ZZ.js} +1 -1
  304. package/public/{chunk-57DUDNZJ.js → chunk-MDBZMB6Y.js} +1 -1
  305. package/public/{chunk-LZOHFRHN.js → chunk-MNVUSYOZ.js} +1 -1
  306. package/public/{chunk-7IYTG6GP.js → chunk-PXSEH255.js} +1 -1
  307. package/public/{chunk-6KT3BYU6.js → chunk-PZ2ZCCFR.js} +1 -1
  308. package/public/{chunk-L43N56JA.js → chunk-QCZ4VVDL.js} +1 -1
  309. package/public/{chunk-UF2IM5BE.js → chunk-QSVZNI3M.js} +1 -1
  310. package/public/{chunk-3E2NZ5JW.js → chunk-QUA46GZJ.js} +1 -1
  311. package/public/{chunk-Q2IS3QQY.js → chunk-QVLCTKQH.js} +1 -1
  312. package/public/{chunk-Y5FP6C55.js → chunk-RQ4B2IIV.js} +1 -1
  313. package/public/{chunk-OK5EJ7US.js → chunk-RQAFAZAK.js} +1 -1
  314. package/public/{chunk-LH2LMHIZ.js → chunk-S4OE2ITZ.js} +1 -1
  315. package/public/{chunk-RMZRXORR.js → chunk-SA5C7QVC.js} +1 -1
  316. package/public/{chunk-ADW6BF5G.js → chunk-SSZBNSOM.js} +1 -1
  317. package/public/{chunk-4QXLJX7D.js → chunk-TA6DOQC5.js} +1 -1
  318. package/public/{chunk-OAHDGV32.js → chunk-TC77PFBQ.js} +1 -1
  319. package/public/{chunk-W3SNJ7TC.js → chunk-TKGKVKOW.js} +1 -1
  320. package/public/{chunk-U5JF2ZOK.js → chunk-UEDMHOPK.js} +1 -1
  321. package/public/{chunk-AI6E5JVH.js → chunk-UOPWP4RR.js} +1 -1
  322. package/public/chunk-UTFHCUKB.js +1 -0
  323. package/public/{chunk-ONTEIYY3.js → chunk-UTN2R7WG.js} +1 -1
  324. package/public/{chunk-QQ5VZZQG.js → chunk-UV24H47X.js} +1 -1
  325. package/public/{chunk-5ETJWAIW.js → chunk-VSBBKD6B.js} +1 -1
  326. package/public/{chunk-ASKB5DLO.js → chunk-W7UNXMCL.js} +1 -1
  327. package/public/{chunk-SY4VNLXW.js → chunk-WVCOONJF.js} +1 -1
  328. package/public/{chunk-YYJG2ENF.js → chunk-X3IVSHIL.js} +1 -1
  329. package/public/{chunk-3IZSIVEA.js → chunk-XE5VJDQL.js} +1 -1
  330. package/public/chunk-XMNXI4QP.js +50 -0
  331. package/public/{chunk-5T4JHJYL.js → chunk-XX5GWADI.js} +1 -1
  332. package/public/{chunk-LWAL5JUG.js → chunk-Y5XBENWZ.js} +1 -1
  333. package/public/index.html +2 -2
  334. package/public/{main-27RPBS22.js → main-UGYHSCMY.js} +1 -1
  335. package/public/{styles-CSF457UW.css → styles-WNHDEKE4.css} +1 -1
  336. package/scripts/extract-plugin-alias.js +8 -4
  337. package/public/chunk-P7TZIGJS.js +0 -50
  338. package/public/chunk-RYTGW6B7.js +0 -1
  339. package/public/chunk-SOT54YHI.js +0 -1
  340. package/public/chunk-VEGMNMLG.js +0 -1
@@ -1 +1 @@
1
- import{k as v,l as E,n as _,q as h}from"./chunk-SOT54YHI.js";import{$b as a,Ab as i,Bb as e,Cb as f,Nb as u,Qa as n,_b as o,db as d,na as l,qb as c,rb as x,sc as p,tc as s}from"./chunk-JJ7TVAIH.js";function y(t,w){if(t&1&&(i(0,"div",7),o(1),e()),t&2){let r=u();n(),a(r.error)}}function C(t,w){t&1&&(i(0,"p",8),o(1),p(2,"translate"),e()),t&2&&(n(),a(s(2,1,"platform.linux.server_will_power_down")))}var B=(()=>{class t{$api=l(h);$toastr=l(_);$translate=l(v);error=!1;ngOnInit(){this.$api.put("/platform-tools/linux/shutdown-host",{}).subscribe({error:r=>{console.error(r),this.error=this.$translate.instant("platform.linux.server_restart_error"),this.$toastr.error(this.$translate.instant("platform.linux.server_restart_error"),this.$translate.instant("toast.title_error"))}})}static \u0275fac=function(m){return new(m||t)};static \u0275cmp=d({type:t,selectors:[["ng-component"]],decls:13,vars:7,consts:[[1,"d-flex","justify-content-between"],[1,"primary-text","m-0"],[1,"my-4","align-items-center",2,"max-width","1000px","margin","auto"],[1,"w-100","text-center","primary-text","mb-5"],[1,"fas","fa-power-off",2,"font-size","75px"],[1,"text-center"],[1,"primary-text","mb-4"],[1,"alert","alert-error","my-4"],[1,"grey-text"]],template:function(m,S){m&1&&(i(0,"div",0)(1,"h3",1),o(2),p(3,"translate"),e()(),i(4,"div",2)(5,"div",3),f(6,"i",4),e(),i(7,"div",5)(8,"h4",6),o(9),p(10,"translate"),e(),c(11,y,2,1,"div",7)(12,C,3,3,"p",8),e()()),m&2&&(n(2),a(s(3,3,"menu.restart.title")),n(7),a(s(10,5,"platform.linux.shutting_down_server")),n(2),x(S.error?11:12))},dependencies:[E],encapsulation:2})}return t})();export{B as ShutdownLinuxComponent};
1
+ import{k as v,l as E,n as _,q as h}from"./chunk-L66ATRVT.js";import{$b as a,Ab as i,Bb as e,Cb as f,Nb as u,Qa as n,_b as o,db as d,na as l,qb as c,rb as x,sc as p,tc as s}from"./chunk-JJ7TVAIH.js";function y(t,w){if(t&1&&(i(0,"div",7),o(1),e()),t&2){let r=u();n(),a(r.error)}}function C(t,w){t&1&&(i(0,"p",8),o(1),p(2,"translate"),e()),t&2&&(n(),a(s(2,1,"platform.linux.server_will_power_down")))}var B=(()=>{class t{$api=l(h);$toastr=l(_);$translate=l(v);error=!1;ngOnInit(){this.$api.put("/platform-tools/linux/shutdown-host",{}).subscribe({error:r=>{console.error(r),this.error=this.$translate.instant("platform.linux.server_restart_error"),this.$toastr.error(this.$translate.instant("platform.linux.server_restart_error"),this.$translate.instant("toast.title_error"))}})}static \u0275fac=function(m){return new(m||t)};static \u0275cmp=d({type:t,selectors:[["ng-component"]],decls:13,vars:7,consts:[[1,"d-flex","justify-content-between"],[1,"primary-text","m-0"],[1,"my-4","align-items-center",2,"max-width","1000px","margin","auto"],[1,"w-100","text-center","primary-text","mb-5"],[1,"fas","fa-power-off",2,"font-size","75px"],[1,"text-center"],[1,"primary-text","mb-4"],[1,"alert","alert-error","my-4"],[1,"grey-text"]],template:function(m,S){m&1&&(i(0,"div",0)(1,"h3",1),o(2),p(3,"translate"),e()(),i(4,"div",2)(5,"div",3),f(6,"i",4),e(),i(7,"div",5)(8,"h4",6),o(9),p(10,"translate"),e(),c(11,y,2,1,"div",7)(12,C,3,3,"p",8),e()()),m&2&&(n(2),a(s(3,3,"menu.restart.title")),n(7),a(s(10,5,"platform.linux.shutting_down_server")),n(2),x(S.error?11:12))},dependencies:[E],encapsulation:2})}return t})();export{B as ShutdownLinuxComponent};
@@ -1 +1 @@
1
- import{a as l}from"./chunk-X5AKILHJ.js";import{a as m}from"./chunk-OAHDGV32.js";import{n as s}from"./chunk-ZEI3HZ6P.js";import{b as o}from"./chunk-U5JF2ZOK.js";import{k as i}from"./chunk-SOT54YHI.js";import{ia as r,na as n}from"./chunk-JJ7TVAIH.js";var I=(()=>{class e{$terminal=n(l);$settings=n(o);$modal=n(s);$translate=n(i);handleBeforeUnload(t){if(!this.$settings.env.terminal?.persistence&&!this.$settings.env.terminal?.hideWarning&&this.$terminal.hasActiveSession()&&this.$terminal.hasUserTypedInSession()){let a=this.$translate.instant("platform.terminal.terminate_unload");return t.preventDefault(),t.returnValue=a,a}}canDeactivate(){if(this.$settings.env.terminal?.persistence||this.$settings.env.terminal?.hideWarning||!this.$terminal.hasActiveSession()||!this.$terminal.hasUserTypedInSession())return!0;let t=this.$modal.open(m,{size:"lg",backdrop:"static"});return t.componentInstance.title=this.$translate.instant("platform.terminal.terminate_title"),t.componentInstance.message=this.$translate.instant("platform.terminal.terminate_message_1"),t.componentInstance.message2=this.$translate.instant("platform.terminal.terminate_message_2"),t.componentInstance.message3=this.$translate.instant("common.phrases.are_you_sure"),t.componentInstance.confirmButtonLabel=this.$translate.instant("form.button_continue"),t.componentInstance.confirmButtonClass="btn-primary",t.componentInstance.faIconClass="fas fa-exclamation-triangle text-warning",t.result.then(()=>!0).catch(()=>!1)}static \u0275fac=function(a){return new(a||e)};static \u0275prov=r({token:e,factory:e.\u0275fac,providedIn:"root"})}return e})();export{I as a};
1
+ import{a as l}from"./chunk-JPCV77W6.js";import{a as m}from"./chunk-TC77PFBQ.js";import{n as s}from"./chunk-ZEI3HZ6P.js";import{b as o}from"./chunk-UEDMHOPK.js";import{k as i}from"./chunk-L66ATRVT.js";import{ia as r,na as n}from"./chunk-JJ7TVAIH.js";var I=(()=>{class e{$terminal=n(l);$settings=n(o);$modal=n(s);$translate=n(i);handleBeforeUnload(t){if(!this.$settings.env.terminal?.persistence&&!this.$settings.env.terminal?.hideWarning&&this.$terminal.hasActiveSession()&&this.$terminal.hasUserTypedInSession()){let a=this.$translate.instant("platform.terminal.terminate_unload");return t.preventDefault(),t.returnValue=a,a}}canDeactivate(){if(this.$settings.env.terminal?.persistence||this.$settings.env.terminal?.hideWarning||!this.$terminal.hasActiveSession()||!this.$terminal.hasUserTypedInSession())return!0;let t=this.$modal.open(m,{size:"lg",backdrop:"static"});return t.componentInstance.title=this.$translate.instant("platform.terminal.terminate_title"),t.componentInstance.message=this.$translate.instant("platform.terminal.terminate_message_1"),t.componentInstance.message2=this.$translate.instant("platform.terminal.terminate_message_2"),t.componentInstance.message3=this.$translate.instant("common.phrases.are_you_sure"),t.componentInstance.confirmButtonLabel=this.$translate.instant("form.button_continue"),t.componentInstance.confirmButtonClass="btn-primary",t.componentInstance.faIconClass="fas fa-exclamation-triangle text-warning",t.result.then(()=>!0).catch(()=>!1)}static \u0275fac=function(a){return new(a||e)};static \u0275prov=r({token:e,factory:e.\u0275fac,providedIn:"root"})}return e})();export{I as a};
package/public/index.html CHANGED
@@ -16,9 +16,9 @@
16
16
  <link rel="manifest" href="/assets/manifest.webmanifest"/>
17
17
  <meta name="theme-color" content="#140a33" media="(prefers-color-scheme: light)"/>
18
18
  <meta name="theme-color" content="#0f0f0f" media="(prefers-color-scheme: dark)"/>
19
- <link rel="stylesheet" href="styles-CSF457UW.css" crossorigin="use-credentials"></head>
19
+ <link rel="stylesheet" href="styles-WNHDEKE4.css" crossorigin="use-credentials"></head>
20
20
 
21
21
  <body>
22
22
  <app-root></app-root>
23
- <link rel="modulepreload" href="chunk-W3SNJ7TC.js"><link rel="modulepreload" href="chunk-ZJJ3EOBP.js"><link rel="modulepreload" href="chunk-3IJXQMYZ.js"><link rel="modulepreload" href="chunk-4QXLJX7D.js"><link rel="modulepreload" href="chunk-TOYVIOBH.js"><link rel="modulepreload" href="chunk-RMZRXORR.js"><link rel="modulepreload" href="chunk-SY4VNLXW.js"><link rel="modulepreload" href="chunk-2FNQEOXF.js"><link rel="modulepreload" href="chunk-L5I3DZ23.js"><link rel="modulepreload" href="chunk-BTBGWLKK.js"><script src="polyfills-5KWHJ7II.js" type="module" crossorigin="use-credentials"></script><script src="main-27RPBS22.js" type="module" crossorigin="use-credentials"></script></body>
23
+ <link rel="modulepreload" href="chunk-TKGKVKOW.js"><link rel="modulepreload" href="chunk-LZQVKA4S.js"><link rel="modulepreload" href="chunk-3IJXQMYZ.js"><link rel="modulepreload" href="chunk-TA6DOQC5.js"><link rel="modulepreload" href="chunk-FTKWC2Q2.js"><link rel="modulepreload" href="chunk-SA5C7QVC.js"><link rel="modulepreload" href="chunk-WVCOONJF.js"><link rel="modulepreload" href="chunk-2FNQEOXF.js"><link rel="modulepreload" href="chunk-LHCMU3MO.js"><link rel="modulepreload" href="chunk-4T6CM7M3.js"><script src="polyfills-5KWHJ7II.js" type="module" crossorigin="use-credentials"></script><script src="main-UGYHSCMY.js" type="module" crossorigin="use-credentials"></script></body>
24
24
  </html>