homebridge-config-ui-x 5.9.1-beta.0 → 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 (359) hide show
  1. package/CHANGELOG.md +7 -2
  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.d.ts +1 -1
  91. package/dist/core/ssl/ssl-cert-generator.service.js +34 -36
  92. package/dist/core/ssl/ssl-cert-generator.service.js.map +1 -1
  93. package/dist/env-setup.d.ts +1 -0
  94. package/dist/env-setup.js +7 -0
  95. package/dist/env-setup.js.map +1 -0
  96. package/dist/globalDefaults.d.ts +1 -0
  97. package/dist/globalDefaults.js +1 -0
  98. package/dist/index.d.ts +1 -1
  99. package/dist/index.js +16 -19
  100. package/dist/index.js.map +1 -1
  101. package/dist/main.d.ts +5 -3
  102. package/dist/main.js +44 -51
  103. package/dist/main.js.map +1 -1
  104. package/dist/modules/accessories/accessories.controller.d.ts +2 -2
  105. package/dist/modules/accessories/accessories.controller.js +27 -29
  106. package/dist/modules/accessories/accessories.controller.js.map +1 -1
  107. package/dist/modules/accessories/accessories.dto.js +11 -13
  108. package/dist/modules/accessories/accessories.dto.js.map +1 -1
  109. package/dist/modules/accessories/accessories.gateway.d.ts +1 -1
  110. package/dist/modules/accessories/accessories.gateway.js +18 -16
  111. package/dist/modules/accessories/accessories.gateway.js.map +1 -1
  112. package/dist/modules/accessories/accessories.module.js +17 -20
  113. package/dist/modules/accessories/accessories.module.js.map +1 -1
  114. package/dist/modules/accessories/accessories.service.d.ts +2 -2
  115. package/dist/modules/accessories/accessories.service.js +37 -35
  116. package/dist/modules/accessories/accessories.service.js.map +1 -1
  117. package/dist/modules/backup/backup.controller.d.ts +2 -2
  118. package/dist/modules/backup/backup.controller.js +68 -67
  119. package/dist/modules/backup/backup.controller.js.map +1 -1
  120. package/dist/modules/backup/backup.gateway.d.ts +2 -2
  121. package/dist/modules/backup/backup.gateway.js +25 -21
  122. package/dist/modules/backup/backup.gateway.js.map +1 -1
  123. package/dist/modules/backup/backup.module.js +22 -25
  124. package/dist/modules/backup/backup.module.js.map +1 -1
  125. package/dist/modules/backup/backup.service.d.ts +5 -5
  126. package/dist/modules/backup/backup.service.js +143 -133
  127. package/dist/modules/backup/backup.service.js.map +1 -1
  128. package/dist/modules/child-bridges/child-bridges.gateway.d.ts +2 -2
  129. package/dist/modules/child-bridges/child-bridges.gateway.js +23 -21
  130. package/dist/modules/child-bridges/child-bridges.gateway.js.map +1 -1
  131. package/dist/modules/child-bridges/child-bridges.interfaces.js +1 -2
  132. package/dist/modules/child-bridges/child-bridges.module.js +19 -22
  133. package/dist/modules/child-bridges/child-bridges.module.js.map +1 -1
  134. package/dist/modules/child-bridges/child-bridges.service.d.ts +3 -3
  135. package/dist/modules/child-bridges/child-bridges.service.js +15 -11
  136. package/dist/modules/child-bridges/child-bridges.service.js.map +1 -1
  137. package/dist/modules/config-editor/config-editor.controller.d.ts +6 -6
  138. package/dist/modules/config-editor/config-editor.controller.js +94 -95
  139. package/dist/modules/config-editor/config-editor.controller.js.map +1 -1
  140. package/dist/modules/config-editor/config-editor.module.js +21 -24
  141. package/dist/modules/config-editor/config-editor.module.js.map +1 -1
  142. package/dist/modules/config-editor/config-editor.service.d.ts +6 -6
  143. package/dist/modules/config-editor/config-editor.service.js +65 -57
  144. package/dist/modules/config-editor/config-editor.service.js.map +1 -1
  145. package/dist/modules/custom-plugins/custom-plugins.module.js +10 -13
  146. package/dist/modules/custom-plugins/custom-plugins.module.js.map +1 -1
  147. package/dist/modules/custom-plugins/homebridge-deconz/homebridge-deconz.controller.d.ts +1 -1
  148. package/dist/modules/custom-plugins/homebridge-deconz/homebridge-deconz.controller.js +21 -19
  149. package/dist/modules/custom-plugins/homebridge-deconz/homebridge-deconz.controller.js.map +1 -1
  150. package/dist/modules/custom-plugins/homebridge-deconz/homebridge-deconz.module.js +14 -17
  151. package/dist/modules/custom-plugins/homebridge-deconz/homebridge-deconz.module.js.map +1 -1
  152. package/dist/modules/custom-plugins/homebridge-deconz/homebridge-deconz.service.d.ts +1 -1
  153. package/dist/modules/custom-plugins/homebridge-deconz/homebridge-deconz.service.js +18 -15
  154. package/dist/modules/custom-plugins/homebridge-deconz/homebridge-deconz.service.js.map +1 -1
  155. package/dist/modules/custom-plugins/homebridge-hue/homebridge-hue.controller.d.ts +1 -1
  156. package/dist/modules/custom-plugins/homebridge-hue/homebridge-hue.controller.js +21 -19
  157. package/dist/modules/custom-plugins/homebridge-hue/homebridge-hue.controller.js.map +1 -1
  158. package/dist/modules/custom-plugins/homebridge-hue/homebridge-hue.module.js +14 -17
  159. package/dist/modules/custom-plugins/homebridge-hue/homebridge-hue.module.js.map +1 -1
  160. package/dist/modules/custom-plugins/homebridge-hue/homebridge-hue.service.d.ts +1 -1
  161. package/dist/modules/custom-plugins/homebridge-hue/homebridge-hue.service.js +18 -15
  162. package/dist/modules/custom-plugins/homebridge-hue/homebridge-hue.service.js.map +1 -1
  163. package/dist/modules/custom-plugins/plugins-settings-ui/plugins-settings-ui.controller.d.ts +1 -1
  164. package/dist/modules/custom-plugins/plugins-settings-ui/plugins-settings-ui.controller.js +18 -19
  165. package/dist/modules/custom-plugins/plugins-settings-ui/plugins-settings-ui.controller.js.map +1 -1
  166. package/dist/modules/custom-plugins/plugins-settings-ui/plugins-settings-ui.gateway.d.ts +1 -1
  167. package/dist/modules/custom-plugins/plugins-settings-ui/plugins-settings-ui.gateway.js +15 -13
  168. package/dist/modules/custom-plugins/plugins-settings-ui/plugins-settings-ui.gateway.js.map +1 -1
  169. package/dist/modules/custom-plugins/plugins-settings-ui/plugins-settings-ui.module.js +18 -21
  170. package/dist/modules/custom-plugins/plugins-settings-ui/plugins-settings-ui.module.js.map +1 -1
  171. package/dist/modules/custom-plugins/plugins-settings-ui/plugins-settings-ui.service.d.ts +4 -4
  172. package/dist/modules/custom-plugins/plugins-settings-ui/plugins-settings-ui.service.js +47 -41
  173. package/dist/modules/custom-plugins/plugins-settings-ui/plugins-settings-ui.service.js.map +1 -1
  174. package/dist/modules/log/log.gateway.d.ts +2 -2
  175. package/dist/modules/log/log.gateway.js +15 -13
  176. package/dist/modules/log/log.gateway.js.map +1 -1
  177. package/dist/modules/log/log.interfaces.js +1 -2
  178. package/dist/modules/log/log.module.js +14 -17
  179. package/dist/modules/log/log.module.js.map +1 -1
  180. package/dist/modules/log/log.service.d.ts +3 -3
  181. package/dist/modules/log/log.service.js +47 -43
  182. package/dist/modules/log/log.service.js.map +1 -1
  183. package/dist/modules/platform-tools/docker/docker.controller.d.ts +1 -1
  184. package/dist/modules/platform-tools/docker/docker.controller.js +24 -25
  185. package/dist/modules/platform-tools/docker/docker.controller.js.map +1 -1
  186. package/dist/modules/platform-tools/docker/docker.module.js +14 -17
  187. package/dist/modules/platform-tools/docker/docker.module.js.map +1 -1
  188. package/dist/modules/platform-tools/docker/docker.service.d.ts +2 -2
  189. package/dist/modules/platform-tools/docker/docker.service.js +20 -16
  190. package/dist/modules/platform-tools/docker/docker.service.js.map +1 -1
  191. package/dist/modules/platform-tools/hb-service/hb-service.controller.d.ts +2 -2
  192. package/dist/modules/platform-tools/hb-service/hb-service.controller.js +35 -36
  193. package/dist/modules/platform-tools/hb-service/hb-service.controller.js.map +1 -1
  194. package/dist/modules/platform-tools/hb-service/hb-service.dto.js +20 -19
  195. package/dist/modules/platform-tools/hb-service/hb-service.dto.js.map +1 -1
  196. package/dist/modules/platform-tools/hb-service/hb-service.module.js +14 -17
  197. package/dist/modules/platform-tools/hb-service/hb-service.module.js.map +1 -1
  198. package/dist/modules/platform-tools/hb-service/hb-service.service.d.ts +3 -3
  199. package/dist/modules/platform-tools/hb-service/hb-service.service.js +37 -30
  200. package/dist/modules/platform-tools/hb-service/hb-service.service.js.map +1 -1
  201. package/dist/modules/platform-tools/linux/linux.controller.d.ts +1 -1
  202. package/dist/modules/platform-tools/linux/linux.controller.js +23 -21
  203. package/dist/modules/platform-tools/linux/linux.controller.js.map +1 -1
  204. package/dist/modules/platform-tools/linux/linux.module.js +14 -17
  205. package/dist/modules/platform-tools/linux/linux.module.js.map +1 -1
  206. package/dist/modules/platform-tools/linux/linux.service.d.ts +2 -2
  207. package/dist/modules/platform-tools/linux/linux.service.js +18 -14
  208. package/dist/modules/platform-tools/linux/linux.service.js.map +1 -1
  209. package/dist/modules/platform-tools/platform-tools.module.js +12 -15
  210. package/dist/modules/platform-tools/platform-tools.module.js.map +1 -1
  211. package/dist/modules/platform-tools/terminal/terminal.controller.d.ts +1 -1
  212. package/dist/modules/platform-tools/terminal/terminal.controller.js +15 -13
  213. package/dist/modules/platform-tools/terminal/terminal.controller.js.map +1 -1
  214. package/dist/modules/platform-tools/terminal/terminal.gateway.d.ts +2 -2
  215. package/dist/modules/platform-tools/terminal/terminal.gateway.js +17 -15
  216. package/dist/modules/platform-tools/terminal/terminal.gateway.js.map +1 -1
  217. package/dist/modules/platform-tools/terminal/terminal.interfaces.js +1 -2
  218. package/dist/modules/platform-tools/terminal/terminal.module.js +18 -21
  219. package/dist/modules/platform-tools/terminal/terminal.module.js.map +1 -1
  220. package/dist/modules/platform-tools/terminal/terminal.service.d.ts +4 -4
  221. package/dist/modules/platform-tools/terminal/terminal.service.js +33 -28
  222. package/dist/modules/platform-tools/terminal/terminal.service.js.map +1 -1
  223. package/dist/modules/plugins/plugins.controller.d.ts +6 -6
  224. package/dist/modules/plugins/plugins.controller.js +51 -52
  225. package/dist/modules/plugins/plugins.controller.js.map +1 -1
  226. package/dist/modules/plugins/plugins.dto.js +26 -24
  227. package/dist/modules/plugins/plugins.dto.js.map +1 -1
  228. package/dist/modules/plugins/plugins.gateway.d.ts +3 -3
  229. package/dist/modules/plugins/plugins.gateway.js +38 -34
  230. package/dist/modules/plugins/plugins.gateway.js.map +1 -1
  231. package/dist/modules/plugins/plugins.interfaces.js +1 -2
  232. package/dist/modules/plugins/plugins.module.js +23 -26
  233. package/dist/modules/plugins/plugins.module.js.map +1 -1
  234. package/dist/modules/plugins/plugins.service.d.ts +9 -7
  235. package/dist/modules/plugins/plugins.service.js +231 -202
  236. package/dist/modules/plugins/plugins.service.js.map +1 -1
  237. package/dist/modules/server/server.controller.d.ts +34 -4
  238. package/dist/modules/server/server.controller.js +294 -177
  239. package/dist/modules/server/server.controller.js.map +1 -1
  240. package/dist/modules/server/server.dto.js +13 -16
  241. package/dist/modules/server/server.dto.js.map +1 -1
  242. package/dist/modules/server/server.module.js +23 -26
  243. package/dist/modules/server/server.module.js.map +1 -1
  244. package/dist/modules/server/server.service.d.ts +36 -6
  245. package/dist/modules/server/server.service.js +406 -150
  246. package/dist/modules/server/server.service.js.map +1 -1
  247. package/dist/modules/setup-wizard/setup-wizard.controller.d.ts +2 -2
  248. package/dist/modules/setup-wizard/setup-wizard.controller.js +19 -20
  249. package/dist/modules/setup-wizard/setup-wizard.controller.js.map +1 -1
  250. package/dist/modules/setup-wizard/setup-wizard.gateway.d.ts +2 -2
  251. package/dist/modules/setup-wizard/setup-wizard.gateway.js +25 -21
  252. package/dist/modules/setup-wizard/setup-wizard.gateway.js.map +1 -1
  253. package/dist/modules/setup-wizard/setup-wizard.guard.d.ts +1 -1
  254. package/dist/modules/setup-wizard/setup-wizard.guard.js +11 -9
  255. package/dist/modules/setup-wizard/setup-wizard.guard.js.map +1 -1
  256. package/dist/modules/setup-wizard/setup-wizard.module.js +12 -15
  257. package/dist/modules/setup-wizard/setup-wizard.module.js.map +1 -1
  258. package/dist/modules/status/status.controller.d.ts +5 -5
  259. package/dist/modules/status/status.controller.js +40 -36
  260. package/dist/modules/status/status.controller.js.map +1 -1
  261. package/dist/modules/status/status.gateway.d.ts +9 -9
  262. package/dist/modules/status/status.gateway.js +51 -47
  263. package/dist/modules/status/status.gateway.js.map +1 -1
  264. package/dist/modules/status/status.interfaces.js +2 -5
  265. package/dist/modules/status/status.interfaces.js.map +1 -1
  266. package/dist/modules/status/status.module.js +26 -29
  267. package/dist/modules/status/status.module.js.map +1 -1
  268. package/dist/modules/status/status.service.d.ts +7 -7
  269. package/dist/modules/status/status.service.js +100 -88
  270. package/dist/modules/status/status.service.js.map +1 -1
  271. package/dist/modules/users/users.controller.d.ts +2 -2
  272. package/dist/modules/users/users.controller.js +59 -60
  273. package/dist/modules/users/users.controller.js.map +1 -1
  274. package/dist/modules/users/users.dto.js +51 -45
  275. package/dist/modules/users/users.dto.js.map +1 -1
  276. package/dist/modules/users/users.module.js +14 -17
  277. package/dist/modules/users/users.module.js.map +1 -1
  278. package/dist/self-check.js +25 -25
  279. package/dist/self-check.js.map +1 -1
  280. package/docs/ssl-upload-pr.md +103 -0
  281. package/package.json +6 -7
  282. package/public/{chunk-PPA66JI2.js → chunk-2FNQEOXF.js} +1 -1
  283. package/public/{chunk-HERKNFLL.js → chunk-2SCTALGY.js} +1 -1
  284. package/public/{chunk-BQTGMLQB.js → chunk-3IJXQMYZ.js} +1 -1
  285. package/public/chunk-425ZEUU6.js +1 -0
  286. package/public/{chunk-EHHNHG6Q.js → chunk-4T6CM7M3.js} +1 -1
  287. package/public/{chunk-IKY3F7MM.js → chunk-7SKTJO5M.js} +1 -1
  288. package/public/{chunk-E4ZKIFZH.js → chunk-7UDDRMZZ.js} +1 -1
  289. package/public/{chunk-Y2N6WV2O.js → chunk-ATMY4YI2.js} +1 -1
  290. package/public/{chunk-UKEKNQEJ.js → chunk-AZIRJR4B.js} +1 -1
  291. package/public/{chunk-2UQL2OTF.js → chunk-B2XE365J.js} +1 -1
  292. package/public/{chunk-JWHZQ7YI.js → chunk-BMKJTHFC.js} +1 -1
  293. package/public/{chunk-R2PMDKTD.js → chunk-CGYD722J.js} +1 -1
  294. package/public/{chunk-BI2TS6NN.js → chunk-CQREAKPC.js} +4 -4
  295. package/public/{chunk-WMGV3KS6.js → chunk-CYBDQV2B.js} +1 -1
  296. package/public/{chunk-TJEQFEML.js → chunk-D5RKKI2A.js} +1 -1
  297. package/public/{chunk-NUCXRR5D.js → chunk-EAGKQ5OJ.js} +1 -1
  298. package/public/{chunk-EYO3XCE2.js → chunk-FGNMMSZH.js} +1 -1
  299. package/public/{chunk-FGS4HIPD.js → chunk-FTKWC2Q2.js} +1 -1
  300. package/public/{chunk-QU4I4QSX.js → chunk-HFW5E2OW.js} +1 -1
  301. package/public/chunk-IIDLQ7XY.js +1 -0
  302. package/public/{chunk-4E4YMHG4.js → chunk-INX52LH2.js} +1 -1
  303. package/public/{chunk-VFIOPF3O.js → chunk-JD5JQTN5.js} +1 -1
  304. package/public/{chunk-RLWY3GD4.js → chunk-JFRCT5V7.js} +1 -1
  305. package/public/{chunk-JWCVCB6V.js → chunk-JJ7TVAIH.js} +4 -4
  306. package/public/{chunk-JWY7RFE6.js → chunk-JPCV77W6.js} +1 -1
  307. package/public/{chunk-ISV4M72Q.js → chunk-K7D2P3SM.js} +1 -1
  308. package/public/chunk-L66ATRVT.js +1 -0
  309. package/public/{chunk-IXIZVUXX.js → chunk-LARQLRNL.js} +1 -1
  310. package/public/{chunk-BVTPAZF3.js → chunk-LHCMU3MO.js} +1 -1
  311. package/public/{chunk-5T6O4JCR.js → chunk-LZQVKA4S.js} +1 -1
  312. package/public/{chunk-7F6JT34E.js → chunk-M7QUT5ZZ.js} +1 -1
  313. package/public/{chunk-2MFBHUTD.js → chunk-MDBZMB6Y.js} +1 -1
  314. package/public/{chunk-HVGUNGBB.js → chunk-MNVUSYOZ.js} +1 -1
  315. package/public/{chunk-ZC3JEQZ5.js → chunk-N2TWGDNX.js} +1 -1
  316. package/public/{chunk-XS5JK2LY.js → chunk-NKNWXFAK.js} +1 -1
  317. package/public/{chunk-SOA3BB36.js → chunk-OS2SEJZU.js} +1 -1
  318. package/public/{chunk-IEO2AG2N.js → chunk-PXSEH255.js} +1 -1
  319. package/public/{chunk-QJLKBB62.js → chunk-PZ2ZCCFR.js} +1 -1
  320. package/public/{chunk-CWTDHTPI.js → chunk-QCZ4VVDL.js} +1 -1
  321. package/public/{chunk-5W7EKO7F.js → chunk-QSVZNI3M.js} +1 -1
  322. package/public/{chunk-4H7ODI34.js → chunk-QUA46GZJ.js} +1 -1
  323. package/public/{chunk-D4LRW76J.js → chunk-QVLCTKQH.js} +1 -1
  324. package/public/{chunk-DL2QDFLD.js → chunk-RQ4B2IIV.js} +1 -1
  325. package/public/{chunk-OTOQR5Z2.js → chunk-RQAFAZAK.js} +1 -1
  326. package/public/{chunk-4AWJ2PWG.js → chunk-S4OE2ITZ.js} +1 -1
  327. package/public/{chunk-ZF6W5Z5R.js → chunk-SA5C7QVC.js} +1 -1
  328. package/public/{chunk-USXMCNIE.js → chunk-SSZBNSOM.js} +1 -1
  329. package/public/{chunk-E7S36RMO.js → chunk-TA6DOQC5.js} +1 -1
  330. package/public/{chunk-VB4UAZWJ.js → chunk-TC77PFBQ.js} +1 -1
  331. package/public/{chunk-5WTTTYNS.js → chunk-TKGKVKOW.js} +1 -1
  332. package/public/{chunk-FOSFENMV.js → chunk-TSFGO3MA.js} +1 -1
  333. package/public/{chunk-IBO6BDNZ.js → chunk-UEDMHOPK.js} +1 -1
  334. package/public/{chunk-LI4BZAUI.js → chunk-UOPWP4RR.js} +1 -1
  335. package/public/chunk-UTFHCUKB.js +1 -0
  336. package/public/{chunk-SXOLKD36.js → chunk-UTN2R7WG.js} +1 -1
  337. package/public/chunk-UV24H47X.js +1 -0
  338. package/public/{chunk-B5Z4M7ZJ.js → chunk-VSBBKD6B.js} +1 -1
  339. package/public/{chunk-AO7VT6PL.js → chunk-VYC5JLE6.js} +1 -1
  340. package/public/{chunk-AOALMLGY.js → chunk-W7UNXMCL.js} +1 -1
  341. package/public/{chunk-NIERW5KT.js → chunk-WVCOONJF.js} +1 -1
  342. package/public/{chunk-RON3LUMX.js → chunk-WWSLIQVD.js} +1 -1
  343. package/public/{chunk-4DVF333O.js → chunk-X3IVSHIL.js} +1 -1
  344. package/public/{chunk-5G7T74GR.js → chunk-XE5VJDQL.js} +1 -1
  345. package/public/chunk-XMNXI4QP.js +50 -0
  346. package/public/{chunk-W26VKO62.js → chunk-XX5GWADI.js} +1 -1
  347. package/public/{chunk-TGX55EFG.js → chunk-Y5XBENWZ.js} +1 -1
  348. package/public/{chunk-Z6VQEXUS.js → chunk-YNONXMOG.js} +1 -1
  349. package/public/{chunk-DIWD6B4C.js → chunk-ZEI3HZ6P.js} +1 -1
  350. package/public/index.html +2 -2
  351. package/public/{main-QP5R7HI3.js → main-UGYHSCMY.js} +1 -1
  352. package/public/{styles-CSF457UW.css → styles-WNHDEKE4.css} +1 -1
  353. package/scripts/extract-plugin-alias.js +8 -4
  354. package/public/chunk-2ADAW5AD.js +0 -1
  355. package/public/chunk-2Y63WBU6.js +0 -1
  356. package/public/chunk-I3QQTGGZ.js +0 -1
  357. package/public/chunk-LGE6SGDN.js +0 -1
  358. package/public/chunk-PZD3OMMY.js +0 -1
  359. package/public/chunk-QOSAHW73.js +0 -50
@@ -1 +1 @@
1
- import{e as f,h as s}from"./chunk-WMGV3KS6.js";import{k as l,n as u,q as d}from"./chunk-I3QQTGGZ.js";import{eb as a,h as p,ia as m,ja as i,na as e,x as c}from"./chunk-JWCVCB6V.js";var n=(()=>{class t{$api=e(d);$router=e(f);$toastr=e(u);$translate=e(l);resolve(){return p(this,null,function*(){try{return yield c(this.$api.get("/platform-tools/docker/startup-script"))}catch(r){console.error(r),this.$toastr.error(r.message,this.$translate.instant("toast.title_error")),this.$router.navigate(["/"])}})}static \u0275fac=function(o){return new(o||t)};static \u0275prov=m({token:t,factory:t.\u0275fac})}return t})();var S=[{path:"",redirectTo:"/",pathMatch:"full"},{path:"startup-script",loadComponent:()=>import("./chunk-7F6JT34E.js").then(t=>t.StartupScriptComponent),resolve:{startupScript:n}},{path:"restart-container",loadComponent:()=>import("./chunk-UKEKNQEJ.js").then(t=>t.ContainerRestartComponent)}],v=(()=>{class t{static \u0275fac=function(o){return new(o||t)};static \u0275mod=a({type:t});static \u0275inj=i({imports:[s.forChild(S),s]})}return t})();var T=(()=>{class t{static \u0275fac=function(o){return new(o||t)};static \u0275mod=a({type:t});static \u0275inj=i({providers:[n],imports:[v]})}return t})();export{T as DockerModule};
1
+ import{e as f,h as s}from"./chunk-CYBDQV2B.js";import{k as l,n as u,q as d}from"./chunk-L66ATRVT.js";import{eb as a,h as p,ia as m,ja as i,na as e,x as c}from"./chunk-JJ7TVAIH.js";var n=(()=>{class t{$api=e(d);$router=e(f);$toastr=e(u);$translate=e(l);resolve(){return p(this,null,function*(){try{return yield c(this.$api.get("/platform-tools/docker/startup-script"))}catch(r){console.error(r),this.$toastr.error(r.message,this.$translate.instant("toast.title_error")),this.$router.navigate(["/"])}})}static \u0275fac=function(o){return new(o||t)};static \u0275prov=m({token:t,factory:t.\u0275fac})}return t})();var S=[{path:"",redirectTo:"/",pathMatch:"full"},{path:"startup-script",loadComponent:()=>import("./chunk-M7QUT5ZZ.js").then(t=>t.StartupScriptComponent),resolve:{startupScript:n}},{path:"restart-container",loadComponent:()=>import("./chunk-AZIRJR4B.js").then(t=>t.ContainerRestartComponent)}],v=(()=>{class t{static \u0275fac=function(o){return new(o||t)};static \u0275mod=a({type:t});static \u0275inj=i({imports:[s.forChild(S),s]})}return t})();var T=(()=>{class t{static \u0275fac=function(o){return new(o||t)};static \u0275mod=a({type:t});static \u0275inj=i({providers:[n],imports:[v]})}return t})();export{T as DockerModule};
@@ -1 +1 @@
1
- import{a as b}from"./chunk-IKY3F7MM.js";import"./chunk-EYO3XCE2.js";import{e as T}from"./chunk-WMGV3KS6.js";import{b as w}from"./chunk-IBO6BDNZ.js";import{k as C,l as $,n as k,q as S}from"./chunk-I3QQTGGZ.js";import{$b as s,Ab as r,Bb as i,Cb as l,Jb as E,La as x,Nb as h,Qa as n,_b as a,db as _,lc as g,na as o,qb as d,rb as f,rc as m,sc as c,tc as y}from"./chunk-JWCVCB6V.js";var I=t=>({command:t});function D(t,u){if(t&1&&(r(0,"div",7),a(1),i()),t&2){let e=h();n(),s(e.error)}}function R(t,u){t&1&&(r(0,"p",9),a(1),m(2,"translate"),i(),r(3,"div",10)(4,"div",11),l(5,"i",12),i()()),t&2&&(n(),s(c(2,1,"restart.please_wait_while_server_restarts")))}function B(t,u){if(t&1&&(r(0,"div",8)(1,"p"),a(2),m(3,"translate"),i(),l(4,"p",13),m(5,"translate"),i()),t&2){let e=h();n(2),s(c(3,2,"platform.docker.server_long_time")),n(2),E("innerHTML",y(5,4,"platform.docker.run_with_restart",g(7,I,e.command)),x)}}var U=(()=>{class t{$api=o(S);$router=o(T);$settings=o(w);$toastr=o(k);$translate=o(C);$ws=o(b);checkTimeout;checkDelay;io;resp={};timeout=!1;error=!1;command='<span class="font-monospace">--restart=always</span>';ngOnInit(){this.io=this.$ws.connectToNamespace("status"),this.io.connected.subscribe(()=>{this.io.socket.emit("monitor-server-status"),this.$settings.getAppSettings().catch(()=>{})}),this.$api.put("/platform-tools/docker/restart-container",{}).subscribe({next:e=>{this.resp=e,this.checkIfServerUp()},error:e=>{this.error=this.$translate.instant("restart.toast_server_restart_error"),console.error(e),this.$toastr.error(this.$translate.instant("restart.toast_server_restart_error"),this.$translate.instant("toast.title_error"))}})}ngOnDestroy(){this.io.end(),clearTimeout(this.checkDelay),clearTimeout(this.checkTimeout)}checkIfServerUp(){this.checkDelay=setTimeout(()=>{this.io.socket.on("homebridge-status",e=>{(e.status==="ok"||e.status==="pending")&&(this.$toastr.success(this.$translate.instant("platform.docker.container_restarted"),this.$translate.instant("toast.title_success")),this.$router.navigate(["/"]))})},1e4),this.checkTimeout=setTimeout(()=>{this.$toastr.warning(this.$translate.instant("restart.toast_server_restart_timeout"),this.$translate.instant("toast.title_warning"),{timeOut:1e4}),this.timeout=!0},6e4)}static \u0275fac=function(p){return new(p||t)};static \u0275cmp=_({type:t,selectors:[["ng-component"]],decls:14,vars:8,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,"fab","fa-docker",2,"font-size","75px"],[1,"text-center"],[1,"primary-text","mb-4"],[1,"alert","alert-error","my-4"],[1,"alert","alert-warning","my-4"],[1,"grey-text"],[1,"justify-content-center","my-4"],[1,"restart-progress-box","primary-text"],[1,"fas","fa-spinner","fa-spin"],[1,"grey-text","mb-0",3,"innerHTML"]],template:function(p,v){p&1&&(r(0,"div",0)(1,"h3",1),a(2),m(3,"translate"),i()(),r(4,"div",2)(5,"div",3),l(6,"i",4),i(),r(7,"div",5)(8,"h4",6),a(9),m(10,"translate"),i(),d(11,D,2,1,"div",7)(12,R,6,3),d(13,B,6,9,"div",8),i()()),p&2&&(n(2),s(c(3,4,"menu.restart.title")),n(7),s(c(10,6,"platform.docker.title_restarting")),n(2),f(v.error?11:12),n(2),f(v.timeout?13:-1))},dependencies:[$],styles:[".restart-progress-box[_ngcontent-%COMP%]{font-size:22px;font-weight:300;margin-top:15px}"]})}return t})();export{U as ContainerRestartComponent};
1
+ import{a as b}from"./chunk-7SKTJO5M.js";import"./chunk-FGNMMSZH.js";import{e as T}from"./chunk-CYBDQV2B.js";import{b as w}from"./chunk-UEDMHOPK.js";import{k as C,l as $,n as k,q as S}from"./chunk-L66ATRVT.js";import{$b as s,Ab as r,Bb as i,Cb as l,Jb as E,La as x,Nb as h,Qa as n,_b as a,db as _,mc as g,na as o,qb as d,rb as f,sc as m,tc as c,uc as y}from"./chunk-JJ7TVAIH.js";var I=t=>({command:t});function D(t,u){if(t&1&&(r(0,"div",7),a(1),i()),t&2){let e=h();n(),s(e.error)}}function R(t,u){t&1&&(r(0,"p",9),a(1),m(2,"translate"),i(),r(3,"div",10)(4,"div",11),l(5,"i",12),i()()),t&2&&(n(),s(c(2,1,"restart.please_wait_while_server_restarts")))}function B(t,u){if(t&1&&(r(0,"div",8)(1,"p"),a(2),m(3,"translate"),i(),l(4,"p",13),m(5,"translate"),i()),t&2){let e=h();n(2),s(c(3,2,"platform.docker.server_long_time")),n(2),E("innerHTML",y(5,4,"platform.docker.run_with_restart",g(7,I,e.command)),x)}}var U=(()=>{class t{$api=o(S);$router=o(T);$settings=o(w);$toastr=o(k);$translate=o(C);$ws=o(b);checkTimeout;checkDelay;io;resp={};timeout=!1;error=!1;command='<span class="font-monospace">--restart=always</span>';ngOnInit(){this.io=this.$ws.connectToNamespace("status"),this.io.connected.subscribe(()=>{this.io.socket.emit("monitor-server-status"),this.$settings.getAppSettings().catch(()=>{})}),this.$api.put("/platform-tools/docker/restart-container",{}).subscribe({next:e=>{this.resp=e,this.checkIfServerUp()},error:e=>{this.error=this.$translate.instant("restart.toast_server_restart_error"),console.error(e),this.$toastr.error(this.$translate.instant("restart.toast_server_restart_error"),this.$translate.instant("toast.title_error"))}})}ngOnDestroy(){this.io.end(),clearTimeout(this.checkDelay),clearTimeout(this.checkTimeout)}checkIfServerUp(){this.checkDelay=setTimeout(()=>{this.io.socket.on("homebridge-status",e=>{(e.status==="ok"||e.status==="pending")&&(this.$toastr.success(this.$translate.instant("platform.docker.container_restarted"),this.$translate.instant("toast.title_success")),this.$router.navigate(["/"]))})},1e4),this.checkTimeout=setTimeout(()=>{this.$toastr.warning(this.$translate.instant("restart.toast_server_restart_timeout"),this.$translate.instant("toast.title_warning"),{timeOut:1e4}),this.timeout=!0},6e4)}static \u0275fac=function(p){return new(p||t)};static \u0275cmp=_({type:t,selectors:[["ng-component"]],decls:14,vars:8,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,"fab","fa-docker",2,"font-size","75px"],[1,"text-center"],[1,"primary-text","mb-4"],[1,"alert","alert-error","my-4"],[1,"alert","alert-warning","my-4"],[1,"grey-text"],[1,"justify-content-center","my-4"],[1,"restart-progress-box","primary-text"],[1,"fas","fa-spinner","fa-spin"],[1,"grey-text","mb-0",3,"innerHTML"]],template:function(p,v){p&1&&(r(0,"div",0)(1,"h3",1),a(2),m(3,"translate"),i()(),r(4,"div",2)(5,"div",3),l(6,"i",4),i(),r(7,"div",5)(8,"h4",6),a(9),m(10,"translate"),i(),d(11,D,2,1,"div",7)(12,R,6,3),d(13,B,6,9,"div",8),i()()),p&2&&(n(2),s(c(3,4,"menu.restart.title")),n(7),s(c(10,6,"platform.docker.title_restarting")),n(2),f(v.error?11:12),n(2),f(v.timeout?13:-1))},dependencies:[$],styles:[".restart-progress-box[_ngcontent-%COMP%]{font-size:22px;font-weight:300;margin-top:15px}"]})}return t})();export{U as ContainerRestartComponent};
@@ -1 +1 @@
1
- import{h as i}from"./chunk-WMGV3KS6.js";import{eb as r,ja as o}from"./chunk-JWCVCB6V.js";var m=[{path:"",loadComponent:()=>import("./chunk-4DVF333O.js").then(t=>t.SupportComponent)}],n=(()=>{class t{static \u0275fac=function(e){return new(e||t)};static \u0275mod=r({type:t});static \u0275inj=o({imports:[i.forChild(m),i]})}return t})();var s=(()=>{class t{static \u0275fac=function(e){return new(e||t)};static \u0275mod=r({type:t});static \u0275inj=o({imports:[n]})}return t})();export{s as SupportModule};
1
+ import{h as i}from"./chunk-CYBDQV2B.js";import{eb as r,ja as o}from"./chunk-JJ7TVAIH.js";var m=[{path:"",loadComponent:()=>import("./chunk-X3IVSHIL.js").then(t=>t.SupportComponent)}],n=(()=>{class t{static \u0275fac=function(e){return new(e||t)};static \u0275mod=r({type:t});static \u0275inj=o({imports:[i.forChild(m),i]})}return t})();var s=(()=>{class t{static \u0275fac=function(e){return new(e||t)};static \u0275mod=r({type:t});static \u0275inj=o({imports:[n]})}return t})();export{s as SupportModule};