@webos-tools/cli 3.1.2 → 3.2.0

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 (1402) hide show
  1. package/.eslintignore +1 -1
  2. package/.eslintrc.js +52 -52
  3. package/APIs.js +79 -79
  4. package/CHANGELOG.md +201 -166
  5. package/LICENSE +201 -201
  6. package/LICENSES/342/200/216/LicenseRef-3rd_party_licenses.txt +1355 -0
  7. package/README.md +226 -219
  8. package/bin/ares-config.js +211 -202
  9. package/bin/ares-device-info.js +30 -30
  10. package/bin/ares-device.js +222 -219
  11. package/bin/ares-generate.js +274 -274
  12. package/bin/ares-inspect.js +179 -179
  13. package/bin/ares-install.js +223 -223
  14. package/bin/ares-launch.js +318 -318
  15. package/bin/ares-log.js +259 -259
  16. package/bin/ares-novacom.js +220 -220
  17. package/bin/ares-package.js +347 -336
  18. package/bin/ares-pull.js +156 -156
  19. package/bin/ares-push.js +155 -155
  20. package/bin/ares-server.js +174 -174
  21. package/bin/ares-setup-device.js +577 -525
  22. package/bin/ares-shell.js +132 -132
  23. package/bin/ares.js +166 -166
  24. package/files/conf/ares.json +50 -49
  25. package/files/conf/command-service.json +78 -73
  26. package/files/conf/config.json +31 -31
  27. package/files/conf/ipk.json +30 -30
  28. package/files/conf/novacom-devices.json +69 -52
  29. package/files/conf/query/query-app.json +14 -14
  30. package/files/conf/query/query-hosted.json +18 -18
  31. package/files/conf/query/query-package.json +10 -10
  32. package/files/conf/query/query-service.json +6 -6
  33. package/files/conf/sdk.json +8 -8
  34. package/files/conf/template.json +57 -57
  35. package/files/conf/webos_emul +27 -27
  36. package/files/conf-base/env/sdk-apollo.json +8 -8
  37. package/files/conf-base/env/sdk-ose.json +8 -8
  38. package/files/conf-base/env/sdk-signage.json +8 -0
  39. package/files/conf-base/env/sdk-tv.json +8 -8
  40. package/files/conf-base/key/pubkey-signage.pem +9 -0
  41. package/files/conf-base/profile/config-apollo.json +29 -29
  42. package/files/conf-base/profile/config-ose.json +29 -29
  43. package/files/conf-base/profile/config-signage.json +29 -0
  44. package/files/conf-base/profile/config-tv.json +31 -31
  45. package/files/conf-base/query/query-app.json +14 -14
  46. package/files/conf-base/query/query-hosted.json +18 -18
  47. package/files/conf-base/query/query-package.json +10 -10
  48. package/files/conf-base/query/query-service.json +6 -6
  49. package/files/conf-base/query/signage/query-app.json +14 -0
  50. package/files/conf-base/query/signage/query-service.json +6 -0
  51. package/files/conf-base/template-conf/apollo-sdk-templates.json +55 -50
  52. package/files/conf-base/template-conf/ose-templates.json +67 -67
  53. package/files/conf-base/template-conf/signage-sdk-templates.json +239 -0
  54. package/files/conf-base/template-conf/tv-sdk-templates.json +57 -57
  55. package/files/help/ares-config.help +48 -48
  56. package/files/help/ares-device.help +109 -109
  57. package/files/help/ares-generate.help +101 -91
  58. package/files/help/ares-inspect.help +77 -76
  59. package/files/help/ares-install.help +95 -95
  60. package/files/help/ares-launch.help +111 -105
  61. package/files/help/ares-log-pmlogd.help +84 -84
  62. package/files/help/ares-log.help +101 -101
  63. package/files/help/ares-novacom.help +68 -68
  64. package/files/help/ares-package.help +103 -101
  65. package/files/help/ares-pull.help +38 -38
  66. package/files/help/ares-push.help +38 -38
  67. package/files/help/ares-server.help +44 -44
  68. package/files/help/ares-setup-device.help +196 -156
  69. package/files/help/ares-shell.help +42 -42
  70. package/files/help/ares.help +52 -52
  71. package/files/help/readme.help +23 -23
  72. package/files/schema/ApplicationDescription.schema +319 -319
  73. package/files/schema/NovacomDevices.schema +63 -62
  74. package/files/templates/apollo-sdk-templates/appinfo/appinfo.json +10 -10
  75. package/files/templates/apollo-sdk-templates/bootplate-web/index.html +88 -88
  76. package/files/templates/apollo-sdk-templates/hosted-webapp/index.html +13 -13
  77. package/files/templates/apollo-sdk-templates/js-service/helloclient.js +31 -31
  78. package/files/templates/apollo-sdk-templates/js-service/helloworld_webos_service.js +188 -188
  79. package/files/templates/apollo-sdk-templates/native-service/CMakeLists.txt +72 -0
  80. package/files/templates/apollo-sdk-templates/native-service/services.json +11 -0
  81. package/files/templates/apollo-sdk-templates/native-service/src/main.c +144 -0
  82. package/files/templates/apollo-sdk-templates/serviceinfo/package.json +11 -11
  83. package/files/templates/apollo-sdk-templates/serviceinfo/services.json +8 -8
  84. package/files/templates/ose-sdk-templates/appinfo/appinfo.json +10 -10
  85. package/files/templates/ose-sdk-templates/bootplate-web/index.html +88 -88
  86. package/files/templates/ose-sdk-templates/hosted-webapp/index.html +13 -13
  87. package/files/templates/ose-sdk-templates/js-service/helloclient.js +31 -31
  88. package/files/templates/ose-sdk-templates/js-service/helloworld_webos_service.js +188 -188
  89. package/files/templates/ose-sdk-templates/qml-app/main.qml +68 -68
  90. package/files/templates/ose-sdk-templates/qmlappinfo/appinfo.json +10 -10
  91. package/files/templates/ose-sdk-templates/serviceinfo/package.json +11 -11
  92. package/files/templates/ose-sdk-templates/serviceinfo/services.json +8 -8
  93. package/files/templates/signage-sdk-templates/Backlight_Scheduling/clockTable.js +29 -0
  94. package/files/templates/signage-sdk-templates/Backlight_Scheduling/index.html +53 -0
  95. package/files/templates/signage-sdk-templates/Backlight_Scheduling/js/idcap.js +21 -0
  96. package/files/templates/signage-sdk-templates/Backlight_Scheduling/remocon.js +214 -0
  97. package/files/templates/signage-sdk-templates/Backlight_Scheduling/scheduler.js +123 -0
  98. package/files/templates/signage-sdk-templates/Backlight_Scheduling/setanddelete.js +25 -0
  99. package/files/templates/signage-sdk-templates/Backlight_Scheduling/style.css +213 -0
  100. package/files/templates/signage-sdk-templates/Download_Progress/app.css +27 -0
  101. package/files/templates/signage-sdk-templates/Download_Progress/app.js +407 -0
  102. package/files/templates/signage-sdk-templates/Download_Progress/index.html +32 -0
  103. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova/2.7.0/cordova.webos.js +7038 -0
  104. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova/LICENSE +201 -0
  105. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.0/configuration.js +1 -0
  106. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.0/deviceInfo.js +1 -0
  107. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.0/inputSource.js +1 -0
  108. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.0/power.js +1 -0
  109. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.0/signage.js +1 -0
  110. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.0/sound.js +1 -0
  111. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.0/storage.js +1 -0
  112. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.0/video.js +1 -0
  113. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.1/configuration.js +1 -0
  114. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.1/deviceInfo.js +1 -0
  115. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.1/inputSource.js +1 -0
  116. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.1/power.js +1 -0
  117. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.1/signage.js +1 -0
  118. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.1/sound.js +1 -0
  119. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.1/storage.js +1 -0
  120. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.1/video.js +1 -0
  121. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.2/configuration.js +1 -0
  122. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.2/deviceInfo.js +1 -0
  123. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.2/inputSource.js +1 -0
  124. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.2/power.js +1 -0
  125. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.2/signage.js +1 -0
  126. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.2/sound.js +1 -0
  127. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.2/storage.js +23 -0
  128. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.2/video.js +1 -0
  129. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.3/configuration.js +1 -0
  130. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.3/deviceInfo.js +1 -0
  131. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.3/inputSource.js +1 -0
  132. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.3/power.js +1 -0
  133. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.3/signage.js +1 -0
  134. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.3/sound.js +1 -0
  135. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.3/storage.js +1 -0
  136. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.3/video.js +1 -0
  137. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.0/configuration.js +9 -0
  138. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.0/deviceInfo.js +9 -0
  139. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.0/inputSource.js +9 -0
  140. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.0/power.js +9 -0
  141. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.0/security.js +9 -0
  142. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.0/signage.js +9 -0
  143. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.0/sound.js +9 -0
  144. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.0/storage.js +9 -0
  145. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.0/time.js +9 -0
  146. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.0/utility.js +9 -0
  147. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.0/video.js +9 -0
  148. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.1/configuration.js +9 -0
  149. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.1/deviceInfo.js +9 -0
  150. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.1/inputSource.js +9 -0
  151. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.1/power.js +9 -0
  152. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.1/security.js +9 -0
  153. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.1/signage.js +9 -0
  154. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.1/sound.js +9 -0
  155. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.1/storage.js +9 -0
  156. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.1/time.js +9 -0
  157. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.1/utility.js +9 -0
  158. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.1/video.js +9 -0
  159. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.2/configuration.js +9 -0
  160. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.2/deviceInfo.js +9 -0
  161. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.2/inputSource.js +9 -0
  162. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.2/power.js +9 -0
  163. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.2/security.js +9 -0
  164. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.2/signage.js +8 -0
  165. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.2/sound.js +9 -0
  166. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.2/storage.js +9 -0
  167. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.2/time.js +9 -0
  168. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.2/utility.js +9 -0
  169. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.2/video.js +9 -0
  170. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.3/configuration.js +9 -0
  171. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.3/deviceInfo.js +9 -0
  172. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.3/inputSource.js +9 -0
  173. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.3/power.js +9 -0
  174. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.3/security.js +9 -0
  175. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.3/signage.js +9 -0
  176. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.3/sound.js +9 -0
  177. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.3/storage.js +9 -0
  178. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.3/time.js +9 -0
  179. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.3/utility.js +9 -0
  180. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.3/video.js +9 -0
  181. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.4/configuration.js +1 -0
  182. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.4/deviceInfo.js +1 -0
  183. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.4/inputSource.js +1 -0
  184. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.4/power.js +1 -0
  185. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.4/security.js +1 -0
  186. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.4/signage.js +1 -0
  187. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.4/sound.js +1 -0
  188. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.4/storage.js +1 -0
  189. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.4/time.js +1 -0
  190. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.4/utility.js +1 -0
  191. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.4/video.js +1 -0
  192. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.5/configuration.js +1 -0
  193. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.5/deviceInfo.js +1 -0
  194. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.5/inputSource.js +1 -0
  195. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.5/power.js +1 -0
  196. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.5/security.js +1 -0
  197. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.5/signage.js +1 -0
  198. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.5/sound.js +1 -0
  199. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.5/storage.js +1 -0
  200. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.5/time.js +1 -0
  201. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.5/utility.js +1 -0
  202. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.5/video.js +1 -0
  203. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.0/configuration.js +1 -0
  204. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.0/deviceInfo.js +1 -0
  205. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.0/inputSource.js +1 -0
  206. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.0/power.js +1 -0
  207. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.0/security.js +1 -0
  208. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.0/signage.js +1 -0
  209. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.0/sound.js +1 -0
  210. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.0/storage.js +1 -0
  211. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.0/time.js +1 -0
  212. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.0/utility.js +1 -0
  213. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.0/video.js +1 -0
  214. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.1/configuration.js +1 -0
  215. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.1/deviceInfo.js +1 -0
  216. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.1/inputSource.js +1 -0
  217. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.1/power.js +1 -0
  218. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.1/security.js +1 -0
  219. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.1/signage.js +1 -0
  220. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.1/sound.js +1 -0
  221. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.1/storage.js +1 -0
  222. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.1/time.js +1 -0
  223. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.1/utility.js +1 -0
  224. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.1/video.js +1 -0
  225. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.11/configuration.js +1 -0
  226. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.11/deviceInfo.js +1 -0
  227. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.11/inputSource.js +1 -0
  228. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.11/power.js +1 -0
  229. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.11/security.js +1 -0
  230. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.11/signage.js +1 -0
  231. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.11/sound.js +1 -0
  232. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.11/storage.js +1 -0
  233. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.11/time.js +1 -0
  234. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.11/utility.js +1 -0
  235. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.11/video.js +1 -0
  236. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.12/configuration.js +1 -0
  237. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.12/deviceInfo.js +1 -0
  238. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.12/inputSource.js +1 -0
  239. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.12/power.js +1 -0
  240. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.12/security.js +1 -0
  241. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.12/signage.js +1 -0
  242. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.12/sound.js +1 -0
  243. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.12/storage.js +1 -0
  244. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.12/time.js +1 -0
  245. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.12/utility.js +1 -0
  246. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.12/video.js +1 -0
  247. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.2/configuration.js +1 -0
  248. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.2/deviceInfo.js +1 -0
  249. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.2/inputSource.js +1 -0
  250. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.2/power.js +1 -0
  251. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.2/security.js +1 -0
  252. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.2/signage.js +1 -0
  253. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.2/sound.js +1 -0
  254. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.2/storage.js +1 -0
  255. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.2/time.js +1 -0
  256. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.2/utility.js +1 -0
  257. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.2/video.js +1 -0
  258. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.3/configuration.js +1 -0
  259. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.3/deviceInfo.js +1 -0
  260. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.3/inputSource.js +1 -0
  261. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.3/power.js +1 -0
  262. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.3/security.js +1 -0
  263. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.3/signage.js +1 -0
  264. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.3/sound.js +1 -0
  265. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.3/storage.js +1 -0
  266. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.3/time.js +1 -0
  267. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.3/utility.js +1 -0
  268. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.3/video.js +1 -0
  269. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.4/configuration.js +1 -0
  270. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.4/deviceInfo.js +1 -0
  271. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.4/inputSource.js +1 -0
  272. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.4/power.js +1 -0
  273. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.4/security.js +1 -0
  274. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.4/signage.js +1 -0
  275. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.4/sound.js +1 -0
  276. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.4/storage.js +1 -0
  277. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.4/time.js +1 -0
  278. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.4/utility.js +1 -0
  279. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.4/video.js +1 -0
  280. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.5/configuration.js +1 -0
  281. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.5/deviceInfo.js +1 -0
  282. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.5/inputSource.js +1 -0
  283. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.5/power.js +1 -0
  284. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.5/security.js +1 -0
  285. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.5/signage.js +1 -0
  286. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.5/sound.js +1 -0
  287. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.5/storage.js +1 -0
  288. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.5/time.js +1 -0
  289. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.5/utility.js +1 -0
  290. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.5/video.js +1 -0
  291. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.6/configuration.js +1 -0
  292. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.6/deviceInfo.js +1 -0
  293. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.6/inputSource.js +1 -0
  294. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.6/power.js +1 -0
  295. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.6/security.js +1 -0
  296. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.6/signage.js +1 -0
  297. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.6/sound.js +1 -0
  298. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.6/storage.js +1 -0
  299. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.6/time.js +1 -0
  300. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.6/utility.js +1 -0
  301. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.6/video.js +1 -0
  302. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.7/configuration.js +1 -0
  303. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.7/deviceInfo.js +1 -0
  304. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.7/inputSource.js +1 -0
  305. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.7/power.js +1 -0
  306. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.7/security.js +1 -0
  307. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.7/signage.js +1 -0
  308. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.7/sound.js +1 -0
  309. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.7/storage.js +1 -0
  310. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.7/time.js +1 -0
  311. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.7/utility.js +1 -0
  312. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.7/video.js +1 -0
  313. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.8/configuration.js +1 -0
  314. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.8/deviceInfo.js +1 -0
  315. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.8/inputSource.js +1 -0
  316. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.8/power.js +1 -0
  317. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.8/security.js +1 -0
  318. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.8/signage.js +1 -0
  319. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.8/sound.js +1 -0
  320. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.8/storage.js +1 -0
  321. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.8/time.js +1 -0
  322. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.8/utility.js +1 -0
  323. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.8/video.js +1 -0
  324. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.0/configuration.js +1 -0
  325. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.0/deviceInfo.js +1 -0
  326. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.0/inputSource.js +1 -0
  327. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.0/power.js +1 -0
  328. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.0/security.js +1 -0
  329. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.0/signage.js +1 -0
  330. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.0/sound.js +1 -0
  331. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.0/storage.js +1 -0
  332. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.0/time.js +1 -0
  333. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.0/utility.js +1 -0
  334. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.0/video.js +1 -0
  335. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.1/configuration.js +1 -0
  336. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.1/deviceInfo.js +1 -0
  337. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.1/inputSource.js +1 -0
  338. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.1/power.js +1 -0
  339. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.1/security.js +1 -0
  340. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.1/signage.js +1 -0
  341. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.1/sound.js +1 -0
  342. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.1/storage.js +1 -0
  343. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.1/time.js +1 -0
  344. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.1/utility.js +1 -0
  345. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.1/video.js +1 -0
  346. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.2/configuration.js +1 -0
  347. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.2/deviceInfo.js +1 -0
  348. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.2/inputSource.js +1 -0
  349. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.2/power.js +1 -0
  350. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.2/security.js +1 -0
  351. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.2/signage.js +1 -0
  352. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.2/sound.js +1 -0
  353. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.2/storage.js +1 -0
  354. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.2/time.js +1 -0
  355. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.2/utility.js +1 -0
  356. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.2/video.js +1 -0
  357. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.3/configuration.js +1 -0
  358. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.3/deviceInfo.js +1 -0
  359. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.3/inputSource.js +1 -0
  360. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.3/power.js +1 -0
  361. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.3/security.js +1 -0
  362. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.3/signage.js +1 -0
  363. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.3/sound.js +1 -0
  364. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.3/storage.js +1 -0
  365. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.3/time.js +1 -0
  366. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.3/utility.js +1 -0
  367. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.3/video.js +1 -0
  368. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.7/configuration.js +1 -0
  369. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.7/deviceInfo.js +1 -0
  370. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.7/inputSource.js +1 -0
  371. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.7/led.js +1 -0
  372. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.7/power.js +1 -0
  373. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.7/security.js +1 -0
  374. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.7/signage.js +1 -0
  375. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.7/sound.js +1 -0
  376. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.7/storage.js +1 -0
  377. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.7/time.js +1 -0
  378. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.7/utility.js +1 -0
  379. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.7/video.js +1 -0
  380. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.8/configuration.js +1 -0
  381. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.8/deviceInfo.js +1 -0
  382. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.8/inputSource.js +1 -0
  383. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.8/led.js +1 -0
  384. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.8/power.js +1 -0
  385. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.8/security.js +1 -0
  386. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.8/signage.js +1 -0
  387. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.8/sound.js +1 -0
  388. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.8/storage.js +1 -0
  389. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.8/time.js +1 -0
  390. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.8/utility.js +1 -0
  391. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.8/video.js +1 -0
  392. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.0/configuration.js +1 -0
  393. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.0/deviceInfo.js +1 -0
  394. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.0/inputSource.js +1 -0
  395. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.0/iot.js +1 -0
  396. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.0/power.js +1 -0
  397. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.0/security.js +1 -0
  398. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.0/signage.js +1 -0
  399. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.0/sound.js +1 -0
  400. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.0/storage.js +1 -0
  401. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.0/time.js +1 -0
  402. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.0/utility.js +1 -0
  403. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.0/video.js +1 -0
  404. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.1/configuration.js +1 -0
  405. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.1/deviceInfo.js +1 -0
  406. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.1/inputSource.js +1 -0
  407. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.1/iot.js +1 -0
  408. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.1/power.js +1 -0
  409. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.1/security.js +1 -0
  410. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.1/signage.js +1 -0
  411. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.1/sound.js +1 -0
  412. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.1/storage.js +1 -0
  413. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.1/time.js +1 -0
  414. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.1/utility.js +1 -0
  415. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.1/video.js +1 -0
  416. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.5/configuration.js +1 -0
  417. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.5/deviceInfo.js +1 -0
  418. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.5/inputSource.js +1 -0
  419. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.5/iot.js +1 -0
  420. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.5/led.js +1 -0
  421. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.5/power.js +1 -0
  422. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.5/security.js +1 -0
  423. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.5/signage.js +1 -0
  424. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.5/sound.js +1 -0
  425. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.5/storage.js +1 -0
  426. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.5/time.js +1 -0
  427. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.5/utility.js +1 -0
  428. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.5/video.js +1 -0
  429. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.6/configuration.js +1 -0
  430. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.6/deviceInfo.js +1 -0
  431. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.6/inputSource.js +1 -0
  432. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.6/iot.js +1 -0
  433. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.6/led.js +1 -0
  434. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.6/power.js +1 -0
  435. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.6/security.js +1 -0
  436. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.6/signage.js +1 -0
  437. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.6/sound.js +1 -0
  438. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.6/storage.js +1 -0
  439. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.6/time.js +1 -0
  440. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.6/utility.js +1 -0
  441. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.6/video.js +1 -0
  442. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.8.0/configuration.js +1 -0
  443. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.8.0/deviceInfo.js +1 -0
  444. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.8.0/inputSource.js +1 -0
  445. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.8.0/iot.js +1 -0
  446. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.8.0/power.js +1 -0
  447. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.8.0/security.js +1 -0
  448. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.8.0/signage.js +1 -0
  449. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.8.0/sound.js +1 -0
  450. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.8.0/storage.js +1 -0
  451. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.8.0/time.js +1 -0
  452. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.8.0/utility.js +1 -0
  453. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.8.0/video.js +1 -0
  454. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.8.1/configuration.js +1 -0
  455. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.8.1/deviceInfo.js +1 -0
  456. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.8.1/inputSource.js +1 -0
  457. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.8.1/iot.js +1 -0
  458. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.8.1/power.js +1 -0
  459. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.8.1/security.js +1 -0
  460. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.8.1/signage.js +1 -0
  461. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.8.1/sound.js +1 -0
  462. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.8.1/storage.js +1 -0
  463. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.8.1/time.js +1 -0
  464. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.8.1/utility.js +1 -0
  465. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.8.1/video.js +1 -0
  466. package/files/templates/signage-sdk-templates/Download_Progress/js/custom/custom1.2.js +14 -0
  467. package/files/templates/signage-sdk-templates/Download_Progress/js/custom/custom1.3.1.js +1 -0
  468. package/files/templates/signage-sdk-templates/Download_Progress/js/custom/custom1.3.js +1 -0
  469. package/files/templates/signage-sdk-templates/Download_Progress/js/custom/custom1.4.js +14 -0
  470. package/files/templates/signage-sdk-templates/Download_Progress/js/harmony/README.txt +40 -0
  471. package/files/templates/signage-sdk-templates/Download_Progress/js/harmony/gpio.js +16 -0
  472. package/files/templates/signage-sdk-templates/Download_Progress/js/harmony/gps.js +16 -0
  473. package/files/templates/signage-sdk-templates/Download_Progress/js/harmony/humidity.js +16 -0
  474. package/files/templates/signage-sdk-templates/Download_Progress/js/harmony/light.js +16 -0
  475. package/files/templates/signage-sdk-templates/Download_Progress/js/harmony/nfc.js +16 -0
  476. package/files/templates/signage-sdk-templates/Download_Progress/js/harmony/rfid.js +16 -0
  477. package/files/templates/signage-sdk-templates/Download_Progress/js/harmony/temperature.js +16 -0
  478. package/files/templates/signage-sdk-templates/Download_Progress/js/harmony/thermalPrinter.js +16 -0
  479. package/files/templates/signage-sdk-templates/Download_Progress/js/idcap.js +21 -0
  480. package/files/templates/signage-sdk-templates/Download_Progress/js/webOS/LICENSE-2.0.txt +202 -0
  481. package/files/templates/signage-sdk-templates/Download_Progress/js/webOS/webOS.js +1 -0
  482. package/files/templates/signage-sdk-templates/Download_Progress/res/webossignage_logo.png +0 -0
  483. package/files/templates/signage-sdk-templates/Fashion_Multimedia_Ad/css/styles.css +270 -0
  484. package/files/templates/signage-sdk-templates/Fashion_Multimedia_Ad/data/data.json +12 -0
  485. package/files/templates/signage-sdk-templates/Fashion_Multimedia_Ad/fonts/MuseoSans300.otf +0 -0
  486. package/files/templates/signage-sdk-templates/Fashion_Multimedia_Ad/fonts/MuseoSans700Italic.otf +0 -0
  487. package/files/templates/signage-sdk-templates/Fashion_Multimedia_Ad/index.html +43 -0
  488. package/files/templates/signage-sdk-templates/Fashion_Multimedia_Ad/js/controller.js +263 -0
  489. package/files/templates/signage-sdk-templates/Fashion_Multimedia_Ad/js/helpers/util.js +130 -0
  490. package/files/templates/signage-sdk-templates/Fashion_Multimedia_Ad/readme.txt +26 -0
  491. package/files/templates/signage-sdk-templates/Fashion_Multimedia_Ad/res/images/tpl_01_img_sign.png +0 -0
  492. package/files/templates/signage-sdk-templates/Fashion_Multimedia_Ad/res/images/tpl_01_logo_nike.png +0 -0
  493. package/files/templates/signage-sdk-templates/Fashion_Multimedia_Ad/res/videos/tpl_01_video.mp4 +0 -0
  494. package/files/templates/signage-sdk-templates/File_Explorer/README.txt +16 -0
  495. package/files/templates/signage-sdk-templates/File_Explorer/index.html +44 -0
  496. package/files/templates/signage-sdk-templates/File_Explorer/js/Root.js +48 -0
  497. package/files/templates/signage-sdk-templates/File_Explorer/js/definition.js +59 -0
  498. package/files/templates/signage-sdk-templates/File_Explorer/js/explorer.js +367 -0
  499. package/files/templates/signage-sdk-templates/File_Explorer/js/explorerController.js +462 -0
  500. package/files/templates/signage-sdk-templates/File_Explorer/js/idcap.js +21 -0
  501. package/files/templates/signage-sdk-templates/File_Explorer/js/mainController.js +261 -0
  502. package/files/templates/signage-sdk-templates/File_Explorer/style.css +233 -0
  503. package/files/templates/signage-sdk-templates/Flight_Schedule/appinfo.json +11 -0
  504. package/files/templates/signage-sdk-templates/Flight_Schedule/css/styles.css +168 -0
  505. package/files/templates/signage-sdk-templates/Flight_Schedule/data/data.json +5 -0
  506. package/files/templates/signage-sdk-templates/Flight_Schedule/fonts/MuseoSans300.otf +0 -0
  507. package/files/templates/signage-sdk-templates/Flight_Schedule/fonts/MuseoSans500.otf +0 -0
  508. package/files/templates/signage-sdk-templates/Flight_Schedule/fonts/MuseoSans700.otf +0 -0
  509. package/files/templates/signage-sdk-templates/Flight_Schedule/images/AAir.png +0 -0
  510. package/files/templates/signage-sdk-templates/Flight_Schedule/images/BAirline.png +0 -0
  511. package/files/templates/signage-sdk-templates/Flight_Schedule/images/CAirline.png +0 -0
  512. package/files/templates/signage-sdk-templates/Flight_Schedule/images/DAir.png +0 -0
  513. package/files/templates/signage-sdk-templates/Flight_Schedule/images/EAirline.png +0 -0
  514. package/files/templates/signage-sdk-templates/Flight_Schedule/images/tpl_05_img_flight.png +0 -0
  515. package/files/templates/signage-sdk-templates/Flight_Schedule/index.html +32 -0
  516. package/files/templates/signage-sdk-templates/Flight_Schedule/js/controller.js +235 -0
  517. package/files/templates/signage-sdk-templates/Flight_Schedule/js/helpers/util.js +183 -0
  518. package/files/templates/signage-sdk-templates/Flight_Schedule/readme.txt +29 -0
  519. package/files/templates/signage-sdk-templates/Flight_Schedule/server/example.json +4 -0
  520. package/files/templates/signage-sdk-templates/Flight_Schedule/server/package.json +9 -0
  521. package/files/templates/signage-sdk-templates/Flight_Schedule/server/readme.txt +30 -0
  522. package/files/templates/signage-sdk-templates/Flight_Schedule/server/routes/flights.js +493 -0
  523. package/files/templates/signage-sdk-templates/Flight_Schedule/server/server.js +43 -0
  524. package/files/templates/signage-sdk-templates/Information_Board/css/styles.css +239 -0
  525. package/files/templates/signage-sdk-templates/Information_Board/data/data.json +49 -0
  526. package/files/templates/signage-sdk-templates/Information_Board/fonts/Museo Sans 300.otf +0 -0
  527. package/files/templates/signage-sdk-templates/Information_Board/fonts/Museo Sans 500.otf +0 -0
  528. package/files/templates/signage-sdk-templates/Information_Board/fonts/Museo Sans 700.otf +0 -0
  529. package/files/templates/signage-sdk-templates/Information_Board/index.html +101 -0
  530. package/files/templates/signage-sdk-templates/Information_Board/js/controller.js +111 -0
  531. package/files/templates/signage-sdk-templates/Information_Board/js/helpers/util.js +130 -0
  532. package/files/templates/signage-sdk-templates/Information_Board/readme.txt +22 -0
  533. package/files/templates/signage-sdk-templates/Information_Board/res/images/tpl_06_img_main_01.png +0 -0
  534. package/files/templates/signage-sdk-templates/Information_Board/res/images/tpl_06_img_news.png +0 -0
  535. package/files/templates/signage-sdk-templates/Information_Board/res/images/tpl_06_logo_harvard.png +0 -0
  536. package/files/templates/signage-sdk-templates/Information_Kiosk/css/styles.css +387 -0
  537. package/files/templates/signage-sdk-templates/Information_Kiosk/data/data.json +185 -0
  538. package/files/templates/signage-sdk-templates/Information_Kiosk/fonts/Museo Sans 300 Italic.otf +0 -0
  539. package/files/templates/signage-sdk-templates/Information_Kiosk/fonts/Museo Sans 300.otf +0 -0
  540. package/files/templates/signage-sdk-templates/Information_Kiosk/fonts/Museo Sans 500 Italic.otf +0 -0
  541. package/files/templates/signage-sdk-templates/Information_Kiosk/fonts/Museo Sans 500.otf +0 -0
  542. package/files/templates/signage-sdk-templates/Information_Kiosk/fonts/Museo Sans 700 Italic.otf +0 -0
  543. package/files/templates/signage-sdk-templates/Information_Kiosk/fonts/Museo Sans 700.otf +0 -0
  544. package/files/templates/signage-sdk-templates/Information_Kiosk/index.html +320 -0
  545. package/files/templates/signage-sdk-templates/Information_Kiosk/js/controller.js +373 -0
  546. package/files/templates/signage-sdk-templates/Information_Kiosk/js/helpers/util.js +130 -0
  547. package/files/templates/signage-sdk-templates/Information_Kiosk/readme.txt +26 -0
  548. package/files/templates/signage-sdk-templates/Information_Kiosk/res/images/tpl_10_btn_arrow_l_n.png +0 -0
  549. package/files/templates/signage-sdk-templates/Information_Kiosk/res/images/tpl_10_btn_arrow_l_p.png +0 -0
  550. package/files/templates/signage-sdk-templates/Information_Kiosk/res/images/tpl_10_btn_arrow_r_n.png +0 -0
  551. package/files/templates/signage-sdk-templates/Information_Kiosk/res/images/tpl_10_btn_arrow_r_p.png +0 -0
  552. package/files/templates/signage-sdk-templates/Information_Kiosk/res/images/tpl_10_btn_close_n.png +0 -0
  553. package/files/templates/signage-sdk-templates/Information_Kiosk/res/images/tpl_10_btn_close_p.png +0 -0
  554. package/files/templates/signage-sdk-templates/Information_Kiosk/res/images/tpl_10_btn_rotation_n.png +0 -0
  555. package/files/templates/signage-sdk-templates/Information_Kiosk/res/images/tpl_10_btn_rotation_p.png +0 -0
  556. package/files/templates/signage-sdk-templates/Information_Kiosk/res/images/tpl_10_img_bg_01.png +0 -0
  557. package/files/templates/signage-sdk-templates/Information_Kiosk/res/images/tpl_10_img_list_01.png +0 -0
  558. package/files/templates/signage-sdk-templates/Information_Kiosk/res/images/tpl_10_img_list_02.png +0 -0
  559. package/files/templates/signage-sdk-templates/Information_Kiosk/res/images/tpl_10_img_list_03.png +0 -0
  560. package/files/templates/signage-sdk-templates/Information_Kiosk/res/images/tpl_10_img_list_04.png +0 -0
  561. package/files/templates/signage-sdk-templates/Information_Kiosk/res/images/tpl_10_img_list_05.png +0 -0
  562. package/files/templates/signage-sdk-templates/Information_Kiosk/res/images/tpl_10_img_list_06.png +0 -0
  563. package/files/templates/signage-sdk-templates/Information_Kiosk/res/images/tpl_10_img_list_07.png +0 -0
  564. package/files/templates/signage-sdk-templates/Information_Kiosk/res/images/tpl_10_img_list_08.png +0 -0
  565. package/files/templates/signage-sdk-templates/Information_Kiosk/res/images/tpl_10_img_list_09.png +0 -0
  566. package/files/templates/signage-sdk-templates/Information_Kiosk/res/images/tpl_10_img_list_10.png +0 -0
  567. package/files/templates/signage-sdk-templates/Information_Kiosk/res/images/tpl_10_img_list_11.png +0 -0
  568. package/files/templates/signage-sdk-templates/Information_Kiosk/res/images/tpl_10_img_list_12.png +0 -0
  569. package/files/templates/signage-sdk-templates/Information_Kiosk/res/images/tpl_10_img_list_3_01.png +0 -0
  570. package/files/templates/signage-sdk-templates/Information_Kiosk/res/images/tpl_10_img_list_3_02.png +0 -0
  571. package/files/templates/signage-sdk-templates/Information_Kiosk/res/images/tpl_10_img_list_3_03.png +0 -0
  572. package/files/templates/signage-sdk-templates/Information_Kiosk/res/images/tpl_10_img_list_3_04.png +0 -0
  573. package/files/templates/signage-sdk-templates/Information_Kiosk/res/images/tpl_10_img_list_3_05.png +0 -0
  574. package/files/templates/signage-sdk-templates/Information_Kiosk/res/images/tpl_10_img_list_3_06.png +0 -0
  575. package/files/templates/signage-sdk-templates/Information_Kiosk/res/images/tpl_10_img_popup_list_01.png +0 -0
  576. package/files/templates/signage-sdk-templates/Information_Kiosk/res/images/tpl_10_img_popup_list_02.png +0 -0
  577. package/files/templates/signage-sdk-templates/Information_Kiosk/res/images/tpl_10_img_popup_list_03.png +0 -0
  578. package/files/templates/signage-sdk-templates/Information_Kiosk/res/images/tpl_10_img_popup_list_04.png +0 -0
  579. package/files/templates/signage-sdk-templates/Information_Kiosk/res/images/tpl_10_img_popup_list_05.png +0 -0
  580. package/files/templates/signage-sdk-templates/Information_Kiosk/res/images/tpl_10_img_popup_list_06.png +0 -0
  581. package/files/templates/signage-sdk-templates/Information_Kiosk/res/images/tpl_10_img_popup_list_07.png +0 -0
  582. package/files/templates/signage-sdk-templates/Information_Kiosk/res/images/tpl_10_img_popup_list_08.png +0 -0
  583. package/files/templates/signage-sdk-templates/Information_Kiosk/res/images/tpl_10_img_popup_list_09.png +0 -0
  584. package/files/templates/signage-sdk-templates/Information_Kiosk/res/images/tpl_10_img_popup_list_10.png +0 -0
  585. package/files/templates/signage-sdk-templates/Information_Kiosk/res/images/tpl_10_img_popup_list_11.png +0 -0
  586. package/files/templates/signage-sdk-templates/Information_Kiosk/res/images/tpl_10_img_popup_list_12.png +0 -0
  587. package/files/templates/signage-sdk-templates/Information_Kiosk/res/images/tpl_10_img_style_01.png +0 -0
  588. package/files/templates/signage-sdk-templates/Information_Kiosk/res/images/tpl_10_img_style_02.png +0 -0
  589. package/files/templates/signage-sdk-templates/Information_Kiosk/res/images/tpl_10_logo.png +0 -0
  590. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/index.html +40 -0
  591. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova/2.7.0/cordova.webos.js +7038 -0
  592. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova/LICENSE +201 -0
  593. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.2/configuration.js +1 -0
  594. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.2/deviceInfo.js +1 -0
  595. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.2/inputSource.js +1 -0
  596. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.2/power.js +1 -0
  597. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.2/signage.js +1 -0
  598. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.2/sound.js +1 -0
  599. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.2/storage.js +23 -0
  600. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.2/video.js +1 -0
  601. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.3/configuration.js +1 -0
  602. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.3/deviceInfo.js +1 -0
  603. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.3/inputSource.js +1 -0
  604. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.3/power.js +1 -0
  605. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.3/signage.js +1 -0
  606. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.3/sound.js +1 -0
  607. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.3/storage.js +1 -0
  608. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.3/video.js +1 -0
  609. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.4.5/configuration.js +1 -0
  610. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.4.5/deviceInfo.js +1 -0
  611. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.4.5/inputSource.js +1 -0
  612. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.4.5/power.js +1 -0
  613. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.4.5/security.js +1 -0
  614. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.4.5/signage.js +1 -0
  615. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.4.5/sound.js +1 -0
  616. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.4.5/storage.js +1 -0
  617. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.4.5/time.js +1 -0
  618. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.4.5/utility.js +1 -0
  619. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.4.5/video.js +1 -0
  620. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.5.12/configuration.js +1 -0
  621. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.5.12/deviceInfo.js +1 -0
  622. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.5.12/inputSource.js +1 -0
  623. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.5.12/power.js +1 -0
  624. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.5.12/security.js +1 -0
  625. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.5.12/signage.js +1 -0
  626. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.5.12/sound.js +1 -0
  627. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.5.12/storage.js +1 -0
  628. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.5.12/time.js +1 -0
  629. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.5.12/utility.js +1 -0
  630. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.5.12/video.js +1 -0
  631. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.6.8/configuration.js +1 -0
  632. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.6.8/deviceInfo.js +1 -0
  633. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.6.8/inputSource.js +1 -0
  634. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.6.8/led.js +1 -0
  635. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.6.8/power.js +1 -0
  636. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.6.8/security.js +1 -0
  637. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.6.8/signage.js +1 -0
  638. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.6.8/sound.js +1 -0
  639. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.6.8/storage.js +1 -0
  640. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.6.8/time.js +1 -0
  641. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.6.8/utility.js +1 -0
  642. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.6.8/video.js +1 -0
  643. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.7.6/configuration.js +1 -0
  644. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.7.6/deviceInfo.js +1 -0
  645. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.7.6/inputSource.js +1 -0
  646. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.7.6/iot.js +1 -0
  647. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.7.6/led.js +1 -0
  648. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.7.6/power.js +1 -0
  649. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.7.6/security.js +1 -0
  650. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.7.6/signage.js +1 -0
  651. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.7.6/sound.js +1 -0
  652. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.7.6/storage.js +1 -0
  653. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.7.6/time.js +1 -0
  654. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.7.6/utility.js +1 -0
  655. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.7.6/video.js +1 -0
  656. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.8.1/configuration.js +1 -0
  657. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.8.1/deviceInfo.js +1 -0
  658. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.8.1/inputSource.js +1 -0
  659. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.8.1/iot.js +1 -0
  660. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.8.1/power.js +1 -0
  661. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.8.1/security.js +1 -0
  662. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.8.1/signage.js +1 -0
  663. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.8.1/sound.js +1 -0
  664. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.8.1/storage.js +1 -0
  665. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.8.1/time.js +1 -0
  666. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.8.1/utility.js +1 -0
  667. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.8.1/video.js +1 -0
  668. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/custom1.4.js +14 -0
  669. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/idcap.js +21 -0
  670. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/initializer.js +234 -0
  671. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/remocon.js +73 -0
  672. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/scheduler.js +84 -0
  673. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/videoPlayer.js +352 -0
  674. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/remocon.png +0 -0
  675. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/style.css +99 -0
  676. package/files/templates/signage-sdk-templates/Mart/css/styles.css +248 -0
  677. package/files/templates/signage-sdk-templates/Mart/data/data.json +37 -0
  678. package/files/templates/signage-sdk-templates/Mart/fonts/Museo Sans 300 Italic.otf +0 -0
  679. package/files/templates/signage-sdk-templates/Mart/fonts/Museo Sans 300.otf +0 -0
  680. package/files/templates/signage-sdk-templates/Mart/fonts/Museo Sans 500.otf +0 -0
  681. package/files/templates/signage-sdk-templates/Mart/fonts/Museo Sans 700.otf +0 -0
  682. package/files/templates/signage-sdk-templates/Mart/index.html +81 -0
  683. package/files/templates/signage-sdk-templates/Mart/js/controller.js +102 -0
  684. package/files/templates/signage-sdk-templates/Mart/js/helpers/util.js +130 -0
  685. package/files/templates/signage-sdk-templates/Mart/readme.txt +26 -0
  686. package/files/templates/signage-sdk-templates/Mart/res/images/tpl_09_img.png +0 -0
  687. package/files/templates/signage-sdk-templates/Mart/res/images/tpl_09_img_bg.png +0 -0
  688. package/files/templates/signage-sdk-templates/Mart/res/images/tpl_09_img_brand.png +0 -0
  689. package/files/templates/signage-sdk-templates/Mart/res/images/tpl_09_img_list_01.png +0 -0
  690. package/files/templates/signage-sdk-templates/Mart/res/images/tpl_09_img_list_02.png +0 -0
  691. package/files/templates/signage-sdk-templates/Mart/res/images/tpl_09_img_list_03.png +0 -0
  692. package/files/templates/signage-sdk-templates/Mart/res/images/tpl_09_img_list_04.png +0 -0
  693. package/files/templates/signage-sdk-templates/Mart/res/images/tpl_09_img_tag.png +0 -0
  694. package/files/templates/signage-sdk-templates/Mart/res/images/tpl_09_logo.png +0 -0
  695. package/files/templates/signage-sdk-templates/Multimedia_Advertisement/css/styles.css +40 -0
  696. package/files/templates/signage-sdk-templates/Multimedia_Advertisement/data/data.json +6 -0
  697. package/files/templates/signage-sdk-templates/Multimedia_Advertisement/index.html +28 -0
  698. package/files/templates/signage-sdk-templates/Multimedia_Advertisement/js/controller.js +427 -0
  699. package/files/templates/signage-sdk-templates/Multimedia_Advertisement/js/helpers/util.js +134 -0
  700. package/files/templates/signage-sdk-templates/Multimedia_Advertisement/readme.txt +26 -0
  701. package/files/templates/signage-sdk-templates/Multimedia_Advertisement/res/images/tpl_02_img_poster.jpg +0 -0
  702. package/files/templates/signage-sdk-templates/Multimedia_Advertisement/res/videos/tpl_02_video_01.mp4 +0 -0
  703. package/files/templates/signage-sdk-templates/Multimedia_Advertisement/res/videos/tpl_02_video_02.mp4 +0 -0
  704. package/files/templates/signage-sdk-templates/Price_Board_for_QSR/css/styles.css +163 -0
  705. package/files/templates/signage-sdk-templates/Price_Board_for_QSR/data/data.json +92 -0
  706. package/files/templates/signage-sdk-templates/Price_Board_for_QSR/fonts/MuseoSans300.otf +0 -0
  707. package/files/templates/signage-sdk-templates/Price_Board_for_QSR/fonts/MuseoSans500.otf +0 -0
  708. package/files/templates/signage-sdk-templates/Price_Board_for_QSR/fonts/MuseoSans700.otf +0 -0
  709. package/files/templates/signage-sdk-templates/Price_Board_for_QSR/fonts/MuseoSans700Italic.otf +0 -0
  710. package/files/templates/signage-sdk-templates/Price_Board_for_QSR/index.html +197 -0
  711. package/files/templates/signage-sdk-templates/Price_Board_for_QSR/js/controller.js +158 -0
  712. package/files/templates/signage-sdk-templates/Price_Board_for_QSR/js/helpers/util.js +130 -0
  713. package/files/templates/signage-sdk-templates/Price_Board_for_QSR/readme.txt +26 -0
  714. package/files/templates/signage-sdk-templates/Price_Board_for_QSR/res/images/tpl_04_bg_top.png +0 -0
  715. package/files/templates/signage-sdk-templates/Price_Board_for_QSR/res/images/tpl_04_img_menu_01.png +0 -0
  716. package/files/templates/signage-sdk-templates/Price_Board_for_QSR/res/images/tpl_04_img_menu_02.png +0 -0
  717. package/files/templates/signage-sdk-templates/Price_Board_for_QSR/res/images/tpl_04_img_menu_03.png +0 -0
  718. package/files/templates/signage-sdk-templates/Price_Board_for_QSR/res/images/tpl_04_img_menu_04.png +0 -0
  719. package/files/templates/signage-sdk-templates/Price_Board_for_QSR/res/images/tpl_04_img_menu_05.png +0 -0
  720. package/files/templates/signage-sdk-templates/Price_Board_for_QSR/res/images/tpl_04_img_menu_06.png +0 -0
  721. package/files/templates/signage-sdk-templates/Price_Board_for_QSR/res/images/tpl_04_img_menu_07.png +0 -0
  722. package/files/templates/signage-sdk-templates/Price_Board_for_QSR/res/images/tpl_04_img_menu_08.png +0 -0
  723. package/files/templates/signage-sdk-templates/Price_Board_for_QSR/res/images/tpl_04_img_menu_09.png +0 -0
  724. package/files/templates/signage-sdk-templates/Price_Board_for_QSR/res/images/tpl_04_logo.png +0 -0
  725. package/files/templates/signage-sdk-templates/Simple_Network_FailOver/index.html +29 -0
  726. package/files/templates/signage-sdk-templates/Simple_Network_FailOver/js/idcap.js +21 -0
  727. package/files/templates/signage-sdk-templates/Simple_Network_FailOver/networkMonitor.js +136 -0
  728. package/files/templates/signage-sdk-templates/Simple_Network_FailOver/style.css +142 -0
  729. package/files/templates/signage-sdk-templates/Special_Menu_Board/css/styles.css +281 -0
  730. package/files/templates/signage-sdk-templates/Special_Menu_Board/data/data.json +33 -0
  731. package/files/templates/signage-sdk-templates/Special_Menu_Board/fonts/Museo Sans 300 Italic.otf +0 -0
  732. package/files/templates/signage-sdk-templates/Special_Menu_Board/fonts/Museo Sans 300.otf +0 -0
  733. package/files/templates/signage-sdk-templates/Special_Menu_Board/fonts/Museo Sans 500 Italic.otf +0 -0
  734. package/files/templates/signage-sdk-templates/Special_Menu_Board/fonts/Museo Sans 500.otf +0 -0
  735. package/files/templates/signage-sdk-templates/Special_Menu_Board/fonts/Museo Sans 700 Italic.otf +0 -0
  736. package/files/templates/signage-sdk-templates/Special_Menu_Board/fonts/Museo Sans 700.otf +0 -0
  737. package/files/templates/signage-sdk-templates/Special_Menu_Board/index.html +110 -0
  738. package/files/templates/signage-sdk-templates/Special_Menu_Board/js/controller.js +171 -0
  739. package/files/templates/signage-sdk-templates/Special_Menu_Board/js/helpers/util.js +130 -0
  740. package/files/templates/signage-sdk-templates/Special_Menu_Board/readme.txt +26 -0
  741. package/files/templates/signage-sdk-templates/Special_Menu_Board/res/images/tpl_03_img_bg.png +0 -0
  742. package/files/templates/signage-sdk-templates/Special_Menu_Board/res/images/tpl_03_img_coffe_01.png +0 -0
  743. package/files/templates/signage-sdk-templates/Special_Menu_Board/res/images/tpl_03_img_coffe_01_l.png +0 -0
  744. package/files/templates/signage-sdk-templates/Special_Menu_Board/res/images/tpl_03_img_coffe_02.png +0 -0
  745. package/files/templates/signage-sdk-templates/Special_Menu_Board/res/images/tpl_03_img_coffe_03.png +0 -0
  746. package/files/templates/signage-sdk-templates/Special_Menu_Board/res/images/tpl_03_img_coffe_04.png +0 -0
  747. package/files/templates/signage-sdk-templates/Special_Menu_Board/res/images/tpl_03_img_coffe_05.png +0 -0
  748. package/files/templates/signage-sdk-templates/Special_Menu_Board/res/images/tpl_03_logo_01.png +0 -0
  749. package/files/templates/signage-sdk-templates/Special_Menu_Board/res/images/tpl_03_logo_02.png +0 -0
  750. package/files/templates/signage-sdk-templates/Wayfinder/css/styles.css +634 -0
  751. package/files/templates/signage-sdk-templates/Wayfinder/data/data.json +339 -0
  752. package/files/templates/signage-sdk-templates/Wayfinder/fonts/MuseoSans300.otf +0 -0
  753. package/files/templates/signage-sdk-templates/Wayfinder/fonts/MuseoSans500.otf +0 -0
  754. package/files/templates/signage-sdk-templates/Wayfinder/fonts/MuseoSans700.otf +0 -0
  755. package/files/templates/signage-sdk-templates/Wayfinder/fonts/MuseoSans700Italic.otf +0 -0
  756. package/files/templates/signage-sdk-templates/Wayfinder/index.html +171 -0
  757. package/files/templates/signage-sdk-templates/Wayfinder/js/controller.js +447 -0
  758. package/files/templates/signage-sdk-templates/Wayfinder/js/helpers/util.js +175 -0
  759. package/files/templates/signage-sdk-templates/Wayfinder/readme.txt +26 -0
  760. package/files/templates/signage-sdk-templates/Wayfinder/res/images/tpl_11_btn_back_n.png +0 -0
  761. package/files/templates/signage-sdk-templates/Wayfinder/res/images/tpl_11_icon_dot_n.png +0 -0
  762. package/files/templates/signage-sdk-templates/Wayfinder/res/images/tpl_11_icon_dot_s.png +0 -0
  763. package/files/templates/signage-sdk-templates/Wayfinder/res/images/tpl_11_img_floormap_01.png +0 -0
  764. package/files/templates/signage-sdk-templates/Wayfinder/res/images/tpl_11_img_floormap_02.png +0 -0
  765. package/files/templates/signage-sdk-templates/Wayfinder/res/images/tpl_11_img_floormap_03.png +0 -0
  766. package/files/templates/signage-sdk-templates/Wayfinder/res/images/tpl_11_img_floormap_all_01_d.png +0 -0
  767. package/files/templates/signage-sdk-templates/Wayfinder/res/images/tpl_11_img_floormap_all_01_n.png +0 -0
  768. package/files/templates/signage-sdk-templates/Wayfinder/res/images/tpl_11_img_floormap_all_02_d.png +0 -0
  769. package/files/templates/signage-sdk-templates/Wayfinder/res/images/tpl_11_img_floormap_all_02_n.png +0 -0
  770. package/files/templates/signage-sdk-templates/Wayfinder/res/images/tpl_11_img_floormap_all_03_d.png +0 -0
  771. package/files/templates/signage-sdk-templates/Wayfinder/res/images/tpl_11_img_floormap_all_03_n.png +0 -0
  772. package/files/templates/signage-sdk-templates/Wayfinder/res/images/tpl_11_img_floormap_all_shadow.png +0 -0
  773. package/files/templates/signage-sdk-templates/Wayfinder/res/images/tpl_11_img_floormap_home_01_n.png +0 -0
  774. package/files/templates/signage-sdk-templates/Wayfinder/res/images/tpl_11_img_floormap_home_02_n.png +0 -0
  775. package/files/templates/signage-sdk-templates/Wayfinder/res/images/tpl_11_img_floormap_home_03_n.png +0 -0
  776. package/files/templates/signage-sdk-templates/Wayfinder/res/images/tpl_11_img_point.png +0 -0
  777. package/files/templates/signage-sdk-templates/Wayfinder/res/images/tpl_11_img_point_shadow.png +0 -0
  778. package/files/templates/signage-sdk-templates/Wayfinder/res/images/tpl_11_list_icon_elevator.png +0 -0
  779. package/files/templates/signage-sdk-templates/Wayfinder/res/images/tpl_11_list_icon_escalator.png +0 -0
  780. package/files/templates/signage-sdk-templates/Wayfinder/res/images/tpl_11_list_icon_exit.png +0 -0
  781. package/files/templates/signage-sdk-templates/Wayfinder/res/images/tpl_11_list_icon_info.png +0 -0
  782. package/files/templates/signage-sdk-templates/Wayfinder/res/images/tpl_11_list_icon_parking.png +0 -0
  783. package/files/templates/signage-sdk-templates/Wayfinder/res/images/tpl_11_list_icon_toilet.png +0 -0
  784. package/files/templates/signage-sdk-templates/Wayfinder/res/images/tpl_11_logo_lg.png +0 -0
  785. package/files/templates/signage-sdk-templates/Wayfinder/res/images/tpl_11_logo_shoppingmall_name.png +0 -0
  786. package/files/templates/signage-sdk-templates/Wayfinder/res/images/tpl_11_logo_store.png +0 -0
  787. package/files/templates/signage-sdk-templates/Wayfinder/res/images/tpl_11_popup_bg.png +0 -0
  788. package/files/templates/signage-sdk-templates/Weather-dependent_Ad/css/styles.css +136 -0
  789. package/files/templates/signage-sdk-templates/Weather-dependent_Ad/data/data.json +33 -0
  790. package/files/templates/signage-sdk-templates/Weather-dependent_Ad/fonts/Museo Sans 300.otf +0 -0
  791. package/files/templates/signage-sdk-templates/Weather-dependent_Ad/fonts/Museo Sans 500.otf +0 -0
  792. package/files/templates/signage-sdk-templates/Weather-dependent_Ad/fonts/Museo Sans 700.otf +0 -0
  793. package/files/templates/signage-sdk-templates/Weather-dependent_Ad/index.html +51 -0
  794. package/files/templates/signage-sdk-templates/Weather-dependent_Ad/js/controller.js +265 -0
  795. package/files/templates/signage-sdk-templates/Weather-dependent_Ad/js/helpers/util.js +130 -0
  796. package/files/templates/signage-sdk-templates/Weather-dependent_Ad/readme.txt +26 -0
  797. package/files/templates/signage-sdk-templates/Weather-dependent_Ad/res/images/ajax.gif +0 -0
  798. package/files/templates/signage-sdk-templates/Weather-dependent_Ad/res/images/tpl_08_icon_cloudy.png +0 -0
  799. package/files/templates/signage-sdk-templates/Weather-dependent_Ad/res/images/tpl_08_icon_partlycloudy.png +0 -0
  800. package/files/templates/signage-sdk-templates/Weather-dependent_Ad/res/images/tpl_08_icon_rainy.png +0 -0
  801. package/files/templates/signage-sdk-templates/Weather-dependent_Ad/res/images/tpl_08_icon_snowy.png +0 -0
  802. package/files/templates/signage-sdk-templates/Weather-dependent_Ad/res/images/tpl_08_icon_sunny.png +0 -0
  803. package/files/templates/signage-sdk-templates/Weather-dependent_Ad/res/images/tpl_08_icon_thunder.png +0 -0
  804. package/files/templates/signage-sdk-templates/Weather-dependent_Ad/res/images/tpl_08_icon_windy.png +0 -0
  805. package/files/templates/signage-sdk-templates/Weather-dependent_Ad/res/images/tpl_08_img_01.png +0 -0
  806. package/files/templates/signage-sdk-templates/Weather-dependent_Ad/res/images/tpl_08_img_02.png +0 -0
  807. package/files/templates/signage-sdk-templates/Weather-dependent_Ad/res/images/tpl_08_img_03.png +0 -0
  808. package/files/templates/signage-sdk-templates/Weather-dependent_Ad/res/images/tpl_08_img_04.png +0 -0
  809. package/files/templates/signage-sdk-templates/Weather-dependent_Ad/res/images/tpl_08_img_05.png +0 -0
  810. package/files/templates/signage-sdk-templates/Weather-dependent_Ad/res/images/tpl_08_img_06.png +0 -0
  811. package/files/templates/signage-sdk-templates/Weather-dependent_Ad/res/images/tpl_08_img_07.png +0 -0
  812. package/files/templates/signage-sdk-templates/Weather-dependent_Ad/res/images/tpl_08_logo.png +0 -0
  813. package/files/templates/signage-sdk-templates/Widget_Overlay/css/styles.css +312 -0
  814. package/files/templates/signage-sdk-templates/Widget_Overlay/data/data.json +16 -0
  815. package/files/templates/signage-sdk-templates/Widget_Overlay/data/newsWidget.json +21 -0
  816. package/files/templates/signage-sdk-templates/Widget_Overlay/data/shareWidget.json +112 -0
  817. package/files/templates/signage-sdk-templates/Widget_Overlay/data/weatherWidget.json +45 -0
  818. package/files/templates/signage-sdk-templates/Widget_Overlay/fonts/MuseoSans300.otf +0 -0
  819. package/files/templates/signage-sdk-templates/Widget_Overlay/fonts/MuseoSans500.otf +0 -0
  820. package/files/templates/signage-sdk-templates/Widget_Overlay/fonts/MuseoSans700.otf +0 -0
  821. package/files/templates/signage-sdk-templates/Widget_Overlay/index.html +62 -0
  822. package/files/templates/signage-sdk-templates/Widget_Overlay/js/controller.js +390 -0
  823. package/files/templates/signage-sdk-templates/Widget_Overlay/js/helpers/util.js +162 -0
  824. package/files/templates/signage-sdk-templates/Widget_Overlay/readme.txt +26 -0
  825. package/files/templates/signage-sdk-templates/Widget_Overlay/res/images/Namo.jpg +0 -0
  826. package/files/templates/signage-sdk-templates/Widget_Overlay/res/images/NotAvailable.png +0 -0
  827. package/files/templates/signage-sdk-templates/Widget_Overlay/res/images/clear.png +0 -0
  828. package/files/templates/signage-sdk-templates/Widget_Overlay/res/images/clouds.png +0 -0
  829. package/files/templates/signage-sdk-templates/Widget_Overlay/res/images/default.png +0 -0
  830. package/files/templates/signage-sdk-templates/Widget_Overlay/res/images/koreanFt.jpg +0 -0
  831. package/files/templates/signage-sdk-templates/Widget_Overlay/res/images/mist.png +0 -0
  832. package/files/templates/signage-sdk-templates/Widget_Overlay/res/images/rain.png +0 -0
  833. package/files/templates/signage-sdk-templates/Widget_Overlay/res/images/snow.png +0 -0
  834. package/files/templates/signage-sdk-templates/Widget_Overlay/res/images/thunder.png +0 -0
  835. package/files/templates/signage-sdk-templates/Widget_Overlay/res/images/tpl_07_icon_down_01.png +0 -0
  836. package/files/templates/signage-sdk-templates/Widget_Overlay/res/images/tpl_07_icon_down_02.png +0 -0
  837. package/files/templates/signage-sdk-templates/Widget_Overlay/res/images/tpl_07_icon_up_01.png +0 -0
  838. package/files/templates/signage-sdk-templates/Widget_Overlay/res/images/tpl_07_icon_up_02.png +0 -0
  839. package/files/templates/signage-sdk-templates/Widget_Overlay/res/images/tpl_07_img_news.png +0 -0
  840. package/files/templates/signage-sdk-templates/Widget_Overlay/res/images/tpl_07_img_news1.png +0 -0
  841. package/files/templates/signage-sdk-templates/Widget_Overlay/res/images/tpl_07_video_dim.png +0 -0
  842. package/files/templates/signage-sdk-templates/Widget_Overlay/res/videos/tpl_07_video.mp4 +0 -0
  843. package/files/templates/signage-sdk-templates/appinfo/appinfo.json +11 -0
  844. package/files/templates/signage-sdk-templates/idcap_api/1.1.0/js/idcap.js +21 -0
  845. package/files/templates/signage-sdk-templates/idcap_api/1.1.0/js/release_notes.txt +25 -0
  846. package/files/templates/signage-sdk-templates/scap_api/1.3/js/cordova/2.7.0/cordova.webos.js +7025 -0
  847. package/files/templates/signage-sdk-templates/scap_api/1.3/js/cordova/LICENSE +7025 -0
  848. package/files/templates/signage-sdk-templates/scap_api/1.3/js/cordova-cd/1.3/configuration.js +1 -0
  849. package/files/templates/signage-sdk-templates/scap_api/1.3/js/cordova-cd/1.3/deviceInfo.js +1 -0
  850. package/files/templates/signage-sdk-templates/scap_api/1.3/js/cordova-cd/1.3/inputSource.js +1 -0
  851. package/files/templates/signage-sdk-templates/scap_api/1.3/js/cordova-cd/1.3/power.js +1 -0
  852. package/files/templates/signage-sdk-templates/scap_api/1.3/js/cordova-cd/1.3/signage.js +1 -0
  853. package/files/templates/signage-sdk-templates/scap_api/1.3/js/cordova-cd/1.3/sound.js +1 -0
  854. package/files/templates/signage-sdk-templates/scap_api/1.3/js/cordova-cd/1.3/storage.js +1 -0
  855. package/files/templates/signage-sdk-templates/scap_api/1.3/js/cordova-cd/1.3/video.js +1 -0
  856. package/files/templates/signage-sdk-templates/scap_api/1.3/js/release_notes.txt +109 -0
  857. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/cordova/2.7.0/cordova.webos.js +7038 -0
  858. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/cordova/LICENSE +201 -0
  859. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/cordova-cd/configuration.js +1 -0
  860. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/cordova-cd/deviceInfo.js +1 -0
  861. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/cordova-cd/inputSource.js +1 -0
  862. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/cordova-cd/power.js +1 -0
  863. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/cordova-cd/security.js +1 -0
  864. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/cordova-cd/signage.js +1 -0
  865. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/cordova-cd/sound.js +1 -0
  866. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/cordova-cd/storage.js +1 -0
  867. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/cordova-cd/time.js +1 -0
  868. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/cordova-cd/utility.js +1 -0
  869. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/cordova-cd/video.js +1 -0
  870. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/css/all.css +358 -0
  871. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/css/fonts/mplus-1m-bold-webfont.eot +0 -0
  872. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/css/fonts/mplus-1m-bold-webfont.svg +134 -0
  873. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/css/fonts/mplus-1m-bold-webfont.ttf +0 -0
  874. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/css/fonts/mplus-1m-bold-webfont.woff +0 -0
  875. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/css/fonts/mplus-1m-regular-webfont.eot +0 -0
  876. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/css/fonts/mplus-1m-regular-webfont.svg +134 -0
  877. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/css/fonts/mplus-1m-regular-webfont.ttf +0 -0
  878. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/css/fonts/mplus-1m-regular-webfont.woff +0 -0
  879. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/css/handheld.css +217 -0
  880. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/css/screen.css +405 -0
  881. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/files.html +577 -0
  882. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/index.html +1203 -0
  883. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/intro.html +100 -0
  884. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/javascript/all.js +326 -0
  885. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/javascript/highlighter/dessert.css +34 -0
  886. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/javascript/highlighter/lang-apollo.js +51 -0
  887. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/javascript/highlighter/lang-clj.js +64 -0
  888. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/javascript/highlighter/lang-css.js +78 -0
  889. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/javascript/highlighter/lang-go.js +58 -0
  890. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/javascript/highlighter/lang-hs.js +101 -0
  891. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/javascript/highlighter/lang-lisp.js +93 -0
  892. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/javascript/highlighter/lang-lua.js +59 -0
  893. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/javascript/highlighter/lang-ml.js +56 -0
  894. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/javascript/highlighter/lang-n.js +62 -0
  895. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/javascript/highlighter/lang-proto.js +35 -0
  896. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/javascript/highlighter/lang-scala.js +54 -0
  897. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/javascript/highlighter/lang-sql.js +57 -0
  898. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/javascript/highlighter/lang-tex.js +46 -0
  899. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/javascript/highlighter/lang-vb.js +61 -0
  900. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/javascript/highlighter/lang-vhdl.js +34 -0
  901. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/javascript/highlighter/lang-wiki.js +53 -0
  902. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/javascript/highlighter/lang-xq.js +67 -0
  903. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/javascript/highlighter/lang-yaml.js +27 -0
  904. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/javascript/highlighter/prettify.css +52 -0
  905. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/javascript/highlighter/prettify.js +1477 -0
  906. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/javascript/html5.js +6 -0
  907. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Configuration#clearCache.html +550 -0
  908. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Configuration#getCurrentTime.html +560 -0
  909. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Configuration#getLocaleList.html +560 -0
  910. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Configuration#getOSDLanguage.html +560 -0
  911. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Configuration#getOSDLock.html +560 -0
  912. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Configuration#getPictureMode.html +560 -0
  913. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Configuration#getPictureProperty.html +560 -0
  914. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Configuration#getProperty.html +561 -0
  915. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Configuration#getServerProperty.html +560 -0
  916. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Configuration#getTimeZone.html +560 -0
  917. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Configuration#getTimeZoneList.html +560 -0
  918. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Configuration#getUSBLock.html +560 -0
  919. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Configuration#getVirtualKeyboardLanguage.html +560 -0
  920. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Configuration#restartApplication.html +550 -0
  921. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Configuration#setCurrentTime.html +566 -0
  922. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Configuration#setOSDLanguage.html +566 -0
  923. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Configuration#setOSDLock.html +566 -0
  924. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Configuration#setPictureMode.html +566 -0
  925. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Configuration#setPictureProperty.html +566 -0
  926. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Configuration#setProperty.html +561 -0
  927. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Configuration#setServerProperty.html +610 -0
  928. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Configuration#setTimeZone.html +566 -0
  929. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Configuration#setUSBLock.html +566 -0
  930. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Configuration#setVirtualKeyboardLanguage.html +566 -0
  931. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Configuration.AppMode.html +685 -0
  932. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Configuration.AppType.html +640 -0
  933. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Configuration.PictureMode.html +910 -0
  934. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/DeviceInfo#connectWifi.html +561 -0
  935. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/DeviceInfo#getBeaconInfo.html +560 -0
  936. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/DeviceInfo#getEddystoneInfo.html +560 -0
  937. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/DeviceInfo#getNetworkInfo.html +560 -0
  938. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/DeviceInfo#getNetworkMacInfo.html +560 -0
  939. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/DeviceInfo#getPlatformInfo.html +560 -0
  940. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/DeviceInfo#getProxyInfo.html +560 -0
  941. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/DeviceInfo#getSoftApInfo.html +560 -0
  942. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/DeviceInfo#getSystemUsageInfo.html +566 -0
  943. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/DeviceInfo#getWifiList.html +560 -0
  944. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/DeviceInfo#getiBeaconInfo.html +560 -0
  945. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/DeviceInfo#setBeaconInfo.html +561 -0
  946. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/DeviceInfo#setEddystoneInfo.html +566 -0
  947. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/DeviceInfo#setNetworkInfo.html +561 -0
  948. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/DeviceInfo#setProxyInfo.html +566 -0
  949. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/DeviceInfo#setSoftApInfo.html +561 -0
  950. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/DeviceInfo#setiBeaconInfo.html +566 -0
  951. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/DeviceInfo#startWps.html +566 -0
  952. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/DeviceInfo#stopWps.html +555 -0
  953. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/DeviceInfo.EddystoneFrame.html +640 -0
  954. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Error.ERROR_CODE.html +820 -0
  955. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Error.html +460 -0
  956. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/InputSource#changeInputSource.html +566 -0
  957. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/InputSource#getInputSourceStatus.html +560 -0
  958. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/InputSource#initialize.html +561 -0
  959. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Power#addOffTimer.html +566 -0
  960. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Power#addOnTimer.html +566 -0
  961. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Power#deleteOffTimer.html +566 -0
  962. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Power#deleteOnTimer.html +566 -0
  963. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Power#enableAllOffTimer.html +566 -0
  964. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Power#enableAllOnTimer.html +566 -0
  965. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Power#enableWakeOnLan.html +566 -0
  966. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Power#executePowerCommand.html +566 -0
  967. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Power#getDPMWakeup.html +560 -0
  968. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Power#getOffTimerList.html +560 -0
  969. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Power#getOnTimerList.html +560 -0
  970. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Power#getPMMode.html +560 -0
  971. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Power#getPowerOnDelay.html +560 -0
  972. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Power#getPowerStatus.html +560 -0
  973. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Power#setDPMWakeup.html +566 -0
  974. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Power#setDisplayMode.html +566 -0
  975. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Power#setPMMode.html +566 -0
  976. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Power#setPowerOnDelay.html +566 -0
  977. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Power.DPMSignalType.html +640 -0
  978. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Power.DisplayMode.html +640 -0
  979. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Power.PMMode.html +775 -0
  980. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Power.PowerCommand.html +640 -0
  981. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Power.TimerWeek.html +910 -0
  982. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Security#existServerCertificate.html +561 -0
  983. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Security#registerServerCertificate.html +561 -2
  984. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Security#unregisterServerCertificate.html +561 -0
  985. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Signage#captureScreen.html +561 -0
  986. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Signage#enableCheckScreen.html +566 -0
  987. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Signage#getFailoverMode.html +555 -0
  988. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Signage#getIntelligentAuto.html +560 -0
  989. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Signage#getLanDaisyChain.html +560 -0
  990. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Signage#getPowerSaveMode.html +555 -0
  991. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Signage#getSignageInfo.html +555 -0
  992. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Signage#getStudioMode.html +560 -0
  993. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Signage#getSystemMonitoringInfo.html +555 -0
  994. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Signage#getTileInfo.html +555 -0
  995. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Signage#getUsageData.html +555 -0
  996. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Signage#getUsagePermission.html +555 -0
  997. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Signage#registerSystemMonitor.html +573 -0
  998. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Signage#setDigitalAudioInputMode.html +567 -0
  999. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Signage#setFailoverMode.html +567 -0
  1000. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Signage#setIntelligentAuto.html +566 -0
  1001. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Signage#setIsmMethod.html +567 -0
  1002. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Signage#setLanDaisyChain.html +566 -0
  1003. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Signage#setPortraitMode.html +567 -0
  1004. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Signage#setPowerSaveMode.html +567 -0
  1005. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Signage#setStudioMode.html +566 -0
  1006. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Signage#setTileInfo.html +567 -0
  1007. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Signage#setUsagePermission.html +567 -0
  1008. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Signage#unregisterSystemMonitor.html +555 -0
  1009. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Signage.AutomaticStandbyMode.html +640 -0
  1010. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Signage.DigitalAudioInput.html +640 -0
  1011. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Signage.DpmMode.html +910 -0
  1012. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Signage.EventType.html +775 -0
  1013. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Signage.FailoverMode.html +685 -0
  1014. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Signage.ImgResolution.html +640 -0
  1015. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Signage.IsmMethod.html +910 -0
  1016. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Signage.KeyOperationMode.html +685 -0
  1017. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Signage.MonitoringSource.html +775 -0
  1018. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Signage.OsdPortraitMode.html +640 -0
  1019. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Sound#getSoundMode.html +560 -0
  1020. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Sound#getSoundOut.html +560 -0
  1021. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Sound#getSoundStatus.html +560 -0
  1022. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Sound#setExternalSpeaker.html +566 -0
  1023. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Sound#setMuted.html +566 -0
  1024. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Sound#setSoundMode.html +566 -0
  1025. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Sound#setSoundOut.html +566 -0
  1026. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Sound#setVolumeLevel.html +566 -0
  1027. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Sound.SoundMode.html +820 -0
  1028. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Sound.SpeakerType.html +640 -0
  1029. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Storage#changeLogoImage.html +566 -0
  1030. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Storage#copyFile.html +561 -0
  1031. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Storage#downloadFirmware.html +566 -0
  1032. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Storage#exists.html +561 -0
  1033. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Storage#fsync.html +561 -0
  1034. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Storage#getFirmwareUpgradeStatus.html +560 -0
  1035. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Storage#getStorageInfo.html +555 -0
  1036. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Storage#listFiles.html +561 -0
  1037. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Storage#mkdir.html +561 -0
  1038. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Storage#moveFile.html +561 -0
  1039. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Storage#readFile.html +563 -0
  1040. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Storage#removeAll.html +561 -0
  1041. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Storage#removeApplication.html +566 -0
  1042. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Storage#removeFile.html +561 -0
  1043. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Storage#statFile.html +561 -0
  1044. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Storage#unzipFile.html +561 -0
  1045. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Storage#upgradeApplication.html +566 -0
  1046. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Storage#upgradeFirmware.html +560 -0
  1047. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Storage#writeFile.html +561 -0
  1048. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Storage.AppMode.html +640 -0
  1049. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Storage.AppType.html +640 -0
  1050. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Storage.SCAP_URI.html +512 -0
  1051. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Time#addHolidaySchedule.html +566 -0
  1052. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Time#delAllHolidaySchedules.html +566 -0
  1053. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Time#delHolidaySchedule.html +566 -0
  1054. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Time#getAllHolidaySchedules.html +560 -0
  1055. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Time#getHolidayScheduleMode.html +560 -0
  1056. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Time#setHolidayScheduleMode.html +566 -0
  1057. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Utility#createToast.html +561 -0
  1058. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Video#getContentRotation.html +560 -0
  1059. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Video#getVideoStatus.html +560 -0
  1060. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Video#setContentRotation.html +566 -0
  1061. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Video#setRotatedVideoTransform.html +566 -0
  1062. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Video#setVideoSize.html +566 -0
  1063. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Video#setVideoViewTransform.html +566 -0
  1064. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/_global_.html +453 -0
  1065. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/image/media_status.jpg +0 -0
  1066. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/image/setVideoSize.png +0 -0
  1067. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/src/js_configuration.js.html +2651 -0
  1068. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/src/js_deviceInfo.js.html +1860 -0
  1069. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/src/js_inputSource.js.html +1382 -0
  1070. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/src/js_power.js.html +2697 -0
  1071. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/src/js_security.js.html +357 -0
  1072. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/src/js_signage.js.html +3601 -0
  1073. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/src/js_sound.js.html +1123 -0
  1074. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/src/js_storage.js.html +2615 -0
  1075. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/src/js_time.js.html +720 -0
  1076. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/src/js_utility.js.html +196 -0
  1077. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/src/js_video.js.html +1090 -0
  1078. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/release_notes.txt +148 -0
  1079. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/cordova/2.7.0/cordova.webos.js +7038 -0
  1080. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/cordova/LICENSE +201 -0
  1081. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/cordova-cd/configuration.js +1 -0
  1082. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/cordova-cd/deviceInfo.js +1 -0
  1083. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/cordova-cd/inputSource.js +1 -0
  1084. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/cordova-cd/power.js +1 -0
  1085. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/cordova-cd/security.js +1 -0
  1086. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/cordova-cd/signage.js +1 -0
  1087. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/cordova-cd/sound.js +1 -0
  1088. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/cordova-cd/storage.js +1 -0
  1089. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/cordova-cd/time.js +1 -0
  1090. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/cordova-cd/utility.js +1 -0
  1091. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/cordova-cd/video.js +1 -0
  1092. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/css/all.css +358 -0
  1093. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/css/fonts/mplus-1m-bold-webfont.eot +0 -0
  1094. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/css/fonts/mplus-1m-bold-webfont.svg +134 -0
  1095. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/css/fonts/mplus-1m-bold-webfont.ttf +0 -0
  1096. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/css/fonts/mplus-1m-bold-webfont.woff +0 -0
  1097. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/css/fonts/mplus-1m-regular-webfont.eot +0 -0
  1098. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/css/fonts/mplus-1m-regular-webfont.svg +134 -0
  1099. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/css/fonts/mplus-1m-regular-webfont.ttf +0 -0
  1100. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/css/fonts/mplus-1m-regular-webfont.woff +0 -0
  1101. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/css/handheld.css +217 -0
  1102. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/css/screen.css +405 -0
  1103. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/files.html +599 -0
  1104. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/index.html +1280 -0
  1105. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/intro.html +100 -0
  1106. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/javascript/all.js +326 -0
  1107. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/javascript/highlighter/dessert.css +34 -0
  1108. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/javascript/highlighter/lang-apollo.js +51 -0
  1109. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/javascript/highlighter/lang-clj.js +64 -0
  1110. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/javascript/highlighter/lang-css.js +78 -0
  1111. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/javascript/highlighter/lang-go.js +58 -0
  1112. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/javascript/highlighter/lang-hs.js +101 -0
  1113. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/javascript/highlighter/lang-lisp.js +93 -0
  1114. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/javascript/highlighter/lang-lua.js +59 -0
  1115. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/javascript/highlighter/lang-ml.js +56 -0
  1116. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/javascript/highlighter/lang-n.js +62 -0
  1117. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/javascript/highlighter/lang-proto.js +35 -0
  1118. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/javascript/highlighter/lang-scala.js +54 -0
  1119. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/javascript/highlighter/lang-sql.js +57 -0
  1120. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/javascript/highlighter/lang-tex.js +46 -0
  1121. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/javascript/highlighter/lang-vb.js +61 -0
  1122. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/javascript/highlighter/lang-vhdl.js +34 -0
  1123. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/javascript/highlighter/lang-wiki.js +53 -0
  1124. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/javascript/highlighter/lang-xq.js +67 -0
  1125. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/javascript/highlighter/lang-yaml.js +27 -0
  1126. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/javascript/highlighter/prettify.css +52 -0
  1127. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/javascript/highlighter/prettify.js +1477 -0
  1128. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/javascript/html5.js +6 -0
  1129. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Configuration#clearCache.html +572 -0
  1130. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Configuration#getCurrentTime.html +582 -0
  1131. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Configuration#getLocaleList.html +582 -0
  1132. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Configuration#getOSDLanguage.html +582 -0
  1133. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Configuration#getOSDLock.html +582 -0
  1134. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Configuration#getPictureMode.html +582 -0
  1135. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Configuration#getPictureProperty.html +582 -0
  1136. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Configuration#getProperty.html +583 -0
  1137. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Configuration#getServerProperty.html +582 -0
  1138. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Configuration#getTimeZone.html +582 -0
  1139. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Configuration#getTimeZoneList.html +582 -0
  1140. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Configuration#getUSBLock.html +582 -0
  1141. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Configuration#getVirtualKeyboardLanguage.html +582 -0
  1142. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Configuration#restartApplication.html +572 -0
  1143. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Configuration#setCurrentTime.html +588 -0
  1144. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Configuration#setOSDLanguage.html +588 -0
  1145. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Configuration#setOSDLock.html +588 -0
  1146. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Configuration#setPictureMode.html +588 -0
  1147. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Configuration#setPictureProperty.html +588 -0
  1148. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Configuration#setProperty.html +583 -0
  1149. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Configuration#setServerProperty.html +632 -0
  1150. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Configuration#setTimeZone.html +588 -0
  1151. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Configuration#setUSBLock.html +588 -0
  1152. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Configuration#setVirtualKeyboardLanguage.html +588 -0
  1153. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Configuration.AppMode.html +707 -0
  1154. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Configuration.AppType.html +662 -0
  1155. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Configuration.PictureMode.html +932 -0
  1156. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/DeviceInfo#connectWifi.html +583 -0
  1157. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/DeviceInfo#getBeaconInfo.html +582 -0
  1158. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/DeviceInfo#getEddystoneInfo.html +582 -0
  1159. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/DeviceInfo#getExternalInputList.html +588 -0
  1160. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/DeviceInfo#getNetworkInfo.html +582 -0
  1161. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/DeviceInfo#getNetworkMacInfo.html +582 -0
  1162. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/DeviceInfo#getPlatformInfo.html +582 -0
  1163. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/DeviceInfo#getProxyInfo.html +582 -0
  1164. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/DeviceInfo#getSoftApInfo.html +582 -0
  1165. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/DeviceInfo#getSystemUsageInfo.html +588 -0
  1166. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/DeviceInfo#getWifiList.html +582 -0
  1167. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/DeviceInfo#getiBeaconInfo.html +582 -0
  1168. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/DeviceInfo#setBeaconInfo.html +583 -0
  1169. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/DeviceInfo#setEddystoneInfo.html +588 -0
  1170. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/DeviceInfo#setNetworkInfo.html +583 -0
  1171. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/DeviceInfo#setProxyInfo.html +588 -0
  1172. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/DeviceInfo#setSoftApInfo.html +583 -0
  1173. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/DeviceInfo#setiBeaconInfo.html +588 -0
  1174. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/DeviceInfo#startWps.html +588 -0
  1175. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/DeviceInfo#stopWps.html +577 -0
  1176. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/DeviceInfo.EddystoneFrame.html +662 -0
  1177. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Error.ERROR_CODE.html +842 -0
  1178. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Error.html +482 -0
  1179. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/InputSource#changeInputSource.html +588 -0
  1180. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/InputSource#getInputSourceStatus.html +582 -0
  1181. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/InputSource#initialize.html +583 -0
  1182. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Power#addOffTimer.html +588 -0
  1183. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Power#addOnTimer.html +588 -0
  1184. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Power#deleteOffTimer.html +588 -0
  1185. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Power#deleteOnTimer.html +588 -0
  1186. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Power#enableAllOffTimer.html +588 -0
  1187. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Power#enableAllOnTimer.html +588 -0
  1188. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Power#enableWakeOnLan.html +588 -0
  1189. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Power#executePowerCommand.html +588 -0
  1190. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Power#getDPMWakeup.html +582 -0
  1191. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Power#getOffTimerList.html +582 -0
  1192. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Power#getOnOffTimeSchedule.html +582 -0
  1193. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Power#getOnTimerList.html +582 -0
  1194. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Power#getPMMode.html +582 -0
  1195. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Power#getPowerOnDelay.html +582 -0
  1196. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Power#getPowerStatus.html +582 -0
  1197. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Power#setDPMWakeup.html +588 -0
  1198. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Power#setDisplayMode.html +588 -0
  1199. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Power#setOnOffTimeSchedule.html +583 -0
  1200. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Power#setPMMode.html +588 -0
  1201. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Power#setPowerOnDelay.html +588 -0
  1202. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Power#unsetOnOffTimeSchedule.html +582 -0
  1203. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Power.DPMSignalType.html +662 -0
  1204. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Power.DisplayMode.html +662 -0
  1205. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Power.PMMode.html +797 -0
  1206. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Power.PowerCommand.html +662 -0
  1207. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Power.TimerWeek.html +932 -0
  1208. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Security#existServerCertificate.html +583 -0
  1209. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Security#registerServerCertificate.html +583 -2
  1210. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Security#unregisterServerCertificate.html +583 -0
  1211. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Signage#captureScreen.html +583 -0
  1212. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Signage#enableCheckScreen.html +588 -0
  1213. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Signage#getFailoverMode.html +577 -0
  1214. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Signage#getIntelligentAuto.html +582 -0
  1215. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Signage#getLanDaisyChain.html +582 -0
  1216. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Signage#getPowerSaveMode.html +577 -0
  1217. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Signage#getSignageInfo.html +577 -0
  1218. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Signage#getStudioMode.html +582 -0
  1219. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Signage#getSystemMonitoringInfo.html +577 -0
  1220. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Signage#getTileInfo.html +577 -0
  1221. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Signage#getUsageData.html +577 -0
  1222. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Signage#getUsagePermission.html +577 -0
  1223. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Signage#registerRS232CEventListener.html +594 -0
  1224. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Signage#registerSystemMonitor.html +595 -0
  1225. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Signage#setDigitalAudioInputMode.html +589 -0
  1226. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Signage#setFailoverMode.html +589 -0
  1227. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Signage#setIntelligentAuto.html +588 -0
  1228. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Signage#setIsmMethod.html +589 -0
  1229. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Signage#setLanDaisyChain.html +588 -0
  1230. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Signage#setPortraitMode.html +589 -0
  1231. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Signage#setPowerSaveMode.html +589 -0
  1232. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Signage#setStudioMode.html +588 -0
  1233. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Signage#setTileInfo.html +589 -0
  1234. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Signage#setUsagePermission.html +589 -0
  1235. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Signage#unregisterRS232CEventListener.html +582 -0
  1236. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Signage#unregisterSystemMonitor.html +577 -0
  1237. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Signage.AutomaticStandbyMode.html +662 -0
  1238. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Signage.DigitalAudioInput.html +662 -0
  1239. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Signage.DpmMode.html +932 -0
  1240. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Signage.EventType.html +797 -0
  1241. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Signage.FailoverMode.html +707 -0
  1242. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Signage.ImgResolution.html +662 -0
  1243. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Signage.IsmMethod.html +932 -0
  1244. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Signage.KeyOperationMode.html +707 -0
  1245. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Signage.MonitoringSource.html +797 -0
  1246. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Signage.OsdPortraitMode.html +662 -0
  1247. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Sound#getSoundMode.html +582 -0
  1248. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Sound#getSoundOut.html +582 -0
  1249. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Sound#getSoundStatus.html +582 -0
  1250. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Sound#setExternalSpeaker.html +588 -0
  1251. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Sound#setMuted.html +588 -0
  1252. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Sound#setSoundMode.html +588 -0
  1253. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Sound#setSoundOut.html +588 -0
  1254. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Sound#setVolumeLevel.html +588 -0
  1255. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Sound.SoundMode.html +842 -0
  1256. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Sound.SpeakerType.html +662 -0
  1257. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Storage#changeLogoImage.html +588 -0
  1258. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Storage#copyFile.html +583 -0
  1259. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Storage#decryptFile.html +583 -0
  1260. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Storage#downloadFirmware.html +588 -0
  1261. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Storage#exists.html +583 -0
  1262. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Storage#fsync.html +583 -0
  1263. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Storage#getFirmwareUpgradeStatus.html +582 -0
  1264. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Storage#getMD5Hash.html +583 -0
  1265. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Storage#getStorageInfo.html +577 -0
  1266. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Storage#listFiles.html +583 -0
  1267. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Storage#mkdir.html +583 -0
  1268. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Storage#moveFile.html +583 -0
  1269. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Storage#readFile.html +585 -0
  1270. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Storage#removeAll.html +583 -0
  1271. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Storage#removeApplication.html +588 -0
  1272. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Storage#removeFile.html +583 -0
  1273. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Storage#statFile.html +583 -0
  1274. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Storage#unzipFile.html +583 -0
  1275. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Storage#upgradeApplication.html +588 -0
  1276. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Storage#upgradeFirmware.html +582 -0
  1277. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Storage#writeFile.html +583 -0
  1278. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Storage.AppMode.html +662 -0
  1279. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Storage.AppType.html +662 -0
  1280. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Storage.SCAP_URI.html +534 -0
  1281. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Time#addHolidaySchedule.html +588 -0
  1282. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Time#delAllHolidaySchedules.html +588 -0
  1283. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Time#delHolidaySchedule.html +588 -0
  1284. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Time#getAllHolidaySchedules.html +582 -0
  1285. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Time#getHolidaySchedule.html +582 -0
  1286. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Time#getHolidayScheduleMode.html +582 -0
  1287. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Time#setHolidaySchedule.html +583 -0
  1288. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Time#setHolidayScheduleMode.html +588 -0
  1289. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Time#unsetHolidaySchedule.html +582 -0
  1290. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Utility#createToast.html +583 -0
  1291. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Video#getContentRotation.html +586 -0
  1292. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Video#getVideoStatus.html +582 -0
  1293. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Video#setContentRotation.html +592 -0
  1294. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Video#setRotatedVideoTransform.html +592 -0
  1295. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Video#setVideoSize.html +588 -0
  1296. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Video#setVideoViewTransform.html +592 -0
  1297. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/_global_.html +475 -0
  1298. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/image/media_status.jpg +0 -0
  1299. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/image/setVideoSize.png +0 -0
  1300. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/src/js_configuration.js.html +2651 -0
  1301. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/src/js_deviceInfo.js.html +1930 -0
  1302. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/src/js_inputSource.js.html +1383 -0
  1303. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/src/js_power.js.html +2942 -0
  1304. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/src/js_security.js.html +352 -0
  1305. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/src/js_signage.js.html +3853 -0
  1306. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/src/js_sound.js.html +1123 -0
  1307. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/src/js_storage.js.html +2747 -0
  1308. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/src/js_time.js.html +976 -0
  1309. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/src/js_utility.js.html +196 -0
  1310. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/src/js_video.js.html +754 -0
  1311. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/release_notes.txt +148 -0
  1312. package/files/templates/signage-sdk-templates/serviceinfo/package.json +11 -0
  1313. package/files/templates/signage-sdk-templates/serviceinfo/services.json +8 -0
  1314. package/files/templates/signage-sdk-templates/signageicon/icon.png +0 -0
  1315. package/files/templates/signage-sdk-templates/signageicon/largeIcon.png +0 -0
  1316. package/files/templates/signage-sdk-templates/webos-service/helloclient.js +23 -0
  1317. package/files/templates/signage-sdk-templates/webos-service/helloworld_webos_service.js +128 -0
  1318. package/files/templates/tv-sdk-templates/appinfo/appinfo.json +10 -10
  1319. package/files/templates/tv-sdk-templates/bootplate-web/index.html +58 -58
  1320. package/files/templates/tv-sdk-templates/bootplate-web/webOSTVjs-1.2.10/LICENSE-2.0.txt +202 -202
  1321. package/files/templates/tv-sdk-templates/hosted-webapp/index.html +14 -14
  1322. package/files/templates/tv-sdk-templates/js-service/helloworld_service.js +39 -39
  1323. package/files/templates/tv-sdk-templates/packageinfo/packageinfo.json +3 -3
  1324. package/files/templates/tv-sdk-templates/serviceinfo/package.json +11 -11
  1325. package/files/templates/tv-sdk-templates/serviceinfo/services.json +8 -8
  1326. package/lib/base/ares.html +40 -40
  1327. package/lib/base/cli-appdata.js +289 -290
  1328. package/lib/base/cli-control.js +44 -44
  1329. package/lib/base/common-tools.js +29 -29
  1330. package/lib/base/error-handler.js +265 -265
  1331. package/lib/base/file-watcher.js +155 -155
  1332. package/lib/base/help-format.js +147 -147
  1333. package/lib/base/luna.js +178 -178
  1334. package/lib/base/novacom.js +1214 -1202
  1335. package/lib/base/sdkenv.js +59 -59
  1336. package/lib/base/server.js +137 -137
  1337. package/lib/base/setup-device.js +356 -335
  1338. package/lib/base/version-tools.js +79 -79
  1339. package/lib/com.sdk.ares.signage.hostedapp.ipk +0 -0
  1340. package/lib/device.js +1419 -1419
  1341. package/lib/generator.js +408 -377
  1342. package/lib/inspect.js +493 -493
  1343. package/lib/install.js +465 -463
  1344. package/lib/launch.js +607 -605
  1345. package/lib/log.js +584 -584
  1346. package/lib/package.js +2253 -2149
  1347. package/lib/pull.js +231 -231
  1348. package/lib/pusher.js +210 -210
  1349. package/lib/session.js +74 -74
  1350. package/lib/shell.js +193 -193
  1351. package/lib/tar-filter-pack.js +62 -62
  1352. package/lib/util/copy.js +31 -31
  1353. package/lib/util/createFileName.js +40 -40
  1354. package/lib/util/eof.js +30 -30
  1355. package/lib/util/json.js +63 -63
  1356. package/lib/util/merge.js +14 -14
  1357. package/lib/util/objclone.js +40 -40
  1358. package/lib/util/spinner.js +37 -37
  1359. package/npm-shrinkwrap.json +9242 -9242
  1360. package/package.json +100 -100
  1361. package/sbom-info.yaml +1758 -0
  1362. package/scripts/postinstall.js +24 -24
  1363. package/spec/helpers/reporter.js +65 -65
  1364. package/spec/jsSpecs/apiTest/generator.spec.js +372 -372
  1365. package/spec/jsSpecs/apiTest/inspector.spec.js +89 -89
  1366. package/spec/jsSpecs/apiTest/installer.spec.js +67 -67
  1367. package/spec/jsSpecs/apiTest/launcher.spec.js +150 -150
  1368. package/spec/jsSpecs/apiTest/packager.spec.js +194 -194
  1369. package/spec/jsSpecs/apiTest/puller.spec.js +101 -101
  1370. package/spec/jsSpecs/apiTest/pusher.spec.js +103 -103
  1371. package/spec/jsSpecs/apiTest/server.spec.js +115 -115
  1372. package/spec/jsSpecs/apiTest/setupDevice.spec.js +93 -93
  1373. package/spec/jsSpecs/apiTest/shell.spec.js +49 -49
  1374. package/spec/jsSpecs/ares-config.spec.js +88 -88
  1375. package/spec/jsSpecs/ares-device.spec.js +443 -443
  1376. package/spec/jsSpecs/ares-generate.spec.js +401 -397
  1377. package/spec/jsSpecs/ares-inspect.spec.js +252 -252
  1378. package/spec/jsSpecs/ares-install.spec.js +150 -150
  1379. package/spec/jsSpecs/ares-launch.spec.js +303 -301
  1380. package/spec/jsSpecs/ares-log.spec.js +824 -824
  1381. package/spec/jsSpecs/ares-novacom.spec.js +149 -149
  1382. package/spec/jsSpecs/ares-package.spec.js +1277 -1211
  1383. package/spec/jsSpecs/ares-pull.spec.js +157 -157
  1384. package/spec/jsSpecs/ares-push.spec.js +146 -146
  1385. package/spec/jsSpecs/ares-server.spec.js +160 -160
  1386. package/spec/jsSpecs/ares-setup-device.spec.js +299 -300
  1387. package/spec/jsSpecs/ares-shell.spec.js +220 -220
  1388. package/spec/jsSpecs/ares.spec.js +83 -83
  1389. package/spec/jsSpecs/common-spec.js +177 -169
  1390. package/spec/support/jasmine.json +22 -22
  1391. package/spec/tempFiles/com.lg.app.signage.dev_0.0.1_all.ipk +0 -0
  1392. package/spec/tempFiles/nativeApp/auto/pkg_arm64/appinfo.json +9 -9
  1393. package/spec/tempFiles/nativeApp/ose/pkg_arm/appinfo.json +8 -8
  1394. package/spec/tempFiles/nativeApp/ose/pkg_arm/package.properties +2 -2
  1395. package/spec/tempFiles/nativeApp/oseEmul/pkg_x86/appinfo.json +9 -9
  1396. package/spec/tempFiles/nativeApp/rsi/pkg_x86/appinfo.json +9 -9
  1397. package/spec/tempFiles/sign/sign.crt +32 -32
  1398. package/spec/tempFiles/sign/signPriv.key +52 -52
  1399. package/spec/test_data/ares-generate.json +91 -58
  1400. package/spec/test_data/ares.json +50 -50
  1401. package/webos-tools-cli-3.2.0.tgz +0 -0
  1402. package/webos-tools-cli-3.1.2.tgz +0 -0
@@ -0,0 +1,14 @@
1
+
2
+ /*
3
+ * ============================================================================
4
+ * LG ELECTRONICS INC., PYEONGTAEK, KOREA
5
+ * Copyright(c) 2021 by LG Electronics Inc.
6
+ *
7
+ * Author : signagesupport@lge.com
8
+ * Modified Date : 2021-09-30
9
+ * Release Version : 1.4210930
10
+ *
11
+ * See ./doc/index.html for more detail
12
+ * ============================================================================
13
+ */
14
+ cordova.define("cordova/plugin/custom",function(e,a,t){function c(){}var o=window.PalmSystem?e("cordova/plugin/webos/service"):{Request:function(e,a){"function"==typeof a.onFailure&&a.onFailure({returnValue:!1,errorCode:"NOT_WEBOS",errorText:"PalmSystem Not Available. Cordova is not installed?"})}},n={"1.0":["getPowerOnOffHistory","changePassword","getwebOSVersion","disableApplication","setPowerOnStatus","getPowerOnStatus","setWhiteBalanceRGB","getWhiteBalanceRGB","getCustomJSVersion"],"2.0":["getKAM","setKAM","getApplicationInfo","switchApplication","setMaster","setSlave","setAvSync","setAvSyncSpeaker","setAvSyncBypass","getAvSync","getAvSyncSpeaker","getAvSyncBypass","addUSBAttachEventListener","removeUSBAttachEventListener"],"3.0":["getWoWLAN","setWoWLAN","getNativePortraitMode","setNativePortraitMode","setNoSignalImageStatus","getNoSignalImageStatus","clearBrowsingData","enableScreenShareApp"],3.2:["setEnterpriseCode","getPortControl","setPortControl"],"4.0":[],4.1:[],"5.0":[],"6.0":[]},l={USBAttachEventListener:null},s={webOSVersion:-2},R="commercial",u="hotelMode",r="network",O="option",E="sound",C="picture",p="lock",f="enableKAM",d="password",b="siAppOrientation",A="screenRotation",S="wolwowlOnOff",M="powerOnStatus",N="powerOnOffHistory",g="avSync",m="avSyncSpeaker",_="avSyncBypassInput",I="noSignalImage",v="pictureMode",P="systemPin",k="blockedPortList";c.ERROR_CODE={COMMON:{OLD_WEBOS_VERSION:"OLD_WEBOS_VERSION",UNSUPPORTED_API:"UNSUPPORTED_API",BAD_PARAMETERS:"BAD_PARAMETERS",INTERNAL_ERROR:"INTERNAL_ERROR",NOT_MONITORING:"NOT_MONITORING",MEDIA_ERROR:"MEDIA_ERROR"},CONFIGURATION:{INVALID_PASSWORD_FORMAT:"BAD_PARAMETERS",ACCESS_DENIED:"ACCESS_DENIED",INVALID_CONFIG:"INVALID_CONFIGURATION"},APPLICATION:{SETTINGS_ERROR:"SETTINGS_ERROR",NOT_INSTALLED:"NOT_INSTALLED"}},c.CLEARBROWSINGDATATYPES={ALL:"all",APPCACHE:"appcache",CACHE:"cache",CHANNELIDS:"channelIDs",COOKIES:"cookies",FILESYSTEMS:"fileSystems",INDEXEDDB:"indexedDB",LOCALSTORAGE:"localStorage",SERVICEWORKERS:"serviceWorkers",WEBSQL:"webSQL"},c.AVSYNC={ON:"on",OFF:"off"},c.AVSYNCBYPASS={ON:"on",OFF:"off"},c.NOSIGNALIMAGE={ON:"on",OFF:"off"},c.POWERONSTATUS={POWERON:"power_on",STANDBY:"stand_by",LASTSTATUS:"lst"},c.APPLICATION={ZIP_TYPE:"commercial.signage.signageapplauncher",IPK_TYPE:"com.lg.app.signage",EXTERNAL_HDMI:"com.webos.app.hdmi1",EXTERNAL_HDMI1:"com.webos.app.hdmi1",EXTERNAL_HDMI2:"com.webos.app.hdmi2",EXTERNAL_HDMI3:"com.webos.app.hdmi3",EXTERNAL_HDMI4:"com.webos.app.hdmi4",EXTERNAL_RGB:"com.webos.app.externalinput.rgb",EXTERNAL_DVI:"com.webos.app.hdmi2",EXTERNAL_DP:"com.webos.app.hdmi3",EXTERNAL_OPS:"com.webos.app.hdmi4",SCREEN_SHARE:"com.webos.app.miracast"},c.NATIVEPORTRAIT={OFF:"off",DEGREE_90:"90",DEGREE_180:"180",DEGREE_270:"270"};var T={checkPlatformSupportedThisAPI:function(e){for(var a in n)for(var t in n[a])if(n[a][t]===e)return parseFloat(a)<=s.webOSVersion||parseFloat(a);return!1}},D={checkParametersValidation:function(e,a,t){if("object"!=typeof e||"object"!=typeof a||"string"!=typeof t)return null;for(var n in e)if(a[t]===e[n])return!0;return!1},checkMulltiParametersValidation:function(e,a,t){if("object"!=typeof e||"object"!=typeof a||"string"!=typeof t||"object"!=typeof a[t])return null;a[t].length;for(var n in a[t])for(var i=0;i<e.length;i++)if(a[t][n]!==e[i])return!1;return!0},checkMissingParameters:function(e,a){if("object"!=typeof e||null==e)return!1;for(var t=0;t<a.length;t++)if(!1===e.hasOwnProperty(a[t])||void 0===e[a[t]]||null===e[a[t]])return!1;return!0}},y={callSuccessCallback:function(e,a){"function"==typeof e&&("object"==typeof a?(a.returnValue&&delete a.returnValue,e(a)):e())},callFailureCallback:function(e,a,t,n){"function"==typeof e&&(a.returnValue&&delete a.returnValue,-1===a.errorCode?(-1<a.errorText.indexOf("Unknown method")||-1<a.errorText.indexOf("Service does not exist"))&&(a.errorCode=c.ERROR_CODE.COMMON.UNSUPPORTED_API):(void 0!==a.errorCode&&null!==a.errorCode||(a.errorCode=t),void 0!==a.errorText&&null!==a.errorText||(a.errorText=n)),e(a))}},F={setValue:function(e,a,t,n){o.Request("luna://com.webos.service.commercial.signage.storageservice/settings/",{method:"set",parameters:{category:e,settings:a},onSuccess:function(e){"function"==typeof t&&(delete e.returnValue,t(e))},onFailure:function(e){"function"==typeof n&&(delete e.returnValue,n(e))}})},setValueBySettingsService:function(e,a,t,n){o.Request("palm://com.webos.settingsservice",{method:"setSystemSettings",parameters:{category:e,settings:a},onSuccess:function(e){"function"==typeof t&&(delete e.returnValue,t(e))},onFailure:function(e){"function"==typeof n&&(delete e.returnValue,n(e))}})},getValue:function(e,a,t,n){o.Request("luna://com.webos.service.commercial.signage.storageservice/settings/",{method:"get",parameters:{category:e,keys:a},onSuccess:function(e){"function"==typeof t&&(delete e.returnValue,t(e.settings))},onFailure:function(e){"function"==typeof n&&(delete e.returnValue,n(e))}})},getValueBySettingsService:function(e,a,t,n){o.Request("palm://com.webos.settingsservice",{method:"getSystemSettings",parameters:{category:e,keys:a},onSuccess:function(e){"function"==typeof t&&(delete e.returnValue,t(e.settings))},onFailure:function(e){"function"==typeof n&&(delete e.returnValue,n(e))}})}};function w(a,t,n){var i;i=function(){var e=T.checkPlatformSupportedThisAPI(a);-1!==s.webOSVersion?!1!==e?!0===e||"number"!=typeof e?n(!0):y.callFailureCallback(t,{},c.ERROR_CODE.COMMON.OLD_WEBOS_VERSION,"webOS Signage "+s.webOSVersion.toFixed(1)+" doesn't support "+a+" API. webOS Signage version should be later than "+e.toFixed(1)+"."):y.callFailureCallback(t,{},c.ERROR_CODE.COMMON.BAD_PARAMETERS,"Cannot found called API in CustomJS."):y.callFailureCallback(t,{},c.ERROR_CODE.COMMON.INTERNAL_ERROR,"Unknown webOS Signage version.")},-2===s.webOSVersion?o.Request("luna://com.webos.service.systemservice/osInfo/",{method:"query",parameters:{parameters:["webos_release_codename"]},onSuccess:function(e){delete e.returnValue,-1!==(s=e).webos_release_codename.indexOf("deua")||-1!==s.webos_release_codename.indexOf("denali")||-1!==s.webos_release_codename.indexOf("dreadlocks")?o.Request("luna://com.webos.service.commercial.signage.storageservice",{method:"getOnOffTimeSchedule",parameters:{},onComplete:function(e){e.settings&&e.settings.hasOwnProperty("onOffTimeSchedule")?s.webOSVersion=3.2:s.webOSVersion=3,i()}}):(-1!==s.webos_release_codename.indexOf("libertyspikes")||-1!==s.webos_release_codename.indexOf("lager")?s.webOSVersion=6:-1!==s.webos_release_codename.indexOf("jhericurl")?s.webOSVersion=5:-1!==s.webos_release_codename.indexOf("geumsan")?s.webOSVersion=4.1:-1!==s.webos_release_codename.indexOf("genepi")||-1!==s.webos_release_codename.indexOf("goldilocks")||-1!==s.webos_release_codename.indexOf("galliano")?s.webOSVersion=4:-1!==s.webos_release_codename.indexOf("webos-master")?s.webOSVersion=6:s.webOSVersion=-1,i())},onFailure:function(e){function a(e,a){return-1!==e.indexOf(a)}!0===a(navigator.userAgent,"Web0S")||!0===a(navigator.userAgent,"WebAppManager")?a(navigator.userAgent,"AppleWebKit/537.41")?(s.webOSVersion=1,i()):a(navigator.userAgent,"AppleWebKit/538.2")&&(s.webOSVersion=2,i()):(s.webOSVersion=-1,i())}}):i()}function h(t,n,e){e.videoEl&&"object"==typeof e.videoEl?3<e.videoEl.readyState?e.videoEl.mediaId&&"string"==typeof e.videoEl.mediaId?t(e.videoEl.mediaId):n({errorCode:c.ERROR_CODE.COMMON.INTERNAL_ERROR,errorText:"Cannot found video element."}):n({returnValue:!1,errorCode:c.ERROR_CODE.COMMON.INTERNAL_ERROR,errorText:"Video is not loaded yet. Try again after video is loaded."}):o.Request("luna://com.webos.service.commercial.signage.storageservice/video/",{method:"getMediaID",onSuccess:function(e){e.hasOwnProperty("id")?t(e.id):n({returnValue:!1,errorCode:c.ERROR_CODE.COMMON.INTERNAL_ERROR,errorText:"Failed to check media id value."})},onFailure:function(e){var a=document.getElementsByTagName("video")[0];a&&t(a.mediaId),n(e)}})}c.prototype.Configuration={getCustomJSVersion:function(e,a){w("getCustomJSVersion",a,function(){y.callSuccessCallback(e,{version:"1.4210930"})})},getPortControl:function(a,t,e){w("getPortControl",t,function(){F.getValue(R,[k],function(e){"string"==typeof e.blockedPortList&&(e.blockedPortList=parseInt(e.blockedPortList)),y.callSuccessCallback(a,{blockedPortList:e.blockedPortList})},function(e){y.callFailureCallback(t,e,c.ERROR_CODE.COMMON.INTERNAL_ERROR,"Failed to get AvSync Bypass status.")})})},setPortControl:function(a,t,n){w("setPortControl",t,function(){if(!1!==D.checkMissingParameters(n,["blockedPortList"])){for(var e=0;e<n.blockedPortList.length;e++)n.blockedPortList[e].blockedPort=n.blockedPortList[e].blockedPort.toString();F.setValue(R,n,function(e){y.callSuccessCallback(a)},function(e){y.callFailureCallback(t,e,c.ERROR_CODE.COMMON.INTERNAL_ERROR,"Failed to set white balance settings.")})}else y.callFailureCallback(t,{},c.ERROR_CODE.COMMON.BAD_PARAMETERS,"Missing required parameters.")})},setEnterpriseCode:function(a,t,e){w("setEnterpriseCode",t,function(){!1!==D.checkMissingParameters(e,["enterpriseCode"])?F.setValue(R,e,function(e){y.callSuccessCallback(a)},function(e){y.callFailureCallback(t,e,c.ERROR_CODE.COMMON.INTERNAL_ERROR,"Failed to set white balance settings.")}):y.callFailureCallback(t,{},c.ERROR_CODE.COMMON.BAD_PARAMETERS,"Missing required parameters.")})},clearBrowsingData:function(a,t,e){w("clearBrowsingData",t,function(){!1!==D.checkMissingParameters(e,["types"])?!1!==D.checkMulltiParametersValidation(c.CLEARBROWSINGDATATYPES,e,"types")?o.Request("palm://com.palm.webappmanager/",{method:"clearBrowsingData",parameters:e,onSuccess:function(e){y.callSuccessCallback(a)},onFailure:function(e){y.callFailureCallback(t,e,c.ERROR_CODE.COMMON.INTERNAL_ERROR,"Failed to clear browsing data.")}}):y.callFailureCallback(t,{},c.ERROR_CODE.COMMON.BAD_PARAMETERS,"Invalid parameters."):y.callFailureCallback(t,{},c.ERROR_CODE.COMMON.BAD_PARAMETERS,"Missing required parameters.")})},setWhiteBalanceRGB:function(t,n,i){w("setWhiteBalanceRGB",n,function(){!1!==i.hasOwnProperty("rGain")||!1!==i.hasOwnProperty("gGain")||!1!==i.hasOwnProperty("bGain")?!0===i.hasOwnProperty("rGain")&&"number"!=typeof i.rGain||!0===i.hasOwnProperty("gGain")&&"number"!=typeof i.gGain||!0===i.hasOwnProperty("bGain")&&"number"!=typeof i.bGain?y.callFailureCallback(n,{},c.ERROR_CODE.COMMON.BAD_PARAMETERS,"Invalid parameters. r/g/bGain value type must be number."):s.webOSVersion<=3?F.getValue(C,[v],function(e){var a={};switch(e.pictureMode){case"normal":"number"==typeof i.rGain&&(a.rSubGainMedium=i.rGain),"number"==typeof i.gGain&&(a.gSubGainMedium=i.gGain),"number"==typeof i.bGain&&(a.bSubGainMedium=i.bGain);break;case"vivid":"number"==typeof i.rGain&&(a.rSubGainCool=i.rGain),"number"==typeof i.gGain&&(a.gSubGainCool=i.gGain),"number"==typeof i.bGain&&(a.bSubGainCool=i.bGain);break;case"cinema":"number"==typeof i.rGain&&(a.rSubGainWarm=i.rGain),"number"==typeof i.gGain&&(a.gSubGainWarm=i.gGain),"number"==typeof i.bGain&&(a.bSubGainWarm=i.bGain);break;default:return void y.callFailureCallback(n,{},c.ERROR_CODE.CONFIGURATION.INVALID_CONFIG,"This API supports only if picture mode is Vivid, Standard or Cinema.")}F.setValue(R,a,function(e){y.callSuccessCallback(t)},function(e){y.callFailureCallback(n,e,c.ERROR_CODE.COMMON.INTERNAL_ERROR,"Failed to set white balance settings.")})},function(e){y.callFailureCallback(n,errorObject,c.ERROR_CODE.COMMON.INTERNAL_ERROR,"Failed to set white balance settings.")}):F.getValue(C,[v],function(e){var a={};switch(e.pictureMode){case"normal":case"vivid":case"sports":case"game":case"govCorp":case"eco":"number"==typeof i.rGain&&(a.redOffset=i.rGain),"number"==typeof i.gGain&&(a.greenOffset=i.gGain),"number"==typeof i.bGain&&(a.blueOffset=i.bGain);break;default:return void y.callFailureCallback(n,{},c.ERROR_CODE.CONFIGURATION.INVALID_CONFIG,"This API is not supports when picture mode is Calibration.")}F.setValue(C,a,function(e){y.callSuccessCallback(t)},function(e){y.callFailureCallback(n,e,c.ERROR_CODE.COMMON.INTERNAL_ERROR,"Failed to set white balance settings.")})},function(e){y.callFailureCallback(n,e,c.ERROR_CODE.COMMON.INTERNAL_ERROR,"Failed to set white balance settings.")}):y.callFailureCallback(n,{},c.ERROR_CODE.COMMON.BAD_PARAMETERS,"Missing required parameters. At least one of rGain, gGain or bGain parameter should be used.")})},getWhiteBalanceRGB:function(n,i){w("getWhiteBalanceRGB",i,function(){s.webOSVersion<=3?F.getValue(C,[v],function(t){F.getValue(R,["rSubGainMedium","gSubGainMedium","bSubGainMedium","rSubGainCool","gSubGainCool","bSubGainCool","rSubGainWarm","gSubGainWarm","bSubGainWarm"],function(e){var a={};switch(t.pictureMode){case"normal":a.rGain=e.rSubGainMedium,a.gGain=e.gSubGainMedium,a.bGain=e.bSubGainMedium;break;case"vivid":a.rGain=e.rSubGainCool,a.gGain=e.gSubGainCool,a.bGain=e.bSubGainCool;break;case"cinema":a.rGain=e.rSubGainWarm,a.gGain=e.gSubGainWarm,a.bGain=e.bSubGainWarm;break;default:return void y.callFailureCallback(i,{},c.ERROR_CODE.CONFIGURATION.INVALID_CONFIG,"This API supports only if picture mode is Vivid, Standard or Cinema.")}"string"==typeof a.rGain&&(a.rGain=parseInt(a.rGain)),"string"==typeof a.gGain&&(a.gGain=parseInt(a.gGain)),"string"==typeof a.bGain&&(a.bGain=parseInt(a.bGain)),y.callSuccessCallback(n,a)},function(e){y.callFailureCallback(i,errorObject,c.ERROR_CODE.COMMON.INTERNAL_ERROR,"Failed to get white balance settings.")})}):F.getValue(C,[v,"redOffset","greenOffset","blueOffset"],function(e){var a={};switch(e.pictureMode){case"normal":case"vivid":case"sports":case"game":case"govCorp":case"eco":a.rGain=e.redOffset,a.gGain=e.greenOffset,a.bGain=e.blueOffset;break;default:return void y.callFailureCallback(i,{},c.ERROR_CODE.CONFIGURATION.INVALID_CONFIG,"This API is not supports when picture mode is Calibration.")}"string"==typeof a.rGain&&(a.rGain=parseInt(a.rGain)),"string"==typeof a.gGain&&(a.gGain=parseInt(a.gGain)),"string"==typeof a.bGain&&(a.bGain=parseInt(a.bGain)),y.callSuccessCallback(n,a)},function(e){y.callFailureCallback(i,e,c.ERROR_CODE.COMMON.INTERNAL_ERROR,"Failed to get white balance settings.")})})},setAvSync:function(a,t,e){w("setAvSync",t,function(){!1!==D.checkMissingParameters(e,["avSync"])?!1!==D.checkParametersValidation(c.AVSYNC,e,"avSync")?F.setValue(E,e,function(e){y.callSuccessCallback(a)},function(e){y.callFailureCallback(t,e,c.ERROR_CODE.COMMON.INTERNAL_ERROR,"Failed to set AvSync settings.")}):y.callFailureCallback(t,{},c.ERROR_CODE.COMMON.BAD_PARAMETERS,"Invalid parameters."):y.callFailureCallback(t,{},c.ERROR_CODE.COMMON.BAD_PARAMETERS,"Missing required parameters.")})},getAvSync:function(a,t){w("getAvSync",t,function(){F.getValue(E,[g],function(e){y.callSuccessCallback(a,{avSync:e.avSync})},function(e){y.callFailureCallback(t,e,c.ERROR_CODE.COMMON.INTERNAL_ERROR,"Failed to get AvSync status.")})})},setAvSyncSpeaker:function(a,t,e){w("setAvSyncSpeaker",t,function(){!1!==D.checkMissingParameters(e,["avSyncSpeaker"])?!1!==D.checkParametersValidation(c.AVSYNCSPEAKER,e,"avSyncSpeaker")?F.setValue(E,e,function(e){y.callSuccessCallback(a)},function(e){y.callFailureCallback(t,e,c.ERROR_CODE.COMMON.INTERNAL_ERROR,"Failed to set AvSync Speaker settings.")}):y.callFailureCallback(t,{},c.ERROR_CODE.COMMON.BAD_PARAMETERS,"Invalid parameters."):y.callFailureCallback(t,{},c.ERROR_CODE.COMMON.BAD_PARAMETERS,"Missing required parameters.")})},getAvSyncSpeaker:function(a,t){w("getAvSyncSpeaker",t,function(){F.getValue(E,[m],function(e){"string"==typeof e.avSyncSpeaker&&(e.avSyncSpeaker=parseInt(e.avSyncSpeaker)),y.callSuccessCallback(a,{avSyncSpeaker:e.avSyncSpeaker})},function(e){y.callFailureCallback(t,e,c.ERROR_CODE.COMMON.INTERNAL_ERROR,"Failed to get AvSync Speaker status.")})})},setAvSyncBypass:function(a,t,e){w("setAvSyncBypass",t,function(){!1!==D.checkMissingParameters(e,["avSyncBypassInput"])?!1!==D.checkParametersValidation(c.AVSYNCBYPASS,e,"avSyncBypassInput")?F.setValue(E,e,function(e){y.callSuccessCallback(a)},function(e){y.callFailureCallback(t,e,c.ERROR_CODE.COMMON.INTERNAL_ERROR,"Failed to set AvSync Bypass settings.")}):y.callFailureCallback(t,{},c.ERROR_CODE.COMMON.BAD_PARAMETERS,"Invalid parameters."):y.callFailureCallback(t,{},c.ERROR_CODE.COMMON.BAD_PARAMETERS,"Missing required parameters.")})},getAvSyncBypass:function(a,t){w("getAvSyncBypass",t,function(){F.getValue(E,[_],function(e){y.callSuccessCallback(a,{avSyncBypassInput:e.avSyncBypassInput})},function(e){y.callFailureCallback(t,e,c.ERROR_CODE.COMMON.INTERNAL_ERROR,"Failed to get AvSync Bypass status.")})})},setNoSignalImageStatus:function(a,t,e){w("setNoSignalImageStatus",t,function(){!1!==D.checkMissingParameters(e,["noSignalImage"])?!1!==D.checkParametersValidation(c.NOSIGNALIMAGE,e,"noSignalImage")?F.setValue(R,e,function(e){y.callSuccessCallback(a)},function(e){y.callFailureCallback(t,e,c.ERROR_CODE.COMMON.INTERNAL_ERROR,"Failed to set NoSignalImage status.")}):y.callFailureCallback(t,{},c.ERROR_CODE.COMMON.BAD_PARAMETERS,"Invalid parameters."):y.callFailureCallback(t,{},c.ERROR_CODE.COMMON.BAD_PARAMETERS,"Missing required parameters.")})},getNoSignalImageStatus:function(a,t){w("getNoSignalImageStatus",t,function(){F.getValue(R,[I],function(e){y.callSuccessCallback(a,{noSignalImage:e.noSignalImage})},function(e){y.callFailureCallback(t,e,c.ERROR_CODE.COMMON.INTERNAL_ERROR,"Failed to get NoSignalImage status.")})})},getPowerOnOffHistory:function(n,a){w("getPowerOnOffHistory",a,function(){F.getValue(R,[N],function(e){var a=e.powerOnOffHistory;for("string"==typeof e.powerOnOffHistory&&(a=JSON.parse(e.powerOnOffHistory));;){var t=a.indexOf(" ");if(-1===t)break;a.splice(t,1)}y.callSuccessCallback(n,{powerOnOffHistory:a})},function(e){y.callFailureCallback(a,e,c.ERROR_CODE.COMMON.INTERNAL_ERROR,"Failed to get Power On/Off history.")})})},setPowerOnStatus:function(a,t,e){w("setPowerOnStatus",t,function(){!1!==D.checkMissingParameters(e,["mode"])?!1!==D.checkParametersValidation(c.POWERONSTATUS,e,"mode")?F.setValue(u,{powerOnStatus:e.mode},function(e){y.callSuccessCallback(a)},function(e){y.callFailureCallback(t,e,c.ERROR_CODE.COMMON.INTERNAL_ERROR,"Failed to set Power On status.")}):y.callFailureCallback(t,{},c.ERROR_CODE.COMMON.BAD_PARAMETERS,"Invalid parameters."):y.callFailureCallback(t,{},c.ERROR_CODE.COMMON.BAD_PARAMETERS,"Missing required parameters.")})},getPowerOnStatus:function(a,t){w("getPowerOnStatus",t,function(){F.getValue(u,[M],function(e){y.callSuccessCallback(a,{powerOnStatus:e.powerOnStatus})},function(e){y.callFailureCallback(t,e,c.ERROR_CODE.COMMON.INTERNAL_ERROR,"Failed to get Power On status.")})})},setKAM:function(a,t,n){w("setKAM",t,function(){var e;if(!1!==D.checkMissingParameters(n,["keepAliveMode"])){if(!0===n.keepAliveMode)e="enable";else{if(!1!==n.keepAliveMode)return void y.callFailureCallback(t,{},c.ERROR_CODE.COMMON.BAD_PARAMETERS,"Invalid parameter. parameters.enable should be true or false.");e="disable"}F.setValue(R,{enableKAM:e},function(e){y.callSuccessCallback(a)},function(e){y.callFailureCallback(t,e,c.ERROR_CODE.COMMON.INTERNAL_ERROR,"Failed to set Keep Alive Mode settings.")})}else y.callFailureCallback(t,{},c.ERROR_CODE.COMMON.BAD_PARAMETERS,"Missing required parameters.")})},getKAM:function(a,t){w("getKAM",t,function(){F.getValue(R,[f],function(e){e=e[f];y.callSuccessCallback(a,{keepAliveMode:"enable"===e})},function(e){y.callFailureCallback(t,e,c.ERROR_CODE.COMMON.INTERNAL_ERROR,"Failed to get Keep Alive Mode settings.")})})},changePassword:function(l,r,o){w("changePassword",r,function(){var a,t,e,n=4;!1!==D.checkMissingParameters(o,["currentPassword","newPassword"])?(a=o.currentPassword,t=o.newPassword,"string"==typeof a&&"string"==typeof t||y.callFailureCallback(r,{},c.ERROR_CODE.COMMON.BAD_PARAMETERS,"Invalid parameter type."),4<=s.webOSVersion&&(n=6),e=function(){var e="";for(i=0;i<n;i++)e+="9";return parseInt(e)}(),a.length===n&&t.length===n?parseInt(t)<0||parseInt(t)>e?y.callFailureCallback(r,{},c.ERROR_CODE.COMMON.BAD_PARAMETERS,"Invalid password format. Valid password value range is from "+function(){var e="";for(i=0;i<n;i++)e+="0";return e}()+" to "+e+"."):a!==t?3.2<=s.webOSVersion?F.getValueBySettingsService(p,[P],function(e){e[P]!==a?y.callFailureCallback(r,{},c.ERROR_CODE.COMMON.INTERNAL_ERROR,"Incorrect password. Access denied."):F.setValueBySettingsService(p,{systemPin:t},function(){y.callSuccessCallback(l)},function(e){"function"==typeof r&&y.callFailureCallback(r,errorObject,c.ERROR_CODE.COMMON.INTERNAL_ERROR,"Failed to set new password.")})},function(e){y.callFailureCallback(r,e,c.ERROR_CODE.COMMON.INTERNAL_ERROR,"Failed to get current password from platform.")}):F.getValue(u,[d],function(e){e[d]!==a?y.callFailureCallback(r,{},c.ERROR_CODE.COMMON.INTERNAL_ERROR,"Incorrect password. Access denied."):F.setValue(u,{password:t},function(){var e,a;3.2<=s.webOSVersion?y.callSuccessCallback(l):(a="",a="0000"===t?"8080":(e=parseInt(t),("0000"+parseInt((e/10).toString())+((e+1)%10).toString()).substr(-4)),y.callSuccessCallback(l,{serverUIPassword:a}))},function(e){"function"==typeof r&&y.callFailureCallback(r,errorObject,c.ERROR_CODE.COMMON.INTERNAL_ERROR,"Failed to set new password.")})},function(e){y.callFailureCallback(r,e,c.ERROR_CODE.COMMON.INTERNAL_ERROR,"Failed to get current password from platform.")}):y.callFailureCallback(r,{},c.ERROR_CODE.COMMON.BAD_PARAMETERS,"Current and new password are same."):y.callFailureCallback(r,{},c.ERROR_CODE.COMMON.BAD_PARAMETERS,"Invalid password format. Password length should be "+n)):y.callFailureCallback(r,{},c.ERROR_CODE.COMMON.BAD_PARAMETERS,"Missing required parameters.")})},getNativePortraitMode:function(a,t){w("getNativePortraitMode",t,function(){3===s.webOSVersion?F.getValue(R,[b],function(e){y.callSuccessCallback(a,{nativePortrait:e[b]})},function(e){y.callFailureCallback(t,e,c.ERROR_CODE.COMMON.INTERNAL_ERROR,"Failed to get Native Portrait Mode settings.")}):3.2<=s.webOSVersion?F.getValue(O,[A],function(e){y.callSuccessCallback(a,{nativePortrait:e[A]})},function(e){y.callFailureCallback(t,e,c.ERROR_CODE.COMMON.INTERNAL_ERROR,"Failed to get Native Portrait Mode settings.")}):y.callFailureCallback(t,{},c.ERROR_CODE.COMMON.INTERNAL_ERROR,"Cannot get platform information yet. Try again later.")})},setNativePortraitMode:function(a,t,e){w("setNativePortraitMode",t,function(){!1!==D.checkMissingParameters(e,["nativePortrait"])?!1!==D.checkParametersValidation(c.NATIVEPORTRAIT,e,"nativePortrait")?3===s.webOSVersion?F.setValue(R,{siAppOrientation:e.nativePortrait},function(e){y.callSuccessCallback(a)},function(e){y.callFailureCallback(t,e,c.ERROR_CODE.COMMON.INTERNAL_ERROR,"Failed to set Native Portrait Mode settings.")}):3.2<=s.webOSVersion?F.setValue(O,{screenRotation:e.nativePortrait},function(e){y.callSuccessCallback(a)},function(e){y.callFailureCallback(t,e,c.ERROR_CODE.COMMON.INTERNAL_ERROR,"Failed to set Native Portrait Mode settings.")}):y.callFailureCallback(t,{},c.ERROR_CODE.COMMON.INTERNAL_ERROR,"Cannot get platform information yet. Try again later."):y.callFailureCallback(t,{},c.ERROR_CODE.COMMON.BAD_PARAMETERS,"Invalid parameters."):y.callFailureCallback(t,{},c.ERROR_CODE.COMMON.BAD_PARAMETERS,"Missing required parameters.")})},getWoWLAN:function(a,t){w("getWoWLAN",t,function(){F.getValue(r,[S],function(e){e="true"===e[S];y.callSuccessCallback(a,{enableWoWLAN:e})},function(e){y.callFailureCallback(t,e,c.ERROR_CODE.COMMON.INTERNAL_ERROR,"Failed to get WoWLAN settings.")})})},setWoWLAN:function(e,a,t){w("setWoWLAN",a,function(){!1!==D.checkMissingParameters(t,["enableWoWLAN"])?"boolean"==typeof t.enableWoWLAN?F.setValue(r,{wolwowlOnOff:t.enableWoWLAN.toString()},function(){y.callSuccessCallback(e)},function(e){y.callFailureCallback(a,e,c.ERROR_CODE.COMMON.INTERNAL_ERROR,"Failed to set WoWLAN settings.")}):y.callFailureCallback(a,{},c.ERROR_CODE.COMMON.BAD_PARAMETERS,"enableWoWLAN property value must be true or false boolean value."):y.callFailureCallback(a,{},c.ERROR_CODE.COMMON.BAD_PARAMETERS,"Missing required parameters.")})}},c.prototype.Signage={enableScreenShareApp:function(a,t,n){w("enableScreenShareApp",t,function(){var e;!1!==D.checkMissingParameters(n,["enable"])?("boolean"!=typeof n.enable&&y.callFailureCallback(t,{},c.ERROR_CODE.COMMON.BAD_PARAMETERS,"Invalid parameters."),e={},!0===n.enable?e.enableScreenShare="on":e.enableScreenShare="off",F.setValue(R,e,function(){y.callSuccessCallback(a)},function(e){y.callFailureCallback(t,e,c.ERROR_CODE.COMMON.INTERNAL_ERROR,"Failed to set enable of Screen Share application.")})):y.callFailureCallback(t,{},c.ERROR_CODE.COMMON.BAD_PARAMETERS,"Missing required parameters.")})},addUSBAttachEventListener:function(i,e){w("addUSBAttachEventListener",e,function(){l.USBAttachEventListener=o.Request("luna://com.webos.service.attachedstoragemanager",{method:"listDevices",parameters:{subscribe:!0},onSuccess:function(e){var a=[];if(e.devices)for(var t=0;t<e.devices.length;t++){var n=e.devices[t];"usb"!==n.deviceType&&"sdcard"!==n.deviceType||a.push({type:n.deviceType,vendor:n.vendorName,device:n.deviceName})}y.callSuccessCallback(i,{deviceList:a})},onFailure:function(){y.callFailureCallback(e,{},c.ERROR_CODE.COMMON.INTERNAL_ERROR,"Cannot get USB device information.")}})})},removeUSBAttachEventListener:function(e,a){w("removeUSBAttachEventListener",a,function(){null===l.USBAttachEventListener?y.callFailureCallback(a,{},c.ERROR_CODE.COMMON.INTERNAL_ERROR,"Event listener is not set. Use addUSBAttachEventListener() first."):(l.USBAttachEventListener.cancel(),y.callSuccessCallback(e))})},getwebOSVersion:function(e,a){w("getwebOSVersion",a,function(){-2===s.webOSVersion?y.callFailureCallback(a,{},c.ERROR_CODE.COMMON.INTERNAL_ERROR,"Cannot get platform information yet. Please try later."):-1!==s.webOSVersion&&"number"==typeof s.webOSVersion?y.callSuccessCallback(e,{webOSVersion:s.webOSVersion.toFixed(1)}):y.callFailureCallback(a,{},c.ERROR_CODE.COMMON.INTERNAL_ERROR,"Cannot get platform information.")})},getApplicationInfo:function(a,t){w("getApplicationInfo",t,function(){var e;(function(){if(window.PalmSystem)return PalmSystem.identifier.split(" ")[0];var e=location.href;return-1!==e.indexOf(c.APPLICATION.IPK_TYPE)?c.APPLICATION.IPK_TYPE:-1!==e.indexOf(c.APPLICATION.ZIP_TYPE+".debug")?c.APPLICATION.ZIP_TYPE+".debug":-1!==e.indexOf(c.APPLICATION.ZIP_TYPE)?c.APPLICATION.ZIP_TYPE:"__UNKNOWN__"})()===c.APPLICATION.IPK_TYPE?((e=new XMLHttpRequest).onreadystatechange=function(){if(4==this.readyState)try{var e=JSON.parse(this.responseText);y.callSuccessCallback(a,e)}catch(e){y.callFailureCallback(t,{},c.ERROR_CODE.COMMON.INTERNAL_ERROR,"Failed to get application information.")}},e.onerror=function(e){y.callFailureCallback(t,{},c.ERROR_CODE.COMMON.INTERNAL_ERROR,"Failed to get application information.")},e.open("GET","appinfo.json",!0),e.send()):y.callFailureCallback(t,{},c.ERROR_CODE.COMMON.INTERNAL_ERROR,"This application is not IPK type.")})},switchApplication:function(i,l,r){w("switchApplication",l,function(){var t,n;!1!==D.checkMissingParameters(r,["application"])?"string"==typeof r.application&&!1!==D.checkParametersValidation(c.APPLICATION,r,"application")?(t=function(a){var t,n;t=function(e){!0===e&&(c.APPLICATION.ZIP_TYPE+=".debug"),o.Request("luna://com.webos.applicationManager",{method:"launch",parameters:{id:r.application,params:{path:a}},onSuccess:function(){y.callSuccessCallback(i)},onFailure:function(e){-101===e.errorCode?y.callFailureCallback(l,{},c.ERROR_CODE.APPLICATION.NOT_INSTALLED,"Application is not installed."):y.callFailureCallback(l,e,c.ERROR_CODE.COMMON.INTERNAL_ERROR,"Failed to launch target application.")}})},n=function(e){y.callFailureCallback(l,e,c.ERROR_CODE.COMMON.INTERNAL_ERROR,"Failed to get application information.")},o.Request("palm://com.palm.service.devmode",{method:"getDevMode",parameters:{},onSuccess:function(e){t(e.enabled)},onFailure:function(e){n(e)}})},n=function(e){y.callFailureCallback(l,e,c.ERROR_CODE.COMMON.INTERNAL_ERROR,"Failed to get application launch settings.")},F.getValue(R,["serverIpPort","siServerIp","secureConnection","appLaunchMode","fqdnAddr","fqdnMode"],function(e){var a="";"none"===e.appLaunchMode?n({errorCode:c.ERROR_CODE.APPLICATION.SETTINGS_ERROR,errorText:"Application launch mode is NONE. Set SI Server settings first."}):"local"===e.appLaunchMode?a="file:////mnt/lg/appstore/scap/procentric/scap/application/app/index.html":"usb"===e.appLaunchMode?a="file:////tmp/usb/sda/sda/index.html":"remote"===e.appLaunchMode?"on"===e.fqdnMode?a=e.fqdnAddr:"off"===e.fqdnMode?"on"===e.secureConnection?a+="http://"+e.siServerIp+":"+e.serverIpPort+"/procentric/scap/application/index.html":"on"===e.secureConnection?a+="https://"+e.siServerIp+":"+e.serverIpPort+"/procentric/scap/application/index.html":n({errorCode:c.ERROR_CODE.COMMON.INTERNAL_ERROR,errorText:"Failed to get application installation settings."}):n({errorCode:c.ERROR_CODE.COMMON.INTERNAL_ERROR,errorText:"Failed to get application installation settings."}):n({errorCode:c.ERROR_CODE.COMMON.INTERNAL_ERROR,errorText:"Failed to get application installation settings."}),t(a)},function(e){n(e)})):y.callFailureCallback(l,{},c.ERROR_CODE.COMMON.BAD_PARAMETERS,"Invalid application."):y.callFailureCallback(l,{},c.ERROR_CODE.COMMON.BAD_PARAMETERS,"Missing required parameters.")})},disableApplication:function(a,t,n){w("disableApplication",t,function(){var e={appLaunchMode:"none"};if(!0===D.checkMissingParameters(n,["reset"])){if("boolean"!=typeof n.reset)return void y.callFailureCallback(t,{},c.ERROR_CODE.COMMON.BAD_PARAMETERS,"reset property value must be true or false boolean value, if use this property.");!0===n.reset&&(e.siServerIp="0.0.0.0",e.serverIpPort="0",e.secureConnection="off",e.appType="zip",e.fqdnMode="off",e.fqdnAddr="http://")}else y.callFailureCallback(t,{},c.ERROR_CODE.COMMON.BAD_PARAMETERS,"Application will be disabled after reboot only if reset property is true.");F.setValue(R,e,function(){y.callSuccessCallback(a)},function(e){y.callFailureCallback(t,e,c.ERROR_CODE.COMMON.INTERNAL_ERROR,"Failed to disable application.")})})}},c.prototype.VideoSync={setMaster:function(n,i,l){w("setMaster",i,function(){if(!1!==D.checkMissingParameters(l,["ip","port"]))if("object"!=typeof l||"string"!=typeof l.ip||"number"!=typeof l.port||isNaN(l.port))y.callFailureCallback(i,{},c.ERROR_CODE.COMMON.BAD_PARAMETERS,"Invalid parameters.");else{var e=l.ip.split(".");if(4===e.length){for(var a=0;a<4;a++){var t=parseInt(e[a]);if(t<0||255<t)return void y.callFailureCallback(i,{},c.ERROR_CODE.COMMON.BAD_PARAMETERS,"Invalid IP format.")}l.port<0||65535<l.port?y.callFailureCallback(i,{},c.ERROR_CODE.COMMON.BAD_PARAMETERS,"Invalid port value."):h(function(e){o.Request("luna://com.webos.media",{method:"setMaster",parameters:{mediaId:e,ip:l.ip,port:l.port},onSuccess:function(e){y.callSuccessCallback(n,{basetime:e.basetime})},onFailure:function(e){y.callFailureCallback(i,e,c.ERROR_CODE.COMMON.INTERNAL_ERROR,"Failed to set master.")}})},function(e){y.callFailureCallback(i,e,c.ERROR_CODE.COMMON.MEDIA_ERROR,"Failed to get loaded media information.")},{videoEl:l.videoElement})}else y.callFailureCallback(i,{},c.ERROR_CODE.COMMON.BAD_PARAMETERS,"Invalid IP format.")}else y.callFailureCallback(i,{},c.ERROR_CODE.COMMON.BAD_PARAMETERS,"Missing required parameters.")})},setSlave:function(n,i,l){w("setSlave",i,function(){if(!1!==D.checkMissingParameters(l,["ip","port","basetime"]))if("object"!=typeof l||"string"!=typeof l.ip||"number"!=typeof l.port||isNaN(l.port))y.callFailureCallback(i,{},c.ERROR_CODE.COMMON.BAD_PARAMETERS,"Invalid parameters.");else{var e=l.ip.split(".");if(4===e.length){for(var a=0;a<4;a++){var t=parseInt(e[a]);if(t<0||255<t)return void y.callFailureCallback(i,{},c.ERROR_CODE.COMMON.BAD_PARAMETERS,"Invalid IP format.")}l.port<0||65535<l.port?y.callFailureCallback(i,{},c.ERROR_CODE.COMMON.BAD_PARAMETERS,"Invalid port value."):parseInt(l.basetime<0)?y.callFailureCallback(i,{},c.ERROR_CODE.COMMON.BAD_PARAMETERS,"Invalid basetime value."):h(function(e){o.Request("luna://com.webos.media",{method:"setSlave",parameters:{mediaId:e,ip:l.ip,port:l.port,basetime:l.basetime},onSuccess:function(){y.callSuccessCallback(n)},onFailure:function(e){y.callFailureCallback(i,e,c.ERROR_CODE.COMMON.INTERNAL_ERROR,"Failed to set slave.")}})},function(e){y.callFailureCallback(i,e,c.ERROR_CODE.COMMON.MEDIA_ERROR,"Failed to get loaded media information.")},{videoEl:l.videoElement})}else y.callFailureCallback(i,{},c.ERROR_CODE.COMMON.BAD_PARAMETERS,"Invalid IP format.")}else y.callFailureCallback(i,{},c.ERROR_CODE.COMMON.BAD_PARAMETERS,"Missing required parameters.")})}},t.exports=c}),Custom=cordova.require("cordova/plugin/custom");
@@ -0,0 +1,40 @@
1
+ ============================================================================
2
+
3
+ ID ENGINEERING R&D TEAM, LG ELECTRONICS INC., PYEONGTAEK, KOREA
4
+ Copyright(c) 2018 by LG Electronics Inc.. All rights reserved.
5
+
6
+ Harmony API, for handling external device on webOS Signage platform
7
+
8
+ Author : signagesupport@lge.com
9
+ Homepage : http://webossignage.developer.lge.com
10
+ Modified Date : 2018-11-29
11
+ Release Version : 1.30.2018-11-29
12
+
13
+ ============================================================================
14
+
15
+
16
+ Release Note:
17
+
18
+
19
+ Harmony 1.3
20
+ - Support specific thermal printer model, from webOS Signage 4.0.
21
+ - NP-3511
22
+ - NP-3611
23
+
24
+ Harmony 1.2
25
+ - All APIs are singleton.
26
+ - Support GPS device, from webOS Signage 3.2.
27
+ - Yocto-GPS (for GPS)
28
+
29
+ Harmony 1.1
30
+ - Support Humidity, Light and Temperature device, from webOS Signage 3.0.
31
+ - Yocto-Humidity (for Humidity)
32
+ - Yocto-Temperature (for Temperature)
33
+ - Yocto-Meteo (for Humidity and Temperature)
34
+ - Yocto-Light-V3 (for Light)
35
+
36
+ Harmony 1.0
37
+ - Support GPIO, NFC and RFID device, from webOS Signage 2.0.
38
+ - Numato 8 Channel USB GPIO Module With Analog Inputs (for GPIO)
39
+ - ACR122U NFC Reader (for RFID)
40
+ - DTAG100-PRO (for NFC)
@@ -0,0 +1,16 @@
1
+ /*
2
+ * ============================================================================
3
+ *
4
+ * ID ENGINEERING R&D TEAM, LG ELECTRONICS INC., PYEONGTAEK, KOREA
5
+ * Copyright(c) 2018 by LG Electronics Inc.. All rights reserved.
6
+ *
7
+ * Harmony API, for handling external device on webOS Signage platform
8
+ *
9
+ * Author : signagesupport@lge.com
10
+ * Homepage : http://webossignage.developer.lge.com
11
+ * Modified Date : 2018-11-29
12
+ * Release Version : 1.30.2018-11-29
13
+ *
14
+ * ============================================================================
15
+ */
16
+ "use strict";var GPIO=function(){function e(){if(!window.PalmServiceBridge)throw": This platform is not webOS Signage."}var a,l,u,i={HARMONY_0000:"This external device is not supported on current platform (or firmware).",GPIO_0000:"Unknown event.",GPIO_0001:"Unable to get status.",GPIO_0100:"Unknown event.",GPIO_0101:"Unable to get value.",GPIO_0102:"Parameter is required.",GPIO_0103:"'samplingRate' must be number, and unit is millisecond.",GPIO_0104:"'type' must be 'analog' or 'digital'.",GPIO_0105:"This function does not working in this firmware, please check the guide.",GPIO_0106:"'pin' must be number, and pin >= 0",GPIO_0107:"Pin 4 and 5 does not support analog value.",GPIO_0108:"Event handler is already set. Before set event handler, please remove current event handler.",GPIO_0109:"Callback as used for parameter is not a function.",GPIO_0200:"GPIO event handler is not registered yet."};function o(e,r){e&&"function"==typeof e&&(r.returnValue&&delete r.returnValue,r.subscribed&&delete r.subscribed,e(r))}function s(e,r,n){e&&"function"==typeof e&&(void 0===i[r]?e({errorCode:"UNKNOWN_ERROR",errorText:"Unknown error."}):"string"==typeof errorText?e({errorCode:r,errorText:i[r]+": "+n}):e({errorCode:r,errorText:i[r]}))}function f(e){return!(-1===e.errorCode&&-1<e.errorText.indexOf("Unknown method")&&-1<e.errorText.indexOf("for category"))}var c,d={},p={},v={};function O(e){if("string"!=typeof e&&u&&"function"==typeof u)s(u,"GPIO_0100");else{var r=JSON.parse(e);if(!1!==f(r)){if(!0===r.returnValue){if(void 0===r.pinValues)return void s(u,"GPIO_0101");var n={},i=r.pinValues,t=[1&i?0:1,i>>1&1?0:1,i>>2&1?0:1,i>>3&1?0:1,i>>4&1?0:1,i>>5&1?0:1,i>>6&1?0:1,i>>7&1?0:1];return n.value=t,void o(l,n)}s(u,"GPIO_0101")}else s(u,"HARMONY_0000")}}function P(e){if("string"==typeof e){var r=JSON.parse(e);if(!1!==f(r))if(!0===r.returnValue){var n={};n.value=r.value,3<r.pin?n.pin=r.pin+2:n.pin=r.pin,o(p[r.pin],n)}else s(v[c],"GPIO_0101");else s(v,"HARMONY_0000")}else s(v,"GPIO_0100")}return e.prototype.setEventHandler=function(e,r,n){if(n&&void 0!==n){if("digital"===n.type){if(a&&"undefined"!==a)return void s(r,"GPIO_0108");if("function"!=typeof e||"function"!=typeof r)return void s(r,"GPIO_0109");l=e,u=r;var i="luna://com.webos.service.externaldevice/gpio/readAll",t='{"subscribe":true}';return(a=new PalmServiceBridge).url=i,a.onservicecallback=O,a.call(i,t)}if("analog"===n.type){if("number"!=typeof n.pin)return void(r&&"function"==typeof r&&s(r,"GPIO_0106"));if("number"!=typeof n.samplingRate)return void s(r,"GPIO_0103");if(4===n.pin||5===n.pin)return void s(r,"GPIO_0107");var o=n.pin;if(5<o&&(o-=2),d[o]&&"undefined"!==d[o])return void s(r,"GPIO_0108");if("function"!=typeof e||"function"!=typeof r)return void s(r,"GPIO_0109");p[o]=e,v[o]=r;i="luna://com.webos.service.externaldevice/gpio/readADC",t='{"subscribe":true, "pin": '+(c=o)+', "samplingRate": '+n.samplingRate+"}";return d[o]=new PalmServiceBridge,d[o].url=i,d[o].onservicecallback=P,d[o].call(i,t)}s(r,"GPIO_0104")}else s(r,"GPIO_0100")},e.prototype.removeEventHandler=function(e,r,n){if(e&&"object"==typeof e)if("digital"===e.type)a&&void 0!==a&&(a.cancel(),a=null);else{if("analog"!==e.type)return void s(n,"GPIO_0104");if("number"!=typeof e.pin)return void s(n,"GPIO_0106");if(!(0<=e.pin))return void s(n,"GPIO_0106");if(4===e.pin||5===e.pin)return void s(n,"GPIO_0107");var i=e.pin;if(5<i&&(i-=2),d[i]&&void 0!==d[i]){d[i].cancel(),d[i]=null,url="luna://com.webos.service.externaldevice/gpio/readADC",params='{"subscribe":false, "pin":'+i+"}";var t=new PalmServiceBridge;t.url=url,t.onservicecallback=null,t.call(url,params)}}else s(n,"GPIO_0102")},e.prototype.getStatus=function(n,i){var e=new PalmServiceBridge,r="luna://com.webos.service.externaldevice/gpio/getState";return e.url=r,e.onservicecallback=function(e){if("string"==typeof e){var r=JSON.parse(e);if(!1!==f(r))return!0===r.returnValue?void o(n,{attached:r.attached}):void s(i,"GPIO_0001");s(i,"HARMONY_0000")}else s(i,"GPIO_0000")},e.call(r,"{}")},e}();
@@ -0,0 +1,16 @@
1
+ /*
2
+ * ============================================================================
3
+ *
4
+ * ID ENGINEERING R&D TEAM, LG ELECTRONICS INC., PYEONGTAEK, KOREA
5
+ * Copyright(c) 2018 by LG Electronics Inc.. All rights reserved.
6
+ *
7
+ * Harmony API, for handling external device on webOS Signage platform
8
+ *
9
+ * Author : signagesupport@lge.com
10
+ * Homepage : http://webossignage.developer.lge.com
11
+ * Modified Date : 2018-11-29
12
+ * Release Version : 1.30.2018-11-29
13
+ *
14
+ * ============================================================================
15
+ */
16
+ "use strict";var GPS=function(){function e(){if(!window.PalmServiceBridge)throw": This platform is not webOS Signage."}var n={HARMONY_0000:"This external device is not supported on current platform (or firmware).",GPS_0000:"Unknown event.",GPS_0001:"Unable to get status.",GPS_0100:"Unknown event.",GPS_0101:"Unable to get value.",GPS_0102:"Event handler is already set. Before set event handler, please remove current event handler.",GPS_0103:"Callback as used for parameter is not a function.",GPS_0200:"GPS event handler is not registered yet."};function o(e,r){e&&"function"==typeof e&&(r.returnValue&&delete r.returnValue,r.subscribed&&delete r.subscribed,e(r))}function i(e,r,t){e&&"function"==typeof e&&(void 0===n[r]?e({errorCode:"UNKNOWN_ERROR",errorText:"Unknown error."}):"string"==typeof errorText?e({errorCode:r,errorText:n[r]+": "+t}):e({errorCode:r,errorText:n[r]}))}function a(e){return!(-1===e.errorCode&&-1<e.errorText.indexOf("Unknown method")&&-1<e.errorText.indexOf("for category"))}var l,u,c=null;return e.prototype.setEventHandler=function(e,r){if(c&&null!==c)i(u,"GPS_0102");else{if("function"==typeof e&&"function"==typeof r){l=e,u=r;var t="luna://com.webos.service.externaldevice/gps/getData";return(c=new PalmServiceBridge).url=t,c.onservicecallback=function(e){if("string"==typeof e){var r=JSON.parse(e);if(!1!==a(r))return!0===r.returnValue?void o(l,r):void i(u,"GPS_0101");i(u,"HARMONY_0000")}else i(u,"GPS_0100")},c.call(t,'{"subscribe":true}')}i(r,"GPS_0103")}},e.prototype.removeEventHandler=function(e,r){return c&&"undefined"!==c?(c.cancel(),c=null,void o(e)):void i(r,"GPS_0200")},e.prototype.getValue=function(t,n){var e=new PalmServiceBridge,r="luna://com.webos.service.externaldevice/gps/getData";return e.url=r,e.onservicecallback=function(e){if("string"==typeof e){var r=JSON.parse(e);if(!1!==a(r))return!0===r.returnValue?void o(t,r):void i(n,"GPS_0101");i(n,"HARMONY_0000")}else i(n,"GPS_0100")},e.call(r,"{}")},e.prototype.getStatus=function(t,n){var e=new PalmServiceBridge,r="luna://com.webos.service.externaldevice/gps/getStatus";return e.url=r,e.onservicecallback=function(e){if("string"==typeof e){var r=JSON.parse(e);if(!1!==a(r))return!0===r.returnValue?void o(t,{attached:r.attached}):void i(n,"GPS_0001");i(n,"HARMONY_0000")}else i(n,"GPS_0000")},e.call(r,"{}")},e}();
@@ -0,0 +1,16 @@
1
+ /*
2
+ * ============================================================================
3
+ *
4
+ * ID ENGINEERING R&D TEAM, LG ELECTRONICS INC., PYEONGTAEK, KOREA
5
+ * Copyright(c) 2018 by LG Electronics Inc.. All rights reserved.
6
+ *
7
+ * Harmony API, for handling external device on webOS Signage platform
8
+ *
9
+ * Author : signagesupport@lge.com
10
+ * Homepage : http://webossignage.developer.lge.com
11
+ * Modified Date : 2018-11-29
12
+ * Release Version : 1.30.2018-11-29
13
+ *
14
+ * ============================================================================
15
+ */
16
+ "use strict";var Humidity=function(){function e(){if(!window.PalmServiceBridge)throw": This platform is not webOS Signage."}var n={HARMONY_0000:"This external device is not supported on current platform (or firmware).",HUMIDITY_0000:"Unknown event.",HUMIDITY_0001:"Unable to get status.",HUMIDITY_0100:"Unknown event.",HUMIDITY_0101:"Unable to get value.",HUMIDITY_0102:"Event handler is already set. Before set event handler, please remove current event handler.",HUMIDITY_0103:"Callback as used for parameter is not a function.",HUMIDITY_0200:"Humidity event handler is not registered yet."};function o(e,r){e&&"function"==typeof e&&(r.returnValue&&delete r.returnValue,r.subscribed&&delete r.subscribed,e(r))}function i(e,r,t){e&&"function"==typeof e&&(void 0===n[r]?e({errorCode:"UNKNOWN_ERROR",errorText:"Unknown error."}):"string"==typeof errorText?e({errorCode:r,errorText:n[r]+": "+t}):e({errorCode:r,errorText:n[r]}))}function a(e){return!(-1===e.errorCode&&-1<e.errorText.indexOf("Unknown method")&&-1<e.errorText.indexOf("for category"))}var u,l,c=null;return e.prototype.setEventHandler=function(e,r){if(c&&null!==c)i(l,"HUMIDITY_0102");else{if("function"==typeof e&&"function"==typeof r){u=e,l=r;var t="luna://com.webos.service.externaldevice/humidity/read";return(c=new PalmServiceBridge).url=t,c.onservicecallback=function(e){if("string"==typeof e){var r=JSON.parse(e);if(!1!==a(r))return!0===r.returnValue?void o(u,{value:r.value}):void i(l,"HUMIDITY_0101");i(l,"HARMONY_0000")}else i(l,"HUMIDITY_0100")},c.call(t,'{"subscribe":true}')}i(r,"HUMIDITY_0103")}},e.prototype.removeEventHandler=function(e,r){return c&&"undefined"!=c?(c.cancel(),c=null,void o(e)):void i(r,"HUMIDITY_0200")},e.prototype.getValue=function(t,n){var e=new PalmServiceBridge,r="luna://com.webos.service.externaldevice/humidity/read";return e.url=r,e.onservicecallback=function(e){if("string"==typeof e){var r=JSON.parse(e);if(!1!==a(r))return!0===r.returnValue?void o(t,{value:r.value}):void i(n,"HUMIDITY_0101");i(n,"HARMONY_0000")}else i(n,"HUMIDITY_0100")},e.call(r,"{}")},e.prototype.getStatus=function(t,n){var e=new PalmServiceBridge,r="luna://com.webos.service.externaldevice/humidity/getStatus";return e.url=r,e.onservicecallback=function(e){if("string"==typeof e){var r=JSON.parse(e);if(!1!==a(r))return!0===r.returnValue?void o(t,{attached:r.attached}):void i(n,"HUMIDITY_0001");i(n,"HARMONY_0000")}else i(n,"HUMIDITY_0000")},e.call(r,"{}")},e}();
@@ -0,0 +1,16 @@
1
+ /*
2
+ * ============================================================================
3
+ *
4
+ * ID ENGINEERING R&D TEAM, LG ELECTRONICS INC., PYEONGTAEK, KOREA
5
+ * Copyright(c) 2018 by LG Electronics Inc.. All rights reserved.
6
+ *
7
+ * Harmony API, for handling external device on webOS Signage platform
8
+ *
9
+ * Author : signagesupport@lge.com
10
+ * Homepage : http://webossignage.developer.lge.com
11
+ * Modified Date : 2018-11-29
12
+ * Release Version : 1.30.2018-11-29
13
+ *
14
+ * ============================================================================
15
+ */
16
+ "use strict";var Light=function(){function e(){if(!window.PalmServiceBridge)throw": This platform is not webOS Signage."}var n,o,i,a={HARMONY_0000:"This external device is not supported on current platform (or firmware).",LIGHT_0000:"Unknown event.",LIGHT_0001:"Unable to get status.",LIGHT_0100:"Unknown event.",LIGHT_0101:"Unable to get value.",LIGHT_0102:"Event handler is already set. Before set event handler, please remove current event handler.",LIGHT_0103:"Callback as used for parameter is not a function.",LIGHT_0200:"Light event handler is not registered yet."};function l(e,r){e&&"function"==typeof e&&(r.returnValue&&delete r.returnValue,r.subscribed&&delete r.subscribed,e(r))}function u(e,r,t){e&&"function"==typeof e&&(void 0===a[r]?e({errorCode:"UNKNOWN_ERROR",errorText:"Unknown error."}):"string"==typeof errorText?e({errorCode:r,errorText:a[r]+": "+t}):e({errorCode:r,errorText:a[r]}))}function c(e){return!(-1===e.errorCode&&-1<e.errorText.indexOf("Unknown method")&&-1<e.errorText.indexOf("for category"))}return e.prototype.setEventHandler=function(e,r){if(n&&"undefined"!=n)u(i,"LIGHT_0102");else{if("function"==typeof e&&"function"==typeof r){o=e,i=r;var t="luna://com.webos.service.externaldevice/light/read";return(n=new PalmServiceBridge).url=t,n.onservicecallback=function(e){if("string"==typeof e){var r=JSON.parse(e);if(!1!==c(r))return!0===r.returnValue?void l(o,{value:r.value}):void u(i,"LIGHT_0101");u(i,"HARMONY_0000")}else u(i,"LIGHT_0100")},n.call(t,'{"subscribe":true}')}u(r,"LIGHT_0103")}},e.prototype.removeEventHandler=function(e,r){return n&&"undefined"!=n?(n.cancel(),n=null,void l(e)):void u(r,"LIGHT_0200")},e.prototype.getValue=function(t,n){var e=new PalmServiceBridge,r="luna://com.webos.service.externaldevice/light/read";return e.url=r,e.onservicecallback=function(e){if("string"==typeof e){var r=JSON.parse(e);if(!1!==c(r))return!0===r.returnValue?void t({value:r.value}):void u(n,"LIGHT_0101");u(n,"HARMONY_0000")}else u(n,"LIGHT_0100")},e.call(r,"{}")},e.prototype.getStatus=function(t,n){var e=new PalmServiceBridge,r="luna://com.webos.service.externaldevice/light/getStatus";return e.url=r,e.onservicecallback=function(e){if("string"==typeof e){var r=JSON.parse(e);if(!1!==c(r))return!0===r.returnValue?void l(t,{attached:r.attached}):void u(n,"LIGHT_0001");u(n,"HARMONY_0000")}else u(n,"LIGHT_0000")},e.call(r,"{}")},e}();
@@ -0,0 +1,16 @@
1
+ /*
2
+ * ============================================================================
3
+ *
4
+ * ID ENGINEERING R&D TEAM, LG ELECTRONICS INC., PYEONGTAEK, KOREA
5
+ * Copyright(c) 2018 by LG Electronics Inc.. All rights reserved.
6
+ *
7
+ * Harmony API, for handling external device on webOS Signage platform
8
+ *
9
+ * Author : signagesupport@lge.com
10
+ * Homepage : http://webossignage.developer.lge.com
11
+ * Modified Date : 2018-11-29
12
+ * Release Version : 1.30.2018-11-29
13
+ *
14
+ * ============================================================================
15
+ */
16
+ "use strict";var NFC=function(){function e(){if(!window.PalmServiceBridge)throw": This platform is not webOS Signage."}var a,i={HARMONY_0000:"This external device is not supported on current platform (or firmware).",NFC_0000:"Unknown event.",NFC_0001:"Unable to get status.",NFC_0200:"Failed to write tag.",NFC_0201:"Parameter is required.",NFC_0202:"'url' type must be string.",NFC_0100:"URL does not exist. Use setURL() to store URL value.",NFC_0300:"unknown event.",NFC_0301:"Unable to set TagVisibility.",NFC_0302:"'tagVisibility' type must be boolean.",NFC_0303:"Parameter is required."};function u(e,r){e&&"function"==typeof e&&(r.returnValue&&delete r.returnValue,r.subscribed&&delete r.subscribed,e(r))}function s(e,r,t){e&&"function"==typeof e&&(void 0===i[r]?e({errorCode:"UNKNOWN_ERROR",errorText:"Unknown error."}):"string"==typeof errorText?e({errorCode:r,errorText:i[r]+": "+t}):e({errorCode:r,errorText:i[r]}))}function l(e){return!(-1===e.errorCode&&-1<e.errorText.indexOf("Unknown method")&&-1<e.errorText.indexOf("for category"))}return e.prototype.setURL=function(t,i,o){if(o&&void 0!==o){if("string"==typeof o.url){var e=new PalmServiceBridge,r="luna://com.webos.service.nfc/tag/writeTag",n='{"url": "'+o.url+'"}';return e.url=r,e.onservicecallback=function(e){var r=JSON.parse(e);if(!1!==l(r))return!0===r.returnValue?(a=o.url,void u(t,{state:!0})):void s(i,"NFC_0200");s(i,"HARMONY_0000")},e.call(r,n)}s(i,"NFC_0202")}else s(i,"NFC_0201")},e.prototype.getURL=function(e,r){return void 0===a?void s(r,"NFC_0100"):void s(e,{URL:a})},e.prototype.setTagVisibility=function(t,i,e){if(e&&void 0!==e){if("boolean"==typeof e.tagVisibility){var r=new PalmServiceBridge,o="luna://com.webos.service.nfc/adapter/setState",n='{"powered":'+e.tagVisibility+"}";return r.url=o,r.onservicecallback=function(e){if("string"==typeof e){var r=JSON.parse(e);if(!1!==l(r))return!0===r.returnValue?void u(t,{state:r.returnValue}):void s(i,"NFC_0301");s(i,"HARMONY_0000")}else s(i,"NFC_0300")},r.call(o,n)}s(i,"NFC_0302")}else s(i,"NFC_0303")},e.prototype.getStatus=function(t,i){var e=new PalmServiceBridge,r="luna://com.webos.service.nfc/adapter/getState";return e.url=r,e.onservicecallback=function(e){if("string"==typeof e){var r=JSON.parse(e);if(!1!==l(r))return!0===r.returnValue?void u(t,{tagType:r.tagType,tagVisibility:r.attached}):void s(i,"NFC_0001");s(i,"HARMONY_0000")}else s(i,"NFC_0000")},e.call(r,"{}")},e}();
@@ -0,0 +1,16 @@
1
+ /*
2
+ * ============================================================================
3
+ *
4
+ * ID ENGINEERING R&D TEAM, LG ELECTRONICS INC., PYEONGTAEK, KOREA
5
+ * Copyright(c) 2018 by LG Electronics Inc.. All rights reserved.
6
+ *
7
+ * Harmony API, for handling external device on webOS Signage platform
8
+ *
9
+ * Author : signagesupport@lge.com
10
+ * Homepage : http://webossignage.developer.lge.com
11
+ * Modified Date : 2018-11-29
12
+ * Release Version : 1.30.2018-11-29
13
+ *
14
+ * ============================================================================
15
+ */
16
+ "use strict";var RFID=function(){function e(){if(!window.PalmServiceBridge)throw": This platform is not webOS Signage."}var n,o,i,a={HARMONY_0000:"This external device is not supported on current platform (or firmware).",RFID_0000:"Unknown event.",RFID_0001:"Unable to get status.",RFID_0100:"Unknown event.",RFID_0101:"Unable to get value.",RFID_0102:"Event handler is already set. Before set event handler, please remove current event handler.",RFID_0103:"Callback as used for parameter is not a function.",RFID_0200:"RFID event handler is not registered yet."};function l(e,r){e&&"function"==typeof e&&(r.returnValue&&delete r.returnValue,r.subscribed&&delete r.subscribed,e(r))}function s(e,r,t){e&&"function"==typeof e&&(void 0===a[r]?e({errorCode:"UNKNOWN_ERROR",errorText:"Unknown error."}):"string"==typeof errorText?e({errorCode:r,errorText:a[r]+": "+t}):e({errorCode:r,errorText:a[r]}))}function u(e){return!(-1===e.errorCode&&-1<e.errorText.indexOf("Unknown method")&&-1<e.errorText.indexOf("for category"))}var d=[];return e.prototype.setEventHandler=function(e,r){if(n&&"undefined"!=n)s(i,"RFID_0102");else{if("function"==typeof e&&"function"==typeof r){o=e,i=r;var t="luna://com.webos.service.externaldevice/rfid/readTag";return(n=new PalmServiceBridge).url=t,n.onservicecallback=function(e){var r={};if("string"==typeof e){var t=JSON.parse(e);if(!1!==u(t)){if(!0===t.returnValue){if(t.taglist&&0<t.taglist.length)r.taglist=t.taglist;else if(d&&0<d.length){for(var n=0;n<d.length;n++)d[n].event="Removed";r.taglist=d}else r.taglist=t.taglist;return d=t.taglist,void l(o,r)}s(i,"RFID_0101")}else s(i,"HARMONY_0000")}else s(i,"RFID_0100")},n.call(t,'{"subscribe":true}')}s(r,"RFID_0103")}},e.prototype.removeEventHandler=function(e,r){return n&&"undefined"!=n?(n.cancel(),n=null,void l(e)):void s(r,"RFID_0200")},e.prototype.getStatus=function(t,n){var e=new PalmServiceBridge,r="luna://com.webos.service.externaldevice/rfid/getState";return e.url=r,e.onservicecallback=function(e){if("string"==typeof e){var r=JSON.parse(e);if(!1!==u(r))return!0===r.returnValue?void l(t,{attached:r.attached,readerIds:r.readerIds}):void s(n,"RFID_0001");s(n,"HARMONY_0000")}else s(n,"RFID_0000")},e.call(r,"{}")},e}();
@@ -0,0 +1,16 @@
1
+ /*
2
+ * ============================================================================
3
+ *
4
+ * ID ENGINEERING R&D TEAM, LG ELECTRONICS INC., PYEONGTAEK, KOREA
5
+ * Copyright(c) 2018 by LG Electronics Inc.. All rights reserved.
6
+ *
7
+ * Harmony API, for handling external device on webOS Signage platform
8
+ *
9
+ * Author : signagesupport@lge.com
10
+ * Homepage : http://webossignage.developer.lge.com
11
+ * Modified Date : 2018-11-29
12
+ * Release Version : 1.30.2018-11-29
13
+ *
14
+ * ============================================================================
15
+ */
16
+ "use strict";var Temperature=function(){function e(){if(!window.PalmServiceBridge)throw": This platform is not webOS Signage."}var n,o,a,i={HARMONY_0000:"This external device is not supported on current platform (or firmware).",TEMPERATURE_0000:"Unknown event.",TEMPERATURE_0001:"Unable to get status.",TEMPERATURE_0100:"Unknown event.",TEMPERATURE_0101:"Unable to get value.",TEMPERATURE_0102:"Event handler is already set. Before set event handler, please remove current event handler.",TEMPERATURE_0103:"Callback as used for parameter is not a function.",TEMPERATURE_0200:"Temperature event handler is not registered yet."};function u(e,r){e&&"function"==typeof e&&(r.returnValue&&delete r.returnValue,r.subscribed&&delete r.subscribed,e(r))}function l(e,r,t){e&&"function"==typeof e&&(void 0===i[r]?e({errorCode:"UNKNOWN_ERROR",errorText:"Unknown error."}):"string"==typeof errorText?e({errorCode:r,errorText:i[r]+": "+t}):e({errorCode:r,errorText:i[r]}))}function c(e){return!(-1===e.errorCode&&-1<e.errorText.indexOf("Unknown method")&&-1<e.errorText.indexOf("for category"))}return e.prototype.setEventHandler=function(e,r){if(n&&"undefined"!=n)l(a,"TEMPERATURE_0102");else{if("function"==typeof e&&"function"==typeof r){o=e,a=r;var t="luna://com.webos.service.externaldevice/temperature/read";return(n=new PalmServiceBridge).url=t,n.onservicecallback=function(e){if("string"==typeof e){var r=JSON.parse(e);if(!1!==c(r))return!0===r.returnValue?void u(o,{value:r.value}):void l(a,"TEMPERATURE_0101");l(a,"HARMONY_0000")}else l(a,"TEMPERATURE_0100")},n.call(t,'{"subscribe":true}')}l(r,"TEMPERATURE_0103")}},e.prototype.removeEventHandler=function(e,r){return n&&"undefined"!=n?(n.cancel(),n=null,void u(e)):void l(r,"TEMPERATURE_0200")},e.prototype.getValue=function(t,n){var e=new PalmServiceBridge,r="luna://com.webos.service.externaldevice/temperature/read";return e.url=r,e.onservicecallback=function(e){if("string"==typeof e){var r=JSON.parse(e);if(!1!==c(r))return!0===r.returnValue?void u(t,{value:r.value}):void l(n,"TEMPERATURE_0101");l(n,"HARMONY_0000")}else l(n,"TEMPERATURE_0100")},e.call(r,"{}")},e.prototype.getStatus=function(t,n){var e=new PalmServiceBridge,r="luna://com.webos.service.externaldevice/temperature/getStatus";return e.url=r,e.onservicecallback=function(e){if("string"==typeof e){var r=JSON.parse(e);if(!1!==c(r))return!0===r.returnValue?void u(t,{attached:r.attached}):void l(n,"TEMPERATURE_0001");l(n,"HARMONY_0000")}else l(n,"TEMPERATURE_0000")},e.call(r,"{}")},e}();
@@ -0,0 +1,16 @@
1
+ /*
2
+ * ============================================================================
3
+ *
4
+ * ID ENGINEERING R&D TEAM, LG ELECTRONICS INC., PYEONGTAEK, KOREA
5
+ * Copyright(c) 2018 by LG Electronics Inc.. All rights reserved.
6
+ *
7
+ * Harmony API, for handling external device on webOS Signage platform
8
+ *
9
+ * Author : signagesupport@lge.com
10
+ * Homepage : http://webossignage.developer.lge.com
11
+ * Modified Date : 2018-11-29
12
+ * Release Version : 1.30.2018-11-29
13
+ *
14
+ * ============================================================================
15
+ */
16
+ "use strict";var ThermalPrinter=function(){var n=[{deviceName:"NP-3511",printerNameInternal:"receipt"},{deviceName:"NP-3611",printerNameInternal:"bigPrinter"}],s="";function e(e){if(!window.PalmServiceBridge)throw": This platform is not webOS Signage.";if("object"!=typeof e||!1===e.hasOwnProperty("printer"))throw'[ThermalPrinter] Parameter must be object included "printer" property.';if("string"!=typeof e.printer)throw"[ThermalPrinter] Invalid printer model name.";for(var r="",t=0;t<n.length;t++)if(r+="["+n[t].deviceName+"]",e.printer===n[t].deviceName)return void(s=n[t].printerNameInternal);throw'[ThermalPrinter] Printer "'+e.printer+'" is not supported. Supported list : '+r}var i={HARMONY_0000:"This external device is not supported on current platform (or firmware).",PRINT_0000:"Unknown event.",PRINT_0001:"Printing error. Check print connection or status.",PRINT_0002:"'parameter' must be object with property 'type' and 'data'.",PRINT_0003:"'type' must be string.",PRINT_0004:"'data' must be string.",PRINT_0005:"'type' must be string value with 'text' or 'image'."};function d(e,r,t){e&&"function"==typeof e&&(void 0===i[r]?e({errorCode:"UNKNOWN_ERROR",errorText:"Unknown error."}):"string"==typeof errorText?e({errorCode:r,errorText:i[r]+": "+t}):e({errorCode:r,errorText:i[r]}))}return e.prototype.print=function(o,a,e){if("object"==typeof e&&!1!==e.hasOwnProperty("type")&&!1!==e.hasOwnProperty("data"))if("string"==typeof e.type){if("string"==typeof e.data){var r="";if("text"===e.type)r="text/plain";else{if("image"!==e.type)return void d(a,"PRINT_0005");r="image/png"}var t={"operation-attributes-tag":{"requesting-user-name":"root","job-name":"Printing Job","document-format":r,"printer-uri":"http://127.0.0.1:631/printers/"+s},data:window.btoa(e.data)},n="luna://com.webos.service.commercial.cupsadapter/execute",i=JSON.stringify({command:"Print-Job",message:t}),p=new PalmServiceBridge;return p.url=n,p.onservicecallback=function(e){if("string"==typeof e){var r,t,n,i=JSON.parse(e);if(!1!=!(-1===(r=i).errorCode&&-1<r.errorText.indexOf("Unknown method")&&-1<r.errorText.indexOf("for category")))return!0===i.returnValue?(t=o,n={message:i.message},void(t&&"function"==typeof t&&(n.returnValue&&delete n.returnValue,n.subscribed&&delete n.subscribed,t(n)))):void d(a,"PRINT_0001",i.errorText);d(a,"HARMONY_0000")}else d(a,"PRINT_0000")},p.call(n,i)}d(a,"PRINT_0004")}else d(a,"PRINT_0003");else d(a,"PRINT_0002")},e}();
@@ -0,0 +1,21 @@
1
+ /*
2
+ ============================================================================
3
+ Web Solution Project, ID SW Development Department, LG ELECTRONICS INC., SEOUL, KOREA
4
+ Copyright(c) 2021 by LG Electronics Inc.
5
+ IDCAP extension version : 1.1.0
6
+ ============================================================================
7
+ */
8
+ var extIDCAPSecure,extRegisterIDCAPCloseHandler,extDisableIdcapConsoleLog,extWebWorker,isSubscribeParam,retry_count,idcap;
9
+ if(void 0===idcap)if("object"===typeof window)(function(){function b(a){1==idcap.isLogEnabled&&(a=1024<a.length?a.substring(0,1024):a,!0!==extWebWorker&&console.log(a))}function n(a,e){if(!0!==extWebWorker){var g="",l=document.createEvent("HTMLEvents");b(p("event received, ",e));l.initEvent(a,!0,!1);for(g in e)e.hasOwnProperty(g)&&(l[g]=e[g]);document.dispatchEvent(l)}}idcap={API_VERSION:"1.1.0",isRemoteInitialize:!1,isRemote:!1,remote_ip:"",isLogEnabled:!1,isMaxCount:4};var h=0,c=[{command_id:"0",
10
+ param_text:'{"command_id" : "0", "command" : "notify_sdk_version","parameters":{"idcap_js_extension_version" : "1.1.0"}}'}],k=[{command:"0",param_text:'{"command" : "0", "command" : "notify_sdk_version", "parameters":{"idcap_js_extension_version" : "1.1.0"}}'}],d=null,q=!1,v=!1,r=!1,A=null,w=null,E=null,B=!1,p=null,C=!1,z=!1,D=0,x="127.0.0.1";!0!==idcap.isLogEnabled?!0!==extWebWorker&&console.log("ID - console log is disabled"):!0!==extWebWorker&&console.log("ID - console log is enabled");b("check external value : extDisableIdcapConsoleLog = "+
11
+ extDisableIdcapConsoleLog+", extIDCAPSecure = "+extIDCAPSecure+", extRegisterIDCAPCloseHandler = "+extRegisterIDCAPCloseHandler);B=function(){var a=navigator.userAgent;a.match(/Windows/);a.match(/Macintosh/);a.match(/Mac OS X/);var e=a.match(/Web0S/),g=a.match(/SmartTV/),l=a.match(/WebAppManager/);b("UA = '"+a+"'");return e||g||l?(z=!1,idcap.isRemote=!1):z=idcap.isRemote=!0}();p=function(a,e){var g="";var l=[],t="";for(g in e)e.hasOwnProperty(g)&&l.push(g);l.sort();for(g=0;g<l.length;g+=1){var u=
12
+ g,f=l,m="",y="";var F=f[u];try{m=e[F],y=typeof m}catch(G){m="<unknown value>",y="unknown"}"function"===y?m="{/*function*/}":"object"===y?m=p("",m):"string"===y&&(m='"'+m+'"');t+='"'+F+'" : '+m;u<f.length-1&&(t+=", ")}return a+"{"+t+"}"};A=function(){b("initialize_idcap_websocket");v?b("websocket : connection is in progress"):(v=!0,0==z?!0!==extIDCAPSecure?(b("default idcap connection"),d=new WebSocket("ws://127.0.0.1:8153/hcap_command")):(b("secure idcap connection"),d=new WebSocket("wss://localhost:8154/idcap_command")):
13
+ (b("remote connection"),d="https:"===location.protocol?new WebSocket("wss://"+x+":8154/idcap_command"):new WebSocket("ws://"+x+":8153/idcap_command")),d.onopen=function(){b("websocket : onopen");v=!1;q=!0;setTimeout(w,5)},d.onmessage=function(a){a=JSON.parse(a.data);var e=a.command_id,g=a.command,l=a.result;b("ws.onmessage : "+JSON.stringify(a));if("event"===e)"debug_event_received"===g?(a.enable_log?!0!==extWebWorker&&console.log("idcap console log is enabled"):!0!==extWebWorker&&console.log("idcap console log is disabled"),
14
+ extDisableIdcapConsoleLog=!a.enable_log):n(g,a);else{if(0<c.length&&c[0].command_id===e){b(p("command_id = "+e+" received, ",a));if(l)if(c[0].onSuccess)try{c[0].onSuccess(a)}catch(f){b(p("exception : onSuccess : "+f))}else c[0].resolve&&c[0].resolve(a);else if(c[0].onFailure)try{c[0].onFailure(a)}catch(f){b(p("exception : onFailure : "+f))}else c[0].reject&&c[0].reject(a);c.splice(0,1)}else{var t=0,u=!1;k.forEach(function(f){null!==f&&void 0!==f.command&&f.command===g&&(t=k.indexOf(f),u=!0)});if(u){if(k[t].onSuccess)try{k[t].onSuccess(a)}catch(f){b(p("exception : onSuccess : "+
15
+ f))}}else b(p("invalid response from server ",a))}r=!1;w()}},d.onclose=function(){b("websocket : onclose");r=q=v=!1;D+=1;b("retry-count",D);!z&&D<idcap.isMaxCount?setTimeout(w,50):b("Max retry - stop websocket connection try")},"onbeforeunload"===extRegisterIDCAPCloseHandler?window.onbeforeunload=function(){b("close idcap websocket in onbeforeunload handler");d.onclose=function(){};d.close()}:"onunload"===extRegisterIDCAPCloseHandler&&(window.onunload=function(){b("close idcap websocket in onunload handler");
16
+ d.onclose=function(){};d.close()}))};w=function(){b("start_cmd_loop");if(!r){r=!0;if(q){if(0<c.length){b("webSocket sending");b(p("command_id = "+c[0].command_id+" sent, ",JSON.parse(c[0].param_text)));d.send(c[0].param_text);return}}else A();r=!1}};E=function(a,e={}){if(null===a||""===a||void 0===a)b("[ERROR] Command should not be null.");else if(!1===a.toLowerCase().startsWith("idcap://"))b("[ERROR] wrong IDCAP command.");else if(Array.isArray(e))b("[ERROR] Command Parameter Error. param is Array type or not defined.");
17
+ else{B&&b("[ERROR] IDCAP is unavailable on this browser.");h=1024<h?0:h+1;var g=h.toString(),l="";e.command_id=g;e.command=a;l=JSON.stringify(e,null);b("param_text : "+l);for(name in e)"subscribe"===name&&e.hasOwnProperty("subscribe")&&!0===e.subscribe&&(C=!0);if(C)k.forEach(function(f){null!==f&&void 0!==f.command&&f.command===e.command?b("already registered. : "+a):k[k.length]={command:a,param_text:l,onSuccess:e.onSuccess,onFailure:e.onFailure}}),C=!1;else{var t=0,u=!1;k.forEach(function(f){null!==
18
+ f&&void 0!==f.command&&f.command===e.command&&(t=k.indexOf(f),u=!0)});u=u?k.splice(t,1):!1}return new Promise((f,m)=>{c.push({command_id:g,param_text:l,resolve:f.bind(this),reject:m.bind(this),onSuccess:e.onSuccess,onFailure:e.onFailure});b(p("command_id = "+g+" added, ",c[c.length-1]));w()})}};B||setTimeout(w,200);idcap.remoteInitialize=function(a){b("remoteInitialize");x=a;b("remote = "+x);idcap.remote_ip=x;A();idcap.isRemoteInitialize=!0};idcap.remoteFinalize=function(){b("remoteFinalize");d.close();
19
+ d=null;idcap.remote_ip="";idcap.isRemoteInitialize=!1};idcap.request={};idcap.request=function(a,e){a=a.toLowerCase();return E(a,e)}})();else{var ev=require("events").EventEmitter;class b extends ev{constructor(n){super();let h=this;this.service=n;this.service.Request=function(c,k){"/"!=c.charAt(c.length-1)&&(c+="/");c+=k.method;var d={};!0===k.hasOwnProperty("parameters")&&(d=k.parameters);var q={},v=function(r){!0===r.payload.returnValue?(q=r.payload,k.onSuccess(q)):(q.returnValue=!1,q.errorCode=
20
+ r.payload.errorCode,q.errorText=r.payload.errorText,k.onFailure(q))};h.service&&h.service.call(c,d,v)};this.subsForEvents=this.service.subscribe("luna://com.webos.service.idcapmw.mwcommand/getAllEvents",{subscribe:!0});this.subsForEvents.on("response",function(c){c=c.payload;if("event"===c.command_id)h.on_event_received(c.command,c)})}on_event_received(n,h){this.emit(n,h)}request(n,h){if(null!==n&&""!==n&&void 0!==n&&!Array.isArray(h)&&void 0!==h)return new Promise((c,k)=>{h.onSuccess&&"function"===
21
+ typeof h.onSuccess&&(c=h.onSuccess);h.onFailure&&"function"===typeof h.onFailure&&(k=h.onFailure);this.service.Request("luna://com.webos.service.idcapmw.mwcommand",{method:"/callidcap",parameters:{command:n,parameters:h.parameters},onSuccess:function(d){d.result?(delete d.returnValue,delete d.result,delete d.command_id,c(d)):(delete d.returnValue,delete d.result,delete d.command_id,k(d))},onFailure:function(d){delete d.returnValue;delete d.result;delete d.command_id;k(d)}})})}}module.exports=b};
@@ -0,0 +1,202 @@
1
+
2
+ Apache License
3
+ Version 2.0, January 2004
4
+ http://www.apache.org/licenses/
5
+
6
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
7
+
8
+ 1. Definitions.
9
+
10
+ "License" shall mean the terms and conditions for use, reproduction,
11
+ and distribution as defined by Sections 1 through 9 of this document.
12
+
13
+ "Licensor" shall mean the copyright owner or entity authorized by
14
+ the copyright owner that is granting the License.
15
+
16
+ "Legal Entity" shall mean the union of the acting entity and all
17
+ other entities that control, are controlled by, or are under common
18
+ control with that entity. For the purposes of this definition,
19
+ "control" means (i) the power, direct or indirect, to cause the
20
+ direction or management of such entity, whether by contract or
21
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
22
+ outstanding shares, or (iii) beneficial ownership of such entity.
23
+
24
+ "You" (or "Your") shall mean an individual or Legal Entity
25
+ exercising permissions granted by this License.
26
+
27
+ "Source" form shall mean the preferred form for making modifications,
28
+ including but not limited to software source code, documentation
29
+ source, and configuration files.
30
+
31
+ "Object" form shall mean any form resulting from mechanical
32
+ transformation or translation of a Source form, including but
33
+ not limited to compiled object code, generated documentation,
34
+ and conversions to other media types.
35
+
36
+ "Work" shall mean the work of authorship, whether in Source or
37
+ Object form, made available under the License, as indicated by a
38
+ copyright notice that is included in or attached to the work
39
+ (an example is provided in the Appendix below).
40
+
41
+ "Derivative Works" shall mean any work, whether in Source or Object
42
+ form, that is based on (or derived from) the Work and for which the
43
+ editorial revisions, annotations, elaborations, or other modifications
44
+ represent, as a whole, an original work of authorship. For the purposes
45
+ of this License, Derivative Works shall not include works that remain
46
+ separable from, or merely link (or bind by name) to the interfaces of,
47
+ the Work and Derivative Works thereof.
48
+
49
+ "Contribution" shall mean any work of authorship, including
50
+ the original version of the Work and any modifications or additions
51
+ to that Work or Derivative Works thereof, that is intentionally
52
+ submitted to Licensor for inclusion in the Work by the copyright owner
53
+ or by an individual or Legal Entity authorized to submit on behalf of
54
+ the copyright owner. For the purposes of this definition, "submitted"
55
+ means any form of electronic, verbal, or written communication sent
56
+ to the Licensor or its representatives, including but not limited to
57
+ communication on electronic mailing lists, source code control systems,
58
+ and issue tracking systems that are managed by, or on behalf of, the
59
+ Licensor for the purpose of discussing and improving the Work, but
60
+ excluding communication that is conspicuously marked or otherwise
61
+ designated in writing by the copyright owner as "Not a Contribution."
62
+
63
+ "Contributor" shall mean Licensor and any individual or Legal Entity
64
+ on behalf of whom a Contribution has been received by Licensor and
65
+ subsequently incorporated within the Work.
66
+
67
+ 2. Grant of Copyright License. Subject to the terms and conditions of
68
+ this License, each Contributor hereby grants to You a perpetual,
69
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
70
+ copyright license to reproduce, prepare Derivative Works of,
71
+ publicly display, publicly perform, sublicense, and distribute the
72
+ Work and such Derivative Works in Source or Object form.
73
+
74
+ 3. Grant of Patent License. Subject to the terms and conditions of
75
+ this License, each Contributor hereby grants to You a perpetual,
76
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
77
+ (except as stated in this section) patent license to make, have made,
78
+ use, offer to sell, sell, import, and otherwise transfer the Work,
79
+ where such license applies only to those patent claims licensable
80
+ by such Contributor that are necessarily infringed by their
81
+ Contribution(s) alone or by combination of their Contribution(s)
82
+ with the Work to which such Contribution(s) was submitted. If You
83
+ institute patent litigation against any entity (including a
84
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
85
+ or a Contribution incorporated within the Work constitutes direct
86
+ or contributory patent infringement, then any patent licenses
87
+ granted to You under this License for that Work shall terminate
88
+ as of the date such litigation is filed.
89
+
90
+ 4. Redistribution. You may reproduce and distribute copies of the
91
+ Work or Derivative Works thereof in any medium, with or without
92
+ modifications, and in Source or Object form, provided that You
93
+ meet the following conditions:
94
+
95
+ (a) You must give any other recipients of the Work or
96
+ Derivative Works a copy of this License; and
97
+
98
+ (b) You must cause any modified files to carry prominent notices
99
+ stating that You changed the files; and
100
+
101
+ (c) You must retain, in the Source form of any Derivative Works
102
+ that You distribute, all copyright, patent, trademark, and
103
+ attribution notices from the Source form of the Work,
104
+ excluding those notices that do not pertain to any part of
105
+ the Derivative Works; and
106
+
107
+ (d) If the Work includes a "NOTICE" text file as part of its
108
+ distribution, then any Derivative Works that You distribute must
109
+ include a readable copy of the attribution notices contained
110
+ within such NOTICE file, excluding those notices that do not
111
+ pertain to any part of the Derivative Works, in at least one
112
+ of the following places: within a NOTICE text file distributed
113
+ as part of the Derivative Works; within the Source form or
114
+ documentation, if provided along with the Derivative Works; or,
115
+ within a display generated by the Derivative Works, if and
116
+ wherever such third-party notices normally appear. The contents
117
+ of the NOTICE file are for informational purposes only and
118
+ do not modify the License. You may add Your own attribution
119
+ notices within Derivative Works that You distribute, alongside
120
+ or as an addendum to the NOTICE text from the Work, provided
121
+ that such additional attribution notices cannot be construed
122
+ as modifying the License.
123
+
124
+ You may add Your own copyright statement to Your modifications and
125
+ may provide additional or different license terms and conditions
126
+ for use, reproduction, or distribution of Your modifications, or
127
+ for any such Derivative Works as a whole, provided Your use,
128
+ reproduction, and distribution of the Work otherwise complies with
129
+ the conditions stated in this License.
130
+
131
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
132
+ any Contribution intentionally submitted for inclusion in the Work
133
+ by You to the Licensor shall be under the terms and conditions of
134
+ this License, without any additional terms or conditions.
135
+ Notwithstanding the above, nothing herein shall supersede or modify
136
+ the terms of any separate license agreement you may have executed
137
+ with Licensor regarding such Contributions.
138
+
139
+ 6. Trademarks. This License does not grant permission to use the trade
140
+ names, trademarks, service marks, or product names of the Licensor,
141
+ except as required for reasonable and customary use in describing the
142
+ origin of the Work and reproducing the content of the NOTICE file.
143
+
144
+ 7. Disclaimer of Warranty. Unless required by applicable law or
145
+ agreed to in writing, Licensor provides the Work (and each
146
+ Contributor provides its Contributions) on an "AS IS" BASIS,
147
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
148
+ implied, including, without limitation, any warranties or conditions
149
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
150
+ PARTICULAR PURPOSE. You are solely responsible for determining the
151
+ appropriateness of using or redistributing the Work and assume any
152
+ risks associated with Your exercise of permissions under this License.
153
+
154
+ 8. Limitation of Liability. In no event and under no legal theory,
155
+ whether in tort (including negligence), contract, or otherwise,
156
+ unless required by applicable law (such as deliberate and grossly
157
+ negligent acts) or agreed to in writing, shall any Contributor be
158
+ liable to You for damages, including any direct, indirect, special,
159
+ incidental, or consequential damages of any character arising as a
160
+ result of this License or out of the use or inability to use the
161
+ Work (including but not limited to damages for loss of goodwill,
162
+ work stoppage, computer failure or malfunction, or any and all
163
+ other commercial damages or losses), even if such Contributor
164
+ has been advised of the possibility of such damages.
165
+
166
+ 9. Accepting Warranty or Additional Liability. While redistributing
167
+ the Work or Derivative Works thereof, You may choose to offer,
168
+ and charge a fee for, acceptance of support, warranty, indemnity,
169
+ or other liability obligations and/or rights consistent with this
170
+ License. However, in accepting such obligations, You may act only
171
+ on Your own behalf and on Your sole responsibility, not on behalf
172
+ of any other Contributor, and only if You agree to indemnify,
173
+ defend, and hold each Contributor harmless for any liability
174
+ incurred by, or claims asserted against, such Contributor by reason
175
+ of your accepting any such warranty or additional liability.
176
+
177
+ END OF TERMS AND CONDITIONS
178
+
179
+ APPENDIX: How to apply the Apache License to your work.
180
+
181
+ To apply the Apache License to your work, attach the following
182
+ boilerplate notice, with the fields enclosed by brackets "[]"
183
+ replaced with your own identifying information. (Don't include
184
+ the brackets!) The text should be enclosed in the appropriate
185
+ comment syntax for the file format. We also recommend that a
186
+ file or class name and description of purpose be included on the
187
+ same "printed page" as the copyright notice for easier
188
+ identification within third-party archives.
189
+
190
+ Copyright [yyyy] [name of copyright owner]
191
+
192
+ Licensed under the Apache License, Version 2.0 (the "License");
193
+ you may not use this file except in compliance with the License.
194
+ You may obtain a copy of the License at
195
+
196
+ http://www.apache.org/licenses/LICENSE-2.0
197
+
198
+ Unless required by applicable law or agreed to in writing, software
199
+ distributed under the License is distributed on an "AS IS" BASIS,
200
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
201
+ See the License for the specific language governing permissions and
202
+ limitations under the License.
@@ -0,0 +1 @@
1
+ !function(){window.webOS=window.webOS||{},"object"==typeof module&&module.exports&&(module.exports=window.webOS)}(),function(){if(webOS.platform={},window.PalmSystem)if(navigator.userAgent.indexOf("SmartWatch")>-1)webOS.platform.watch=!0;else if(navigator.userAgent.indexOf("SmartTV")>-1||navigator.userAgent.indexOf("Large Screen")>-1)webOS.platform.tv=!0;else{try{var e=JSON.parse(PalmSystem.deviceInfo||"{}");if(e.platformVersionMajor&&e.platformVersionMinor){var t=parseInt(e.platformVersionMajor),o=parseInt(e.platformVersionMinor);t<3||3==t&&o<=0?webOS.platform.legacy=!0:webOS.platform.open=!0}}catch(i){webOS.platform.open=!0}window.Mojo=window.Mojo||{relaunch:function(e){}},window.PalmSystem&&PalmSystem.stageReady&&PalmSystem.stageReady()}else webOS.platform.unknown=!0}(),function(){webOS.fetchAppId=function(){if(window.PalmSystem&&PalmSystem.identifier)return PalmSystem.identifier.split(" ")[0]},webOS.fetchAppInfo=function(e,t){if(webOS.appInfo)e&&e(webOS.appInfo);else{var o=function(t,o){if(!t&&o)try{webOS.appInfo=JSON.parse(o),e&&e(webOS.appInfo)}catch(i){console.error("Unable to parse appinfo.json file for "+appID),e&&e()}else e&&e()},i=new XMLHttpRequest;i.onreadystatechange=function(){4==i.readyState&&(i.status>=200&&i.status<300||0===i.status?o(void 0,i.responseText):o({status:404}))};try{i.open("GET",t||"appinfo.json",!0),i.send(null)}catch(s){o({status:404})}}},webOS.fetchAppRootPath=function(){var e=window.location.href;if("baseURI"in window.document)e=window.document.baseURI;else{var t=window.document.getElementsByTagName("base");t.length>0&&(e=t[0].href)}var o=e.match(new RegExp(".*://[^#]*/"));return o?o[0]:""},webOS.platformBack=function(){if(window.PalmSystem&&PalmSystem.platformBack)return PalmSystem.platformBack()}}(),function(){webOS.deviceInfo=function(e){if(this.device)e(this.device);else{this.device={};try{var t=JSON.parse(PalmSystem.deviceInfo);this.device.modelName=t.modelName,this.device.modelNameAscii=t.modelNameAscii,this.device.version=t.platformVersion,this.device.versionMajor=t.platformVersionMajor,this.device.versionMinor=t.platformVersionMinor,this.device.versionDot=t.platformVersionDot,this.device.sdkVersion=t.platformVersion,this.device.screenWidth=t.screenWidth,this.device.screenHeight=t.screenHeight}catch(o){this.device.modelName=this.device.modelNameAscii="webOS Device"}this.device.screenHeight=this.device.screenHeight||screen.height,this.device.screenWidth=this.device.screenWidth||screen.width;var i=this;webOS.platform.tv?webOS.service.request("luna://com.webos.service.tv.systemproperty",{method:"getSystemInfo",parameters:{keys:["firmwareVersion","modelName","sdkVersion","UHD"]},onSuccess:function(t){if(i.device.modelName=t.modelName||i.device.modelName,i.device.modelNameAscii=t.modelName||i.device.modelNameAscii,i.device.sdkVersion=t.sdkVersion||i.device.sdkVersion,i.device.uhd="true"===t.UHD,t.firmwareVersion&&"0.0.0"!==t.firmwareVersion||(t.firmwareVersion=t.sdkVersion),t.firmwareVersion){i.device.version=t.firmwareVersion;for(var o=i.device.version.split("."),s=["versionMajor","versionMinor","versionDot"],n=0;n<s.length;n++)try{i.device[s[n]]=parseInt(o[n])}catch(r){i.device[s[n]]=o[n]}}e(i.device)},onFailure:function(t){e(i.device)}}):(webOS.platform.watch&&(this.device.modelName=this.device.modelNameAscii="webOS Watch"),e(this.device))}}}(),function(){webOS.feedback={play:function(e){if(webOS&&webOS.platform&&webOS.platform.watch){var t={name:e||"touch",sink:"pfeedback"};if(!window.PalmServiceBridge)return;webOS.service.request("luna://com.palm.audio/systemsounds",{method:"playFeedback",parameters:t,subscribe:!1,resubscribe:!1})}}}}(),function(){webOS.keyboard={isShowing:function(){return!!(PalmSystem&&PalmSystem.isKeyboardVisible&&PalmSystem.isKeyboardVisible())}}}(),function(){webOS.notification={showToast:function(e,t){var o=e.message||"",i=e.icon||"",s=webOS.fetchAppId(),n=e.appId||s,r=e.appParams||{},a=e.target,c=e.noaction,l=e.stale||!1,m=e.soundClass||"",u=e.soundFile||"",d=e.soundDurationMs||"";if(webOS.platform.legacy||webOS.platform.open){var f=(e.response||{banner:!0},PalmSystem.addBannerMessage(o,JSON.stringify(r),i,m,u,d));t&&t(f)}else{o.length>60&&console.warn("Toast notification message is longer than recommended. May not display as intended");var b={sourceId:s,message:o,stale:l,noaction:c};i&&i.length>0&&(b.iconUrl=i),c||(a?b.onclick={target:a}:b.onclick={appId:n,params:r}),this.showToastRequest=webOS.service.request("palm://com.webos.notification",{method:"createToast",parameters:b,onSuccess:function(e){t&&t(e.toastId)},onFailure:function(e){console.error("Failed to create toast: "+JSON.stringify(e)),t&&t()}})}},removeToast:function(e){if(webOS.platform.legacy||webOS.platform.open)try{PalmSystem.removeBannerMessage(e)}catch(t){console.warn(t),PalmSystem.clearBannerMessage()}else this.removeToastRequest=webOS.service.request("palm://com.webos.notification",{method:"closeToast",parameters:{toastId:e}})},supportsDashboard:function(){return webOS.platform.legacy||webOS.platform.open},showDashboard:function(e,t){if(webOS.platform.legacy||webOS.platform.open){var o=window.open(e,"_blank",'attributes={"window":"dashboard"}');return t&&o.document.write(t),o.PalmSystem&&o.PalmSystem.stageReady(),o}console.warn("Dashboards are not supported on this version of webOS.")}}}(),function(){var e=0,t=1,o=2,i=3,s=4,n=5,r=6,a=7,c=function(e){return!!e&&"object"==typeof e&&"[object Array]"!==Object.prototype.toString.call(e)},l=function(e,t,o,s){window.PalmSystem&&(o&&!c(o)&&(e=i,o={msgid:t},t="MISMATCHED_FMT",s=null,console.warn("webOSLog called with invalid format: keyVals must be an object")),t||e==a||console.warn("webOSLog called with invalid format: messageId was empty"),o&&(o=JSON.stringify(o)),window.PalmSystem.PmLogString?e==a?window.PalmSystem.PmLogString(e,null,null,s):window.PalmSystem.PmLogString(e,t,o,s):console.error("Unable to send log; PmLogString not found in this version of PalmSystem"))};webOS.emergency=function(t,o,i){l(e,t,o,i)},webOS.alert=function(e,o,i){l(t,e,o,i)},webOS.critical=function(e,t,i){l(o,e,t,i)},webOS.error=function(e,t,o){l(i,e,t,o)},webOS.warning=function(e,t,o){l(s,e,t,o)},webOS.notice=function(e,t,o){l(n,e,t,o)},webOS.info=function(e,t,o){l(r,e,t,o)},webOS.debug=function(e){l(a,"","",e)}}(),function(){function e(e,t){this.uri=e,t=t||{},t.method&&("/"!=this.uri.charAt(this.uri.length-1)&&(this.uri+="/"),this.uri+=t.method),"function"==typeof t.onSuccess&&(this.onSuccess=t.onSuccess),"function"==typeof t.onFailure&&(this.onFailure=t.onFailure),"function"==typeof t.onComplete&&(this.onComplete=t.onComplete),this.params="object"==typeof t.parameters?t.parameters:{},this.subscribe=t.subscribe||!1,this.subscribe&&(this.params.subscribe=t.subscribe),this.params.subscribe&&(this.subscribe=this.params.subscribe),this.resubscribe=t.resubscribe||!1,this.send()}e.prototype.send=function(){if(!window.PalmServiceBridge)return this.onFailure&&this.onFailure({errorCode:-1,errorText:"PalmServiceBridge not found.",returnValue:!1}),this.onComplete&&this.onComplete({errorCode:-1,errorText:"PalmServiceBridge not found.",returnValue:!1}),void console.error("PalmServiceBridge not found.");this.bridge=new PalmServiceBridge;var t=this;this.bridge.onservicecallback=this.callback=function(o){var i;if(!t.cancelled){try{i=JSON.parse(o)}catch(s){i={errorCode:-1,errorText:o,returnValue:!1}}(i.errorCode||0==i.returnValue)&&t.onFailure?(t.onFailure(i),t.resubscribe&&t.subscribe&&(t.delayID=setTimeout(function(){t.send()},e.resubscribeDelay))):t.onSuccess&&t.onSuccess(i),t.onComplete&&t.onComplete(i),t.subscribe||t.cancel()}},this.bridge.call(this.uri,JSON.stringify(this.params))},e.prototype.cancel=function(){this.cancelled=!0,this.resubscribeJob&&clearTimeout(this.delayID),this.bridge&&(this.bridge.cancel(),this.bridge=void 0)},e.prototype.toString=function(){return"[LS2Request]"},e.resubscribeDelay=1e4,webOS.service={request:function(t,o){return new e(t,o)},systemPrefix:"com.webos.",protocol:"luna://"},navigator.service={request:webOS.service.request},navigator.service.Request=navigator.service.request}(),function(){webOS.libVersion="0.1.0"}(),function(){webOS.voicereadout={readAlert:function(e,t){var o="boolean"!=typeof t||t;if(webOS&&webOS.platform&&webOS.platform.watch){var i,s,n=function(e){webOS.service.request("luna://com.webos.settingsservice",{method:"getSystemSettings",parameters:{category:"VoiceReadOut"},onSuccess:function(t){t&&t.settings.talkbackEnable&&e()},onFailure:function(e){console.error("Failed to get system VoiceReadOut settings: "+JSON.stringify(e))}})},r=function(e){webOS.service.request("luna://com.webos.settingsservice",{method:"getSystemSettings",parameters:{keys:["localeInfo"]},onSuccess:function(t){i=t.settings.localeInfo.locales.TTS,e()},onFailure:function(e){console.error("Failed to get system localeInfo settings: "+JSON.stringify(e))}})},a=function(e){webOS.service.request("luna://com.webos.settingsservice",{method:"getSystemSettings",parameters:{category:"option",key:"ttsSpeechRate"},onSuccess:function(t){s=Number(t.settings.ttsSpeechRate),e()},onFailure:function(e){console.error("Failed to get system speechRate settings: "+JSON.stringify(e))}})},c=function(){webOS.service.request("luna://com.lge.service.tts",{method:"speak",parameters:{locale:i,text:e,speechRate:s}})};n(function(){r(function(){a(c)})})}else if(webOS&&webOS.platform&&webOS.platform.tv){var l=function(e){webOS.service.request("luna://com.webos.settingsservice",{method:"getSystemSettings",parameters:{keys:["audioGuidance"],category:"option"},onSuccess:function(t){t&&"on"===t.settings.audioGuidance&&e()},onFailure:function(e){console.error("Failed to get system AudioGuidance settings: "+JSON.stringify(e))}})},c=function(){webOS.service.request("luna://com.webos.service.tts",{method:"speak",parameters:{text:e,clear:o},onFailure:function(e){console.error("Failed to readAlertMessage: "+JSON.stringify(e))}})};l(c)}else console.warn("Platform doesn't support TTS api.")}}}();