tin-spa 2.13.15 → 9.1.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 (375) hide show
  1. package/README.md +2 -2
  2. package/bundles/tin-spa.umd.js +6694 -0
  3. package/bundles/tin-spa.umd.js.map +1 -0
  4. package/bundles/tin-spa.umd.min.js +16 -0
  5. package/bundles/tin-spa.umd.min.js.map +1 -0
  6. package/esm2015/lib/classes/Classes.js +254 -0
  7. package/esm2015/lib/classes/TinCore.js +137 -0
  8. package/esm2015/lib/components/activity/activity.component.js +92 -0
  9. package/esm2015/lib/components/attach/attach.component.js +181 -0
  10. package/esm2015/lib/components/change-password/change-password.component.js +179 -0
  11. package/esm2015/lib/components/check/check.component.js +69 -0
  12. package/esm2015/lib/components/chips/chips.component.js +107 -0
  13. package/esm2015/lib/components/create-account/create-account.component.js +160 -0
  14. package/esm2015/lib/components/date/date.component.js +66 -0
  15. package/esm2015/lib/components/datetime/datetime.component.js +57 -0
  16. package/esm2015/lib/components/filter/filter.component.js +64 -0
  17. package/esm2015/lib/components/html/html.component.js +102 -0
  18. package/esm2015/lib/components/label/label.component.js +117 -0
  19. package/esm2015/lib/components/loader/loader.component.js +53 -0
  20. package/esm2015/lib/components/login/login.component.js +240 -0
  21. package/esm2015/lib/components/logs/logs.component.js +195 -0
  22. package/esm2015/lib/components/message/messageDialog.component.js +142 -0
  23. package/esm2015/lib/components/money/currency-input-mask.directive.js +187 -0
  24. package/esm2015/lib/components/money/currency-input-mask.module.js +30 -0
  25. package/esm2015/lib/components/money/money.component.js +152 -0
  26. package/esm2015/lib/components/nav-menu/nav-menu.component.js +204 -0
  27. package/esm2015/lib/components/option/option.component.js +129 -0
  28. package/esm2015/lib/components/profile/profile.component.js +198 -0
  29. package/esm2015/lib/components/recover-account/recover-account.component.js +74 -0
  30. package/esm2015/lib/components/roles/addRoleDialog.component.js +132 -0
  31. package/esm2015/lib/components/roles/roles.component.js +211 -0
  32. package/esm2015/lib/components/select/select.component.js +133 -0
  33. package/esm2015/lib/components/settings/settings.component.js +118 -0
  34. package/esm2015/lib/components/signup/signup.component.js +139 -0
  35. package/esm2015/lib/components/steps/steps.component.js +114 -0
  36. package/esm2015/lib/components/table/table.component.js +375 -0
  37. package/esm2015/lib/components/text/text.component.js +240 -0
  38. package/esm2015/lib/components/tiles/tiles.component.js +95 -0
  39. package/esm2015/lib/components/timeout/timeout.component.js +133 -0
  40. package/esm2015/lib/components/tin-spa.component.js +26 -0
  41. package/esm2015/lib/components/users/users.component.js +373 -0
  42. package/esm2015/lib/components/viewer/viewer.component.js +92 -0
  43. package/esm2015/lib/components/viewer/viewerDialog.component.js +131 -0
  44. package/esm2015/lib/dnd.directive.js +56 -0
  45. package/esm2015/lib/modules/spa-admin.module.js +81 -0
  46. package/esm2015/lib/modules/spa-index.module.js +58 -0
  47. package/esm2015/lib/modules/spa-mat.module.js +68 -0
  48. package/esm2015/lib/modules/spa-user.module.js +55 -0
  49. package/esm2015/lib/services/auth.service.js +142 -0
  50. package/esm2015/lib/services/data.service.js +111 -0
  51. package/esm2015/lib/services/export.service.js +29 -0
  52. package/esm2015/lib/services/http.service.js +79 -0
  53. package/esm2015/lib/services/loader-interceptor.service.js +77 -0
  54. package/esm2015/lib/services/loader.service.js +17 -0
  55. package/esm2015/lib/services/log.service.js +76 -0
  56. package/esm2015/lib/services/message.service.js +52 -0
  57. package/esm2015/lib/services/storage.service.js +43 -0
  58. package/esm2015/lib/services/tin-spa.service.js +14 -0
  59. package/esm2015/lib/tin-spa.module.js +156 -0
  60. package/esm2015/public-api.js +56 -0
  61. package/esm2015/tin-spa.js +5 -0
  62. package/esm5/lib/classes/Classes.js +313 -0
  63. package/esm5/lib/classes/TinCore.js +164 -0
  64. package/esm5/lib/components/activity/activity.component.js +94 -0
  65. package/esm5/lib/components/attach/attach.component.js +195 -0
  66. package/esm5/lib/components/change-password/change-password.component.js +182 -0
  67. package/esm5/lib/components/check/check.component.js +71 -0
  68. package/esm5/lib/components/chips/chips.component.js +110 -0
  69. package/esm5/lib/components/create-account/create-account.component.js +163 -0
  70. package/esm5/lib/components/date/date.component.js +68 -0
  71. package/esm5/lib/components/datetime/datetime.component.js +59 -0
  72. package/esm5/lib/components/filter/filter.component.js +66 -0
  73. package/esm5/lib/components/html/html.component.js +104 -0
  74. package/esm5/lib/components/label/label.component.js +119 -0
  75. package/esm5/lib/components/loader/loader.component.js +56 -0
  76. package/esm5/lib/components/login/login.component.js +244 -0
  77. package/esm5/lib/components/logs/logs.component.js +198 -0
  78. package/esm5/lib/components/message/messageDialog.component.js +144 -0
  79. package/esm5/lib/components/money/currency-input-mask.directive.js +193 -0
  80. package/esm5/lib/components/money/currency-input-mask.module.js +34 -0
  81. package/esm5/lib/components/money/money.component.js +154 -0
  82. package/esm5/lib/components/nav-menu/nav-menu.component.js +207 -0
  83. package/esm5/lib/components/option/option.component.js +131 -0
  84. package/esm5/lib/components/profile/profile.component.js +203 -0
  85. package/esm5/lib/components/recover-account/recover-account.component.js +77 -0
  86. package/esm5/lib/components/roles/addRoleDialog.component.js +135 -0
  87. package/esm5/lib/components/roles/roles.component.js +218 -0
  88. package/esm5/lib/components/select/select.component.js +136 -0
  89. package/esm5/lib/components/settings/settings.component.js +122 -0
  90. package/esm5/lib/components/signup/signup.component.js +142 -0
  91. package/esm5/lib/components/steps/steps.component.js +128 -0
  92. package/esm5/lib/components/table/table.component.js +378 -0
  93. package/esm5/lib/components/text/text.component.js +244 -0
  94. package/esm5/lib/components/tiles/tiles.component.js +97 -0
  95. package/esm5/lib/components/timeout/timeout.component.js +136 -0
  96. package/esm5/lib/components/tin-spa.component.js +25 -0
  97. package/esm5/lib/components/users/users.component.js +380 -0
  98. package/esm5/lib/components/viewer/viewer.component.js +94 -0
  99. package/esm5/lib/components/viewer/viewerDialog.component.js +133 -0
  100. package/esm5/lib/dnd.directive.js +58 -0
  101. package/esm5/lib/modules/spa-admin.module.js +85 -0
  102. package/esm5/lib/modules/spa-index.module.js +62 -0
  103. package/esm5/lib/modules/spa-mat.module.js +72 -0
  104. package/esm5/lib/modules/spa-user.module.js +59 -0
  105. package/esm5/lib/services/auth.service.js +145 -0
  106. package/esm5/lib/services/data.service.js +113 -0
  107. package/esm5/lib/services/export.service.js +31 -0
  108. package/esm5/lib/services/http.service.js +81 -0
  109. package/esm5/lib/services/loader-interceptor.service.js +80 -0
  110. package/esm5/lib/services/loader.service.js +19 -0
  111. package/esm5/lib/services/log.service.js +114 -0
  112. package/esm5/lib/services/message.service.js +54 -0
  113. package/esm5/lib/services/storage.service.js +76 -0
  114. package/esm5/lib/services/tin-spa.service.js +17 -0
  115. package/esm5/lib/tin-spa.module.js +160 -0
  116. package/esm5/public-api.js +56 -0
  117. package/esm5/tin-spa.js +5 -0
  118. package/fesm2015/tin-spa.js +6204 -0
  119. package/fesm2015/tin-spa.js.map +1 -0
  120. package/fesm5/tin-spa.js +6453 -0
  121. package/fesm5/tin-spa.js.map +1 -0
  122. package/lib/classes/Classes.d.ts +228 -375
  123. package/lib/classes/TinCore.d.ts +11 -43
  124. package/lib/components/activity/activity.component.d.ts +2 -2
  125. package/lib/components/attach/attach.component.d.ts +27 -15
  126. package/lib/{pages → components}/change-password/change-password.component.d.ts +4 -4
  127. package/lib/components/check/check.component.d.ts +3 -8
  128. package/lib/components/chips/chips.component.d.ts +2 -2
  129. package/lib/{pages → components}/create-account/create-account.component.d.ts +4 -8
  130. package/lib/components/date/date.component.d.ts +12 -24
  131. package/lib/components/datetime/datetime.component.d.ts +2 -6
  132. package/lib/components/filter/filter.component.d.ts +2 -7
  133. package/lib/components/html/html.component.d.ts +10 -11
  134. package/lib/components/label/label.component.d.ts +2 -4
  135. package/lib/components/loader/loader.component.d.ts +2 -2
  136. package/lib/components/login/login.component.d.ts +32 -0
  137. package/lib/components/logs/logs.component.d.ts +18 -0
  138. package/lib/components/message/messageDialog.component.d.ts +2 -2
  139. package/lib/components/money/currency-input-mask.directive.d.ts +2 -2
  140. package/lib/components/money/currency-input-mask.module.d.ts +2 -3
  141. package/lib/components/money/money.component.d.ts +3 -13
  142. package/lib/components/nav-menu/nav-menu.component.d.ts +4 -22
  143. package/lib/components/option/option.component.d.ts +3 -14
  144. package/lib/{pages → components}/profile/profile.component.d.ts +4 -6
  145. package/lib/{pages → components}/recover-account/recover-account.component.d.ts +3 -3
  146. package/lib/components/roles/addRoleDialog.component.d.ts +22 -0
  147. package/lib/components/roles/roles.component.d.ts +30 -0
  148. package/lib/components/select/select.component.d.ts +20 -20
  149. package/lib/{pages → components}/settings/settings.component.d.ts +3 -3
  150. package/lib/{pages → components}/signup/signup.component.d.ts +4 -4
  151. package/lib/components/steps/steps.component.d.ts +10 -19
  152. package/lib/components/table/table.component.d.ts +21 -84
  153. package/lib/components/text/text.component.d.ts +14 -36
  154. package/lib/components/tiles/tiles.component.d.ts +7 -21
  155. package/lib/components/timeout/timeout.component.d.ts +24 -0
  156. package/lib/components/tin-spa.component.d.ts +6 -3
  157. package/lib/{pages → components}/users/users.component.d.ts +18 -11
  158. package/lib/components/viewer/viewer.component.d.ts +5 -11
  159. package/lib/components/viewer/viewerDialog.component.d.ts +4 -6
  160. package/lib/dnd.directive.d.ts +11 -0
  161. package/lib/modules/spa-admin.module.d.ts +10 -10
  162. package/lib/modules/spa-index.module.d.ts +7 -8
  163. package/lib/modules/spa-mat.module.d.ts +2 -8
  164. package/lib/modules/spa-user.module.d.ts +6 -6
  165. package/lib/services/auth.service.d.ts +4 -16
  166. package/lib/services/data.service.d.ts +38 -0
  167. package/lib/services/export.service.d.ts +6 -2
  168. package/lib/services/http.service.d.ts +2 -2
  169. package/lib/services/loader-interceptor.service.d.ts +3 -4
  170. package/lib/services/loader.service.d.ts +2 -2
  171. package/lib/services/log.service.d.ts +3 -3
  172. package/lib/services/message.service.d.ts +3 -4
  173. package/lib/services/storage.service.d.ts +2 -2
  174. package/lib/services/tin-spa.service.d.ts +2 -2
  175. package/lib/tin-spa.module.d.ts +34 -83
  176. package/package.json +16 -24
  177. package/public-api.d.ts +16 -47
  178. package/esm2020/lib/classes/Classes.mjs +0 -112
  179. package/esm2020/lib/classes/LibClasses.mjs +0 -180
  180. package/esm2020/lib/classes/TinCore.mjs +0 -568
  181. package/esm2020/lib/components/activity/activity.component.mjs +0 -24
  182. package/esm2020/lib/components/alert/alert.component.mjs +0 -43
  183. package/esm2020/lib/components/attach/attach.component.mjs +0 -102
  184. package/esm2020/lib/components/capsules/capsules.component.mjs +0 -63
  185. package/esm2020/lib/components/cards/cards.component.mjs +0 -103
  186. package/esm2020/lib/components/check/check.component.mjs +0 -67
  187. package/esm2020/lib/components/chips/chips.component.mjs +0 -58
  188. package/esm2020/lib/components/date/date.component.mjs +0 -103
  189. package/esm2020/lib/components/datetime/datetime.component.mjs +0 -55
  190. package/esm2020/lib/components/email/email.component.mjs +0 -133
  191. package/esm2020/lib/components/filter/filter.component.mjs +0 -58
  192. package/esm2020/lib/components/form/form.component.mjs +0 -296
  193. package/esm2020/lib/components/html/html.component.mjs +0 -34
  194. package/esm2020/lib/components/label/label.component.mjs +0 -31
  195. package/esm2020/lib/components/list-dialog/list-dialog.component.mjs +0 -68
  196. package/esm2020/lib/components/loader/loader.component.mjs +0 -25
  197. package/esm2020/lib/components/message/messageDialog.component.mjs +0 -33
  198. package/esm2020/lib/components/money/currency-input-mask.directive.mjs +0 -185
  199. package/esm2020/lib/components/money/currency-input-mask.module.mjs +0 -28
  200. package/esm2020/lib/components/money/money.component.mjs +0 -137
  201. package/esm2020/lib/components/multi-select/multi-select.component.mjs +0 -165
  202. package/esm2020/lib/components/multi-text/multi-text.component.mjs +0 -208
  203. package/esm2020/lib/components/nav-menu/nav-menu.component.mjs +0 -88
  204. package/esm2020/lib/components/notes/notes.component.mjs +0 -62
  205. package/esm2020/lib/components/number/number.component.mjs +0 -131
  206. package/esm2020/lib/components/option/option.component.mjs +0 -92
  207. package/esm2020/lib/components/page/page.component.mjs +0 -101
  208. package/esm2020/lib/components/search/search.component.mjs +0 -36
  209. package/esm2020/lib/components/select/select.component.mjs +0 -75
  210. package/esm2020/lib/components/select-bitwise/select-bitwise.component.mjs +0 -87
  211. package/esm2020/lib/components/select-common/select-common.component.mjs +0 -206
  212. package/esm2020/lib/components/select-internal/select-internal.component.mjs +0 -75
  213. package/esm2020/lib/components/select-lite/select-lite.component.mjs +0 -18
  214. package/esm2020/lib/components/statuses/statuses.component.mjs +0 -44
  215. package/esm2020/lib/components/steps/steps.component.mjs +0 -112
  216. package/esm2020/lib/components/suffix/suffix.component.mjs +0 -70
  217. package/esm2020/lib/components/table/detailsDialog.component.mjs +0 -406
  218. package/esm2020/lib/components/table/table.component.mjs +0 -440
  219. package/esm2020/lib/components/table-action/table-action.component.mjs +0 -80
  220. package/esm2020/lib/components/table-header/table-header.component.mjs +0 -148
  221. package/esm2020/lib/components/table-internal/detailsDialog-internal.component.mjs +0 -406
  222. package/esm2020/lib/components/table-internal/table-internal.component.mjs +0 -441
  223. package/esm2020/lib/components/table-lite/detailsDialog-lite.component.mjs +0 -404
  224. package/esm2020/lib/components/table-lite/table-lite.component.mjs +0 -441
  225. package/esm2020/lib/components/table-row/table-row.component.mjs +0 -93
  226. package/esm2020/lib/components/tabs/tabs.component.mjs +0 -74
  227. package/esm2020/lib/components/text/text.component.mjs +0 -255
  228. package/esm2020/lib/components/tiles/tiles.component.mjs +0 -99
  229. package/esm2020/lib/components/tin-spa.component.mjs +0 -19
  230. package/esm2020/lib/components/viewer/viewer.component.mjs +0 -83
  231. package/esm2020/lib/components/viewer/viewerDialog.component.mjs +0 -95
  232. package/esm2020/lib/modules/admin/admin-routing.module.mjs +0 -71
  233. package/esm2020/lib/modules/admin/admin.module.mjs +0 -26
  234. package/esm2020/lib/modules/index/index-routing.module.mjs +0 -27
  235. package/esm2020/lib/modules/index/index.module.mjs +0 -26
  236. package/esm2020/lib/modules/spa-admin.module.mjs +0 -71
  237. package/esm2020/lib/modules/spa-index.module.mjs +0 -54
  238. package/esm2020/lib/modules/spa-mat.module.mjs +0 -84
  239. package/esm2020/lib/modules/spa-user.module.mjs +0 -47
  240. package/esm2020/lib/modules/user/user-routing.module.mjs +0 -23
  241. package/esm2020/lib/modules/user/user.module.mjs +0 -26
  242. package/esm2020/lib/pages/accounts/accountDialog.component.mjs +0 -56
  243. package/esm2020/lib/pages/accounts/accounts.component.mjs +0 -70
  244. package/esm2020/lib/pages/app-models/app-models.component.mjs +0 -56
  245. package/esm2020/lib/pages/approvals/approvals.component.mjs +0 -19
  246. package/esm2020/lib/pages/approvals-config/approvals-config.component.mjs +0 -165
  247. package/esm2020/lib/pages/bug/bug.component.mjs +0 -14
  248. package/esm2020/lib/pages/change-password/change-password.component.mjs +0 -92
  249. package/esm2020/lib/pages/create-account/create-account.component.mjs +0 -110
  250. package/esm2020/lib/pages/customers/customers.component.mjs +0 -21
  251. package/esm2020/lib/pages/departments/departments.component.mjs +0 -22
  252. package/esm2020/lib/pages/employees/employees.component.mjs +0 -20
  253. package/esm2020/lib/pages/grades/grades.component.mjs +0 -14
  254. package/esm2020/lib/pages/inventory/inventory.component.mjs +0 -99
  255. package/esm2020/lib/pages/inventory/quantityDialog.component.mjs +0 -53
  256. package/esm2020/lib/pages/invitations-table/invitations-table.component.mjs +0 -71
  257. package/esm2020/lib/pages/login/login.component.mjs +0 -166
  258. package/esm2020/lib/pages/logs/logs.component.mjs +0 -42
  259. package/esm2020/lib/pages/membership/membership.component.mjs +0 -44
  260. package/esm2020/lib/pages/notifications/notifications.component.mjs +0 -90
  261. package/esm2020/lib/pages/notifications-config/notifications-config.component.mjs +0 -113
  262. package/esm2020/lib/pages/plans/plans.component.mjs +0 -44
  263. package/esm2020/lib/pages/positions/positions.component.mjs +0 -21
  264. package/esm2020/lib/pages/profile/profile.component.mjs +0 -94
  265. package/esm2020/lib/pages/recover-account/recover-account.component.mjs +0 -46
  266. package/esm2020/lib/pages/roles/addRoleDialog.component.mjs +0 -60
  267. package/esm2020/lib/pages/roles/roles.component.mjs +0 -151
  268. package/esm2020/lib/pages/settings/settings.component.mjs +0 -54
  269. package/esm2020/lib/pages/signup/signup.component.mjs +0 -50
  270. package/esm2020/lib/pages/suppliers/suppliers.component.mjs +0 -22
  271. package/esm2020/lib/pages/tasks/tasks.component.mjs +0 -86
  272. package/esm2020/lib/pages/tenant-settings/tenant-settings.component.mjs +0 -228
  273. package/esm2020/lib/pages/tenants/tenants.component.mjs +0 -47
  274. package/esm2020/lib/pages/transactions/transactDialog.component.mjs +0 -80
  275. package/esm2020/lib/pages/transactions/transactions.component.mjs +0 -101
  276. package/esm2020/lib/pages/users/users.component.mjs +0 -167
  277. package/esm2020/lib/pages/welcome/welcome.component.mjs +0 -86
  278. package/esm2020/lib/pipes/camelToWords.pipe.mjs +0 -17
  279. package/esm2020/lib/select-context.directive.mjs +0 -23
  280. package/esm2020/lib/services/auth.service.mjs +0 -175
  281. package/esm2020/lib/services/button.service.mjs +0 -162
  282. package/esm2020/lib/services/condition.service.mjs +0 -32
  283. package/esm2020/lib/services/csv.service.mjs +0 -49
  284. package/esm2020/lib/services/datalib.service.mjs +0 -860
  285. package/esm2020/lib/services/dialog.service.mjs +0 -125
  286. package/esm2020/lib/services/export.service.mjs +0 -16
  287. package/esm2020/lib/services/http.service.mjs +0 -79
  288. package/esm2020/lib/services/loader-interceptor.service.mjs +0 -86
  289. package/esm2020/lib/services/loader.service.mjs +0 -17
  290. package/esm2020/lib/services/log.service.mjs +0 -77
  291. package/esm2020/lib/services/message.service.mjs +0 -59
  292. package/esm2020/lib/services/notifications.service.mjs +0 -33
  293. package/esm2020/lib/services/storage.service.mjs +0 -34
  294. package/esm2020/lib/services/table-config.service.mjs +0 -78
  295. package/esm2020/lib/services/tin-spa.service.mjs +0 -14
  296. package/esm2020/lib/tin-spa.module.mjs +0 -225
  297. package/esm2020/public-api.mjs +0 -90
  298. package/esm2020/tin-spa.mjs +0 -5
  299. package/fesm2015/tin-spa.mjs +0 -11736
  300. package/fesm2015/tin-spa.mjs.map +0 -1
  301. package/fesm2020/tin-spa.mjs +0 -11738
  302. package/fesm2020/tin-spa.mjs.map +0 -1
  303. package/lib/classes/LibClasses.d.ts +0 -173
  304. package/lib/components/alert/alert.component.d.ts +0 -15
  305. package/lib/components/capsules/capsules.component.d.ts +0 -26
  306. package/lib/components/cards/cards.component.d.ts +0 -39
  307. package/lib/components/email/email.component.d.ts +0 -40
  308. package/lib/components/form/form.component.d.ts +0 -47
  309. package/lib/components/list-dialog/list-dialog.component.d.ts +0 -23
  310. package/lib/components/multi-select/multi-select.component.d.ts +0 -47
  311. package/lib/components/multi-text/multi-text.component.d.ts +0 -56
  312. package/lib/components/notes/notes.component.d.ts +0 -19
  313. package/lib/components/number/number.component.d.ts +0 -41
  314. package/lib/components/page/page.component.d.ts +0 -38
  315. package/lib/components/search/search.component.d.ts +0 -15
  316. package/lib/components/select-bitwise/select-bitwise.component.d.ts +0 -31
  317. package/lib/components/select-common/select-common.component.d.ts +0 -53
  318. package/lib/components/select-internal/select-internal.component.d.ts +0 -23
  319. package/lib/components/select-lite/select-lite.component.d.ts +0 -8
  320. package/lib/components/statuses/statuses.component.d.ts +0 -12
  321. package/lib/components/suffix/suffix.component.d.ts +0 -23
  322. package/lib/components/table/detailsDialog.component.d.ts +0 -86
  323. package/lib/components/table-action/table-action.component.d.ts +0 -25
  324. package/lib/components/table-header/table-header.component.d.ts +0 -46
  325. package/lib/components/table-internal/detailsDialog-internal.component.d.ts +0 -86
  326. package/lib/components/table-internal/table-internal.component.d.ts +0 -91
  327. package/lib/components/table-lite/detailsDialog-lite.component.d.ts +0 -86
  328. package/lib/components/table-lite/table-lite.component.d.ts +0 -91
  329. package/lib/components/table-row/table-row.component.d.ts +0 -31
  330. package/lib/components/tabs/tabs.component.d.ts +0 -32
  331. package/lib/modules/admin/admin-routing.module.d.ts +0 -7
  332. package/lib/modules/admin/admin.module.d.ts +0 -9
  333. package/lib/modules/index/index-routing.module.d.ts +0 -7
  334. package/lib/modules/index/index.module.d.ts +0 -9
  335. package/lib/modules/user/user-routing.module.d.ts +0 -7
  336. package/lib/modules/user/user.module.d.ts +0 -9
  337. package/lib/pages/accounts/accountDialog.component.d.ts +0 -27
  338. package/lib/pages/accounts/accounts.component.d.ts +0 -25
  339. package/lib/pages/app-models/app-models.component.d.ts +0 -15
  340. package/lib/pages/approvals/approvals.component.d.ts +0 -10
  341. package/lib/pages/approvals-config/approvals-config.component.d.ts +0 -24
  342. package/lib/pages/bug/bug.component.d.ts +0 -8
  343. package/lib/pages/customers/customers.component.d.ts +0 -12
  344. package/lib/pages/departments/departments.component.d.ts +0 -14
  345. package/lib/pages/employees/employees.component.d.ts +0 -12
  346. package/lib/pages/grades/grades.component.d.ts +0 -8
  347. package/lib/pages/inventory/inventory.component.d.ts +0 -25
  348. package/lib/pages/inventory/quantityDialog.component.d.ts +0 -23
  349. package/lib/pages/invitations-table/invitations-table.component.d.ts +0 -19
  350. package/lib/pages/login/login.component.d.ts +0 -46
  351. package/lib/pages/logs/logs.component.d.ts +0 -14
  352. package/lib/pages/membership/membership.component.d.ts +0 -13
  353. package/lib/pages/notifications/notifications.component.d.ts +0 -16
  354. package/lib/pages/notifications-config/notifications-config.component.d.ts +0 -17
  355. package/lib/pages/plans/plans.component.d.ts +0 -13
  356. package/lib/pages/positions/positions.component.d.ts +0 -12
  357. package/lib/pages/roles/addRoleDialog.component.d.ts +0 -24
  358. package/lib/pages/roles/roles.component.d.ts +0 -42
  359. package/lib/pages/suppliers/suppliers.component.d.ts +0 -14
  360. package/lib/pages/tasks/tasks.component.d.ts +0 -27
  361. package/lib/pages/tenant-settings/tenant-settings.component.d.ts +0 -47
  362. package/lib/pages/tenants/tenants.component.d.ts +0 -17
  363. package/lib/pages/transactions/transactDialog.component.d.ts +0 -26
  364. package/lib/pages/transactions/transactions.component.d.ts +0 -31
  365. package/lib/pages/welcome/welcome.component.d.ts +0 -25
  366. package/lib/pipes/camelToWords.pipe.d.ts +0 -7
  367. package/lib/select-context.directive.d.ts +0 -10
  368. package/lib/services/button.service.d.ts +0 -30
  369. package/lib/services/condition.service.d.ts +0 -10
  370. package/lib/services/csv.service.d.ts +0 -10
  371. package/lib/services/datalib.service.d.ts +0 -125
  372. package/lib/services/dialog.service.d.ts +0 -20
  373. package/lib/services/notifications.service.d.ts +0 -12
  374. package/lib/services/table-config.service.d.ts +0 -17
  375. /package/{index.d.ts → tin-spa.d.ts} +0 -0
@@ -3,30 +3,21 @@ import { Router, CanActivate, ActivatedRoute } from '@angular/router';
3
3
  import { BehaviorSubject } from 'rxjs';
4
4
  import { StorageService } from './storage.service';
5
5
  import { LogService } from './log.service';
6
+ import { Role } from '../classes/Classes';
6
7
  import { HttpService } from './http.service';
7
- import { SocialAuthService } from '@abacritt/angularx-social-login';
8
- import { Role } from '../classes/LibClasses';
9
8
  import * as i0 from "@angular/core";
10
9
  export declare class AuthService implements CanActivate {
11
10
  private _route;
12
- private socialService;
13
11
  private storage;
14
12
  router: Router;
15
13
  private httpService;
16
14
  private messageService;
17
15
  private logService;
18
- constructor(_route: ActivatedRoute, socialService: SocialAuthService, storage: StorageService, router: Router, httpService: HttpService, messageService: MessageService, logService: LogService);
19
- clearSession(): void;
20
- sessionExpired(): void;
21
- logoff(): void;
16
+ constructor(_route: ActivatedRoute, storage: StorageService, router: Router, httpService: HttpService, messageService: MessageService, logService: LogService);
22
17
  private loggedin;
23
18
  private loggedinSource;
24
19
  loggedinObserv: import("rxjs").Observable<boolean>;
25
20
  Updateloggedin(loggedin: boolean): void;
26
- private autoLogin;
27
- private autoLoginSource;
28
- autoLoginObserv: import("rxjs").Observable<boolean>;
29
- UpdateAutoLogin(autoLogin: boolean): void;
30
21
  private token;
31
22
  tokenSource: BehaviorSubject<string>;
32
23
  tokenObserv: import("rxjs").Observable<string>;
@@ -50,12 +41,9 @@ export declare class AuthService implements CanActivate {
50
41
  private loggedUserSource;
51
42
  loggedUserFullName: import("rxjs").Observable<string>;
52
43
  updateLoggedUserFullName(userName: string): void;
53
- private tenantNameSource;
54
- tenantNameObserv: import("rxjs").Observable<string>;
55
- updateTenantName(tenantName: string): void;
56
44
  isAuthorised(capName: string): boolean;
57
45
  isValidToken(): boolean;
58
46
  canActivate(): boolean;
59
- static ɵfac: i0.ɵɵFactoryDeclaration<AuthService, never>;
60
- static ɵprov: i0.ɵɵInjectableDeclaration<AuthService>;
47
+ static ɵfac: i0.ɵɵFactoryDef<AuthService, never>;
48
+ static ɵprov: i0.ɵɵInjectableDef<AuthService>;
61
49
  }
@@ -0,0 +1,38 @@
1
+ import { AppConfig, CapItem, User } from '../classes/Classes';
2
+ import { Observable } from 'rxjs';
3
+ import { HttpService } from './http.service';
4
+ import * as i0 from "@angular/core";
5
+ export declare class DataServiceLib {
6
+ private httpService;
7
+ constructor(httpService: HttpService);
8
+ appConfig: AppConfig;
9
+ private appConfigSource;
10
+ appConfigObserv: Observable<AppConfig>;
11
+ UpdateAppConfig(config: AppConfig): void;
12
+ capHome: CapItem;
13
+ capAdmin: CapItem;
14
+ capUsers: CapItem;
15
+ capRoles: CapItem;
16
+ capLogs: CapItem;
17
+ capSettings: CapItem;
18
+ tmpProfileuserName: string;
19
+ GetUser(): Observable<any>;
20
+ RegisterAccount(u: any): Observable<any>;
21
+ GetUserByID(val: string): Observable<any>;
22
+ UpdateUser(profile: any): Observable<any>;
23
+ UnlockUser(user: any): Observable<any>;
24
+ LockUser(user: any): Observable<any>;
25
+ DeleteUser(user: any): Observable<any>;
26
+ Login(u: User): Observable<any>;
27
+ ChangePassword(u: any): Observable<any>;
28
+ ChangePasswordAdmin(u: any): Observable<any>;
29
+ SelfReset(u: User): Observable<any>;
30
+ PostRole(role: any, action: string): Observable<any>;
31
+ PutRole(role: any): Observable<any>;
32
+ GetRole(by: string, val: string): Observable<any>;
33
+ GetLog(by: string, val: string): Observable<any>;
34
+ GetSetting(by: string, val: string): Observable<any>;
35
+ UpdateSetting(setting: any, action: string): Observable<any>;
36
+ static ɵfac: i0.ɵɵFactoryDef<DataServiceLib, never>;
37
+ static ɵprov: i0.ɵɵInjectableDef<DataServiceLib>;
38
+ }
@@ -1,6 +1,10 @@
1
1
  import * as i0 from "@angular/core";
2
2
  export declare class ExportService {
3
3
  constructor();
4
- static ɵfac: i0.ɵɵFactoryDeclaration<ExportService, never>;
5
- static ɵprov: i0.ɵɵInjectableDeclaration<ExportService>;
4
+ fileType: string;
5
+ fileExtension: string;
6
+ exportExcel(jsonData: any[], fileName: string): void;
7
+ private saveExcelFile;
8
+ static ɵfac: i0.ɵɵFactoryDef<ExportService, never>;
9
+ static ɵprov: i0.ɵɵInjectableDef<ExportService>;
6
10
  }
@@ -17,6 +17,6 @@ export declare class HttpService {
17
17
  Error(error: HttpErrorResponse): "Unauthorized" | "Connection failed";
18
18
  private httpOptions_Legacy;
19
19
  private httpOptions_Files;
20
- static ɵfac: i0.ɵɵFactoryDeclaration<HttpService, never>;
21
- static ɵprov: i0.ɵɵInjectableDeclaration<HttpService>;
20
+ static ɵfac: i0.ɵɵFactoryDef<HttpService, never>;
21
+ static ɵprov: i0.ɵɵInjectableDef<HttpService>;
22
22
  }
@@ -1,7 +1,7 @@
1
1
  import { Router } from '@angular/router';
2
2
  import { AuthService } from './auth.service';
3
3
  import { MessageService } from './message.service';
4
- import { HttpRequest, HttpHandler, HttpEvent, HttpInterceptor, HttpErrorResponse } from '@angular/common/http';
4
+ import { HttpRequest, HttpHandler, HttpEvent, HttpInterceptor } from '@angular/common/http';
5
5
  import { Observable } from 'rxjs';
6
6
  import { LoaderService } from './loader.service';
7
7
  import { LogService } from './log.service';
@@ -15,8 +15,7 @@ export declare class LoaderInterceptor implements HttpInterceptor {
15
15
  private requests;
16
16
  constructor(loaderService: LoaderService, messageService: MessageService, authService: AuthService, router: Router, logService: LogService);
17
17
  removeRequest(req: HttpRequest<any>): void;
18
- showError(userMessage: string, error: HttpErrorResponse): void;
19
18
  intercept(request: HttpRequest<any>, next: HttpHandler): Observable<HttpEvent<any>>;
20
- static ɵfac: i0.ɵɵFactoryDeclaration<LoaderInterceptor, never>;
21
- static ɵprov: i0.ɵɵInjectableDeclaration<LoaderInterceptor>;
19
+ static ɵfac: i0.ɵɵFactoryDef<LoaderInterceptor, never>;
20
+ static ɵprov: i0.ɵɵInjectableDef<LoaderInterceptor>;
22
21
  }
@@ -3,6 +3,6 @@ import * as i0 from "@angular/core";
3
3
  export declare class LoaderService {
4
4
  isLoading: BehaviorSubject<boolean>;
5
5
  constructor();
6
- static ɵfac: i0.ɵɵFactoryDeclaration<LoaderService, never>;
7
- static ɵprov: i0.ɵɵInjectableDeclaration<LoaderService>;
6
+ static ɵfac: i0.ɵɵFactoryDef<LoaderService, never>;
7
+ static ɵprov: i0.ɵɵInjectableDef<LoaderService>;
8
8
  }
@@ -1,4 +1,4 @@
1
- import { LogLevel } from "../classes/LibClasses";
1
+ import { LogLevel } from '../classes/Classes';
2
2
  import * as i0 from "@angular/core";
3
3
  export declare class LogService {
4
4
  constructor();
@@ -14,6 +14,6 @@ export declare class LogService {
14
14
  private writeToLog;
15
15
  private formatParams;
16
16
  private shouldLog;
17
- static ɵfac: i0.ɵɵFactoryDeclaration<LogService, never>;
18
- static ɵprov: i0.ɵɵInjectableDeclaration<LogService>;
17
+ static ɵfac: i0.ɵɵFactoryDef<LogService, never>;
18
+ static ɵprov: i0.ɵɵInjectableDef<LogService>;
19
19
  }
@@ -7,10 +7,9 @@ export declare class MessageService {
7
7
  dialog: MatDialog;
8
8
  constructor(snackBar: MatSnackBar, dialog: MatDialog);
9
9
  toast(msg: string): void;
10
- info(details: string): void;
11
- infoWithSubject(subject: string, details: string): void;
10
+ info(subject: string, details: string): void;
12
11
  error(details: string): void;
13
12
  confirm(msg: string): Observable<any>;
14
- static ɵfac: i0.ɵɵFactoryDeclaration<MessageService, never>;
15
- static ɵprov: i0.ɵɵInjectableDeclaration<MessageService>;
13
+ static ɵfac: i0.ɵɵFactoryDef<MessageService, never>;
14
+ static ɵprov: i0.ɵɵInjectableDef<MessageService>;
16
15
  }
@@ -5,6 +5,6 @@ export declare class StorageService {
5
5
  get(storageKey: string): Promise<any>;
6
6
  removeStorageItem(storageKey: string): Promise<void>;
7
7
  clear(): Promise<void>;
8
- static ɵfac: i0.ɵɵFactoryDeclaration<StorageService, never>;
9
- static ɵprov: i0.ɵɵInjectableDeclaration<StorageService>;
8
+ static ɵfac: i0.ɵɵFactoryDef<StorageService, never>;
9
+ static ɵprov: i0.ɵɵInjectableDef<StorageService>;
10
10
  }
@@ -1,6 +1,6 @@
1
1
  import * as i0 from "@angular/core";
2
2
  export declare class TinSpaService {
3
3
  constructor();
4
- static ɵfac: i0.ɵɵFactoryDeclaration<TinSpaService, never>;
5
- static ɵprov: i0.ɵɵInjectableDeclaration<TinSpaService>;
4
+ static ɵfac: i0.ɵɵFactoryDef<TinSpaService, never>;
5
+ static ɵprov: i0.ɵɵInjectableDef<TinSpaService>;
6
6
  }
@@ -1,86 +1,37 @@
1
1
  import * as i0 from "@angular/core";
2
- import * as i1 from "./components/tin-spa.component";
3
- import * as i2 from "./components/text/text.component";
4
- import * as i3 from "./components/check/check.component";
5
- import * as i4 from "./components/date/date.component";
6
- import * as i5 from "./components/datetime/datetime.component";
7
- import * as i6 from "./components/label/label.component";
8
- import * as i7 from "./components/select/select.component";
9
- import * as i8 from "./components/activity/activity.component";
10
- import * as i9 from "./components/filter/filter.component";
11
- import * as i10 from "./components/message/messageDialog.component";
12
- import * as i11 from "./components/money/money.component";
13
- import * as i12 from "./components/option/option.component";
14
- import * as i13 from "./components/tiles/tiles.component";
15
- import * as i14 from "./components/steps/steps.component";
16
- import * as i15 from "./components/attach/attach.component";
17
- import * as i16 from "./components/chips/chips.component";
18
- import * as i17 from "./components/loader/loader.component";
19
- import * as i18 from "./components/nav-menu/nav-menu.component";
20
- import * as i19 from "./components/table/table.component";
21
- import * as i20 from "./components/table-internal/table-internal.component";
22
- import * as i21 from "./components/table/detailsDialog.component";
23
- import * as i22 from "./components/table-internal/detailsDialog-internal.component";
24
- import * as i23 from "./components/form/form.component";
25
- import * as i24 from "./pipes/camelToWords.pipe";
26
- import * as i25 from "./components/number/number.component";
27
- import * as i26 from "./components/search/search.component";
28
- import * as i27 from "./components/viewer/viewer.component";
29
- import * as i28 from "./components/viewer/viewerDialog.component";
30
- import * as i29 from "./pages/tenant-settings/tenant-settings.component";
31
- import * as i30 from "./pages/tenants/tenants.component";
32
- import * as i31 from "./pages/bug/bug.component";
33
- import * as i32 from "./pages/membership/membership.component";
34
- import * as i33 from "./pages/plans/plans.component";
35
- import * as i34 from "./pages/customers/customers.component";
36
- import * as i35 from "./pages/inventory/inventory.component";
37
- import * as i36 from "./pages/inventory/quantityDialog.component";
38
- import * as i37 from "./pages/accounts/accounts.component";
39
- import * as i38 from "./pages/accounts/accountDialog.component";
40
- import * as i39 from "./pages/suppliers/suppliers.component";
41
- import * as i40 from "./pages/transactions/transactions.component";
42
- import * as i41 from "./pages/transactions/transactDialog.component";
43
- import * as i42 from "./components/list-dialog/list-dialog.component";
44
- import * as i43 from "./pages/tasks/tasks.component";
45
- import * as i44 from "./pages/departments/departments.component";
46
- import * as i45 from "./pages/employees/employees.component";
47
- import * as i46 from "./pages/positions/positions.component";
48
- import * as i47 from "./pages/grades/grades.component";
49
- import * as i48 from "./pages/welcome/welcome.component";
50
- import * as i49 from "./pages/notifications/notifications.component";
51
- import * as i50 from "./pages/invitations-table/invitations-table.component";
52
- import * as i51 from "./components/table-header/table-header.component";
53
- import * as i52 from "./components/table-row/table-row.component";
54
- import * as i53 from "./components/table-action/table-action.component";
55
- import * as i54 from "./components/alert/alert.component";
56
- import * as i55 from "./components/email/email.component";
57
- import * as i56 from "./components/page/page.component";
58
- import * as i57 from "./components/select-common/select-common.component";
59
- import * as i58 from "./components/select-internal/select-internal.component";
60
- import * as i59 from "./components/suffix/suffix.component";
61
- import * as i60 from "./select-context.directive";
62
- import * as i61 from "./components/select-lite/select-lite.component";
63
- import * as i62 from "./components/table-lite/table-lite.component";
64
- import * as i63 from "./components/table-lite/detailsDialog-lite.component";
65
- import * as i64 from "./pages/approvals/approvals.component";
66
- import * as i65 from "./pages/approvals-config/approvals-config.component";
67
- import * as i66 from "./components/multi-text/multi-text.component";
68
- import * as i67 from "./components/multi-select/multi-select.component";
69
- import * as i68 from "./components/select-bitwise/select-bitwise.component";
70
- import * as i69 from "./pages/app-models/app-models.component";
71
- import * as i70 from "./pages/notifications-config/notifications-config.component";
72
- import * as i71 from "./components/html/html.component";
73
- import * as i72 from "./components/notes/notes.component";
74
- import * as i73 from "./components/capsules/capsules.component";
75
- import * as i74 from "./components/cards/cards.component";
76
- import * as i75 from "./components/tabs/tabs.component";
77
- import * as i76 from "./components/statuses/statuses.component";
78
- import * as i77 from "./modules/spa-mat.module";
79
- import * as i78 from "@angular/common/http";
80
- import * as i79 from "./components/money/currency-input-mask.module";
81
- import * as i80 from "ngx-doc-viewer";
2
+ import * as i1 from "./dnd.directive";
3
+ import * as i2 from "./components/tin-spa.component";
4
+ import * as i3 from "./components/message/messageDialog.component";
5
+ import * as i4 from "./components/nav-menu/nav-menu.component";
6
+ import * as i5 from "./components/loader/loader.component";
7
+ import * as i6 from "./components/timeout/timeout.component";
8
+ import * as i7 from "./components/table/table.component";
9
+ import * as i8 from "./components/tiles/tiles.component";
10
+ import * as i9 from "./components/date/date.component";
11
+ import * as i10 from "./components/text/text.component";
12
+ import * as i11 from "./components/viewer/viewer.component";
13
+ import * as i12 from "./components/select/select.component";
14
+ import * as i13 from "./components/check/check.component";
15
+ import * as i14 from "./components/attach/attach.component";
16
+ import * as i15 from "./components/datetime/datetime.component";
17
+ import * as i16 from "./components/money/money.component";
18
+ import * as i17 from "./components/chips/chips.component";
19
+ import * as i18 from "./components/activity/activity.component";
20
+ import * as i19 from "./components/viewer/viewerDialog.component";
21
+ import * as i20 from "./components/html/html.component";
22
+ import * as i21 from "./components/option/option.component";
23
+ import * as i22 from "./components/label/label.component";
24
+ import * as i23 from "./components/steps/steps.component";
25
+ import * as i24 from "./components/filter/filter.component";
26
+ import * as i25 from "@angular/forms";
27
+ import * as i26 from "@angular/common";
28
+ import * as i27 from "./modules/spa-mat.module";
29
+ import * as i28 from "angular2-moment";
30
+ import * as i29 from "ngx-doc-viewer";
31
+ import * as i30 from "@kolkov/angular-editor";
32
+ import * as i31 from "./components/money/currency-input-mask.module";
33
+ import * as i32 from "@ng-idle/keepalive";
82
34
  export declare class TinSpaModule {
83
- static ɵfac: i0.ɵɵFactoryDeclaration<TinSpaModule, never>;
84
- static ɵmod: i0.ɵɵNgModuleDeclaration<TinSpaModule, [typeof i1.TinSpaComponent, typeof i2.TextComponent, typeof i3.CheckComponent, typeof i4.DateComponent, typeof i5.DatetimeComponent, typeof i6.LabelComponent, typeof i7.SelectComponent, typeof i8.ActivityComponent, typeof i9.FilterComponent, typeof i10.messageDialog, typeof i11.MoneyComponent, typeof i12.OptionComponent, typeof i13.TilesComponent, typeof i14.StepsComponent, typeof i15.AttachComponent, typeof i16.ChipsComponent, typeof i17.LoaderComponent, typeof i18.NavMenuComponent, typeof i19.TableComponent, typeof i20.TableInternalComponent, typeof i21.DetailsDialog, typeof i22.DetailsDialogInternal, typeof i23.FormComponent, typeof i24.CamelToWordsPipe, typeof i25.NumberComponent, typeof i26.SearchComponent, typeof i27.ViewerComponent, typeof i28.viewerDialog, typeof i29.TenantSettingsComponent, typeof i30.TenantsComponent, typeof i31.BugComponent, typeof i32.MembershipComponent, typeof i33.PlansComponent, typeof i34.CustomersComponent, typeof i35.InventoryComponent, typeof i36.quantityDialog, typeof i37.AccountsComponent, typeof i38.accountDialog, typeof i39.SuppliersComponent, typeof i40.TransactionsComponent, typeof i41.transactDialog, typeof i42.ListDialogComponent, typeof i43.TasksComponent, typeof i44.DepartmentsComponent, typeof i45.EmployeesComponent, typeof i46.PositionsComponent, typeof i47.GradesComponent, typeof i48.WelcomeComponent, typeof i49.NotificationsComponent, typeof i50.InvitationsTableComponent, typeof i51.TableHeaderComponent, typeof i52.TableRowComponent, typeof i53.TableActionComponent, typeof i54.AlertComponent, typeof i55.EmailComponent, typeof i56.PageComponent, typeof i57.SelectCommonComponent, typeof i58.SelectInternalComponent, typeof i59.SuffixComponent, typeof i60.SelectContextDirective, typeof i61.SelectLiteComponent, typeof i62.TableLiteComponent, typeof i63.DetailsDialogLite, typeof i64.ApprovalsComponent, typeof i65.ApprovalsConfigComponent, typeof i66.MultiTextComponent, typeof i67.MultiSelectComponent, typeof i68.SelectBitwiseComponent, typeof i69.AppModelsComponent, typeof i70.NotificationsConfigComponent, typeof i71.HtmlComponent, typeof i72.NotesComponent, typeof i73.CapsulesComponent, typeof i74.CardsComponent, typeof i75.TabsComponent, typeof i76.StatusesComponent], [typeof i77.SpaMatModule, typeof i78.HttpClientModule, typeof i79.CurrencyInputModule, typeof i80.NgxDocViewerModule], [typeof i1.TinSpaComponent, typeof i77.SpaMatModule, typeof i54.AlertComponent, typeof i2.TextComponent, typeof i66.MultiTextComponent, typeof i10.messageDialog, typeof i18.NavMenuComponent, typeof i17.LoaderComponent, typeof i13.TilesComponent, typeof i4.DateComponent, typeof i7.SelectComponent, typeof i68.SelectBitwiseComponent, typeof i67.MultiSelectComponent, typeof i5.DatetimeComponent, typeof i3.CheckComponent, typeof i15.AttachComponent, typeof i11.MoneyComponent, typeof i16.ChipsComponent, typeof i8.ActivityComponent, typeof i12.OptionComponent, typeof i6.LabelComponent, typeof i14.StepsComponent, typeof i9.FilterComponent, typeof i19.TableComponent, typeof i21.DetailsDialog, typeof i23.FormComponent, typeof i25.NumberComponent, typeof i26.SearchComponent, typeof i27.ViewerComponent, typeof i28.viewerDialog, typeof i42.ListDialogComponent, typeof i34.CustomersComponent, typeof i37.AccountsComponent, typeof i35.InventoryComponent, typeof i39.SuppliersComponent, typeof i40.TransactionsComponent, typeof i42.ListDialogComponent, typeof i43.TasksComponent, typeof i44.DepartmentsComponent, typeof i45.EmployeesComponent, typeof i46.PositionsComponent, typeof i47.GradesComponent, typeof i48.WelcomeComponent, typeof i55.EmailComponent, typeof i56.PageComponent, typeof i71.HtmlComponent, typeof i72.NotesComponent, typeof i73.CapsulesComponent, typeof i75.TabsComponent, typeof i76.StatusesComponent]>;
85
- static ɵinj: i0.ɵɵInjectorDeclaration<TinSpaModule>;
35
+ static ɵmod: i0.ɵɵNgModuleDefWithMeta<TinSpaModule, [typeof i1.DndDirective, typeof i2.TinSpaComponent, typeof i3.messageDialog, typeof i4.NavMenuComponent, typeof i5.LoaderComponent, typeof i6.TimeoutComponent, typeof i7.TableComponent, typeof i8.TilesComponent, typeof i9.DateComponent, typeof i10.TextComponent, typeof i11.ViewerComponent, typeof i12.SelectComponent, typeof i13.CheckComponent, typeof i14.AttachComponent, typeof i15.DatetimeComponent, typeof i16.MoneyComponent, typeof i17.ChipsComponent, typeof i18.ActivityComponent, typeof i19.viewerDialog, typeof i20.HtmlComponent, typeof i21.OptionComponent, typeof i22.LabelComponent, typeof i23.StepsComponent, typeof i24.FilterComponent], [typeof i25.ReactiveFormsModule, typeof i26.CommonModule, typeof i25.FormsModule, typeof i25.ReactiveFormsModule, typeof i27.SpaMatModule, typeof i28.MomentModule, typeof i29.NgxDocViewerModule, typeof i30.AngularEditorModule, typeof i31.CurrencyInputModule, typeof i32.NgIdleKeepaliveModule], [typeof i26.CommonModule, typeof i25.FormsModule, typeof i27.SpaMatModule, typeof i2.TinSpaComponent, typeof i3.messageDialog, typeof i4.NavMenuComponent, typeof i5.LoaderComponent, typeof i6.TimeoutComponent, typeof i7.TableComponent, typeof i8.TilesComponent, typeof i9.DateComponent, typeof i11.ViewerComponent, typeof i12.SelectComponent, typeof i10.TextComponent, typeof i15.DatetimeComponent, typeof i13.CheckComponent, typeof i14.AttachComponent, typeof i16.MoneyComponent, typeof i17.ChipsComponent, typeof i18.ActivityComponent, typeof i20.HtmlComponent, typeof i21.OptionComponent, typeof i22.LabelComponent, typeof i23.StepsComponent, typeof i24.FilterComponent]>;
36
+ static ɵinj: i0.ɵɵInjectorDef<TinSpaModule>;
86
37
  }
package/package.json CHANGED
@@ -1,31 +1,23 @@
1
1
  {
2
2
  "name": "tin-spa",
3
- "version": "2.13.15",
3
+ "version": "9.1.0",
4
4
  "peerDependencies": {
5
- "@angular/common": "^14.2.0",
6
- "@angular/core": "^14.2.0"
5
+ "@angular/common": "^9.1.12",
6
+ "@angular/core": "^9.1.12"
7
7
  },
8
+ "main": "bundles/tin-spa.umd.js",
9
+ "module": "fesm5/tin-spa.js",
10
+ "es2015": "fesm2015/tin-spa.js",
11
+ "esm5": "esm5/tin-spa.js",
12
+ "esm2015": "esm2015/tin-spa.js",
13
+ "fesm5": "fesm5/tin-spa.js",
14
+ "fesm2015": "fesm2015/tin-spa.js",
15
+ "typings": "tin-spa.d.ts",
16
+ "sideEffects": false,
8
17
  "dependencies": {
9
- "tslib": "^2.3.0"
18
+ "tslib": "^1.10.0"
10
19
  },
11
- "module": "fesm2015/tin-spa.mjs",
12
- "es2020": "fesm2020/tin-spa.mjs",
13
- "esm2020": "esm2020/tin-spa.mjs",
14
- "fesm2020": "fesm2020/tin-spa.mjs",
15
- "fesm2015": "fesm2015/tin-spa.mjs",
16
- "typings": "index.d.ts",
17
- "exports": {
18
- "./package.json": {
19
- "default": "./package.json"
20
- },
21
- ".": {
22
- "types": "./index.d.ts",
23
- "esm2020": "./esm2020/tin-spa.mjs",
24
- "es2020": "./fesm2020/tin-spa.mjs",
25
- "es2015": "./fesm2015/tin-spa.mjs",
26
- "node": "./fesm2015/tin-spa.mjs",
27
- "default": "./fesm2020/tin-spa.mjs"
28
- }
29
- },
30
- "sideEffects": false
20
+ "scripts": {
21
+ "prepublishOnly": "node --eval \"console.error('ERROR: Trying to publish a package that has been compiled by Ivy. This is not allowed.\\nPlease delete and rebuild the package, without compiling with Ivy, before attempting to publish.\\n')\" && exit 1"
22
+ }
31
23
  }
package/public-api.d.ts CHANGED
@@ -3,11 +3,9 @@ export * from './lib/services/storage.service';
3
3
  export * from './lib/services/message.service';
4
4
  export * from './lib/services/export.service';
5
5
  export * from './lib/services/auth.service';
6
- export * from './lib/services/datalib.service';
6
+ export * from './lib/services/data.service';
7
7
  export * from './lib/services/log.service';
8
8
  export * from './lib/services/http.service';
9
- export * from './lib/services/loader.service';
10
- export * from './lib/services/dialog.service';
11
9
  export * from './lib/classes/Classes';
12
10
  export * from './lib/classes/TinCore';
13
11
  export * from './lib/tin-spa.module';
@@ -15,65 +13,36 @@ export * from './lib/modules/spa-mat.module';
15
13
  export * from './lib/modules/spa-index.module';
16
14
  export * from './lib/modules/spa-user.module';
17
15
  export * from './lib/modules/spa-admin.module';
18
- export * from './lib/modules/index/index.module';
19
- export * from './lib/modules/admin/admin.module';
20
- export * from './lib/modules/user/user.module';
21
16
  export * from './lib/components/tin-spa.component';
17
+ export * from './lib/components/table/table.component';
22
18
  export * from './lib/components/tiles/tiles.component';
23
- export * from './lib/components/alert/alert.component';
24
19
  export * from './lib/components/date/date.component';
25
20
  export * from './lib/components/text/text.component';
26
- export * from './lib/components/multi-text/multi-text.component';
27
21
  export * from './lib/components/label/label.component';
28
22
  export * from './lib/components/datetime/datetime.component';
29
23
  export * from './lib/components/select/select.component';
30
- export * from './lib/components/multi-select/multi-select.component';
31
- export * from './lib/components/select-bitwise/select-bitwise.component';
32
24
  export * from './lib/components/attach/attach.component';
33
25
  export * from './lib/components/check/check.component';
26
+ export * from './lib/components/viewer/viewer.component';
34
27
  export * from './lib/components/money/money.component';
35
28
  export * from './lib/components/chips/chips.component';
36
29
  export * from './lib/components/activity/activity.component';
30
+ export * from './lib/components/html/html.component';
37
31
  export * from './lib/components/option/option.component';
38
32
  export * from './lib/components/steps/steps.component';
39
33
  export * from './lib/components/filter/filter.component';
40
34
  export * from './lib/components/message/messageDialog.component';
41
35
  export * from './lib/components/loader/loader.component';
42
- export * from './lib/components/table/table.component';
43
- export * from './lib/components/table/detailsDialog.component';
44
- export * from './lib/components/form/form.component';
45
- export * from './lib/components/number/number.component';
46
- export * from './lib/components/search/search.component';
47
- export * from './lib/components/viewer/viewer.component';
48
- export * from './lib/components/viewer/viewerDialog.component';
36
+ export * from './lib/components/users/users.component';
37
+ export * from './lib/components/login/login.component';
49
38
  export * from './lib/components/nav-menu/nav-menu.component';
50
- export * from './lib/components/list-dialog/list-dialog.component';
51
- export * from './lib/components/email/email.component';
52
- export * from './lib/components/page/page.component';
53
- export * from './lib/components/html/html.component';
54
- export * from './lib/components/notes/notes.component';
55
- export * from './lib/components/capsules/capsules.component';
56
- export * from './lib/components/tabs/tabs.component';
57
- export * from './lib/components/statuses/statuses.component';
58
- export * from './lib/pages/transactions/transactions.component';
59
- export * from './lib/pages/tasks/tasks.component';
60
- export * from './lib/pages/departments/departments.component';
61
- export * from './lib/pages/employees/employees.component';
62
- export * from './lib/pages/positions/positions.component';
63
- export * from './lib/pages/grades/grades.component';
64
- export * from './lib/pages/welcome/welcome.component';
65
- export * from './lib/pages/customers/customers.component';
66
- export * from './lib/pages/inventory/inventory.component';
67
- export * from './lib/pages/accounts/accounts.component';
68
- export * from './lib/pages/suppliers/suppliers.component';
69
- export * from './lib/pages/users/users.component';
70
- export * from './lib/pages/login/login.component';
71
- export * from './lib/pages/roles/roles.component';
72
- export * from './lib/pages/roles/addRoleDialog.component';
73
- export * from './lib/pages/signup/signup.component';
74
- export * from './lib/pages/change-password/change-password.component';
75
- export * from './lib/pages/profile/profile.component';
76
- export * from './lib/pages/recover-account/recover-account.component';
77
- export * from './lib/pages/create-account/create-account.component';
78
- export * from './lib/pages/logs/logs.component';
79
- export * from './lib/pages/settings/settings.component';
39
+ export * from './lib/components/roles/roles.component';
40
+ export * from './lib/components/roles/addRoleDialog.component';
41
+ export * from './lib/components/signup/signup.component';
42
+ export * from './lib/components/change-password/change-password.component';
43
+ export * from './lib/components/profile/profile.component';
44
+ export * from './lib/components/recover-account/recover-account.component';
45
+ export * from './lib/components/create-account/create-account.component';
46
+ export * from './lib/components/timeout/timeout.component';
47
+ export * from './lib/components/logs/logs.component';
48
+ export * from './lib/components/settings/settings.component';
@@ -1,112 +0,0 @@
1
- export var RoleAccess;
2
- (function (RoleAccess) {
3
- RoleAccess[RoleAccess["None"] = 0] = "None";
4
- RoleAccess[RoleAccess["View"] = 1] = "View";
5
- RoleAccess[RoleAccess["Edit"] = 2] = "Edit";
6
- RoleAccess[RoleAccess["Create"] = 3] = "Create";
7
- RoleAccess[RoleAccess["Full"] = 4] = "Full";
8
- })(RoleAccess || (RoleAccess = {}));
9
- export var DetailsSource;
10
- (function (DetailsSource) {
11
- DetailsSource[DetailsSource["Row"] = 0] = "Row";
12
- DetailsSource[DetailsSource["Url"] = 1] = "Url";
13
- })(DetailsSource || (DetailsSource = {}));
14
- export class dialogOptions {
15
- }
16
- export class DetailsDialogConfig {
17
- }
18
- export class Action {
19
- }
20
- export class SearchConfig {
21
- }
22
- export class SecurityConfig {
23
- }
24
- export class AlertMessage {
25
- }
26
- export class AlertConfig {
27
- }
28
- export class NotesConfig {
29
- }
30
- export class FormConfig {
31
- }
32
- export class TileConfig {
33
- }
34
- export class Step {
35
- }
36
- export class StepConfig {
37
- }
38
- export class TableConfig {
39
- }
40
- export class PageConfig {
41
- }
42
- //---Base---
43
- export class ApiResponse {
44
- }
45
- export class Constants {
46
- }
47
- Constants.AUTH_USER = 'a';
48
- Constants.AUTH_NAME = 'b';
49
- Constants.AUTH_ROLES = 'c';
50
- Constants.AUTH_TOKEN = 'd';
51
- Constants.AUTH_TOKEN_EXPIRE = 'e';
52
- Constants.AUTH_TENANT_NAME = 'f';
53
- export class ListDialogConfig {
54
- }
55
- export class CapItem {
56
- constructor() {
57
- this.name = "";
58
- this.display = "New Cap Item";
59
- this.enabled = false;
60
- this.type = "";
61
- this.newLine = false;
62
- this.showMenu = true;
63
- this.ignoreSubsDisplay = false;
64
- this.link = "";
65
- this.icon = "navigate_next";
66
- this.color = "black";
67
- this.isBool = false;
68
- }
69
- }
70
- export class AppConfig {
71
- constructor() {
72
- this.appName = "App Name";
73
- this.logo = "";
74
- this.logoSize = "normal";
75
- this.ADAuth = true;
76
- this.localAuth = true;
77
- this.googleAuth = false;
78
- this.microsoftAuth = false;
79
- this.microsoftAuthMessage = "Sign in with Microsoft";
80
- this.selfService = false;
81
- this.multitenant = false;
82
- this.navigation = 'top';
83
- this.progressLine = false;
84
- this.loginStyle = 'default';
85
- this.termsUrl = "https://yoursite.com/terms";
86
- this.privacyUrl = "https://yoursite.com/privacy";
87
- this.siteUrl = "https://yoursite.com";
88
- this.navWidth = '200px';
89
- }
90
- }
91
- //-----------Move out------
92
- export class Transaction {
93
- constructor() {
94
- this.transactionID = 0;
95
- this.narration = "";
96
- this.amount = '0';
97
- this.type = 0;
98
- this.date = "";
99
- this.accountID = 0;
100
- this.destinationID = 0;
101
- this.categoryID = 0;
102
- }
103
- }
104
- export class FinAccount {
105
- constructor() {
106
- this.accountID = 0;
107
- this.name = "";
108
- this.description = "";
109
- this.currency = "";
110
- }
111
- }
112
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiQ2xhc3Nlcy5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL3Rpbi1zcGEvc3JjL2xpYi9jbGFzc2VzL0NsYXNzZXMudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBU0EsTUFBTSxDQUFOLElBQVksVUFNWDtBQU5ELFdBQVksVUFBVTtJQUNwQiwyQ0FBUSxDQUFBO0lBQ1IsMkNBQVEsQ0FBQTtJQUNSLDJDQUFRLENBQUE7SUFDUiwrQ0FBVSxDQUFBO0lBQ1YsMkNBQVEsQ0FBQTtBQUNWLENBQUMsRUFOVyxVQUFVLEtBQVYsVUFBVSxRQU1yQjtBQUVELE1BQU0sQ0FBTixJQUFZLGFBQXdCO0FBQXBDLFdBQVksYUFBYTtJQUFFLCtDQUFHLENBQUE7SUFBRSwrQ0FBRyxDQUFBO0FBQUEsQ0FBQyxFQUF4QixhQUFhLEtBQWIsYUFBYSxRQUFXO0FBRXBDLE1BQU0sT0FBTyxhQUFhO0NBR3pCO0FBT0QsTUFBTSxPQUFPLG1CQUFtQjtDQW1CL0I7QUFJRCxNQUFNLE9BQU8sTUFBTTtDQVFsQjtBQU9ELE1BQU0sT0FBTyxZQUFZO0NBS3hCO0FBSUQsTUFBTSxPQUFPLGNBQWM7Q0FHMUI7QUFnR0QsTUFBTSxPQUFPLFlBQVk7Q0FNeEI7QUFFRCxNQUFNLE9BQU8sV0FBVztDQUt2QjtBQUVELE1BQU0sT0FBTyxXQUFXO0NBUXZCO0FBRUQsTUFBTSxPQUFPLFVBQVU7Q0FldEI7QUErREQsTUFBTSxPQUFPLFVBQVU7Q0FNdEI7QUFFRCxNQUFNLE9BQU8sSUFBSTtDQUtoQjtBQUNELE1BQU0sT0FBTyxVQUFVO0NBTXRCO0FBa0NELE1BQU0sT0FBTyxXQUFXO0NBc0N2QjtBQUVELE1BQU0sT0FBTyxVQUFVO0NBSXRCO0FBS0QsWUFBWTtBQUVaLE1BQU0sT0FBTyxXQUFXO0NBSXZCO0FBRUQsTUFBTSxPQUFPLFNBQVM7O0FBQ0csbUJBQVMsR0FBRyxHQUFHLENBQUM7QUFDaEIsbUJBQVMsR0FBRyxHQUFHLENBQUM7QUFDaEIsb0JBQVUsR0FBRyxHQUFHLENBQUM7QUFDakIsb0JBQVUsR0FBRyxHQUFHLENBQUM7QUFDakIsMkJBQWlCLEdBQUcsR0FBRyxDQUFDO0FBQ3hCLDBCQUFnQixHQUFHLEdBQUcsQ0FBQztBQUdoRCxNQUFNLE9BQU8sZ0JBQWdCO0NBSTVCO0FBRUQsTUFBTSxPQUFPLE9BQU87SUFFbEI7UUFDRSxJQUFJLENBQUMsSUFBSSxHQUFHLEVBQUUsQ0FBQztRQUNmLElBQUksQ0FBQyxPQUFPLEdBQUcsY0FBYyxDQUFDO1FBQzlCLElBQUksQ0FBQyxPQUFPLEdBQUcsS0FBSyxDQUFDO1FBQ3JCLElBQUksQ0FBQyxJQUFJLEdBQUcsRUFBRSxDQUFDO1FBQ2YsSUFBSSxDQUFDLE9BQU8sR0FBRyxLQUFLLENBQUM7UUFDckIsSUFBSSxDQUFDLFFBQVEsR0FBRyxJQUFJLENBQUM7UUFDckIsSUFBSSxDQUFDLGlCQUFpQixHQUFHLEtBQUssQ0FBQztRQUMvQixJQUFJLENBQUMsSUFBSSxHQUFHLEVBQUUsQ0FBQztRQUNmLElBQUksQ0FBQyxJQUFJLEdBQUcsZUFBZSxDQUFDO1FBQzVCLElBQUksQ0FBQyxLQUFLLEdBQUcsT0FBTyxDQUFDO1FBQ3JCLElBQUksQ0FBQyxNQUFNLEdBQUcsS0FBSyxDQUFDO0lBRXRCLENBQUM7Q0FnQkY7QUFFRCxNQUFNLE9BQU8sU0FBUztJQUNwQjtRQUNFLElBQUksQ0FBQyxPQUFPLEdBQUcsVUFBVSxDQUFDO1FBQzFCLElBQUksQ0FBQyxJQUFJLEdBQUcsRUFBRSxDQUFDO1FBQ2YsSUFBSSxDQUFDLFFBQVEsR0FBRyxRQUFRLENBQUM7UUFDekIsSUFBSSxDQUFDLE1BQU0sR0FBRyxJQUFJLENBQUM7UUFDbkIsSUFBSSxDQUFDLFNBQVMsR0FBRyxJQUFJLENBQUM7UUFDdEIsSUFBSSxDQUFDLFVBQVUsR0FBRyxLQUFLLENBQUM7UUFDeEIsSUFBSSxDQUFDLGFBQWEsR0FBRyxLQUFLLENBQUM7UUFDM0IsSUFBSSxDQUFDLG9CQUFvQixHQUFHLHdCQUF3QixDQUFDO1FBQ3JELElBQUksQ0FBQyxXQUFXLEdBQUcsS0FBSyxDQUFDO1FBQ3pCLElBQUksQ0FBQyxXQUFXLEdBQUcsS0FBSyxDQUFDO1FBQ3pCLElBQUksQ0FBQyxVQUFVLEdBQUcsS0FBSyxDQUFDO1FBQ3hCLElBQUksQ0FBQyxZQUFZLEdBQUcsS0FBSyxDQUFDO1FBQzFCLElBQUksQ0FBQyxVQUFVLEdBQUcsU0FBUyxDQUFDO1FBQzVCLElBQUksQ0FBQyxRQUFRLEdBQUcsNEJBQTRCLENBQUM7UUFDN0MsSUFBSSxDQUFDLFVBQVUsR0FBRyw4QkFBOEIsQ0FBQztRQUNqRCxJQUFJLENBQUMsT0FBTyxHQUFHLHNCQUFzQixDQUFDO1FBQ3RDLElBQUksQ0FBQyxRQUFRLEdBQUcsT0FBTyxDQUFDO0lBRTFCLENBQUM7Q0F3QkY7QUFLRCwyQkFBMkI7QUFDM0IsTUFBTSxPQUFPLFdBQVc7SUFFdEI7UUFDRSxJQUFJLENBQUMsYUFBYSxHQUFHLENBQUMsQ0FBQztRQUN2QixJQUFJLENBQUMsU0FBUyxHQUFHLEVBQUUsQ0FBQztRQUNwQixJQUFJLENBQUMsTUFBTSxHQUFHLEdBQUcsQ0FBQztRQUNsQixJQUFJLENBQUMsSUFBSSxHQUFHLENBQUMsQ0FBQztRQUNkLElBQUksQ0FBQyxJQUFJLEdBQUcsRUFBRSxDQUFDO1FBQ2YsSUFBSSxDQUFDLFNBQVMsR0FBRyxDQUFDLENBQUM7UUFDbkIsSUFBSSxDQUFDLGFBQWEsR0FBRyxDQUFDLENBQUM7UUFDdkIsSUFBSSxDQUFDLFVBQVUsR0FBRyxDQUFDLENBQUM7SUFDdEIsQ0FBQztDQVdGO0FBRUQsTUFBTSxPQUFPLFVBQVU7SUFFckI7UUFDRSxJQUFJLENBQUMsU0FBUyxHQUFHLENBQUMsQ0FBQztRQUNuQixJQUFJLENBQUMsSUFBSSxHQUFHLEVBQUUsQ0FBQztRQUNmLElBQUksQ0FBQyxXQUFXLEdBQUcsRUFBRSxDQUFDO1FBQ3RCLElBQUksQ0FBQyxRQUFRLEdBQUcsRUFBRSxDQUFDO0lBRXJCLENBQUM7Q0FRRiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEJlaGF2aW9yU3ViamVjdCB9IGZyb20gXCJyeGpzXCI7XHJcblxyXG5leHBvcnQgaW50ZXJmYWNlIEJpdHdpc2VPcHRpb24ge1xyXG4gIG5hbWU/OiBzdHJpbmc7XHJcbiAgdmFsdWU6IG51bWJlcjtcclxuICBzZWxlY3RlZDogYm9vbGVhbjtcclxuICBpY29uPzogSWNvbjtcclxufVxyXG5cclxuZXhwb3J0IGVudW0gUm9sZUFjY2VzcyB7XHJcbiAgTm9uZSA9IDAsXHJcbiAgVmlldyA9IDEsXHJcbiAgRWRpdCA9IDIsXHJcbiAgQ3JlYXRlID0gMyxcclxuICBGdWxsID0gNFxyXG59XHJcblxyXG5leHBvcnQgZW51bSBEZXRhaWxzU291cmNlIHtSb3csIFVybH1cclxuXHJcbmV4cG9ydCBjbGFzcyBkaWFsb2dPcHRpb25zIHtcclxuICB3aWR0aD86IHN0cmluZztcclxuICBoZWlnaHQ/OiBzdHJpbmc7XHJcbn1cclxuXHJcbmV4cG9ydCBpbnRlcmZhY2UgQ2xvc2VPcHRpb25zIHtcclxuICBwb3NpdGlvbj86ICd0b3AnIHwgJ2JvdHRvbSc7IC8vIERlZmF1bHQ6ICdib3R0b20nXHJcbiAgdGV4dD86IHN0cmluZzsgLy8gRGVmYXVsdDogJ0NhbmNlbCcgLSBvbmx5IGFwcGxpZXMgd2hlbiBwb3NpdGlvbiBpcyAnYm90dG9tJ1xyXG59XHJcblxyXG5leHBvcnQgY2xhc3MgRGV0YWlsc0RpYWxvZ0NvbmZpZyB7XHJcblxyXG4gIHN0ZXBDb25maWc/IDogU3RlcENvbmZpZztcclxuICBzdGF0dXNDb25maWc/IDogU3RhdHVzQ29uZmlnO1xyXG4gIGZvcm1Db25maWc6IEZvcm1Db25maWc7XHJcbiAgdGFibGVDb25maWc/OiBUYWJsZUNvbmZpZztcclxuICB0YWJsZUNvbmZpZ3M/OiBUYWJsZUNvbmZpZ1tdO1xyXG4gIGJ1dHRvbnM/OiBCdXR0b25bXTtcclxuICBkZXRhaWxzPyA6IGFueVxyXG4gIGhlcm9GaWVsZD8gOiBhbnlcclxuICBoZXJvVmFsdWU/OiBhbnlcclxuICBtb2RlPzogJ2NyZWF0ZScgfCAnZWRpdCcgfCAndmlldydcclxuICAvLyB3aWR0aD86IHN0cmluZ1xyXG4gIGRldGFpbHNTb3VyY2U/OiBEZXRhaWxzU291cmNlXHJcbiAgb3B0aW9ucz86IGRpYWxvZ09wdGlvbnNcclxuICBhdXRvUmVmcmVzaENvbmZpZz86IEF1dG9SZWZyZXNoQ29uZmlnO1xyXG4gIHJlZnJlc2hPbkNsb3NlPzogYm9vbGVhbjtcclxuICBjYXVzZVRhYmxlUmVmcmVzaD86IGJvb2xlYW47XHJcbiAgY2xvc2VPcHRpb25zPzogQ2xvc2VPcHRpb25zO1xyXG59XHJcblxyXG5cclxuXHJcbmV4cG9ydCBjbGFzcyBBY3Rpb257XHJcbiAgbWV0aG9kPzogJ2dldCcgfCAncG9zdCdcclxuICB1cmw6IHN0cmluZztcclxuICBwYXJhbXM/IDogYW55W11cclxuICBzdWNjZXNzTWVzc2FnZT86IHN0cmluZ1xyXG4gIGlzRm9ybURhdGE/OiBib29sZWFuXHJcbiAgc2tpcENhY2hlPzogYm9vbGVhblxyXG4gIGNhY2hlRHVyYXRpb25NaW51dGVzPzogbnVtYmVyO1xyXG59XHJcblxyXG5cclxuZXhwb3J0IGludGVyZmFjZSBTZWFyY2hGaWVsZCBleHRlbmRzIEZpZWxkIHtcclxuICBzaG93PzogYm9vbGVhblxyXG59XHJcblxyXG5leHBvcnQgY2xhc3MgU2VhcmNoQ29uZmlnIHtcclxuICBmaWVsZHM6IFNlYXJjaEZpZWxkW11cclxuICBzZWFyY2hBY3Rpb24/OiBBY3Rpb25cclxuICBlbWFpbFJlc3VsdHM/OiBib29sZWFuXHJcbiAgdGlsZUNvbmZpZz86IFRpbGVDb25maWdcclxufVxyXG5cclxuXHJcblxyXG5leHBvcnQgY2xhc3MgU2VjdXJpdHlDb25maWcge1xyXG4gIGFsbG93PzogQ2FwSXRlbVtdO1xyXG4gIGRlbnk/OiBDYXBJdGVtW107XHJcbn1cclxuXHJcbmV4cG9ydCBpbnRlcmZhY2UgQ2hpbGRGaWVsZCB7XHJcbiAgY2hpbGRGaWVsZD86IHN0cmluZ1xyXG4gIGNoaWxkVmFsdWVGaWVsZD86IHN0cmluZ1xyXG59XHJcblxyXG5leHBvcnQgaW50ZXJmYWNlIEF1dG9SZWZyZXNoQ29uZmlnIHtcclxuICAvLyBUaW1lIGJldHdlZW4gcmVmcmVzaGVzIGluIG1pbGxpc2Vjb25kcyAoZGVmYXVsdDogNTAwMG1zID0gNSBzZWNvbmRzKVxyXG4gIGludGVydmFsPzogbnVtYmVyO1xyXG4gIHN0b3BDb25kaXRpb24/OiAoZGF0YTogYW55KSA9PiBib29sZWFuO1xyXG4gIGRlZmF1bHRPbj86IGJvb2xlYW47XHJcbn1cclxuXHJcblxyXG5leHBvcnQgaW50ZXJmYWNlIEZpZWxkIHtcclxuICBzZWN1cml0eUNvbmZpZz86IFNlY3VyaXR5Q29uZmlnO1xyXG4gIG5hbWU6IHN0cmluZztcclxuICB0eXBlOiAndGV4dCcgfCAnbXVsdGktdGV4dCcgfCAncGFzc3dvcmQnIHwgJ2RhdGUnIHwgJ2RhdGV0aW1lJyB8ICdkYXRldGltZXNlYycgfCAnY2hlY2tib3gnIHwgJ3NlbGVjdCcgfCAnbXVsdGktc2VsZWN0JyB8ICdtb25leScgfCAnbnVtYmVyJyB8ICdzZWN0aW9uJyB8ICdibGFuaycgfCAnY2hpcCcgfCAnZmlsZScgfCAnZmlsZS12aWV3JyB8ICdpY29uJyB8ICdzcGlubmVyJyB8ICdidXR0b24nIHwgJ2xhYmVsJyB8ICdlbWFpbCcgfCAnY29tcG9zaXRlJyB8ICdzdHJpbmcnIHwgJ2h0bWwnO1xyXG4gIGFsaWFzPzogc3RyaW5nO1xyXG4gIG9wdGlvbnM/OiBhbnlbXTtcclxuICBvcHRpb25EaXNwbGF5Pzogc3RyaW5nXHJcbiAgb3B0aW9uVmFsdWU/OiBzdHJpbmdcclxuICBtYXN0ZXJPcHRpb25WYWx1ZT86IHN0cmluZ1xyXG4gIGRlZmF1bHRWYWx1ZT86IGFueVxyXG4gIGRlZmF1bHRGaXJzdFZhbHVlPzogYm9vbGVhblxyXG4gIHJlcXVpcmVkPzogYm9vbGVhblxyXG4gIHJlcXVpcmVkQ29uZGl0aW9uPzogKHZhbHVlOiBhbnkpID0+IGJvb2xlYW47XHJcbiAgbWluPzogYW55XHJcbiAgbWF4PzogYW55XHJcbiAgcm93cz86IG51bWJlclxyXG4gIHNwYW4/OiBib29sZWFuXHJcbiAgd2lkdGg/OiBzdHJpbmdcclxuICBzaXplPzogc3RyaW5nXHJcbiAgcmVhZG9ubHk/OiBib29sZWFuXHJcbiAgaGlkZGVuPzogYm9vbGVhblxyXG4gIHN0cmljdD86IGJvb2xlYW5cclxuICBwYXRoPzogc3RyaW5nXHJcbiAga2V5RmllbGQ/OiBzdHJpbmdcclxuICBoaW50Pzogc3RyaW5nXHJcbiAgbWFzdGVyRmllbGQ/OiBzdHJpbmdcclxuICAvLyBjaGlsZD86IENoaWxkRmllbGRcclxuICBjaGlsZHJlbj86IENoaWxkRmllbGRbXVxyXG4gIG1hc3Rlck9wdGlvbnM/OiBhbnlbXVxyXG4gIG51bGxhYmxlPzogYm9vbGVhblxyXG4gIGNvcHlDb250ZW50PzogYm9vbGVhblxyXG4gIGNsZWFyQ29udGVudD86IGJvb2xlYW5cclxuICBmb3JtYXQ/OiAndGV4dCcgfCAnbW9uZXknIHwgJ2RhdGUnIHwgJ2RhdGV0aW1lJyB8ICdudW1iZXInXHJcbiAgaGlkZU9uQ3JlYXRlPzogYm9vbGVhblxyXG4gIGhpZGVPbkV4aXN0cz86IGJvb2xlYW5cclxuICBoaWRkZW5Db25kaXRpb24/OiAodmFsdWU6IGFueSkgPT4gYm9vbGVhbjtcclxuICByZWFkb25seUNvbmRpdGlvbj86ICh2YWx1ZTogYW55KSA9PiBib29sZWFuO1xyXG4gIGRldGFpbHNDb25maWc/OiBEZXRhaWxzRGlhbG9nQ29uZmlnO1xyXG4gIGxvYWRBY3Rpb24/OiBBY3Rpb25cclxuICBsb2FkSURGaWVsZD86IHN0cmluZztcclxuICBpbmZvTWVzc2FnZT86IHN0cmluZztcclxuICBzdWZmaXg/OiBzdHJpbmc7XHJcbiAgc3ViZmllbGRzPzogRmllbGRbXTtcclxuICBvcHRpb25zU3ViamVjdD86IEJlaGF2aW9yU3ViamVjdDxhbnlbXT47XHJcbiAgc2VjdGlvbj86IHN0cmluZztcclxuICBmaWxlT3B0aW9ucz86IHtcclxuICAgIGFsbG93ZWRFeHRlbnNpb25zPzogc3RyaW5nW107XHJcbiAgICBtYXhTaXplTUI/OiBudW1iZXI7XHJcbiAgICBjb21wcmVzc0ltYWdlcz86IGJvb2xlYW47XHJcbiAgfTtcclxuICBjb2xsYXBzZWQ/OiBib29sZWFuO1xyXG4gIGNvbGxhcHNlZENvbmRpdGlvbj86ICh2YWx1ZTogYW55KSA9PiBib29sZWFuO1xyXG4gIG1heEhlaWdodD86IHN0cmluZztcclxuICB2YWx1ZUNhbGN1bGF0aW9uPzogKHZhbHVlOiBhbnkpID0+IGFueTtcclxuICByZWdleD86IHtcclxuXHJcbiAgICBwYXR0ZXJuOiBzdHJpbmc7XHJcbiAgICBtZXNzYWdlOiBzdHJpbmc7XHJcbiAgfTtcclxuICBvblNlbGVjdENoYW5nZT86ICh2YWx1ZTogYW55LCBkYXRhOiBhbnkpID0+IHZvaWQ7XHJcbn1cclxuXHJcbmV4cG9ydCBpbnRlcmZhY2UgU3RhdHVzU3RhdGUge1xyXG4gIGNvbmRpdGlvbjogKGRhdGE6IGFueSkgPT4gYm9vbGVhbjtcclxuICBpY29uOiBzdHJpbmc7ICAgICAgICAgICAgICAgICAgICAgICAgXHJcbiAgY29sb3I6IHN0cmluZzsgICAgICAgICAgICAgICAgICAgICAgIFxyXG59XHJcblxyXG5leHBvcnQgaW50ZXJmYWNlIFN0YXR1c0l0ZW0ge1xyXG4gIG5hbWU6IHN0cmluZztcclxuICBoaWRkZW5Db25kaXRpb24/OiAoZGF0YTogYW55KSA9PiBib29sZWFuO1xyXG4gIHN0YXRlczogU3RhdHVzU3RhdGVbXTtcclxufVxyXG5cclxuZXhwb3J0IGludGVyZmFjZSBTdGF0dXNDb25maWcge1xyXG4gIGl0ZW1zOiBTdGF0dXNJdGVtW107XHJcbiAgc3RpY2t5PzogYm9vbGVhbjtcclxuICBoaWRkZW5Db25kaXRpb24/OiAoZGF0YTogYW55KSA9PiBib29sZWFuO1xyXG59XHJcblxyXG5cclxuZXhwb3J0IGNsYXNzIEFsZXJ0TWVzc2FnZSB7XHJcbiAgdHlwZT86ICdzdWNjZXNzJyB8ICdpbmZvJyB8ICd3YXJuJyB8ICdjcml0aWNhbCdcclxuICBjb250ZW50Pzogc3RyaW5nIFxyXG4gIGNvbnRlbnRGaWVsZD86IHN0cmluZ1xyXG4gIGhpZGRlbkNvbmRpdGlvbj86ICh2YWx1ZTogYW55KSA9PiBib29sZWFuO1xyXG4gIHNob3dDb25kaXRpb24/OiAodmFsdWU6IGFueSkgPT4gYm9vbGVhbjtcclxufVxyXG5cclxuZXhwb3J0IGNsYXNzIEFsZXJ0Q29uZmlnIHtcclxuICBzdWJqZWN0Pzogc3RyaW5nXHJcbiAgY29tcGFjdD8gOiBib29sZWFuXHJcbiAgc3RpY2t5PzogYm9vbGVhbiBcclxuICBtZXNzYWdlczogQWxlcnRNZXNzYWdlW11cclxufVxyXG5cclxuZXhwb3J0IGNsYXNzIE5vdGVzQ29uZmlnIHtcclxuICB0aXRsZT86IHN0cmluZztcclxuICBsb2FkQWN0aW9uPzogQWN0aW9uO1xyXG4gIGxvYWRJREZpZWxkPzogc3RyaW5nO1xyXG4gIG5vdGVzPzogYW55W107XHJcbiAgbmFtZUZpZWxkPzogc3RyaW5nO1xyXG4gIGRhdGVGaWVsZD86IHN0cmluZztcclxuICBjb21tZW50RmllbGQ/OiBzdHJpbmc7XHJcbn1cclxuXHJcbmV4cG9ydCBjbGFzcyBGb3JtQ29uZmlnIHtcclxuICB0aXRsZT86IHN0cmluZ1xyXG4gIGZpeGVkVGl0bGU/OiBib29sZWFuXHJcbiAgYWxlcnRDb25maWc/OiBBbGVydENvbmZpZ1xyXG4gIGZpZWxkczogRmllbGRbXVxyXG4gIG1vZGU/OiAnY3JlYXRlJyB8ICdlZGl0JyB8ICd2aWV3J1xyXG4gIGJ1dHRvbj8gOiBCdXR0b25cclxuICBtdWx0aUNvbHVtbj86IGJvb2xlYW5cclxuICByZXNldD86IGJvb2xlYW5cclxuICBsb2FkQWN0aW9uPzogQWN0aW9uXHJcbiAgaGVyb0ZpZWxkPzogYW55XHJcbiAgaGVyb1ZhbHVlPzogYW55XHJcbiAgc2VjdXJpdHk/OiBTZWN1cml0eUNvbmZpZztcclxuICBpbmNsdWRlQXVkaXQ/OiBib29sZWFuXHJcbiAgbm90ZXNDb25maWc/OiBOb3Rlc0NvbmZpZztcclxufVxyXG5cclxuZXhwb3J0IGludGVyZmFjZSBDb25maXJtIHtcclxuICBtZXNzYWdlPzogc3RyaW5nXHJcbiAgZnVuYz86IChkYXRhOiBhbnkpID0+IHN0cmluZzsgXHJcbn1cclxuXHJcbmV4cG9ydCBpbnRlcmZhY2UgQnV0dG9ue1xyXG4gIG5hbWU6IHN0cmluZ1xyXG4gIHZpc2libGU/OiAodmFsdWU6IGFueSkgPT4gYm9vbGVhbjtcclxuICBkaXNwbGF5Pzogc3RyaW5nO1xyXG4gIGljb24/OiBJY29uO1xyXG4gIGRpc2FibGVkPzogKHZhbHVlOiBhbnkpID0+IGJvb2xlYW47XHJcbiAgY29sb3I/OiBzdHJpbmc7XHJcbiAgdGlwPzogc3RyaW5nXHJcbiAgZGlhbG9nPzogYm9vbGVhblxyXG4gIGFjdGlvbj86IEFjdGlvblxyXG4gIGNvbmZpcm0/OiBDb25maXJtXHJcbiAgaW5EaWFsb2c/OiBib29sZWFuXHJcbiAgaW5IZWFkZXI/OiBib29sZWFuXHJcbiAgZGV0YWlsc0NvbmZpZz86IERldGFpbHNEaWFsb2dDb25maWdcclxuICBzZXRIZXJvRmllbGQ/OiBib29sZWFuO1xyXG4gIGlnbm9yZVBlbmRpbmdBcHByb3ZhbD86IGJvb2xlYW47XHJcbiAga2VlcE9wZW4/OiBib29sZWFuO1xyXG4gIG9uU3VjY2Vzcz86IChyZXNwb25zZTogQXBpUmVzcG9uc2UsIGRldGFpbHM6IGFueSkgPT4gdm9pZDtcclxuICBvbkNsaWNrPzogKGRldGFpbHM6IGFueSkgPT4gdm9pZDtcclxuICBlZGl0T25TdWNjZXNzPzogYm9vbGVhblxyXG4gIG9uU3VjY2Vzc0J1dHRvbj86IEJ1dHRvblxyXG4gIHNraXBWYWxpZGF0aW9uPzogYm9vbGVhblxyXG59XHJcblxyXG5cclxuZXhwb3J0IGludGVyZmFjZSBDYXBzdWxlQ29uZmlnIHtcclxuICBkaXNwbGF5RmllbGQ6IHN0cmluZztcclxuICBsZWZ0SWNvbnM/OiBJY29uW107XHJcbiAgcmlnaHRJY29ucz86IEljb25bXTtcclxuICAvLyBidXR0b25zPzogQnV0dG9uW107XHJcbiAgbG9hZEFjdGlvbj86IEFjdGlvbjtcclxufVxyXG5cclxuZXhwb3J0IGludGVyZmFjZSBDYXJkQ29uZmlnIHtcclxuICBpbWFnZUZpZWxkPzogc3RyaW5nO1xyXG4gIHRpdGxlRmllbGQ6IHN0cmluZztcclxuICBzdWJ0aXRsZUZpZWxkPzogc3RyaW5nO1xyXG4gIGNvbnRlbnRGaWVsZHM6IHN0cmluZ1tdO1xyXG4gIGNvbHVtbnM/OiBudW1iZXI7XHJcbiAgZWxldmF0aW9uPzogJ2xvdycgfCAnbWVkaXVtJyB8ICdoaWdoJztcclxufVxyXG5cclxuZXhwb3J0IGludGVyZmFjZSBUaWxlIHtcclxuXHJcbiAgbmFtZTogc3RyaW5nO1xyXG4gIGFsaWFzPzogc3RyaW5nO1xyXG4gIHZhbHVlPzogc3RyaW5nO1xyXG4gIGNvbG9yPzogc3RyaW5nO1xyXG4gIHNlbGVjdGVkVGlsZT86IHN0cmluZztcclxuICBoaWRkZW4/OiBib29sZWFuO1xyXG4gIGluZm8/OiBzdHJpbmc7XHJcbiAgcHJlZml4Pzogc3RyaW5nO1xyXG4gIHN1ZmZpeD86IHN0cmluZztcclxuICBhY3Rpb24/OiBBY3Rpb247XHJcbiAgaGlkZGVuQ29uZGl0aW9uPzogKHZhbHVlOiBhbnkpID0+IGJvb2xlYW47XHJcbn1cclxuZXhwb3J0IGNsYXNzIFRpbGVDb25maWcge1xyXG4gIHRpbGVzOiBUaWxlW11cclxuICBsb2FkQWN0aW9uPzogQWN0aW9uXHJcbiAgbG9hZEluaXQ/OiBib29sZWFuXHJcbiAgY2xpY2thYmxlPzogYm9vbGVhblxyXG4gIGhlYWRlclBvc2l0aW9uPzogfCAndG9wJyB8ICdtaWRkbGUnO1xyXG59XHJcblxyXG5leHBvcnQgY2xhc3MgU3RlcCB7XHJcbiAgbmFtZTogc3RyaW5nXHJcbiAgdmFsdWU/OiBhbnlcclxuICBpY29uPzogc3RyaW5nO1xyXG4gIGhpZGRlbkNvbmRpdGlvbj86ICh2YWx1ZTogYW55KSA9PiBib29sZWFuO1xyXG59XHJcbmV4cG9ydCBjbGFzcyBTdGVwQ29uZmlnIHtcclxuICBzdGVwczogU3RlcFtdXHJcbiAgdmFsdWVGaWVsZD86IHN0cmluZ1xyXG4gIGxvYWRBY3Rpb24/OiBBY3Rpb247XHJcbiAgbG9hZElERmllbGQ/OiBzdHJpbmc7XHJcbiAgc3RpY2t5PzogYm9vbGVhbiBcclxufVxyXG5cclxuZXhwb3J0IGludGVyZmFjZSBJY29uIHtcclxuICBuYW1lOiBzdHJpbmdcclxuICBjb2xvcj86IHN0cmluZ1xyXG4gIHRpcD86IHN0cmluZ1xyXG4gIHRpcEZpZWxkPzogc3RyaW5nXHJcbiAgYmFubmVyRmllbGQ/OiBzdHJpbmdcclxuICBjb25kaXRpb24/OiAodmFsdWU6IGFueSkgPT4gYm9vbGVhbjtcclxufVxyXG5cclxuZXhwb3J0IGludGVyZmFjZSBDb2xvciB7XHJcbiAgbmFtZTogc3RyaW5nXHJcbiAgY29uZGl0aW9uPzogKHZhbHVlOiBhbnkpID0+IGJvb2xlYW47XHJcbn1cclxuXHJcbmV4cG9ydCBpbnRlcmZhY2UgQ29sdW1uIHtcclxuICBuYW1lOiBzdHJpbmc7XHJcbiAgdHlwZT86ICd0ZXh0JyB8ICdkYXRlJyB8ICdkYXRldGltZScgfCAnZGF0ZXRpbWVzZWMnIHwgJ2NoZWNrYm94JyB8ICdzZWxlY3QnIHwgJ21vbmV5JyB8ICdudW1iZXInIHwgJ2NoaXAnIHwgJ2ljb24nIHwgJ3NwaW5uZXInIHwgJ2J1dHRvbic7XHJcbiAgYWxpYXM/OiBzdHJpbmc7XHJcbiAgbWF4TGVuZ3RoPzogbnVtYmVyO1xyXG4gIGljb24/OiBJY29uO1xyXG4gIGNvbG9yPzogQ29sb3I7XHJcbiAgY29sb3JzPzogQ29sb3JbXTtcclxuICBpY29ucz86IEljb25bXTtcclxuICBvcHRpb25zPzogYW55W107XHJcbiAgb3B0aW9uRGlzcGxheT86IHN0cmluZ1xyXG4gIG9wdGlvblZhbHVlPzogc3RyaW5nXHJcbiAgZGV0YWlsc0NvbmZpZz86IERldGFpbHNEaWFsb2dDb25maWdcclxuICBoaWRkZW5Db25kaXRpb24/OiAocGFyZW50RGF0YTogYW55KSA9PiBib29sZWFuO1xyXG59XHJcblxyXG5cclxuZXhwb3J0IHR5cGUgVGFibGVWaWV3VHlwZSA9ICd0YWJsZScgfCAnY2Fwc3VsZScgfCAnY2FyZCc7XHJcbmV4cG9ydCBjbGFzcyBUYWJsZUNvbmZpZ3tcclxuICB2aWV3VHlwZT86IFRhYmxlVmlld1R5cGUgXHJcbiAgY2Fwc3VsZUNvbmZpZz86IENhcHN1bGVDb25maWdcclxuICBjYXJkQ29uZmlnPzogQ2FyZENvbmZpZ1xyXG4gIHRhYlRpdGxlPzogc3RyaW5nXHJcbiAgbm9EYXRhTWVzc2FnZSA/OiBzdHJpbmdcclxuICBjb2x1bW5zPyA6IENvbHVtbltdXHJcbiAgbWluQ29sdW1ucz86IHN0cmluZ1tdXHJcbiAgc2hvd0ZpbHRlcj86IGJvb2xlYW5cclxuICBzaG93RmlsdGVyQnV0dG9uPzogYm9vbGVhblxyXG4gIGhvbGRGaWx0ZXJTcGFjZT86IGJvb2xlYW5cclxuICBob2xkSGVhZGVyQnV0dG9uU3BhY2U/OiBib29sZWFuXHJcbiAgZWxldmF0aW9uPzogJ25vbmUnIHwgJ2xvdycgfCAnbWVkaXVtJyB8ICdoaWdoJ1xyXG4gIGZvcm1Db25maWc/OiBGb3JtQ29uZmlnXHJcbiAgc2VhcmNoQ29uZmlnPzogU2VhcmNoQ29uZmlnXHJcbiAgdGlsZUNvbmZpZz86IFRpbGVDb25maWdcclxuICBzdGVwQ29uZmlnPzogU3RlcENvbmZpZ1xyXG4gIGJ1dHRvbnM/OiBCdXR0b25bXVxyXG4gIG1pbkJ1dHRvbnM/OiBzdHJpbmdbXVxyXG4gIGxvYWRBY3Rpb24/OiBBY3Rpb25cclxuICBjb3VudEFjdGlvbj86IEFjdGlvblxyXG4gIGxvYWRJREZpZWxkID86IHN0cmluZ1xyXG4gIGxvYWRDcml0ZXJpYT86IHN0cmluZ1xyXG4gIGxhenlMb2FkPzogYm9vbGVhblxyXG4gIGNhdXNlRm9ybVJlZnJlc2g/OiBib29sZWFuXHJcbiAgbG9nUmVzcG9uc2U/OiBib29sZWFuXHJcbiAgZmxhdEJ1dHRvbnM/OiBib29sZWFuXHJcbiAgZ3JleU91dD86ICh2YWx1ZTogYW55KSA9PiBib29sZWFuO1xyXG4gIGhlcm9GaWVsZD86IGFueVxyXG4gIGhlcm9WYWx1ZT86IGFueVxyXG4gIGNvbGxhcHNlQnV0dG9ucz86IGJvb2xlYW5cclxuICBwYXJlbnREYXRhID8gOiBhbnlcclxuICBwYWdlU2l6ZXM/OiBudW1iZXJbXVxyXG4gIG1heEJ1dHRvbnNDb3VudD86IG51bWJlclxyXG4gIGhpZGVUYWJDb25kaXRpb24/OiAodmFsdWU6IGFueSkgPT4gYm9vbGVhbjtcclxuXHJcbiAgZG93bmxvYWQ/OiB7IGNvbHVtbnM6IHN0cmluZ1tdLCBmaWxlTmFtZT86IHN0cmluZywgaGlkZGVuQ29uZGl0aW9uPzogKHZhbHVlOiBhbnkpID0+IGJvb2xlYW47IH1cclxuICB1cGxvYWQ/OiB7IGFjdGlvbjogQWN0aW9uLCBtZXNzYWdlcz86IEFsZXJ0TWVzc2FnZVtdLCBoaWRkZW5Db25kaXRpb24/OiAodmFsdWU6IGFueSkgPT4gYm9vbGVhbjsgfVxyXG59XHJcblxyXG5leHBvcnQgY2xhc3MgUGFnZUNvbmZpZyB7XHJcbiAgdGl0bGU/OiBzdHJpbmc7XHJcbiAgdGFibGVDb25maWc/OiBUYWJsZUNvbmZpZztcclxuICBzZWFyY2hUYWJsZUNvbmZpZz86IFRhYmxlQ29uZmlnO1xyXG59XHJcblxyXG5cclxuXHJcblxyXG4vLy0tLUJhc2UtLS1cclxuXHJcbmV4cG9ydCBjbGFzcyBBcGlSZXNwb25zZSB7XHJcbiAgc3VjY2VzczogYm9vbGVhbjtcclxuICBtZXNzYWdlOiBzdHJpbmc7XHJcbiAgZGF0YTtcclxufVxyXG5cclxuZXhwb3J0IGNsYXNzIENvbnN0YW50cyB7XHJcbiAgcHVibGljIHN0YXRpYyByZWFkb25seSBBVVRIX1VTRVIgPSAnYSc7XHJcbiAgcHVibGljIHN0YXRpYyByZWFkb25seSBBVVRIX05BTUUgPSAnYic7XHJcbiAgcHVibGljIHN0YXRpYyByZWFkb25seSBBVVRIX1JPTEVTID0gJ2MnO1xyXG4gIHB1YmxpYyBzdGF0aWMgcmVhZG9ubHkgQVVUSF9UT0tFTiA9ICdkJztcclxuICBwdWJsaWMgc3RhdGljIHJlYWRvbmx5IEFVVEhfVE9LRU5fRVhQSVJFID0gJ2UnO1xyXG4gIHB1YmxpYyBzdGF0aWMgcmVhZG9ubHkgQVVUSF9URU5BTlRfTkFNRSA9ICdmJztcclxufVxyXG5cclxuZXhwb3J0IGNsYXNzIExpc3REaWFsb2dDb25maWcge1xyXG4gIG5hbWU6IHN0cmluZztcclxuICB0aXRsZTogc3RyaW5nO1xyXG4gIGxpc3ROYW1lOiBzdHJpbmc7XHJcbn1cclxuXHJcbmV4cG9ydCBjbGFzcyBDYXBJdGVtIHtcclxuXHJcbiAgY29uc3RydWN0b3IoKSB7XHJcbiAgICB0aGlzLm5hbWUgPSBcIlwiO1xyXG4gICAgdGhpcy5kaXNwbGF5ID0gXCJOZXcgQ2FwIEl0ZW1cIjtcclxuICAgIHRoaXMuZW5hYmxlZCA9IGZhbHNlO1xyXG4gICAgdGhpcy50eXBlID0gXCJcIjtcclxuICAgIHRoaXMubmV3TGluZSA9IGZhbHNlO1xyXG4gICAgdGhpcy5zaG93TWVudSA9IHRydWU7XHJcbiAgICB0aGlzLmlnbm9yZVN1YnNEaXNwbGF5ID0gZmFsc2U7XHJcbiAgICB0aGlzLmxpbmsgPSBcIlwiO1xyXG4gICAgdGhpcy5pY29uID0gXCJuYXZpZ2F0ZV9uZXh0XCI7XHJcbiAgICB0aGlzLmNvbG9yID0gXCJibGFja1wiO1xyXG4gICAgdGhpcy5pc0Jvb2wgPSBmYWxzZTtcclxuXHJcbiAgfVxyXG5cclxuICBuYW1lOiBzdHJpbmc7XHJcbiAgZGlzcGxheTogc3RyaW5nO1xyXG4gIGVuYWJsZWQ6IGJvb2xlYW47XHJcbiAgc2hvd01lbnU6IGJvb2xlYW47XHJcblxyXG4gIGlnbm9yZVN1YnNEaXNwbGF5OiBib29sZWFuO1xyXG4gIHR5cGU6IHN0cmluZztcclxuICBuZXdMaW5lOiBib29sZWFuO1xyXG4gIGxpbms6IHN0cmluZztcclxuICBpY29uOiBzdHJpbmc7XHJcbiAgY2FwU3ViSXRlbXM6IENhcEl0ZW1bXTtcclxuICBjb2xvcjogc3RyaW5nO1xyXG4gIGlzQm9vbCA6IGJvb2xlYW47XHJcblxyXG59XHJcblxyXG5leHBvcnQgY2xhc3MgQXBwQ29uZmlnIHtcclxuICBjb25zdHJ1Y3RvcigpIHtcclxuICAgIHRoaXMuYXBwTmFtZSA9IFwiQXBwIE5hbWVcIjtcclxuICAgIHRoaXMubG9nbyA9IFwiXCI7XHJcbiAgICB0aGlzLmxvZ29TaXplID0gXCJub3JtYWxcIjtcclxuICAgIHRoaXMuQURBdXRoID0gdHJ1ZTtcclxuICAgIHRoaXMubG9jYWxBdXRoID0gdHJ1ZTtcclxuICAgIHRoaXMuZ29vZ2xlQXV0aCA9IGZhbHNlO1xyXG4gICAgdGhpcy5taWNyb3NvZnRBdXRoID0gZmFsc2U7XHJcbiAgICB0aGlzLm1pY3Jvc29mdEF1dGhNZXNzYWdlID0gXCJTaWduIGluIHdpdGggTWljcm9zb2Z0XCI7XHJcbiAgICB0aGlzLnNlbGZTZXJ2aWNlID0gZmFsc2U7XHJcbiAgICB0aGlzLm11bHRpdGVuYW50ID0gZmFsc2U7XHJcbiAgICB0aGlzLm5hdmlnYXRpb24gPSAndG9wJztcclxuICAgIHRoaXMucHJvZ3Jlc3NMaW5lID0gZmFsc2U7XHJcbiAgICB0aGlzLmxvZ2luU3R5bGUgPSAnZGVmYXVsdCc7XHJcbiAgICB0aGlzLnRlcm1zVXJsID0gXCJodHRwczovL3lvdXJzaXRlLmNvbS90ZXJtc1wiO1xyXG4gICAgdGhpcy5wcml2YWN5VXJsID0gXCJodHRwczovL3lvdXJzaXRlLmNvbS9wcml2YWN5XCI7XHJcbiAgICB0aGlzLnNpdGVVcmwgPSBcImh0dHBzOi8veW91cnNpdGUuY29tXCI7XHJcbiAgICB0aGlzLm5hdldpZHRoID0gJzIwMHB4JztcclxuXHJcbiAgfVxyXG5cclxuICBhcHBOYW1lOiBzdHJpbmc7XHJcbiAgbG9nbzogc3RyaW5nO1xyXG4gIGxvZ29TaXplOiBzdHJpbmc7XHJcbiAgQURBdXRoOiBib29sZWFuO1xyXG4gIGxvY2FsQXV0aDogYm9vbGVhbjtcclxuICBnb29nbGVBdXRoOiBib29sZWFuO1xyXG4gIG1pY3Jvc29mdEF1dGg6IGJvb2xlYW47XHJcbiAgbWljcm9zb2Z0QXV0aE1lc3NhZ2U6IHN0cmluZztcclxuICBzZWxmU2VydmljZTogYm9vbGVhbjtcclxuICBjYXBJdGVtczogQ2FwSXRlbVtdO1xyXG4gIG11bHRpdGVuYW50IDogYm9vbGVhbjtcclxuICBuYXZpZ2F0aW9uIDogJ3RvcCcgfCAnc2lkZSdcclxuICBwcm9ncmVzc0xpbmU6IGJvb2xlYW47XHJcbiAgZG9jc0Jhc2VVcmwgOiBzdHJpbmc7XHJcbiAgbG9naW5TdHlsZSA6IHN0cmluZztcclxuICBsb2dpblRpdGxlIDogc3RyaW5nO1xyXG4gIGxvZ2luTWVzc2FnZSA6IHN0cmluZztcclxuICB0ZXJtc1VybDogc3RyaW5nO1xyXG4gIHByaXZhY3lVcmw6IHN0cmluZztcclxuICBzaXRlVXJsOiBzdHJpbmc7XHJcbiAgbmF2V2lkdGg6IHN0cmluZztcclxuXHJcbn1cclxuXHJcblxyXG5cclxuXHJcbi8vLS0tLS0tLS0tLS1Nb3ZlIG91dC0tLS0tLVxyXG5leHBvcnQgY2xhc3MgVHJhbnNhY3Rpb24ge1xyXG5cclxuICBjb25zdHJ1Y3RvcigpIHtcclxuICAgIHRoaXMudHJhbnNhY3Rpb25JRCA9IDA7XHJcbiAgICB0aGlzLm5hcnJhdGlvbiA9IFwiXCI7XHJcbiAgICB0aGlzLmFtb3VudCA9ICcwJztcclxuICAgIHRoaXMudHlwZSA9IDA7XHJcbiAgICB0aGlzLmRhdGUgPSBcIlwiO1xyXG4gICAgdGhpcy5hY2NvdW50SUQgPSAwO1xyXG4gICAgdGhpcy5kZXN0aW5hdGlvbklEID0gMDtcclxuICAgIHRoaXMuY2F0ZWdvcnlJRCA9IDA7XHJcbiAgfVxyXG5cclxuICB0cmFuc2FjdGlvbklEIDogbnVtYmVyO1xyXG4gIG5hcnJhdGlvbiA6IHN0cmluZztcclxuICBhbW91bnQgOiBzdHJpbmc7XHJcbiAgdHlwZTogbnVtYmVyO1xyXG4gIGRhdGUgOiBzdHJpbmc7XHJcbiAgYWNjb3VudElEIDogbnVtYmVyO1xyXG4gIGRlc3RpbmF0aW9uSUQgOiBudW1iZXI7XHJcbiAgY2F0ZWdvcnlJRCA6IG51bWJlcjtcclxuXHJcbn1cclxuXHJcbmV4cG9ydCBjbGFzcyBGaW5BY2NvdW50IHtcclxuXHJcbiAgY29uc3RydWN0b3IoKXtcclxuICAgIHRoaXMuYWNjb3VudElEID0gMDtcclxuICAgIHRoaXMubmFtZSA9IFwiXCI7XHJcbiAgICB0aGlzLmRlc2NyaXB0aW9uID0gXCJcIjtcclxuICAgIHRoaXMuY3VycmVuY3kgPSBcIlwiO1xyXG5cclxuICB9XHJcblxyXG5cclxuICBhY2NvdW50SUQ6IG51bWJlclxyXG4gIG5hbWU6IHN0cmluZztcclxuICBkZXNjcmlwdGlvbjogc3RyaW5nO1xyXG4gIGN1cnJlbmN5OiBzdHJpbmc7XHJcblxyXG59XHJcblxyXG4iXX0=